From 9f30d166cc347f938f47e29cb623d93b2c7125bd Mon Sep 17 00:00:00 2001 From: vbawol Date: Thu, 17 Sep 2015 11:31:33 -0500 Subject: [PATCH] unused --- Sources/epoch_code/System/LOGIN.fsm | 114 ---------------------------- 1 file changed, 114 deletions(-) delete mode 100644 Sources/epoch_code/System/LOGIN.fsm diff --git a/Sources/epoch_code/System/LOGIN.fsm b/Sources/epoch_code/System/LOGIN.fsm deleted file mode 100644 index 8300290a..00000000 --- a/Sources/epoch_code/System/LOGIN.fsm +++ /dev/null @@ -1,114 +0,0 @@ -/*%FSM*/ -/*%FSM*/ -/* -item0[] = {"Init",0,250,-300.000000,-225.000000,-200.000000,-175.000000,0.000000,"Init"}; -item1[] = {"_",8,218,-300.000000,-150.000000,-200.000000,-100.000000,0.000000,""}; -item2[] = {"Process",2,250,-300.000000,-75.000000,-200.000000,-25.000000,0.000000,"Process"}; -item3[] = {"Login",4,218,-150.000000,-75.000000,-50.000000,-25.000000,0.000000,"Login"}; -item4[] = {"Return_Random_Auth",2,250,-150.000000,0.000000,-50.000000,50.000000,0.000000,"Return Random" \n "Auth String"}; -item5[] = {"Wait_for__Random",4,218,-25.000000,0.000000,75.000000,50.000000,0.000000,"Wait for " \n "Random PVC"}; -item6[] = {"Start_Client_Code",2,4346,-25.000000,75.000000,75.000000,125.000000,0.000000,"Start Client" \n "Code Push" \n ""}; -link0[] = {0,1}; -link1[] = {1,2}; -link2[] = {2,3}; -link3[] = {3,4}; -link4[] = {4,5}; -link5[] = {5,6}; -globals[] = {25.000000,1,0,0,16777215,640,480,1,128,6316128,1,-477.081665,110.859840,361.256592,-272.021912,817,880,1}; -window[] = {2,-1,-1,-32000,-32000,776,274,1299,39,3,835}; -*//*%FSM*/ -class FSM -{ - fsmName = "LOGIN"; - class States - { - /*%FSM*/ - class Init - { - name = "Init"; - init = /*%FSM*/"diag_log ""Loaded Client Side EAH"";" \n - "" \n - "// NOTES " \n - "// 1st PVC" \n - "// EPOCH_login_PVC = first random string for next PVC" \n - "// 2nd PVC" \n - "// _randomPVC = EPOCH_login_PVC"/*%FSM*/; - precondition = /*%FSM*/""/*%FSM*/; - class Links - { - /*%FSM*/ - class _ - { - priority = 0.000000; - to="Process"; - precondition = /*%FSM*/""/*%FSM*/; - condition=/*%FSM*/"true"/*%FSM*/; - action=/*%FSM*/""/*%FSM*/; - }; - /*%FSM*/ - }; - }; - /*%FSM*/ - /*%FSM*/ - class Process - { - name = "Process"; - init = /*%FSM*/"// "/*%FSM*/; - precondition = /*%FSM*/""/*%FSM*/; - class Links - { - /*%FSM*/ - class Login - { - priority = 0.000000; - to="Return_Random_Auth"; - precondition = /*%FSM*/""/*%FSM*/; - condition=/*%FSM*/"!isNil ""EPOCH_login_PVC"""/*%FSM*/; - action=/*%FSM*/"_randomPVC = EPOCH_login_PVC;" \n - "EPOCH_login_PVC = nil;"/*%FSM*/; - }; - /*%FSM*/ - }; - }; - /*%FSM*/ - /*%FSM*/ - class Return_Random_Auth - { - name = "Return_Random_Auth"; - init = /*%FSM*/"PLAYER_LOGIN = _randomPVC;" \n - "publicVariableServer ""PLAYER_LOGIN"";"/*%FSM*/; - precondition = /*%FSM*/""/*%FSM*/; - class Links - { - /*%FSM*/ - class Wait_for__Random - { - priority = 0.000000; - to="Start_Client_Code"; - precondition = /*%FSM*/""/*%FSM*/; - condition=/*%FSM*/"!isNil _randomPVC"/*%FSM*/; - action=/*%FSM*/"_data = missionNamespace getVariable [_randomPVC,""""];" \n - "missionNamespace setVariable [_randomPVC,nil];"/*%FSM*/; - }; - /*%FSM*/ - }; - }; - /*%FSM*/ - /*%FSM*/ - class Start_Client_Code - { - name = "Start_Client_Code"; - init = /*%FSM*/"call compile _data;"/*%FSM*/; - precondition = /*%FSM*/""/*%FSM*/; - class Links - { - }; - }; - /*%FSM*/ - }; - initState="Init"; - finalStates[] = - { - }; -}; -/*%FSM*/ \ No newline at end of file