Page MenuHomeFeedback Tracker

cyckuan
User

Projects

User does not belong to any projects.

User Details

User Since
Dec 30 2013, 6:22 AM (538 w, 6 d)

Recent Activity

May 10 2016

cyckuan added a comment to T80161: Add ability to obtain client id without using owner.

I get your point that spawn pushes the execution to the scheduled environment i.e. postInit. What I still don't get is why you or BI feel there is no use case for client-server communications in unscheduled environment. Anyway, I am more accepting of the fact, after reading through KK's tutorial again, linked below:

http://killzonekid.com/arma-scripting-tutorials-code-performance/

May 10 2016, 9:44 AM · Arma 3
cyckuan added a comment to T80161: Add ability to obtain client id without using owner.

SilentSpike your sarcasm is funny but on these forums, these are srz ppl running a srz bznz. Xeno, Skaronator, KK and yourself even are expert scripters/developers.

preInit allows you to run scripts in an unscheduled environment, meaning it allows you to get all your initialization done, in the mission splash/startup screen before the game session starts.

Of course, you can also run scripts in an unscheduled environment using a mission event handler like Draw3D. However with Draw3D, the user's session has already started and if the script within Draw3D is computationally heavy, the user experience is temporarily suspended. Generally, doing this to the player is not good practice.

Hopefully BI will do something now. publicVariableServer and publicVariableClient are amazing client-server messaging tools. All it needs is a more direct way to identify clients and connections that works not just in preInit but everywhere else. Searching by name through playableUnits (if the server is initiating the messaging) or waiting for the client to send an object, typically {player}, so that the server can apply {owner} to it to extract the clientid, sounds "hacky".

The _id in onPlayerConnect corresponds to DirectPlay id, and cannot be used for publicVariableClient messaging. I am not even sure if onPlayerConnect has already fired whilst the new client session is still in preInit. Will test later.

May 10 2016, 9:44 AM · Arma 3
cyckuan added a comment to T80161: Add ability to obtain client id without using owner.

Can you please clarify further on how "public variables do not work in preInit"?

The reproduction code shows that publicVariables DO work in preInit. The only aspect that does not seem to work is publicVariableClient, because there does not appear to be any means (at least ones that I know of) of identifying the clientId of a client in preInit. Most methods discussed rely on use of objects, playableUnits and the owner command. Yet, the same client in preInit is already able to send and receive messages using commands publicVariable and publicVariableServer.

May 10 2016, 9:44 AM · Arma 3
cyckuan edited Steps To Reproduce on T80161: Add ability to obtain client id without using owner.
May 10 2016, 9:44 AM · Arma 3
cyckuan added a comment to T80121: ArmA 3 windows server is not releasing files after execVM, preprocessFile* and loadFile.

Use-case for releasing files after reads or loads

  1. Accelerates script development, especially if the scripts are read from files.
  2. Allows hotfixes and run-time changes of configurations/settings.
  3. Increases interoperability and file-based interfacing.

Client-side, to release files held by a multiplayer session, it is necessary to back out to the multiplayer server selection screen.

Server-side, it is necessary to restart the server.

Please, prioritise this. Not releasing files after reads and loads is not very professional.

May 10 2016, 9:43 AM · Arma 3
cyckuan edited Steps To Reproduce on T80121: ArmA 3 windows server is not releasing files after execVM, preprocessFile* and loadFile.
May 10 2016, 9:43 AM · Arma 3
cyckuan added a comment to T80017: onEachFrame draws one frame and stops looping.

Verified cache. Still happening. But have confirmed that this is localised. Friend's sessions are not experiencing this. I'll provide more info when I find out local circumstances leading to this.

May 10 2016, 9:40 AM · Arma 3
cyckuan added a comment to T80017: onEachFrame draws one frame and stops looping.

Yes the reproduction is on a clean new mission in editor. Stacking event handlers is not the answer.

May 10 2016, 9:40 AM · Arma 3
cyckuan added a comment to T80017: onEachFrame draws one frame and stops looping.

Hmmm local problem to my machine? I tried the following. The number scrolls then stops.

  • spawn { oneachframe {hintsilent str diag_frameno}; };
