summaryrefslogtreecommitdiff
path: root/Xenogears/reinsert.cpp
blob: 1227fccde8cae159c7035a62a8e1c1a5955979b6 (plain)
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
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include "cdutils.h"
#include "generic.h"
#include "Input.h"
#include "Output.h"

unsigned int tourne = 0;

struct t_index_tab {
    unsigned long address;
    long size;
    long type;
    long index;
};

struct t_sequence {
    unsigned int n;
    unsigned int sum;
    String prefix;
    String name;
    int type;
};

String title, iso_filename, prefix, in_filename;
unsigned long iso_size;
unsigned int nb_records, nb_seqs = 0;
struct t_sequence sequences[1000];

int slus_index = -1, force = 0;

long check_iso(Handle * f_iso);
void write_files(Handle * f_iso_r, Handle * f_iso_w, Handle * f_in, int fileindex);
int process_def_file(Handle * f_def);

unsigned char user_data[2352];

void usage(char ** argv) {
	printm(M_BARE, "Usage: %s <definition_file.sqr> <iso_file_name> <file_index> <filename> [-f]\nSee readme.txt for details\n",
	       argv[0]);
	exit(-1);
}

int main(int argc, char **argv)
{
    Handle * f_def, * f_iso_r, * f_iso_w, * f_in;
    int fileindex;
    
    verbosity = 1;
    
    printm(M_BARE, "Xenogears File Insertor by Nicolas \"Pixel\" Noble\n\n");

    if ((argc != 5) && (argc != 6)) {
	usage(argv);
    }
    
    if (argc == 6) {
	if (strcmp(argv[5], "-f")) {
	    usage(argv);
	} else {
	    force = 1;
	}
    }

    printm(M_STATUS, "Processing file %s...\n", argv[1]);

    f_def = new Input(argv[1]);

    if (process_def_file(f_def)) {
	delete f_def;
	printm(M_ERROR, "Unable to process the definition file \"%s\"...\n", argv[1]);
	exit(-1);
    }

    iso_filename = argv[2];

    printm(M_STATUS, "Begin processing iso file.\n");
    f_iso_r = new Input(iso_filename);
    f_iso_w = new Output(iso_filename, 0, 0);
    f_iso_w->seek(0, SEEK_SET);
    
    if (check_iso(f_iso_r)) {
	printm(M_ERROR, "Invalid iso file for " + title + "\n");
	printm(M_ERROR, "===> Make sure you are using a Genuine iso file.\n");
	exit(-1);
    } else {
	printm(M_INFO, "Genuine " + title + " iso detected.\n");
    }

    fileindex = atoi(argv[3]);
    in_filename = argv[4];
    f_in = new Input(in_filename);

    printm(M_STATUS, "Entering files write sequence\n");
    write_files(f_iso_r, f_iso_w, f_in, fileindex);
    delete f_iso_r;
    delete f_iso_w;
    exit(0);
}

/*
 * Ugly but working... for now 
 */
int process_def_file(Handle * f_def)
{
    unsigned int n, sum = 0;
    String t;

    *f_def >> t;
    printm(M_INFO, "Read title: " + t + "\n");
    title = t;

    *f_def >> t;
    if (sscanf(t.to_charp(), "%lu\n", &iso_size) != 1)
	return 1;
    printm(M_INFO, "Read iso size: %lu bytes\n", iso_size);

    *f_def >> t;
    printm(M_INFO, "Read global directory prefix: " + t + "\n");
    prefix = t;

    *f_def >> t;
    if (sscanf(t.to_charp(), "%u\n", &nb_records) != 1)
	return 1;
    printm(M_INFO, "Read total of records: %u\n", nb_records);

    while (1) {
	*f_def >> t;
	if (sscanf(t.to_charp(), "%u\n", &n) != 1)
	    return 1;
	if (!n) {
	    if (sum == nb_records) {
		printm(M_INFO, "Definition file seems coherent\n");
		return 0;
	    } else {
		printm(M_ERROR, "Definition file incoherent\n");
		return 1;
	    }
	}
	sum += n;
	sequences[nb_seqs].n = n;
	sequences[nb_seqs].sum = sum;
	*f_def >> t;
	sequences[nb_seqs].prefix = t;
	*f_def >> t;
	if (sscanf(t.to_charp(), "%u\n", &n) != 1)
	    return 1;
	sequences[nb_seqs].type = n;
	*f_def >> t;
	sequences[nb_seqs].name = t;
	printm(M_INFO, "Read definition of sequence %i:\n===> %5i (sum = %5i) chunks of " + t +
		       " (" + sequences[nb_seqs].prefix + ")\n", nb_seqs, n, sum);
	nb_seqs++;
    }
}

long check_iso(Handle * f_iso)
{
    unsigned long length;

    length = f_iso->GetSize();
    printm(M_INFO, "Filesize of iso file " + iso_filename + " is %ld bytes\n", length);
    if (length != iso_size) {
	return 1;
    }
    return 0;
}

