From a3a0e7e2d959a608815f21b78ece7f88d3f9df91 Mon Sep 17 00:00:00 2001 From: vbawol Date: Tue, 26 Sep 2017 21:20:41 -0500 Subject: [PATCH] Changes to default var loading --- Sources/epoch_code/compile/EPOCH_unitSpawn.sqf | 7 ++++--- .../compile/EPOCH_unitSpawnDecrease.sqf | 5 +++-- .../compile/EPOCH_unitSpawnIncrease.sqf | 5 +++-- .../environment/EPOCH_client_bitePlayer.sqf | 15 +++++++++------ .../compile/functions/EPOCH_fnc_playerDeath.sqf | 7 ++++--- .../compile/functions/EPOCH_fnc_playerFired.sqf | 5 +++-- .../interface_event_handlers/EPOCH_KeyDown.sqf | 9 +++++---- .../compile/setup/EPOCH_clientRevive.sqf | 7 ++++--- .../epoch_code/compile/setup/masterLoop/init.sqf | 2 +- 9 files changed, 36 insertions(+), 26 deletions(-) diff --git a/Sources/epoch_code/compile/EPOCH_unitSpawn.sqf b/Sources/epoch_code/compile/EPOCH_unitSpawn.sqf index 29ba5fcc..49bcb8d0 100644 --- a/Sources/epoch_code/compile/EPOCH_unitSpawn.sqf +++ b/Sources/epoch_code/compile/EPOCH_unitSpawn.sqf @@ -13,7 +13,7 @@ https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/EPOCH_unitSpawn.sqf */ //[[[cog import generate_private_arrays ]]] -private ["_aiskill","_arrSkills","_arrUnits","_arrVals","_bomb","_config","_currentLimit","_disableAI","_driver","_grp","_index","_jammerRange","_jammers","_loop","_minAISkill","_missionConfig","_nonJammer","_nonTrader","_nonTraderAIRange","_playerSpawnArray","_playerSpawnArrayKey","_pos","_restricted","_sapperHndl","_sapperNum","_spawnLimit","_targetPos","_unit","_units"]; +private ["_aiskill","_arrSkills","_arrUnits","_arrVals","_bomb","_config","_currentLimit","_disableAI","_driver","_grp","_index","_jammerRange","_jammers","_loop","_minAISkill","_missionConfig","_nonJammer","_nonTrader","_nonTraderAIRange","_playerSpawnArray","_playerSpawnArrayKeyFinal","_pos","_restricted","_sapperHndl","_sapperNum","_spawnLimit","_targetPos","_unit","_units"]; //[[[end]]] params ["_unitClass",["_trgt",player],["_doVariable",false],["_unitCount",1],["_extraData",[]] ]; @@ -22,8 +22,9 @@ _bomb = objNull; _index = EPOCH_spawnIndex find _unitClass; _spawnLimit = 0; if (_index != -1) then { - if (isNil "_playerSpawnArrayKey") then {_playerSpawnArrayKey = "EPOCH_playerSpawnArray"}; - _playerSpawnArray = missionNamespace getVariable [_playerSpawnArrayKey,[]]; + _playerSpawnArrayKeyFinal = "EPOCH_playerSpawnArray"; + if (isNil "_playerSpawnArrayKey") then {_playerSpawnArrayKeyFinal = _playerSpawnArrayKey}; + _playerSpawnArray = missionNamespace getVariable [_playerSpawnArrayKeyFinal,[]]; _spawnLimit = _playerSpawnArray select _index; }; _currentLimit = count(_trgt nearEntities[_unitClass, 800]); diff --git a/Sources/epoch_code/compile/EPOCH_unitSpawnDecrease.sqf b/Sources/epoch_code/compile/EPOCH_unitSpawnDecrease.sqf index cd1b4867..5634a252 100644 --- a/Sources/epoch_code/compile/EPOCH_unitSpawnDecrease.sqf +++ b/Sources/epoch_code/compile/EPOCH_unitSpawnDecrease.sqf @@ -18,7 +18,8 @@ private ["_index","_playerSpawnArray","_playerSpawnArrayKey"]; params ["_spawnName", ["_decrease",1]]; _index = EPOCH_spawnIndex find _spawnName; if (_index != -1) then{ - if (isNil "_playerSpawnArrayKey") then {_playerSpawnArrayKey = "EPOCH_playerSpawnArray"}; - _playerSpawnArray = missionNamespace getVariable [_playerSpawnArrayKey,[]]; + _playerSpawnArrayKeyFinal = "EPOCH_playerSpawnArray"; + if (isNil "_playerSpawnArrayKey") then {_playerSpawnArrayKeyFinal = _playerSpawnArrayKey}; + _playerSpawnArray = missionNamespace getVariable [_playerSpawnArrayKeyFinal,[]]; _playerSpawnArray set[_index, ((_playerSpawnArray select _index) - _decrease) max 0]; }; diff --git a/Sources/epoch_code/compile/EPOCH_unitSpawnIncrease.sqf b/Sources/epoch_code/compile/EPOCH_unitSpawnIncrease.sqf index 217f409e..43d2a99f 100644 --- a/Sources/epoch_code/compile/EPOCH_unitSpawnIncrease.sqf +++ b/Sources/epoch_code/compile/EPOCH_unitSpawnIncrease.sqf @@ -18,7 +18,8 @@ private ["_index","_playerSpawnArray","_playerSpawnArrayKey"]; params ["_spawnName", ["_increase",1]]; _index = EPOCH_spawnIndex find _spawnName; if (_index != -1) then{ - if (isNil "_playerSpawnArrayKey") then {_playerSpawnArrayKey = "EPOCH_playerSpawnArray"}; - _playerSpawnArray = missionNamespace getVariable [_playerSpawnArrayKey,[]]; + _playerSpawnArrayKeyFinal = "EPOCH_playerSpawnArray"; + if (isNil "_playerSpawnArrayKey") then {_playerSpawnArrayKeyFinal = _playerSpawnArrayKey}; + _playerSpawnArray = missionNamespace getVariable [_playerSpawnArrayKeyFinal,[]]; _playerSpawnArray set[_index, ((_playerSpawnArray select _index) + _increase) min (EPOCH_spawnLimits select _index)]; }; diff --git a/Sources/epoch_code/compile/environment/EPOCH_client_bitePlayer.sqf b/Sources/epoch_code/compile/environment/EPOCH_client_bitePlayer.sqf index dfb8ff0b..f945d3ce 100644 --- a/Sources/epoch_code/compile/environment/EPOCH_client_bitePlayer.sqf +++ b/Sources/epoch_code/compile/environment/EPOCH_client_bitePlayer.sqf @@ -22,7 +22,7 @@ NOTHING */ //[[[cog import generate_private_arrays ]]] -private ["_animConfigArray","_animationEffect","_animationEffectGlobal","_bleedAmount","_bleedChance","_bloodpAmount","_bloodpChance","_canSee","_cfgObjectInteraction","_distance","_doAttack","_fatigueChance","_ppEffect","_say3dsoundsConfig","_selectedMove","_selectedSound","_soundConfigArray","_soundEffect","_soundEffectGlobal","_switchMovehandlerConfig","_target","_toxicAmount","_toxicChance"]; +private ["_animConfigArray","_animationEffect","_animationEffectGlobal","_bleedAmount","_bleedChance","_bloodpAmount","_bloodpChance","_canSee","_cfgObjectInteraction","_distance","_doAttack","_fatigueChance","_playerBloodPKeyFinal","_playerImmunityKeyFinal","_playerToxicityKeyFinal","_ppEffect","_say3dsoundsConfig","_selectedMove","_selectedSound","_soundConfigArray","_soundEffect","_soundEffectGlobal","_switchMovehandlerConfig","_target","_toxicAmount","_toxicChance"]; //[[[end]]] params [["_unit",objNull],["_target",player]]; if (isNull _unit && isNull _target) exitWith {}; @@ -113,16 +113,19 @@ if (_doAttack) then { }; if (random 1 < _toxicChance) then { - if (isNil "_playerToxicityKey") then {_playerToxicityKey = "EPOCH_playerToxicity"}; - if (isNil "_playerImmunityKey") then {_playerImmunityKey = "EPOCH_playerImmunity"}; - [_playerToxicityKey,random(_toxicAmount - (missionNamespace getVariable [_playerImmunityKey, 0])),100,0] call EPOCH_fnc_setVariableLimited; + _playerToxicityKeyFinal = "EPOCH_playerToxicity"; + _playerImmunityKeyFinal = "EPOCH_playerImmunity"; + if (isNil "_playerToxicityKey") then {_playerToxicityKeyFinal = _playerToxicityKey}; + if (isNil "_playerImmunityKey") then {_playerImmunityKeyFinal = _playerImmunityKey}; + [_playerToxicityKeyFinal,random(_toxicAmount - (missionNamespace getVariable [_playerImmunityKeyFinal, 0])),100,0] call EPOCH_fnc_setVariableLimited; }; if (random 1 < _bleedChance) then { player setBleedingRemaining((getBleedingRemaining player) + _bleedAmount); }; if (random 1 < _bloodpChance) then { - if (isNil "_playerBloodPKey") then {_playerBloodPKey = "EPOCH_playerBloodP"}; - [_playerBloodPKey,_bloodpAmount,100,0] call EPOCH_fnc_setVariableLimited; + _playerBloodPKeyFinal = "EPOCH_playerBloodP"; + if (isNil "_playerBloodPKey") then {_playerBloodPKeyFinal = _playerBloodPKey}; + [_playerBloodPKeyFinal,_bloodpAmount,100,0] call EPOCH_fnc_setVariableLimited; if !(_ppEffect isEqualTo []) then { [_ppEffect] spawn EPOCH_fnc_spawnEffects; }; diff --git a/Sources/epoch_code/compile/functions/EPOCH_fnc_playerDeath.sqf b/Sources/epoch_code/compile/functions/EPOCH_fnc_playerDeath.sqf index 36f4e43a..0dce5005 100644 --- a/Sources/epoch_code/compile/functions/EPOCH_fnc_playerDeath.sqf +++ b/Sources/epoch_code/compile/functions/EPOCH_fnc_playerDeath.sqf @@ -23,7 +23,7 @@ BOOL */ //[[[cog import generate_private_arrays ]]] -private ["_config","_doRevenge","_playerDeathScreen","_playerKilledScreen","_playerRevengeMinAliveTime","_tapDiag"]; +private ["_config","_doRevenge","_playerAliveTime","_playerAliveTimeKeyFinal","_playerDeathScreen","_playerKilledScreen","_playerRevengeMinAliveTime","_tapDiag"]; //[[[end]]] params [["_unit",objNull,[objNull]],["_killer",objNull,[objNull]] ]; _config = 'CfgEpochClient' call EPOCH_returnConfig; @@ -32,8 +32,9 @@ _playerRevengeMinAliveTime = getNumber(_config >> "playerRevengeMinAliveTime"); if (_playerDeathScreen isEqualTo "") then {_playerDeathScreen = "TapOut"}; _tapDiag = _playerDeathScreen; -if (isNil "_playerAliveTimeKey") then {_playerAliveTimeKey = "EPOCH_playerAliveTime"}; -_playerAliveTime = missionNamespace getVariable [_playerAliveTimeKey,[]]; +_playerAliveTimeKeyFinal = "EPOCH_playerAliveTime"; +if (isNil "_playerAliveTimeKey") then {_playerAliveTimeKeyFinal = _playerAliveTimeKey}; +_playerAliveTime = missionNamespace getVariable [_playerAliveTimeKeyFinal,[]]; _doRevenge = ((getNumber(_config >> "playerDisableRevenge") isEqualTo 0) && _playerAliveTime >= _playerRevengeMinAliveTime); diff --git a/Sources/epoch_code/compile/functions/EPOCH_fnc_playerFired.sqf b/Sources/epoch_code/compile/functions/EPOCH_fnc_playerFired.sqf index f25c2b43..fcd37273 100644 --- a/Sources/epoch_code/compile/functions/EPOCH_fnc_playerFired.sqf +++ b/Sources/epoch_code/compile/functions/EPOCH_fnc_playerFired.sqf @@ -119,7 +119,8 @@ switch true do { }; // Nuisance System 0.1 (EPOCH_customVarLimits select (EPOCH_customVars find "Nuisance")) params [["_playerLimitMax",100],["_playerLimitMin",0]]; - if (isNil "_playerNuisanceKey") then {_playerNuisanceKey = "EPOCH_playerNuisance"}; - [_playerNuisanceKey,_nuisanceLevel,_playerLimitMax,_playerLimitMin] call EPOCH_fnc_setVariableLimited; + _playerNuisanceKeyFinal = "EPOCH_playerNuisance"; + if (isNil "_playerNuisanceKey") then {_playerAliveTimeKeyFinal = _playerNuisanceKey}; + [_playerNuisanceKeyFinal,_nuisanceLevel,_playerLimitMax,_playerLimitMin] call EPOCH_fnc_setVariableLimited; }; }; diff --git a/Sources/epoch_code/compile/interface_event_handlers/EPOCH_KeyDown.sqf b/Sources/epoch_code/compile/interface_event_handlers/EPOCH_KeyDown.sqf index 6890cfa4..a76e97fe 100644 --- a/Sources/epoch_code/compile/interface_event_handlers/EPOCH_KeyDown.sqf +++ b/Sources/epoch_code/compile/interface_event_handlers/EPOCH_KeyDown.sqf @@ -26,11 +26,12 @@ BOOL */ //[[[cog import generate_private_arrays ]]] -private ["_adj","_currentPos","_handled","_playerStaminaKey","_step"]; +private ["_adj","_currentPos","_handled","_playerStaminaKeyFinal","_step"]; //[[[end]]] params ["_display","_dikCode","_shift","_ctrl","_alt"]; -if (isNil "_playerStaminaKey") then {_playerStaminaKey = "EPOCH_playerStamina"}; +_playerStaminaKeyFinal = "EPOCH_playerStamina"; +if (isNil "_playerStaminaKey") then {_playerStaminaKeyFinal = _playerStaminaKey}; _handled = false; @@ -204,13 +205,13 @@ if (vehicle player == player) then { if ((primaryWeapon player != "") && (currentWeapon player == primaryWeapon player)) then { player switchMove "AovrPercMrunSrasWrflDf"; [player, "AovrPercMrunSrasWrflDf", Epoch_personalToken] remoteExec ["EPOCH_server_handle_switchMove",2]; - [_playerStaminaKey, -30, 1000 , 0] call EPOCH_fnc_setVariableLimited; + [_playerStaminaKeyFinal, -30, 1000 , 0] call EPOCH_fnc_setVariableLimited; _handled = true; } else { if (currentWeapon player == "") then { player switchMove "epoch_unarmed_jump"; [player, "epoch_unarmed_jump", Epoch_personalToken] remoteExec ["EPOCH_server_handle_switchMove",2]; - [_playerStaminaKey, -30, 1000 , 0] call EPOCH_fnc_setVariableLimited; + [_playerStaminaKeyFinal, -30, 1000 , 0] call EPOCH_fnc_setVariableLimited; _handled = true; }; }; diff --git a/Sources/epoch_code/compile/setup/EPOCH_clientRevive.sqf b/Sources/epoch_code/compile/setup/EPOCH_clientRevive.sqf index 9743d779..99f6737e 100644 --- a/Sources/epoch_code/compile/setup/EPOCH_clientRevive.sqf +++ b/Sources/epoch_code/compile/setup/EPOCH_clientRevive.sqf @@ -24,7 +24,7 @@ NOTHING */ //[[[cog import generate_private_arrays ]]] -private ["_playerBloodPKey","_prevPlayerObject"]; +private ["_playerBloodPKeyFinal","_prevPlayerObject"]; //[[[end]]] params [ ["_playerObject",objNull,[objNull]], @@ -58,8 +58,9 @@ if !(alive player && alive _playerObject && !isPlayer _playerObject) then { Epoch_personalToken = _personalToken; // reset blood Pressure to warning level - if (isNil "_playerBloodPKey") then {_playerBloodPKey = "EPOCH_playerBloodP"}; - missionNamespace setVariable [_playerBloodPKey, 120]; + _playerBloodPKeyFinal = "EPOCH_playerBloodP"; + if (isNil "_playerBloodPKey") then {_playerBloodPKeyFinal = _playerBloodPKey}; + missionNamespace setVariable [_playerBloodPKeyFinal, 120]; // restart masterloop [] spawn EPOCH_masterLoop; diff --git a/Sources/epoch_code/compile/setup/masterLoop/init.sqf b/Sources/epoch_code/compile/setup/masterLoop/init.sqf index f2d6e4d6..74c436d1 100644 --- a/Sources/epoch_code/compile/setup/masterLoop/init.sqf +++ b/Sources/epoch_code/compile/setup/masterLoop/init.sqf @@ -31,7 +31,7 @@ _customVarLimits = _customVarsInit apply {_x param [2,[]]}; _varNameTmp = call compile format["_player%1Key",_x]; if !(isNil "_varNameTmp") then {_varName = _varNameTmp}; _varLimits params [[format["_player%1MaxRaw",_x],100],[format["_player%1MinRaw",_x],0]]; - _loadVar = missionNamespace setVariable [_varName, missionNamespace getVariable [format["EPOCH_player%1",_x], _varDefault]]; + missionNamespace setVariable [_varName, missionNamespace getVariable [format["EPOCH_player%1",_x], _varDefault]]; call compile format['_player%1 = missionNamespace getVariable [_varName, _varDefault]; _player%1Max = _player%1MaxRaw; _player%1Min = _player%1MinRaw',_x]; } forEach _customVarNames;