May 10 2016, 9:40 AM · Arma 3
cyckuan edited Steps To Reproduce on T80017: onEachFrame draws one frame and stops looping.
May 10 2016, 9:39 AM · Arma 3
cyckuan edited Steps To Reproduce on T79717: assignedVehicleRole returns [] for remote objects.
May 10 2016, 9:31 AM · Arma 3
cyckuan added a comment to T79551: BIS_fnc_loop is not reliable because of preemption.

onEachFrame is now broken. Draws only 1 frame and doesnt seem to loop anymore.

May 10 2016, 9:25 AM · Arma 3
cyckuan added a comment to T79551: BIS_fnc_loop is not reliable because of preemption.

The cause of this was one version of CBA. Therefore not related. Happy for this to close.

May 10 2016, 9:25 AM · Arma 3
cyckuan edited Steps To Reproduce on T79460: Reviving dead units.
May 10 2016, 9:22 AM · Arma 3
cyckuan edited Steps To Reproduce on T79459: Multiplayer Kill and Damage attribution between Firer and EffectiveCommander.
May 10 2016, 9:22 AM · Arma 3
cyckuan edited Steps To Reproduce on T77591: Corpse and Wreck Cleanup / Delete.
May 10 2016, 8:29 AM · Arma 3
cyckuan added a comment to T77589: Mission Objects Leak Not Removable by Script Commandset.

BI scripts are located in some of the PBOs in the client Addons folder. If you unpack the PBO's, it is possible to use some text-search-all-files-in-folder (e.g. Notepad++) to find "trigger". The results of this approach will be less empirical and more exhaustive.

May 10 2016, 8:29 AM · Arma 3
cyckuan added a comment to T77589: Mission Objects Leak Not Removable by Script Commandset.

Another interesting observation is that in a mission with not a single trigger, both server-side and client local, "EmptyDetector" exists and grows in number over time.

May 10 2016, 8:29 AM · Arma 3
cyckuan added a comment to T77589: Mission Objects Leak Not Removable by Script Commandset.

The specific problem here is that this is essentially an unmanageable, irrecoverable but identifiable use of resource, otherwise, known as a "memory leak".

This means that the server will have to be restarted over time.

#destructioneffects are not the same as craters. Craters are removable objects.

Deleting EmptyDetector, #smokesource and #destructioneffects objects only makes them unplottable on the map or resets to position [0,0,0], but they remain in the object space. Please check the histogram system text that the code produces. The numbers remain unchanged even after you relog, which means its not local.

There is no evidence of the server garbage collecting #destructioneffects and #smokesource. It simply builds up to astronomical numbers in a heavily populated MP server over time.

I'd appreciate proper investigation and less guesswork or flippant comments please.

May 10 2016, 8:29 AM · Arma 3
cyckuan edited Steps To Reproduce on T77589: Mission Objects Leak Not Removable by Script Commandset.
May 10 2016, 8:29 AM · Arma 3
cyckuan added a comment to T77175: GroundWeaponHolder identifiable only by nearestObjects unlike WeaponHolderSimulated.

Yes true.

May 10 2016, 8:20 AM · Arma 3
cyckuan added a comment to T77175: GroundWeaponHolder identifiable only by nearestObjects unlike WeaponHolderSimulated.

Its ok to close this.

May 10 2016, 8:20 AM · Arma 3
cyckuan added a comment to T77175: GroundWeaponHolder identifiable only by nearestObjects unlike WeaponHolderSimulated.

vehicles, entities, nearEntities do not pick up GroundWeaponHolder.

nearObjects and nearestObjects do pick up GroundWeaponHolder.

It seems that entities and nearEntities pick up everything in "ReammoBox_F" but not "ReammoBox". Legacy issue? GroundWeaponHolder falls under ReammoBox whereas most of Arma 3 crates are in ReammoBox_F.

Two interim workarounds to this issue:

  1. nearObjects is not so costly afterall e.g.

systemChat str count (position player nearObjects ["GroundWeaponHolder",10000000]) doesnt seem to cost any more if the range value is lower. Perhaps, the function has to loop through the entire object space anyway to work out distance to the reference position. Still, its a cost to have to work out the distance.

  1. get the client to tell the server that a GroundWeaponHolder is created and have the server clean up the GroundWeaponHolder after a certain delay.

