-
Notifications
You must be signed in to change notification settings - Fork 0
/
sdb2txt.c
486 lines (465 loc) · 18.7 KB
/
sdb2txt.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
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
/*sdb2txt
A tool to dump SDB files from Digimon World DS.
Originally coded by @AlexPowerUp, modified
by @Areidz.
Version: 1.0.2
Link: http://sourceforge.net/projects/sdb2txtdwds/
*/
#include <stdio.h>
#include <stdlib.h>
//To replace original pause_system();
//#ifdef WIN32
// #include <conio.h>
//#elif LINUX
#include <ncurses.h>
//#else
// #error You need another OS
//#endif
void pause_system(void);
long int get_ptr_number(FILE *filein);
long int get_ptr_string(FILE *filein, int number);
int main(int argc, char *argv[])
{
//Variables
unsigned int i, final = 0;
int pointers, charBuffer;
FILE *fileInput, *fileOutput;
/*To check if we can read and write
the correct files.
*/
if(argc == 3)
{
fileInput = fopen(argv[1], "rb");
if(!fileInput)
{
printf("Couldn't read the file.\n");
pause_system();
return 0;
}
fileOutput = fopen(argv[2], "wb");
if(!fileOutput)
{
printf("Couldn't create the output.\n");
pause_system();
return 0;
}
}
else
{
printf("Error in the syntax.\nUsage: sdb2txt.exe <SDB file(input)> <TXT file(output)>\n");
pause_system();
return 0;
}
pointers = get_ptr_number(fileInput);
printf("The SDB file has %d strings.\n", pointers);
printf("Transforming...\n");
for(i=0;i<pointers;i++)
{
fseek(fileInput, get_ptr_string(fileInput, i), SEEK_SET);
while(final == 0)
{
charBuffer = fgetc(fileInput);
switch(charBuffer)
{
case 0x50:
if(fgetc(fileInput) == 0x00) fputc((int) 'A', fileOutput);
break;
case 0x51:
if(fgetc(fileInput) == 0x00) fputc((int) 'B', fileOutput);
break;
case 0x52:
if(fgetc(fileInput) == 0x00) fputc((int) 'C', fileOutput);
break;
case 0x53:
if(fgetc(fileInput) == 0x00) fputc((int) 'D', fileOutput);
break;
case 0x54:
if(fgetc(fileInput) == 0x00) fputc((int) 'E', fileOutput);
break;
case 0x55:
if(fgetc(fileInput) == 0x00) fputc((int) 'F', fileOutput);
break;
case 0x56:
if(fgetc(fileInput) == 0x00) fputc((int) 'G', fileOutput);
break;
case 0x57:
if(fgetc(fileInput) == 0x00) fputc((int) 'H', fileOutput);
break;
case 0x58:
if(fgetc(fileInput) == 0x00) fputc((int) 'I', fileOutput);
break;
case 0x59:
if(fgetc(fileInput) == 0x00) fputc((int) 'J', fileOutput);
break;
case 0x5A:
if(fgetc(fileInput) == 0x00) fputc((int) 'K', fileOutput);
break;
case 0x5B:
if(fgetc(fileInput) == 0x00) fputc((int) 'L', fileOutput);
break;
case 0x5C:
if(fgetc(fileInput) == 0x00) fputc((int) 'M', fileOutput);
break;
case 0x5D:
if(fgetc(fileInput) == 0x00) fputc((int) 'N', fileOutput);
break;
case 0x5E:
if(fgetc(fileInput) == 0x00) fputc((int) 'O', fileOutput);
break;
case 0x5F:
if(fgetc(fileInput) == 0x00) fputc((int) 'P', fileOutput);
break;
case 0x60:
if(fgetc(fileInput) == 0x00) fputc((int) 'Q', fileOutput);
break;
case 0x61:
if(fgetc(fileInput) == 0x00) fputc((int) 'R', fileOutput);
break;
case 0x62:
if(fgetc(fileInput) == 0x00) fputc((int) 'S', fileOutput);
break;
case 0x63:
if(fgetc(fileInput) == 0x00) fputc((int) 'T', fileOutput);
break;
case 0x64:
if(fgetc(fileInput) == 0x00) fputc((int) 'U', fileOutput);
break;
case 0x65:
if(fgetc(fileInput) == 0x00) fputc((int) 'V', fileOutput);
break;
case 0x66:
if(fgetc(fileInput) == 0x00) fputc((int) 'W', fileOutput);
break;
case 0x67:
if(fgetc(fileInput) == 0x00) fputc((int) 'X', fileOutput);
break;
case 0x68:
if(fgetc(fileInput) == 0x00) fputc((int) 'Y', fileOutput);
break;
case 0x69:
if(fgetc(fileInput) == 0x00) fputc((int) 'Z', fileOutput);
break;
case 0x6A:
if(fgetc(fileInput) == 0x00) fputc((int) 'a', fileOutput);
break;
case 0x6B:
if(fgetc(fileInput) == 0x00) fputc((int) 'b', fileOutput);
break;
case 0x6C:
if(fgetc(fileInput) == 0x00) fputc((int) 'c', fileOutput);
break;
case 0x6D:
if(fgetc(fileInput) == 0x00) fputc((int) 'd', fileOutput);
break;
case 0x6E:
if(fgetc(fileInput) == 0x00) fputc((int) 'e', fileOutput);
break;
case 0x6F:
if(fgetc(fileInput) == 0x00) fputc((int) 'f', fileOutput);
break;
case 0x70:
if(fgetc(fileInput) == 0x00) fputc((int) 'g', fileOutput);
break;
case 0x71:
if(fgetc(fileInput) == 0x00) fputc((int) 'h', fileOutput);
break;
case 0x72:
if(fgetc(fileInput) == 0x00) fputc((int) 'i', fileOutput);
break;
case 0x73:
if(fgetc(fileInput) == 0x00) fputc((int) 'j', fileOutput);
break;
case 0x74:
if(fgetc(fileInput) == 0x00) fputc((int) 'k', fileOutput);
break;
case 0x75:
if(fgetc(fileInput) == 0x00) fputc((int) 'l', fileOutput);
break;
case 0x76:
if(fgetc(fileInput) == 0x00) fputc((int) 'm', fileOutput);
break;
case 0x77:
if(fgetc(fileInput) == 0x00) fputc((int) 'n', fileOutput);
break;
case 0x78:
if(fgetc(fileInput) == 0x00) fputc((int) 'o', fileOutput);
break;
case 0x79:
if(fgetc(fileInput) == 0x00) fputc((int) 'p', fileOutput);
break;
case 0x7A:
if(fgetc(fileInput) == 0x00) fputc((int) 'q', fileOutput);
break;
case 0x7B:
if(fgetc(fileInput) == 0x00) fputc((int) 'r', fileOutput);
break;
case 0x7C:
if(fgetc(fileInput) == 0x00) fputc((int) 's', fileOutput);
break;
case 0x7D:
if(fgetc(fileInput) == 0x00) fputc((int) 't', fileOutput);
break;
case 0x7E:
if(fgetc(fileInput) == 0x00) fputc((int) 'u', fileOutput);
break;
case 0x7F:
if(fgetc(fileInput) == 0x00) fputc((int) 'v', fileOutput);
break;
case 0x80:
if(fgetc(fileInput) == 0x00) fputc((int) 'w', fileOutput);
break;
case 0x81:
if(fgetc(fileInput) == 0x00) fputc((int) 'x', fileOutput);
break;
case 0x82:
if(fgetc(fileInput) == 0x00) fputc((int) 'y', fileOutput);
break;
case 0x83:
if(fgetc(fileInput) == 0x00) fputc((int) 'z', fileOutput);
break;
case 0x00:
if(fgetc(fileInput) == 0x00) fputc((int) ' ', fileOutput);
break;
case 0x19:
if(fgetc(fileInput) == 0x00) fputc((int) '=', fileOutput);
break;
case 0x18:
if(fgetc(fileInput) == 0x00) fputc((int) '-', fileOutput);
break;
case 0x12:
if(fgetc(fileInput) == 0x00) fputc((int) '.', fileOutput);
break;
case 0x14:
if(fgetc(fileInput) == 0x00) fputc((int) '?', fileOutput);
break;
case 0x01:
if(fgetc(fileInput) == 0x00) fputc((int) '0', fileOutput);
break;
case 0x02:
if(fgetc(fileInput) == 0x00) fputc((int) '1', fileOutput);
break;
case 0x03:
if(fgetc(fileInput) == 0x00) fputc((int) '2', fileOutput);
break;
case 0x04:
if(fgetc(fileInput) == 0x00) fputc((int) '3', fileOutput);
break;
case 0x05:
if(fgetc(fileInput) == 0x00) fputc((int) '4', fileOutput);
break;
case 0x06:
if(fgetc(fileInput) == 0x00) fputc((int) '5', fileOutput);
break;
case 0x07:
if(fgetc(fileInput) == 0x00) fputc((int) '6', fileOutput);
break;
case 0x08:
if(fgetc(fileInput) == 0x00) fputc((int) '7', fileOutput);
break;
case 0x09:
if(fgetc(fileInput) == 0x00) fputc((int) '8', fileOutput);
break;
case 0x0A:
if(fgetc(fileInput) == 0x00) fputc((int) '9', fileOutput);
break;
case 0x11:
if(fgetc(fileInput) == 0x00) fputc((int) ',', fileOutput);
break;
case 0x13:
if(fgetc(fileInput) == 0x00) fputc((int) '!', fileOutput);
break;
case 0x15:
if(fgetc(fileInput) == 0x00) fputc((int) '(', fileOutput);
break;
case 0x16:
if(fgetc(fileInput) == 0x00) fputc((int) ')', fileOutput);
break;
case 0x17:
if(fgetc(fileInput) == 0x00) fputc((int) '+', fileOutput);
break;
case 0x20:
if(fgetc(fileInput) == 0x00) fputc((int) '¿', fileOutput);
break;
case 0x32:
if(fgetc(fileInput) == 0x00) fputc((int) 'á', fileOutput);
break;
case 0x30:
if(fgetc(fileInput) == 0x00) fputc((int) 'ñ', fileOutput);
break;
case 0x31:
if(fgetc(fileInput) == 0x00) fputc((int) 'é', fileOutput);
break;
case 0x21:
if(fgetc(fileInput) == 0x00) fputc((int) '¡', fileOutput);
break;
case 0x0E:
if(fgetc(fileInput) == 0x00) fputc(0x27, fileOutput);
break;
case 0x40:
if(fgetc(fileInput) == 0x00) fputc((int) 'í', fileOutput);
break;
case 0x41:
if(fgetc(fileInput) == 0x00) fputc((int) 'ó', fileOutput);
break;
case 0x42:
if(fgetc(fileInput) == 0x00) fputc((int) 'ú', fileOutput);
break;
case 0x43:
if(fgetc(fileInput) == 0x00) fputc((int) 'ü', fileOutput);
break;
case 0x44:
if(fgetc(fileInput) == 0x00) fputc((int) 'Á', fileOutput);
break;
case 0x45:
if(fgetc(fileInput) == 0x00) fputc((int) 'É', fileOutput);
break;
case 0x46:
if(fgetc(fileInput) == 0x00) fputc((int) 'Í', fileOutput);
break;
case 0x47:
if(fgetc(fileInput) == 0x00) fputc((int) 'Ú', fileOutput);
break;
case 0x48:
if(fgetc(fileInput) == 0x00) fputc((int) 'Ó', fileOutput);
break;
case 0x4A: //gamma
if(fgetc(fileInput) == 0x00) fputc(0x03, fileOutput);
break;
case 0x4B: //epsilon
if(fgetc(fileInput) == 0x00) fputc(0x05, fileOutput);
break;
case 0x4C: //delta
if(fgetc(fileInput) == 0x00) fputc(0x04, fileOutput);
break;
case 0x0F:
if(fgetc(fileInput) == 0x00) fputc((int) '"', fileOutput);
break;
case 0xFF: //end of string
if(fgetc(fileInput) == 0xFF) {
fputc(0x10, fileOutput);
/* fputc(0x0D, fileOutput); fputc(0x0A, fileOutput);*/
final = 1;
}
break;
case 0xFD: //go one text line down
if(fgetc(fileInput) == 0xFF) fputc(0xAC, fileOutput);
break;
case 0x22: //star
if(fgetc(fileInput) == 0x00) fputc(0x06, fileOutput);
break;
case 0xEE: //color red text (inits and ends with the same code)
if(fgetc(fileInput) == 0xFF) fputc(0x0F, fileOutput);
break;
case 0x0D:
if(fgetc(fileInput) == 0x00) fputc((int) ':', fileOutput);
break;
case 0x1C: //"..."
if(fgetc(fileInput) == 0x00) fputc(0x0E, fileOutput);
break;
case 0xFE: //alternative end of string (only works with the others msg folders)
if(fgetc(fileInput) == 0xFF) {
fputc(0x15, fileOutput);
/*fputc(0x0D, fileOutput); fputc(0x0A, fileOutput);*/
final = 1;
}
break;
case 0x0B:
if(fgetc(fileInput) == 0x00) fputc((int) '/', fileOutput);
break;
case 0x1B:
if(fgetc(fileInput) == 0x00) fputc((int) '~', fileOutput);
break;
case 0x23:
if(fgetc(fileInput) == 0x00) fputc((int) '&', fileOutput);
break;
case 0x0C:
if(fgetc(fileInput) == 0x00) fputc((int) '%', fileOutput);
break;
case 0x2F: //beta
if(fgetc(fileInput) == 0x00) fputc(0x02, fileOutput);
break;
case 0x2E: //alpha
if(fgetc(fileInput) == 0x00) fputc(0x01, fileOutput);
break;
case 0xED: //character name
if(fgetc(fileInput) == 0xFF) fputc(0x00, fileOutput);
break;
case 0xF0: //identifier 0
if(fgetc(fileInput) == 0xFF) fputc(0x0A, fileOutput);
break;
case 0xF1: //identifier 1
if(fgetc(fileInput) == 0xFF) fputc(0x0B, fileOutput);
break;
case 0xF2: //identifier 2
if(fgetc(fileInput) == 0x00) fputc(0x0C, fileOutput);
break;
case 0x24: //symbol 24
if(fgetc(fileInput) == 0x00) fputc(0x07, fileOutput);
break;
case 0x25: //symbol 25
if(fgetc(fileInput) == 0x00) fputc(0x08, fileOutput);
break;
case 0x33: //symbol 33
if(fgetc(fileInput) == 0x00) fputc(0x09, fileOutput);
break;
case 0xEC: //"Mote"
if(fgetc(fileInput) == 0xFF) fputc(0x0D, fileOutput);
break;
case 0xE9: //?? maybe color
if(fgetc(fileInput) == 0xFF) fputc(0x11, fileOutput);
break;
case 0xEF: //used in credits... maybe color?
if(fgetc(fileInput) == 0xFF) fputc(0x12, fileOutput);
break;
case 0x10: //unknown
if(fgetc(fileInput) == 0x00) fputc(0x13, fileOutput);
break;
default:
printf("New char found: 0x%X%X\n", charBuffer, fgetc(fileOutput));
pause_system();
break;
}
}
}
fclose(fileInput);
fclose(fileOutput);
return 0;
}
long int get_ptr_number(FILE *filein)
{
long int pointerCache[3];
//int currentposition = ftell(filein);
fseek(filein, 0, SEEK_SET);
unsigned int i;
for(i=0;i<4;i++)
pointerCache[i] = fgetc(filein);
long int pointerFinal = pointerCache[0] + (pointerCache[1]*0x100) + (pointerCache[2]*0x10000) + (pointerCache[3]*0x1000000);
//fseek(filein, currentposition, SEEK_SET);
return (pointerFinal/4);
}
long int get_ptr_string(FILE *filein, int number)
{
/*if(number > get_ptr_number(filein))
{
printf("Error: This file has %d strings, but you are trying to access to the %d string. May cause an overflow, so leaving...\n", get_ptr_number(filein), number);
pause_system();
return -1;
}*/
long int pointerCache[3];
//int currentposition = ftell(filein);
fseek(filein, (4*number), SEEK_SET);
unsigned int i;
for(i=0;i<4;i++)
pointerCache[i] = fgetc(filein);
long int pointerFinal = pointerCache[0] + (pointerCache[1]*0x100) + (pointerCache[2]*0x10000) + (pointerCache[3]*0x1000000);
//fseek(filein, currentposition, SEEK_SET);
return pointerFinal;
}
void pause_system(void)
{
char ch;
/* flush the input buffer, just in case */
while ((ch = getchar()) != '\n' && ch != EOF);
//printf("Press any key to continue.. ");
//getch();
}