[r42]: / branches / SBSI / Vision_Game_PLC / Plc Logic / Application / Function Blocks / Puzzle / Vision_GameStateMachine / svnobj  Maximize  Restore  History

Download this file

40 lines (38 with data), 10.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//---- Client init  ----\\
IF NOT xInit THEN	
	UM				(		sName := 'Normal Operation', 
							dwAllowsLeavingFromStates := PACK_ML.State.Stopped OR PACK_ML.State.Aborted OR PACK_ML.State.Idle, 
		IF SysStrCmp(Client.sCommandToPLC, Client.LockCommands[0]) =  0 THEN		
			//First Lock Function
		ELSIF SysStrCmp(Client.sCommandToPLC, Client.LockCommands[1]) =  0 THEN		
			//Second Lock Function
		ELSIF SysStrCmp(Client.sCommandToPLC, 'UnSuspend') =  0 THEN		
			UnSuspend();
		
	END_CASE
	Client.iCommandToPLC := 0;
	Client.sCommandToPLC := '';
	Client.bReadyToPLC := FALSE;
//---- Client statemachine  ----\\
CASE UM.CurrentState OF
PACK_ML.State.Stopped:
	;
PACK_ML.State.Aborted:
PACK_ML.State.Idle:
PACK_ML.State.Complete :	
PACK_ML.State.Execute :
PACK_ML.State.Resetting :
	StateComplete();
PACK_ML.State.Starting :
PACK_ML.State.Completing :
PACK_ML.State.Aborting :
PACK_ML.State.Stopping:
PACK_ML.State.Clearing :	
END_CASE
//---- Emergency ----\\
IF NOT Emergency THEN
	// Emergency Abort.
	Abort();	
END_IF 
//---- State handling ----\\
Client.ActualState := UM.CurrentState;
messageQueue(Client := Client);