player addEventHandler ["Put",{
private ["_container"];
_container = _this select 1;
if (_container isKindOf "GroundWeaponHolder") then {

		
		serverRegisterGWH = _container;
		publicVariableServer "serverDespawnGWH";

};
}];

"serverDespawnGWH" addPublicVariableEventHandler {
[_this select 1] spawn {

		private ["_obj"];
		_obj = _this select 0;
		sleep 120;
		if (!isNull _obj) then { deleteVehicle _obj; };

};
};

May 10 2016, 8:20 AM · Arma 3
cyckuan added a comment to T77175: GroundWeaponHolder identifiable only by nearestObjects unlike WeaponHolderSimulated.

allMissionObjects is more elegant :)

May 10 2016, 8:20 AM · Arma 3
cyckuan edited Steps To Reproduce on T77175: GroundWeaponHolder identifiable only by nearestObjects unlike WeaponHolderSimulated.
May 10 2016, 8:20 AM · Arma 3
cyckuan added a comment to T76191: Glitching/Porting/Clipping/Lagging/Desyncing of far away players and player controlled vehicles in MP. [Multiplayer].

At large distances, the "desync" behaviour observed is most likely caused by basic.cfg settings for MinErrorToSend and MinErrorToSendNear, documented here: https://community.bistudio.com/wiki/basic.cfg

May 10 2016, 7:54 AM · Arma 3
cyckuan added a comment to T76191: Glitching/Porting/Clipping/Lagging/Desyncing of far away players and player controlled vehicles in MP. [Multiplayer].

Also observing vehicles with no players drivers/pilots/passengers, sinking into the ground, flying off at some vector, momentarily before resetting its position.

May 10 2016, 7:54 AM · Arma 3
cyckuan added a comment to T76191: Glitching/Porting/Clipping/Lagging/Desyncing of far away players and player controlled vehicles in MP. [Multiplayer].

