From ba9fc9240c76c1c6522aa6fb36006d7b7eeaaecc Mon Sep 17 00:00:00 2001 From: BaerMitUmlaut Date: Mon, 7 Nov 2016 23:44:33 +0100 Subject: [PATCH] Removed traces of old state machine --- addons/medical/XEH_PREP.hpp | 4 -- .../functions/fnc_createStateMachine.sqf | 59 ------------------- .../functions/fnc_handleUnitVitals.sqf | 2 +- .../medical/functions/fnc_setUnconscious.sqf | 2 +- addons/medical/functions/fnc_stateEvent.sqf | 52 ---------------- addons/medical/functions/fnc_stateMachine.sqf | 45 -------------- .../medical/functions/fnc_unconsciousPFH.sqf | 2 +- 7 files changed, 3 insertions(+), 163 deletions(-) delete mode 100644 addons/medical/functions/fnc_createStateMachine.sqf delete mode 100644 addons/medical/functions/fnc_stateEvent.sqf delete mode 100644 addons/medical/functions/fnc_stateMachine.sqf diff --git a/addons/medical/XEH_PREP.hpp b/addons/medical/XEH_PREP.hpp index ba7d979932..dab8edcb16 100644 --- a/addons/medical/XEH_PREP.hpp +++ b/addons/medical/XEH_PREP.hpp @@ -1,7 +1,5 @@ -PREP(addStateHandler); PREP(adjustPainLevel); -PREP(createStateMachine); PREP(getBloodLoss); PREP(getBloodPressure); PREP(getBloodVolumeChange); @@ -14,8 +12,6 @@ PREP(isInMedicalVehicle); PREP(isInStableCondition); PREP(isMedic); PREP(isMedicalVehicle); -PREP(stateEvent); -PREP(stateMachine); // PREP(hasMedicalEnabled); diff --git a/addons/medical/functions/fnc_createStateMachine.sqf b/addons/medical/functions/fnc_createStateMachine.sqf deleted file mode 100644 index 5154d2cedb..0000000000 --- a/addons/medical/functions/fnc_createStateMachine.sqf +++ /dev/null @@ -1,59 +0,0 @@ -#include "script_component.hpp" - -params ["_stateMachineConfig"]; - -private _getCode = { - params ["_config", "_attribute"]; - private _value = getText (_config >> _attribute); - if (isNil {missionNamespace getVariable _value}) exitWith { - if (_value == "") then {_value = "true"}; - systemChat format ["getCode (%1) is returning nil: %3", _attribute, missionnamespace getVariable _value, _value]; - diag_log format ["getCode (%1) is returning nil: %3", _attribute, missionnamespace getVariable _value, _value]; - - compile _value; - }; - missionNamespace getVariable _value; -}; - -private _stateMachine = call CBA_fnc_createNamespace; - -private _states = []; -{ - private _stateName = configName _x; - private _onState = [_x, "onState"] call _getCode; - private _onEntry = [_x, "onEntry"] call _getCode; - private _onExit = [_x, "onExit"] call _getCode; - - // Collect all the transitions for the state - private _transitions = []; - { - private _transitionName = configName _x; - private _targetState = getText (_x >> "targetState"); - private _events = getArray (_x >> "events") apply { toLower _x}; - private _condition = [_x, "condition"] call _getCode; - private _onTransition = [_x, "onTransition"] call _getCode; - - _transitions pushBack [_transitionName, _condition, _events, _onTransition, _targetState]; - } forEach ("true" configClasses _x); - _states pushBack [_stateName, _onState, _onEntry, _onExit, _transitions]; -} forEach ("true" configClasses _stateMachineConfig); - -// Helper method for finding the desired state when linking (See below) -private _getState = { - params ["_stateName"]; - private _state = ["Invalid", {}, {}, {}, []]; - { - if (_stateName == (_x select 0)) exitWith {_state = _x}; - } forEach _states; - _state; -}; - -_stateMachine setvariable [QGVAR(allStates), _states]; - -// Now we have collected all the states, link them in transitions so we do not have to look them up on state transitions -{ - _x params ["_stateName"]; - _stateMachine setvariable [_stateName, _x]; -} forEach _states; - -_stateMachine; diff --git a/addons/medical/functions/fnc_handleUnitVitals.sqf b/addons/medical/functions/fnc_handleUnitVitals.sqf index 715134a373..c5fad60801 100644 --- a/addons/medical/functions/fnc_handleUnitVitals.sqf +++ b/addons/medical/functions/fnc_handleUnitVitals.sqf @@ -52,7 +52,7 @@ TRACE_3("ACE_DEBUG",_bloodLoss,_unit getVariable QGVAR(isBleeding),_unit); if (_bloodLoss > 0) then { _unit setVariable [QGVAR(bloodloss), _bloodLoss, _syncValues]; - [_unit, "TakenInjury"] call FUNC(stateEvent); + [QGVAR(TakenInjury), _unit] call CBA_fnc_localEvent; if !(_unit getVariable [QGVAR(isBleeding), false]) then { _unit setVariable [QGVAR(isBleeding), true, true]; diff --git a/addons/medical/functions/fnc_setUnconscious.sqf b/addons/medical/functions/fnc_setUnconscious.sqf index 65eadf6e85..bfaf75ce4a 100644 --- a/addons/medical/functions/fnc_setUnconscious.sqf +++ b/addons/medical/functions/fnc_setUnconscious.sqf @@ -81,7 +81,7 @@ if (_isDead) exitWith {}; */ [_unit, true] call EFUNC(medical_engine,setUnconsciousAnim); -[_unit, "Unconscious", []] call FUNC(stateEvent); +[QGVAR(Unconscious), _unit] call CBA_fnc_localEvent; ["ace_unconscious", [_unit, true]] call CBA_fnc_globalEvent; // auto wake up diff --git a/addons/medical/functions/fnc_stateEvent.sqf b/addons/medical/functions/fnc_stateEvent.sqf deleted file mode 100644 index 658497bb1e..0000000000 --- a/addons/medical/functions/fnc_stateEvent.sqf +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Author: Glowbal - * - * - * Arguments: - * 0: The Unit - * 1: Event name - * 2: Event Arguments - * - * ReturnValue: - * Name of the state after handling the state event - * - * Example: - * [unit, "TakenInjury", []] call ace_medical_stateEvent; - * - * Public: No - */ - -#include "script_component.hpp" - -params ["_unit", "_event", "_args"]; -diag_log format["ace_medical_stateEvent: %1", _this]; - -_event = toLower _event; - -private _unitState = _unit getVariable [QGVAR(state), [CBA_missionTime, GVAR(STATE_MACHINE) getVariable "Default"]]; -_unitState params ["_lastTime", "_state"]; -_state params ["_name", "_handler", "_onEntry", "_onExit", "_transitions"]; - -private _newStateName = _name; -{ - _x params ["_transitionName", "_condition", "_events", "_onTransition", "_targetStateName"]; - - if (_event in _events && {[_unit, _event, _args] call _condition}) exitWith { - private _targetState = GVAR(STATE_MACHINE) getVariable _targetStateName; - - _targetState params ["_targetStateName", "_targetStateHandler", "_targetStateOnEntry", "_targetStateOnExit", "_targetStateTansitions"]; - _newStateName = _targetStateName; - // Handle state leaving - [_unit, _event, _args] call _onExit; - [_unit, _event, _args] call _onTransition; - - // Switch the state - _unitState set [1, _targetState]; - _unit setvariable [QGVAR(state), _unitState]; - - // Enter the state - [_unit, _event, _args] call _targetStateOnEntry; - }; -} forEach _transitions; - -_newStateName; diff --git a/addons/medical/functions/fnc_stateMachine.sqf b/addons/medical/functions/fnc_stateMachine.sqf deleted file mode 100644 index 1f2dfed966..0000000000 --- a/addons/medical/functions/fnc_stateMachine.sqf +++ /dev/null @@ -1,45 +0,0 @@ -#include "script_component.hpp" - -// Delay between state runs -#define DELAY 1 -#define DEFAULT_STATE [0, "Default", {}, {}, {}, []] - -GVAR(monitoredUnitsList) = []; -GVAR(monitoredUnitsListIsSorted) = false; - -[{ - params ["_args", "_pfhId"]; - - if (!GVAR(monitoredUnitsListIsSorted)) then { - GVAR(monitoredUnitsList) sort true; - GVAR(monitoredUnitsListIsSorted) = true; - }; - - private _delete = false; - private _exit = false; - { - _x params ["_unit"]; - - if (!isNull _unit && alive _unit) then { - private _unitState = _unit getVariable [QGVAR(state), [-1, DEFAULT_STATE]]; - _unitState params ["_lastTime", "_state"]; - - if (CBA_missionTime - _lastTime < DELAY) exitWith { _exit = true; }; - _state params ["_name", "_handler", "_onEntry", "_onExit", "_transitions"]; - - _unitState set [0, CBA_missionTime]; - - _unit setvariable [QGVAR(state), _unitState]; - - [_unit, _name, _lastTime] call _handler; - } else { - _delete = true; - GVAR(monitoredUnitsList) set [_forEachIndex, objNull]; - }; - if (_exit) exitWith {}; - } forEach GVAR(monitoredUnitsList); - - if (_delete) then { - GVAR(monitoredUnitsList) = GVAR(monitoredUnitsList) - [objNull]; - }; -}, 0, []] call CBA_fnc_addPerFrameHandler; diff --git a/addons/medical/functions/fnc_unconsciousPFH.sqf b/addons/medical/functions/fnc_unconsciousPFH.sqf index 3c29190c42..31bd92d1ef 100644 --- a/addons/medical/functions/fnc_unconsciousPFH.sqf +++ b/addons/medical/functions/fnc_unconsciousPFH.sqf @@ -140,6 +140,6 @@ if ((CBA_missionTime - _startingTime) >= _minWaitingTime) exitWith { TRACE_2("ACE_DEBUG_Unconscious_Temp knock outs",_unit, [_unit] call FUNC(getUnconsciousCondition)); if (!([_unit] call FUNC(getUnconsciousCondition))) then { //_unit setVariable ["ACE_isUnconscious", false, true]; - [_unit, "MinUnconsciousTimer", []] call FUNC(stateEvent); + [QGVAR(MinUnconsciousTimer), _unit] call CBA_fnc_localEvent; }; };