ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
ws_machine.h
1 
2 /* ScummVM - Graphic Adventure Engine
3  *
4  * ScummVM is the legal property of its developers, whose names
5  * are too numerous to list here. Please refer to the COPYRIGHT
6  * file distributed with this source distribution.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  *
21  */
22 
23 #ifndef M4_WSCRIPT_WS_MACHINE_H
24 #define M4_WSCRIPT_WS_MACHINE_H
25 
26 #include "common/algorithm.h"
27 #include "m4/m4_types.h"
28 #include "m4/gui/gui.h"
29 
30 namespace M4 {
31 
32 #define DEAD_MACHINE_ID 0xdeaddead
33 
34 enum {
35  NOSEPICK = 0,
36  STARTWALK = 1,
37  WALKSEQ = 2,
38  ENDWALK = 3,
39  DEMAND_FACING = 4,
40  DEMAND_LOCATION = 5,
41  TERMINATE = 6,
42  PLAYER_HIDE = 7,
43  PLAYER_UNHIDE = 8,
44  TURN_TO_FACE = 9,
45  ACTION_11 = 11,
46  ACTION_12 = 12,
47  ACTION_13 = 13,
48  ACTION_14 = 14,
49  ACTION_15 = 15,
50  ACTION_17 = 17,
51  ACTION_18 = 18,
52  ACTION_19 = 19,
53  ACTION_20 = 20,
54  ACTION_21 = 21,
55  ACTION_22 = 22,
56  ACTION_23 = 23,
57  ACTION_24 = 24,
58  ACTION_25 = 25,
59  ACTION_26 = 26,
60  ACTION_27 = 27,
61  ACTION_28 = 28,
62  ACTION_29 = 29,
63  ACTION_30 = 30,
64  ACTION_31 = 31,
65  ACTION_32 = 32,
66  ACTION_33 = 33,
67  ACTION_666 = 666,
68  ACTION_900 = 900,
69  ACTION_902 = 902
70 };
71 
72 // A message request
73 struct msgRequest {
74  msgRequest *nextMsg = nullptr;
75  uint32 msgHash = 0;
76  frac16 msgValue = 0;
77  int32 pcOffset = 0;
78  int32 pcCount = 0;
79 };
80 
81 struct machine;
82 typedef void (*MessageCB)(frac16 myMessage, struct machine *sender);
83 
84 //timebase request structure.
85 struct onTimeReq {
86  onTimeReq *next = nullptr;
87  int32 myTime = 0;
88  struct machine *myXM = nullptr;
89  int32 pcOffset = 0;
90  int32 pcCount = 0;
91 };
92 
93 // rails algorithm struct
94 struct railNode {
95  uint8 nodeID = 0;
96  int32 x = 0, y = 0;
97  railNode *shortPath = nullptr;
98  int32 pathWeight = 0;
99 };
100 
101 struct CCB {
102  uint32 flags = 0;
103  M4sprite *source = nullptr;
104  M4Rect *currLocation = nullptr;
105  M4Rect *newLocation = nullptr;
106  M4Rect *maxArea = nullptr;
107  int32 scaleX = 0;
108  int32 scaleY = 0;
109  int32 layer = 0;
110  uint32 *streamSSHeader = nullptr;
111  uint32 *streamSpriteSource = nullptr;
112  void *myStream = nullptr;
113  char *seriesName = nullptr;
114 };
115 
116 #define JSR_STACK_MAX 8
117 struct Anim8 {
118  machine *myMachine = nullptr; // Pointer back to myMachine
119  int32 eosReqOffset = 0; // The machine PC offset to be executed at the EOS
120  int32 eosReqCount = 0;
121  Anim8 *next = nullptr; // The linked list used for execution order
122  Anim8 *prev = nullptr;
123  int32 myLayer = 0;
124  Anim8 *infront = nullptr; // The linked list used for layering
125  Anim8 *behind = nullptr;
126  Anim8 *myParent = nullptr; // The parent anim8
127  int32 sequHash = 0; // The current sequence Hash = 0;
128  MemHandle sequHandle = nullptr; // The sequence Handle
129  int32 pcOffset = 0; // The offset into the sequence of the current PC
130  CCB *myCCB = nullptr;
131  int32 dataHash = 0; // The array of data
132  MemHandle dataHandle = nullptr;
133  int32 dataOffset = 0;
134  int32 startTime = 0;
135  int32 switchTime = 0;
136  frac16 transTime = 0;
137  int32 flags = 0;
138  frac16 start_s = 0;
139  frac16 start_r = 0;
140  frac16 start_x = 0;
141  frac16 start_y = 0;
142  int32 numLocalVars = 0;
143  frac16 *myRegs = nullptr;
144  bool active = false;
145  int32 returnStackIndex = 0;
146  uint32 returnHashes[JSR_STACK_MAX] = { 0 };
147  int32 returnOffsets[JSR_STACK_MAX] = { 0 };
148 
149  Anim8() {
150  Common::fill(returnHashes, returnHashes + JSR_STACK_MAX, 0);
151  Common::fill(returnOffsets, returnOffsets + JSR_STACK_MAX, 0);
152  }
153 };
154 
155 struct machine {
156  machine *next = nullptr;
157  machine *prev = nullptr;
158  uint32 myHash = 0;
159  uint32 machID = 0;
160  char *machName = nullptr;
161  MemHandle machHandle = 0;
162  int32 machInstrOffset = 0;
163  int32 stateTableOffset = 0;
164  int32 curState = 0;
165  int32 numOfStates = 0;
166  uint32 recurseLevel = 0;
167  Anim8 *myAnim8 = nullptr;
168  Anim8 *parentAnim8 = nullptr;
169  int32 dataHash = 0;
170  MemHandle dataHandle = 0;
171  int32 dataOffset = 0;
172  int32 targetCount = 0;
173  struct machine *msgReplyXM = nullptr;
174  MessageCB CintrMsg;
175  msgRequest *myMsgs = nullptr;
176  msgRequest *myPersistentMsgs = nullptr;
177  msgRequest *usedPersistentMsgs = nullptr;
178  railNode *walkPath = nullptr;
179 };
180 
181 struct globalMsgReq {
182  globalMsgReq *next = nullptr;
183  ulong msgHash = 0;
184  frac16 msgValue = 0;
185  ulong machHash = 0;
186  machine *sendM = nullptr;
187  int32 msgCount = 0;
188 };
189 
191  int32 _pauseTime = 0;
192  int32 _oldTime = 0;
193  bool _enginesPaused = false;
194 
195  int32 *_dataFormats = nullptr;
196  uint32 _machineIDCount = 0;
197  machine *_firstMachine = nullptr;
198 
199  machine *_nextXM = nullptr;
200  globalMsgReq *_myGlobalMessages = nullptr;
201 
202  // Used for processing pCodes
203  frac16 *_ws_globals = nullptr;
204  void *_addrExists = nullptr;
205 };
206 
207 bool ws_Initialize(frac16 *theGlobals);
208 void ws_Shutdown();
209 void pauseEngines();
210 void unpauseEngines();
211 void addPauseTime(int32 myTime);
212 
213 void cycleEngines(Buffer *cleanBackground, int16 *depth_table, Buffer *screenCodes,
214  uint8 *myPalette, uint8 *ICT, bool updateVideo);
215 void ws_RefreshWoodscriptBuffer(Buffer *cleanBackground, int16 *depth_table,
216  Buffer *screenCodes, uint8 *myPalette, uint8 *ICT);
217 
218 void terminateMachine(machine *m);
219 void terminateMachinesByHash(uint32 machHash);
220 void terminateMachineAndNull(machine *&m);
221 bool verifyMachineExists(machine *m);
222 int32 ws_KillMachines();
223 void ws_KillDeadMachines();
224 void ws_StepWhile(machine *m, int32 pcOffset, int32 pcCount);
225 void IntoTheState(machine *m);
226 machine *TriggerMachineByHash(int32 myHash, Anim8 *parentAnim8, int32 dataHash, int32 dataRow, MessageCB CintrMsg, bool debug, const char *machName);
227 machine *TriggerMachineByHash(int32 val1, int32 val2, int32 val3, int32 val4, int32 val5, int32 val6,
228  int32 x, int32 y, int32 scale, int32 layer, bool flag,
229  MessageCB intrMsg, const char *machName);
230 machine *TriggerMachineByHash(MessageCB intrMsg, const char *machName);
231 
235 void sendWSMessage(uint32 msgHash, frac16 msgValue, machine *recvM,
236  uint32 machHash, machine *sendM, int32 msgCount);
237 void sendWSMessage(int32 val1, machine *recv, int32 series1, int32 val3, int32 val4,
238  int32 trigger, int32 series2, int32 val6, int32 val7, int32 val8);
239 
240 #define kernel_spawn_machine(name,hash,callback) TriggerMachineByHash(hash, nullptr, -1, -1, callback, false, name)
241 #define kernel_terminate_machine(m) terminateMachine(m)
242 
243 } // End of namespace M4
244 
245 #endif
Definition: ws_machine.h:155
Definition: ws_machine.h:85
Definition: ws_machine.h:117
Definition: ws_machine.h:73
intptr frac16
Definition: m4_types.h:46
Graphics::Surface * scale(const Graphics::Surface &srcImage, int xSize, int ySize)
void debug(MSVC_PRINTF const char *s,...) GCC_PRINTF(1
Definition: m4_types.h:67
Definition: database.h:28
Definition: gui.h:31
Definition: ws_machine.h:181
Definition: ws_machine.h:190
signed char * fill(signed char *first, signed char *last, Value val)
Definition: algorithm.h:168
Definition: ws_machine.h:94
Definition: ws_machine.h:101
Definition: gui.h:52
void sendWSMessage(uint32 msgHash, frac16 msgValue, machine *recvM, uint32 machHash, machine *sendM, int32 msgCount)