This is not conclusive but it appears to be happening more since 1.12 (http://dev.arma3.com/spotrep-00020).

Here are some observations to help with isolating the problem:

  1. It happens on a recently restarted server also.
  2. It is happening also to vehicles with no pilots and passengers. Vehicles are sinking into the ground and sliding. Having multiple players in the vehicle is not automatically causative factor.
  3. It does not feel like individual player lag because we checked their Ping, Bandwidth and Desync stats when they are showing "vehicle desync" behaviour.
  4. Occassionally, we get server wide desync with the majority of players showing 100000 in the Desync field.
May 10 2016, 7:54 AM · Arma 3
cyckuan edited Steps To Reproduce on T75595: WeaponHolderSimulated is parented by thingX, Thing.
May 10 2016, 7:40 AM · Arma 3
cyckuan edited Steps To Reproduce on T75462: Non-unique map markers.
May 10 2016, 7:37 AM · Arma 3
cyckuan edited Steps To Reproduce on T75350: attachTo in VBS2 provides collision detection and other functionality.
May 10 2016, 7:34 AM · Arma 3
cyckuan added a comment to T75126: Fire damage is causing excessive firing of the HandleDamage event.

Its ok to close this. This issue has been resolved.

May 10 2016, 7:28 AM · Arma 3
cyckuan added a comment to T75126: Fire damage is causing excessive firing of the HandleDamage event.

Testing on 1.12 finds the following:

  1. damage from heat sources start on the head at around 10-11m (this damage is approximately the same at 10-11m regardless of current uniform or vest)
  2. at 10m, damage to body, hands and legs begin only when vest is removed i.e. removing uniform does not appear to do anything. Also the distance to fire source for hand body and legs damage to start is slightly less (< 1m) or closer than the distance required for head
  3. with vest on, damage to body, hands and legs start at about 5m

Good work.

May 10 2016, 7:28 AM · Arma 3
cyckuan edited Steps To Reproduce on T75126: Fire damage is causing excessive firing of the HandleDamage event.
May 10 2016, 7:28 AM · Arma 3
cyckuan added a comment to T70346: Players glitching as passengers collide with helicopter rotors.

The following is my most recent script-side workaround for this issue. Obviously this is no match compared to a native solution, hence its just an interim workaround until BI finds the solution. Basically, the boarder attempts to sync with the client holding locality over the vehicle, until the latter can confirm that the boarder is in the vehicle.

confirmGetIn = {
if (player == (driver (vehicle player))) exitWith {};
vehicleSyncNotConfirmed = true;
while { vehicleSyncNotConfirmed && (player != (vehicle player)) } do {

		systemChat "confirming vehicle boarding ...";
		pvConfirmGetIn = [player,assignedVehicle player,assignedVehicleRole player];
		publicVariable "pvConfirmGetIn";
		sleep 1;

};
};

checkGetIn = {
_unit = _this select 0;
_veh = _this select 1;
if (!local _veh) exitWith {};
_seat = _this select 2;
if ((count _seat) == 0) exitWith {};

if (_unit == (vehicle _unit)) then {

		systemChat format ["%1 boarding vehicle",name _unit];
		switch (_seat select 0) do {
			case "Driver" : { _unit moveInDriver _veh; };
			case "Cargo" : { _unit moveInCargo _veh; };
			case "Turret" : { _unit moveInTurret [_veh,_seat select 1]; };
		};
		_unit moveInAny _veh; // backup moveIn if above fails

}
else {

		systemChat format ["%1 boarded vehicle",name _unit];
		pvGetInConfirmed = _unit;
		publicVariable "pvGetInConfirmed";

};
};

"pvConfirmGetIn" addPublicVariableEventHandler {
(_this select 1) spawn checkGetIn;
};

"pvGetInConfirmed" addPublicVariableEventHandler {
if (player == (_this select 1)) exitWith { vehicleSyncNotConfirmed = false; };
};

{
_x removeAllEventHandlers "GetIn"; // change this if its affecting other GetIn event handlers
_x addEventHandler ["GetIn",{

  • spawn confirmGetIn;
		false;

}];
} forEach vehicles;
can be optimised by restricting GetIn eventhandler to only playable vehicles
dont forget to apply to newly spawned playable vehicles

May 10 2016, 5:09 AM · Arma 3
cyckuan added a comment to T70346: Players glitching as passengers collide with helicopter rotors.

After some struggle with finding a workaround to this issue, can confirm that this is an MP desync issue because, the player that is glitching sees himself as perfectly seated within the chopper in his session, whereas everyone sees the player outside of the chopper but following the chopper on the map. The glitching players name is not on the passenger list of the vehicle.

We tried a number of strategies including turning off collision detection. Turning off collision detection doesnt work because the GetIn eventhandler (or alternative vehicle player != player methods) will only fire on the session of the player that is glitching. It will not fire for everyone else because on everyone else's session, the glitching player hasnt actually boarded the chopper yet. If you still want to turn off collision detection, you can still do so for any players coming close to the vehicle but that means you take away the ability of the vehicle to run people over.

In the end, we went back to something simpler. We disabled the co-pilot seat of transport choppers. This is not a perfect fix but it takes away some of the pain.

The problem affects gunner seats also. AH-99 Blackhawks are still vulnerable to this glitch but at least, it affects less people than a transport chopper full of people.

The link below contains our temporary workaround code and observation notes on this issue.

http://www.thelanbox.com.au/forum/topic/90/temporary-pilotcheck-sqf-fix-for-co-pilot-bug/

The cause of the MP desync can be many, and not necessary limited to latency or packetloss. For example, the glitching player may have a different version of truth on which seat is occupied compared to all other players and perfectly unaware that he is occupying a seat that is already occupied by someone else.

If I have the source, I'd look into how vehicle boarding and seat allocation/negotiation is handled in multiplayer mode. Cheers.

May 10 2016, 5:09 AM · Arma 3
cyckuan added a comment to T65165: Light objects on the Map do not respond to switchLight "on", "off ", "auto "..

If you are using the hideObject workaround, bear in mind the locality of this command is "Effect Local", meaning you may have to execute it within BIS_fnc_MP for global effect (or publicVariableServer and hideObjectGlobal, the latter command only works when called on the server). Not pretty.

May 10 2016, 1:50 AM · Arma 3