-
Notifications
You must be signed in to change notification settings - Fork 3
/
opcodes.c
262 lines (226 loc) · 8.25 KB
/
opcodes.c
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#include "stdafx.h"
//include CLEO header
#include "CLEO.h"
#define OPCODE_INTOP_AND 0x0B10
#define OPCODE_INTOP_OR 0x0B11
#define OPCODE_INTOP_XOR 0x0B12
#define OPCODE_INTOP_NOT 0x0B13
#define OPCODE_INTOP_MOD 0x0B14
#define OPCODE_INTOP_SHR 0x0B15
#define OPCODE_INTOP_SHL 0x0B16
#define SCR_INTOP_AND 0x0B17
#define SCR_INTOP_OR 0x0B18
#define SCR_INTOP_XOR 0x0B19
#define SCR_INTOP_NOT 0x0B1A
#define SCR_INTOP_MOD 0x0B1B
#define SCR_INTOP_SHR 0x0B1C
#define SCR_INTOP_SHL 0x0B1D
OpcodeResult WINAPI Script_IntOp_AND(CScriptThread* thread);
OpcodeResult WINAPI Script_IntOp_OR (CScriptThread* thread);
OpcodeResult WINAPI Script_IntOp_XOR(CScriptThread* thread);
OpcodeResult WINAPI Script_IntOp_NOT(CScriptThread* thread);
OpcodeResult WINAPI Script_IntOp_MOD(CScriptThread* thread);
OpcodeResult WINAPI Script_IntOp_SHR(CScriptThread* thread);
OpcodeResult WINAPI Script_IntOp_SHL(CScriptThread* thread);
OpcodeResult WINAPI Scr_IntOp_AND(CScriptThread* thread);
OpcodeResult WINAPI Scr_IntOp_OR (CScriptThread* thread);
OpcodeResult WINAPI Scr_IntOp_XOR(CScriptThread* thread);
OpcodeResult WINAPI Scr_IntOp_NOT(CScriptThread* thread);
OpcodeResult WINAPI Scr_IntOp_MOD(CScriptThread* thread);
OpcodeResult WINAPI Scr_IntOp_SHR(CScriptThread* thread);
OpcodeResult WINAPI Scr_IntOp_SHL(CScriptThread* thread);
BOOL InitOpcodes()
{
BOOL result = FALSE;
//check cleo version
if (CLEO_GetVersion() < CLEO_VERSION)
{
MessageBox(HWND_DESKTOP, "An incorrect version of CLEO was loaded.", "IntOpearations.cleo", MB_ICONERROR);
return FALSE;
}
//register opcodes
if (CLEO_RegisterOpcode(OPCODE_INTOP_AND, &Script_IntOp_AND))
result = TRUE;
if (CLEO_RegisterOpcode(OPCODE_INTOP_OR, &Script_IntOp_OR ))
result = TRUE;
if (CLEO_RegisterOpcode(OPCODE_INTOP_XOR, &Script_IntOp_XOR))
result = TRUE;
if (CLEO_RegisterOpcode(OPCODE_INTOP_NOT, &Script_IntOp_NOT))
result = TRUE;
if (CLEO_RegisterOpcode(OPCODE_INTOP_MOD, &Script_IntOp_MOD))
result = TRUE;
if (CLEO_RegisterOpcode(OPCODE_INTOP_SHR, &Script_IntOp_SHR))
result = TRUE;
if (CLEO_RegisterOpcode(OPCODE_INTOP_SHL, &Script_IntOp_SHL))
result = TRUE;
if (CLEO_RegisterOpcode(SCR_INTOP_AND, &Scr_IntOp_AND))
result = TRUE;
if (CLEO_RegisterOpcode(SCR_INTOP_OR, &Scr_IntOp_OR ))
result = TRUE;
if (CLEO_RegisterOpcode(SCR_INTOP_XOR, &Scr_IntOp_XOR))
result = TRUE;
if (CLEO_RegisterOpcode(SCR_INTOP_NOT, &Scr_IntOp_NOT))
result = TRUE;
if (CLEO_RegisterOpcode(SCR_INTOP_MOD, &Scr_IntOp_MOD))
result = TRUE;
if (CLEO_RegisterOpcode(SCR_INTOP_SHR, &Scr_IntOp_SHR))
result = TRUE;
if (CLEO_RegisterOpcode(SCR_INTOP_SHL, &Scr_IntOp_SHL))
result = TRUE;
return result;
}
OpcodeResult WINAPI Script_IntOp_AND(CScriptThread* thread)
/****************************************************************
Opcode Format
0B10=3,%3d% = %1d% AND %2d%
****************************************************************/
{
int a = CLEO_GetIntOpcodeParam(thread);
int b = CLEO_GetIntOpcodeParam(thread);
CLEO_SetIntOpcodeParam(thread, a & b);
return OR_CONTINUE;
}
OpcodeResult WINAPI Script_IntOp_OR(CScriptThread* thread)
/****************************************************************
Opcode Format
0B11=3,%3d% = %1d% OR %2d%
****************************************************************/
{
int a = CLEO_GetIntOpcodeParam(thread);
int b = CLEO_GetIntOpcodeParam(thread);
CLEO_SetIntOpcodeParam(thread, a | b);
return OR_CONTINUE;
}
OpcodeResult WINAPI Script_IntOp_XOR(CScriptThread* thread)
/****************************************************************
Opcode Format
0B12=3,%3d% = %1d% XOR %2d%
****************************************************************/
{
int a = CLEO_GetIntOpcodeParam(thread);
int b = CLEO_GetIntOpcodeParam(thread);
CLEO_SetIntOpcodeParam(thread, a ^ b);
return OR_CONTINUE;
}
OpcodeResult WINAPI Script_IntOp_NOT(CScriptThread* thread)
/****************************************************************
Opcode Format
0B13=2,%2d% = NOT %1d%
****************************************************************/
{
int a = CLEO_GetIntOpcodeParam(thread);
CLEO_SetIntOpcodeParam(thread, ~a);
return OR_CONTINUE;
}
OpcodeResult WINAPI Script_IntOp_MOD(CScriptThread* thread)
/****************************************************************
Opcode Format
0B14=3,%3d% = %1d% MOD %2d%
****************************************************************/
{
int a = CLEO_GetIntOpcodeParam(thread);
int b = CLEO_GetIntOpcodeParam(thread);
CLEO_SetIntOpcodeParam(thread, a % b);
return OR_CONTINUE;
}
OpcodeResult WINAPI Script_IntOp_SHR(CScriptThread* thread)
/****************************************************************
Opcode Format
0B15=3,%3d% = %1d% SHR %2d%
****************************************************************/
{
int a = CLEO_GetIntOpcodeParam(thread);
int b = CLEO_GetIntOpcodeParam(thread);
CLEO_SetIntOpcodeParam(thread, a >> b);
return OR_CONTINUE;
}
OpcodeResult WINAPI Script_IntOp_SHL(CScriptThread* thread)
/****************************************************************
Opcode Format
0B16=3,%3d% = %1d% SHL %2d%
****************************************************************/
{
int a = CLEO_GetIntOpcodeParam(thread);
int b = CLEO_GetIntOpcodeParam(thread);
CLEO_SetIntOpcodeParam(thread, a << b);
return OR_CONTINUE;
}
/****************************************************************
Now do them as real operators...
*****************************************************************/
OpcodeResult WINAPI Scr_IntOp_AND(CScriptThread* thread)
/****************************************************************
Opcode Format
0B17=2,%1d% &= %2d%
****************************************************************/
{
SCRIPT_VAR * op = CLEO_GetPointerToScriptVariable(thread);
int val = CLEO_GetIntOpcodeParam(thread);
op->dwParam &= val;
return OR_CONTINUE;
}
OpcodeResult WINAPI Scr_IntOp_OR(CScriptThread* thread)
/****************************************************************
Opcode Format
0B18=2,%1d% |= %2d%
****************************************************************/
{
SCRIPT_VAR * op = CLEO_GetPointerToScriptVariable(thread);
int val = CLEO_GetIntOpcodeParam(thread);
op->dwParam |= val;
return OR_CONTINUE;
}
OpcodeResult WINAPI Scr_IntOp_XOR(CScriptThread* thread)
/****************************************************************
Opcode Format
0B19=2,%1d% ^= %2d%
****************************************************************/
{
SCRIPT_VAR * op = CLEO_GetPointerToScriptVariable(thread);
int val = CLEO_GetIntOpcodeParam(thread);
op->dwParam ^= val;
return OR_CONTINUE;
}
OpcodeResult WINAPI Scr_IntOp_NOT(CScriptThread* thread)
/****************************************************************
Opcode Format
0B1A=1,~%1d%
****************************************************************/
{
SCRIPT_VAR * op = CLEO_GetPointerToScriptVariable(thread);
op->dwParam = ~op->dwParam;
return OR_CONTINUE;
}
OpcodeResult WINAPI Scr_IntOp_MOD(CScriptThread* thread)
/****************************************************************
Opcode Format
0B1B=2,%1d% %= %2d%
****************************************************************/
{
SCRIPT_VAR * op = CLEO_GetPointerToScriptVariable(thread);
int val = CLEO_GetIntOpcodeParam(thread);
op->dwParam %= val;
return OR_CONTINUE;
}
OpcodeResult WINAPI Scr_IntOp_SHR(CScriptThread* thread)
/****************************************************************
Opcode Format
0B1C=3,%1d% >>= %2d%
****************************************************************/
{
SCRIPT_VAR * op = CLEO_GetPointerToScriptVariable(thread);
int val = CLEO_GetIntOpcodeParam(thread);
op->dwParam >>= val;
return OR_CONTINUE;
}
OpcodeResult WINAPI Scr_IntOp_SHL(CScriptThread* thread)
/****************************************************************
Opcode Format
0B1D=3,%1d% <<= %2d%
****************************************************************/
{
SCRIPT_VAR * op = CLEO_GetPointerToScriptVariable(thread);
int val = CLEO_GetIntOpcodeParam(thread);
op->dwParam <<= val;
return OR_CONTINUE;
}