#define INDEXPOS 24

void rewrite_fat(Handle * f_iso_r, Handle * f_iso_w, Byte * new_fat) {
    unsigned char old_fat[34816];
    int i;

    sector_seek(f_iso_w, INDEXPOS);
    for (i = INDEXPOS; i < (INDEXPOS + 16); i++) {
	printm(M_INFO, "Writing fat sector %lu\n", i);
	write_sector(f_iso_r, f_iso_w, &new_fat[2048 * (i - INDEXPOS)], MODE_2_FORM_1);
    }

    sector_seek(f_iso_r, slus_index + 1);
    for (i = slus_index + 1; i < (slus_index + 18); i++) {
	printm(M_INFO, "Reading SLUS sector %lu\n", i);
	read_sector(f_iso_r, &old_fat[2048 * (i - slus_index - 1)], MODE_2_FORM_1);
    }

    bcopy((char *) new_fat, (char *) old_fat + 4, 32768);
    sector_seek(f_iso_w, slus_index + 1);
    for (i = slus_index + 1; i < (slus_index + 18); i++) {
	printm(M_INFO, "Writing SLUS sector %lu\n", i);
	write_sector(f_iso_r, f_iso_w, &old_fat[2048 * (i - slus_index - 1)], MODE_2_FORM_1);
    }
}

void write_files(Handle * f_iso_r, Handle * f_iso_w, Handle * f_in, int fileindex)
{
    t_index_tab index_tab[10000];
    unsigned char t[8];
    unsigned long i;
    unsigned long j;
    unsigned int seq = 0;
    unsigned long indexer;
    struct t_index_tab *p = (struct t_index_tab *) t;
    
    long old_file_size, new_file_size, old_nb_sects, new_nb_sects;
    unsigned char fat[32768];

    sector_seek(f_iso_r, INDEXPOS);
    for (i = INDEXPOS; i < (INDEXPOS + 16); i++) {
	printm(M_INFO, "Reading fat sector %lu\n", i);
	read_sector(f_iso_r, &fat[2048 * (i - INDEXPOS)], MODE_2_FORM_1);
    }

    indexer = 0;
    for (j = 0; j < 32768; j = j + 7) {
	t[0] = 0;
	bcopy((char *) &fat[j], (char *) t + 1, 7);
	p->address >>= 8;
	index_tab[indexer] = *p;
	if (p->size > 0 && p->address != 0) {
	    index_tab[indexer].index = j / 7;
	    printm(M_INFO, "Found a quite valid index: number %4lu, address %6lu, size %3li\n",
		   indexer, index_tab[indexer].address, index_tab[indexer].size);
	    indexer++;
	    if (indexer == nb_records)
		break;
	} else {
	    printm(M_WARNING, "Ignored invalid index chunk number %4lu (size = %lu) (%02x %02x %02x %02x %02x %02x %02x)\n",
		 j / 7, -index_tab[indexer].size, t[0], t[1], t[2], t[4], t[5], t[6], t[7]);
	}
    }
    printm(M_STATUS, "Index file generation complete.\n\n");

    for (i = 0; i < nb_records; i++) {
	if (sequences[seq].sum == i)
	    seq++;
	index_tab[i].type = sequences[seq].type;
	if (sequences[seq].prefix == "SLUS") {
	    if (slus_index >= 0) {
		printm(M_ERROR, "Two SLUS files defined\n");
		exit(-1);
	    }
	    slus_index = index_tab[i].address;
	}
    }
    
    if (slus_index < 0) {
	printm(M_ERROR, "No SLUS file defined\n");
	exit(-1);
    }
    
    printm(M_INFO, "SLUS file found at sector %6i\n", slus_index);
    
    new_file_size = f_in->GetSize();
    old_file_size = index_tab[fileindex].size;
    
    new_nb_sects = new_file_size / sec_sizes[index_tab[fileindex].type];
    old_nb_sects = old_file_size / sec_sizes[index_tab[fileindex].type];
    
    if (new_file_size % sec_sizes[index_tab[fileindex].type]) {
	new_nb_sects++;
    }
    
    if (old_file_size % sec_sizes[index_tab[fileindex].type]) {
	old_nb_sects++;
    }
    
    if (new_nb_sects > old_nb_sects) {
	printm(M_ERROR, "New file too big.\n");
	if (!force) {
	    exit(-1);
	}
    }
    
    printm(M_INFO, "New file size:  %12li, old file size:  %12li\n", new_file_size, old_file_size);
    printm(M_INFO, "New file ssize: %12li, old file ssize: %12li\n", new_nb_sects, old_nb_sects);
    
    printm(M_INFO, "File address: %6i\n", index_tab[fileindex].address);
    
    write_file(f_iso_r, f_iso_w, f_in, index_tab[fileindex].type, index_tab[fileindex].address);
    *((long *)(&fat[index_tab[fileindex].index * 7 + 3])) = new_file_size;
    rewrite_fat(f_iso_r, f_iso_w, fat);
}