[r34]: / trunk / Display_Escape_PLC / Plc Logic / Application / Types / PuzzleClient / svnobj  Maximize  Restore  History

Download this file

30 lines (28 with data), 2.8 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
TYPE PuzzleClient EXTENDS Client  :
STRUCT
	ID: INT;
    Name : STRING;
	GUID : STRING;
	
    LockCommands : ARRAY[0..50] OF STRING[25];
	KeyCommands : ARRAY[0..50] OF STRING[25];
	IOCommands : ARRAY[0..50] OF STRING[25];
	MediaCommands : ARRAY[0..50] OF STRING[25];
	MinDuration: TIME;
	MaxDuration: TIME;
	ActualState:PACK_ML.State;
    ActualStep:INT;
    Message:STRING;
    ErrorCode:INT;
    ErrorMessage:STRING;
	Progress: INT;	
	Level: Level; (*1=Beginner, 5=Advanced*)
	Duration: TIME;	
	Mode: Mode;	
	//bReadyToPLC: BOOL;
	//sCommandToPLC: STRING;
	//iCommandToPLC: CommandType;
	//bReadyFromPLC: BOOL;
	//sCommandFromPLC: STRING;
	//iCommandFromPLC: CommandType;
END_STRUCT
END_TYPE*