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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
|
/* Cheat Support for PCSX-Reloaded
*
* Copyright (c) 2009, Wei Mingzhi <whistler@openoffice.org>.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Steet, Fifth Floor, Boston, MA 02111-1307 USA
*/
#include "psxcommon.h"
#include "r3000a.h"
#include "psxmem.h"
#include "cheat.h"
Cheat *Cheats = NULL;
int NumCheats = 0;
static int NumCheatsAllocated = 0;
CheatCode *CheatCodes = NULL;
int NumCodes = 0;
static int NumCodesAllocated = 0;
#define ALLOC_INCREMENT 100
// cheat types
#define CHEAT_CONST8 0x30 /* 8-bit Constant Write */
#define CHEAT_CONST16 0x80 /* 16-bit Constant Write */
#define CHEAT_INC16 0x10 /* 16-bit Increment */
#define CHEAT_DEC16 0x11 /* 16-bit Decrement */
#define CHEAT_INC8 0x20 /* 8-bit Increment */
#define CHEAT_DEC8 0x21 /* 8-bit Decrement */
#define CHEAT_SLIDE 0x50 /* Slide Codes */
#define CHEAT_MEMCPY 0xC2 /* Memory Copy */
#define CHEAT_EQU8 0xE0 /* 8-bit Equal To */
#define CHEAT_NOTEQU8 0xE1 /* 8-bit Not Equal To */
#define CHEAT_LESSTHAN8 0xE2 /* 8-bit Less Than */
#define CHEAT_GREATERTHAN8 0xE3 /* 8-bit Greater Than */
#define CHEAT_EQU16 0xD0 /* 16-bit Equal To */
#define CHEAT_NOTEQU16 0xD1 /* 16-bit Not Equal To */
#define CHEAT_LESSTHAN16 0xD2 /* 16-bit Less Than */
#define CHEAT_GREATERTHAN16 0xD3 /* 16-bit Greater Than */
void ClearAllCheats() {
int i;
if (Cheats != NULL) {
for (i = 0; i < NumCheats; i++) {
free(Cheats[i].Descr);
}
free(Cheats);
}
Cheats = NULL;
NumCheats = 0;
NumCheatsAllocated = 0;
if (CheatCodes != NULL) {
free(CheatCodes);
}
CheatCodes = NULL;
NumCodes = 0;
NumCodesAllocated = 0;
}
// load cheats from the specific filename
void LoadCheats(const char *filename) {
FILE *fp;
char buf[256];
int count = 0;
unsigned int t1, t2;
fp = fopen(filename, "r");
if (fp == NULL) {
return;
}
ClearAllCheats();
while (fgets(buf, 255, fp) != NULL) {
buf[255] = '\0';
trim(buf);
// Skip comment or blank lines
if (buf[0] == '#' || buf[0] == ';' || buf[0] == '/' || buf[0] == '\"' || buf[0] == '\0')
continue;
if (buf[0] == '[' && buf[strlen(buf) - 1] == ']') {
if (NumCheats > 0)
Cheats[NumCheats - 1].n = count;
if (NumCheats >= NumCheatsAllocated) {
NumCheatsAllocated += ALLOC_INCREMENT;
if (Cheats == NULL) {
assert(NumCheats == 0);
assert(NumCheatsAllocated == ALLOC_INCREMENT);
Cheats = (Cheat *)malloc(sizeof(Cheat) * NumCheatsAllocated);
} else {
Cheats = (Cheat *)realloc(Cheats, sizeof(Cheat) * NumCheatsAllocated);
}
}
buf[strlen(buf) - 1] = '\0';
count = 0;
if (buf[1] == '*') {
Cheats[NumCheats].Descr = strdup(buf + 2);
Cheats[NumCheats].Enabled = 1;
} else {
Cheats[NumCheats].Descr = strdup(buf + 1);
Cheats[NumCheats].Enabled = 0;
}
Cheats[NumCheats].First = NumCodes;
NumCheats++;
continue;
}
if (NumCheats <= 0)
continue;
if (NumCodes >= NumCodesAllocated) {
NumCodesAllocated += ALLOC_INCREMENT;
if (CheatCodes == NULL) {
assert(NumCodes == 0);
assert(NumCodesAllocated == ALLOC_INCREMENT);
CheatCodes = (CheatCode *)malloc(sizeof(CheatCode) * NumCodesAllocated);
} else {
CheatCodes = (CheatCode *)realloc(CheatCodes, sizeof(CheatCode) * NumCodesAllocated);
}
}
sscanf(buf, "%x %x", &t1, &t2);
CheatCodes[NumCodes].Addr = t1;
CheatCodes[NumCodes].Val = t2;
NumCodes++;
count++;
}
if (NumCheats > 0)
Cheats[NumCheats - 1].n = count;
fclose(fp);
SysPrintf("Cheats loaded from: %s\n", filename);
}
// save all cheats to the specified filename
void SaveCheats(const char *filename) {
FILE *fp;
int i, j;
fp = fopen(filename, "w");
if (fp == NULL) {
return;
}
for (i = 0; i < NumCheats; i++) {
// write the description
if (Cheats[i].Enabled)
fprintf(fp, "[*%s]\n", Cheats[i].Descr);
else
fprintf(fp, "[%s]\n", Cheats[i].Descr);
// write all cheat codes
for (j = 0; j < Cheats[i].n; j++) {
fprintf(fp, "%.8X %.4X\n",
CheatCodes[Cheats[i].First + j].Addr,
CheatCodes[Cheats[i].First + j].Val);
}
fprintf(fp, "\n");
}
fclose(fp);
SysPrintf("Cheats saved to: %s\n", filename);
}
// apply all enabled cheats
void ApplyCheats() {
int i, j, k, endindex;
for (i = 0; i < NumCheats; i++) {
if (!Cheats[i].Enabled) {
continue;
}
// process all cheat codes
endindex = Cheats[i].First + Cheats[i].n;
for (j = Cheats[i].First; j < endindex; j++) {
u8 type = (uint8_t)(CheatCodes[j].Addr >> 24);
u32 addr = (CheatCodes[j].Addr & 0x001FFFFF);
u16 val = CheatCodes[j].Val;
u32 taddr;
switch (type) {
case CHEAT_CONST8:
psxMemWrite8(addr, (u8)val);
break;
case CHEAT_CONST16:
psxMemWrite16(addr, (u16)val);
break;
case CHEAT_INC16:
psxMemWrite16(addr, psxMemRead16(addr) + val);
break;
case CHEAT_DEC16:
psxMemWrite16(addr, psxMemRead16(addr) - val);
break;
case CHEAT_INC8:
psxMemWrite8(addr, psxMemRead8(addr) + (u8)val);
break;
case CHEAT_DEC8:
psxMemWrite8(addr, psxMemRead8(addr) - (u8)val);
break;
case CHEAT_SLIDE:
j++;
if (j >= endindex)
break;
type = (uint8_t)(CheatCodes[j].Addr >> 24);
taddr = (CheatCodes[j].Addr & 0x001FFFFF);
val = CheatCodes[j].Val;
if (type == CHEAT_CONST8) {
for (k = 0; k < ((addr >> 8) & 0xFF); k++) {
psxMemWrite8(taddr, (u8)val);
taddr += (s8)(addr & 0xFF);
val += (s8)(CheatCodes[j - 1].Val & 0xFF);
}
} else if (type == CHEAT_CONST16) {
for (k = 0; k < ((addr >> 8) & 0xFF); k++) {
psxMemWrite16(taddr, val);
taddr += (s8)(addr & 0xFF);
val += (s8)(CheatCodes[j - 1].Val & 0xFF);
}
}
break;
case CHEAT_MEMCPY:
j++;
if (j >= endindex)
break;
taddr = (CheatCodes[j].Addr & 0x001FFFFF);
for (k = 0; k < val; k++) {
psxMemWrite8(taddr + k, psxMemRead8(addr + k));
}
break;
case CHEAT_EQU8:
if (psxMemRead8(addr) != (u8)val)
j++; // skip the next code
break;
case CHEAT_NOTEQU8:
if (psxMemRead8(addr) == (u8)val)
j++; // skip the next code
break;
case CHEAT_LESSTHAN8:
if (psxMemRead8(addr) >= (u8)val)
j++; // skip the next code
break;
case CHEAT_GREATERTHAN8:
if (psxMemRead8(addr) <= (u8)val)
j++; // skip the next code
break;
case CHEAT_EQU16:
if (psxMemRead16(addr) != val)
j++; // skip the next code
break;
case CHEAT_NOTEQU16:
if (psxMemRead16(addr) == val)
j++; // skip the next code
break;
case CHEAT_LESSTHAN16:
if (psxMemRead16(addr) >= val)
j++; // skip the next code
break;
case CHEAT_GREATERTHAN16:
if (psxMemRead16(addr) <= val)
j++; // skip the next code
break;
}
}
}
}
int AddCheat(const char *descr, char *code) {
int c = 1;
char *p1, *p2;
if (NumCheats >= NumCheatsAllocated) {
NumCheatsAllocated += ALLOC_INCREMENT;
if (Cheats == NULL) {
assert(NumCheats == 0);
assert(NumCheatsAllocated == ALLOC_INCREMENT);
Cheats = (Cheat *)malloc(sizeof(Cheat) * NumCheatsAllocated);
} else {
Cheats = (Cheat *)realloc(Cheats, sizeof(Cheat) * NumCheatsAllocated);
}
}
Cheats[NumCheats].Descr = strdup(descr[0] ? descr : _("(Untitled)"));
Cheats[NumCheats].Enabled = 0;
Cheats[NumCheats].First = NumCodes;
Cheats[NumCheats].n = 0;
p1 = code;
p2 = code;
while (c) {
unsigned int t1, t2;
while (*p2 != '\n' && *p2 != '\0')
p2++;
if (*p2 == '\0')
c = 0;
*p2 = '\0';
p2++;
t1 = 0;
t2 = 0;
sscanf(p1, "%x %x", &t1, &t2);
if (t1 > 0x10000000) {
if (NumCodes >= NumCodesAllocated) {
NumCodesAllocated += ALLOC_INCREMENT;
if (CheatCodes == NULL) {
assert(NumCodes == 0);
assert(NumCodesAllocated == ALLOC_INCREMENT);
CheatCodes = (CheatCode *)malloc(sizeof(CheatCode) * NumCodesAllocated);
} else {
CheatCodes = (CheatCode *)realloc(CheatCodes, sizeof(CheatCode) * NumCodesAllocated);
}
}
CheatCodes[NumCodes].Addr = t1;
CheatCodes[NumCodes].Val = t2;
NumCodes++;
Cheats[NumCheats].n++;
}
p1 = p2;
}
if (Cheats[NumCheats].n == 0) {
return -1;
}
NumCheats++;
return 0;
}
void RemoveCheat(int index) {
assert(index >= 0 && index < NumCheats);
free(Cheats[index].Descr);
while (index < NumCheats - 1) {
Cheats[index] = Cheats[index + 1];
index++;
}
NumCheats--;
}
int EditCheat(int index, const char *descr, char *code) {
int c = 1;
int prev = NumCodes;
char *p1, *p2;
assert(index >= 0 && index < NumCheats);
p1 = code;
p2 = code;
while (c) {
unsigned int t1, t2;
while (*p2 != '\n' && *p2 != '\0')
p2++;
if (*p2 == '\0')
c = 0;
*p2 = '\0';
p2++;
t1 = 0;
t2 = 0;
sscanf(p1, "%x %x", &t1, &t2);
if (t1 > 0x10000000) {
if (NumCodes >= NumCodesAllocated) {
NumCodesAllocated += ALLOC_INCREMENT;
if (CheatCodes == NULL) {
assert(NumCodes == 0);
assert(NumCodesAllocated == ALLOC_INCREMENT);
CheatCodes = (CheatCode *)malloc(sizeof(CheatCode) * NumCodesAllocated);
} else {
CheatCodes = (CheatCode *)realloc(CheatCodes, sizeof(CheatCode) * NumCodesAllocated);
}
}
CheatCodes[NumCodes].Addr = t1;
CheatCodes[NumCodes].Val = t2;
NumCodes++;
}
p1 = p2;
}
if (NumCodes == prev) {
return -1;
}
free(Cheats[index].Descr);
Cheats[index].Descr = strdup(descr[0] ? descr : _("(Untitled)"));
Cheats[index].First = prev;
Cheats[index].n = NumCodes - prev;
return 0;
}
|