Mercurial > otakunoraifu
annotate system/file.cc @ 51:cbb301016a4e
* oops... finishing what was started and not said with the other patch: fixing memory leaks
author | thib |
---|---|
date | Fri, 17 Apr 2009 18:40:39 +0000 |
parents | 35ce1a30f3f9 |
children | 15a18fbe6f21 |
rev | line source |
---|---|
0 | 1 bool init_end=false; |
2 /* file.cc : KANON ¤Î°µ½Ì¥Õ¥¡¥¤¥ë¡¦PDT ¥Õ¥¡¥¤¥ë¡Ê²èÁü¥Õ¥¡¥¤¥ë¡Ë¤ÎŸ³«¤Î | |
3 * ¤¿¤á¤Î¥á¥½¥Ã¥É | |
4 * class ARCFILE : ½ñ¸Ë¥Õ¥¡¥¤¥ëÁ´ÂΤò°·¤¦¥¯¥é¥¹ | |
5 * class ARCINFO : ½ñ¸Ë¥Õ¥¡¥¤¥ë¤ÎÃæ¤Î£±¤Ä¤Î¥Õ¥¡¥¤¥ë¤ò°·¤¦¥¯¥é¥¹ | |
6 * class PDTCONV : PDT ¥Õ¥¡¥¤¥ë¤ÎŸ³«¤ò¹Ô¤¦¡£ | |
7 * | |
8 */ | |
9 | |
10 /* | |
11 * | |
12 * Copyright (C) 2000- Kazunori Ueno(JAGARL) <jagarl@creator.club.ne.jp> | |
13 * | |
14 * This program is free software; you can redistribute it and/or modify | |
15 * it under the terms of the GNU General Public License as published by | |
16 * the Free Software Foundation; either version 2 of the License, or | |
17 * (at your option) any later version. | |
18 * | |
19 * This program is distributed in the hope that it will be useful, | |
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 * GNU General Public License for more details. | |
23 * | |
27 | 24 * You should have received a copy of the GNU General Public License along |
25 * with this program; if not, write to the Free Software Foundation, Inc., | |
26 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
0 | 27 * |
28 */ | |
29 | |
30 #ifdef HAVE_CONFIG_H | |
31 # include "config.h" | |
32 #endif | |
33 | |
34 #ifdef HAVE_MMAP | |
35 # ifdef MACOSX | |
36 # undef HAVE_MMAP | |
37 # endif /* MACOSX */ | |
38 #endif /* HAVE_MMAP */ | |
39 | |
40 #include <ctype.h> | |
41 #include <fcntl.h> | |
42 #include <unistd.h> | |
43 #include <stdlib.h> | |
44 #include <stdio.h> | |
45 #include <sys/types.h> | |
46 #include <sys/stat.h> | |
47 #include <vector> | |
48 #include <algorithm> | |
49 #if HAVE_MMAP | |
50 #include<sys/mman.h> | |
51 #endif /* HAVE_MMAP */ | |
52 #if HAVE_DIRENT_H | |
53 # include <dirent.h> | |
54 # define NAMLEN(dirent) strlen((dirent)->d_name) | |
55 #else | |
56 # define dirent direct | |
57 # define NAMLEN(dirent) (dirent)->d_namlen | |
58 # if HAVE_SYS_NDIR_H | |
59 # include <sys/ndir.h> | |
60 # endif | |
61 # if HAVE_SYS_DIR_H | |
62 # include <sys/dir.h> | |
63 # endif | |
64 # if HAVE_NDIR_H | |
65 # include <ndir.h> | |
66 # endif | |
67 #endif | |
68 | |
69 #if HAVE_LIBZ | |
70 #include<zlib.h> | |
71 #endif | |
72 #if HAVE_LIBPNG | |
73 #include<png.h> | |
74 #endif | |
75 #if HAVE_LIBJPEG | |
76 extern "C" { | |
77 #include<jpeglib.h> | |
78 } | |
79 #endif | |
80 | |
81 #include "file.h" | |
82 #include "file_impl.h" | |
83 | |
84 using namespace std; | |
85 | |
86 FILESEARCH file_searcher; | |
35 | 87 KEYHOLDER key_holder; |
0 | 88 // #define delete fprintf(stderr,"file.cc: %d.",__LINE__), delete |
89 | |
90 /* FILESEARCH class ¤Î default ¤Î¿¶¤ëÉñ¤¤ */ | |
91 FILESEARCH::ARCTYPE FILESEARCH::default_is_archived[TYPEMAX] = { | |
92 ATYPE_DIR, ATYPE_DIR, ATYPE_DIR, ATYPE_DIR, | |
93 ATYPE_ARC, ATYPE_ARC, ATYPE_ARC, ATYPE_ARC, | |
94 ATYPE_DIR, ATYPE_DIR, ATYPE_DIR, ATYPE_DIR, | |
95 ATYPE_DIR, ATYPE_DIR | |
96 }; | |
47
5f548e5957a8
* get rid of the "deprecated conversion from string constant to ‘char*’" warnings
thib
parents:
43
diff
changeset
|
97 const char* FILESEARCH::default_dirnames[TYPEMAX] = { |
0 | 98 0, 0, "", "pdt", |
99 "seen.txt", "allanm.anl", "allard.ard", "allcur.cur", | |
100 0, 0, "koe", "bgm", "mov", "gan"}; | |
101 | |
102 /********************************************* | |
103 ** ARCFILE / DIRFILE: | |
104 ** ½ñ¸Ë¥Õ¥¡¥¤¥ë¡¢¤¢¤ë¤¤¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Î | |
105 ** Á´ÂΤò´ÉÍý¤¹¤ë¥¯¥é¥¹ | |
106 ** | |
107 ** ½ñ¸Ë¥Õ¥¡¥¤¥ë¤«¤é¥Õ¥¡¥¤¥ë¤ÎÈ´¤½Ð¤·¤ÏFind() | |
108 ** Find ¤·¤¿¤â¤Î¤òRead¤¹¤ë¤ÈÆâÍƤ¬ÆÀ¤é¤ì¤ë¡£ | |
109 */ | |
110 | |
47
5f548e5957a8
* get rid of the "deprecated conversion from string constant to ‘char*’" warnings
thib
parents:
43
diff
changeset
|
111 ARCFILE::ARCFILE(const char* aname) { |
0 | 112 struct stat sb; |
113 /* ÊÑ¿ô½é´ü²½ */ | |
114 arcname = 0; | |
115 list_point = 0; | |
116 filenames_orig = 0; | |
117 next = 0; | |
118 if (aname[0] == '\0') {arcname=new char[1]; arcname[0]='\0';return;} // NULFILE | |
119 /* ¥Ç¥£¥ì¥¯¥È¥ê¤«Èݤ«¤Î¥Á¥§¥Ã¥¯ */ | |
120 if (stat(aname,&sb) == -1) { /* error */ | |
121 perror("stat"); | |
122 } | |
123 if ( (sb.st_mode&S_IFMT) == S_IFDIR) { | |
124 int l = strlen(aname); | |
125 arcname = new char[l+2]; strcpy(arcname, aname); | |
126 if (arcname[l-1] != DIR_SPLIT) { | |
127 arcname[l] = DIR_SPLIT; | |
128 arcname[l+1] = 0; | |
129 } | |
130 } else if ( (sb.st_mode&S_IFMT) == S_IFREG) { | |
131 arcname = new char[strlen(aname)+1]; | |
132 strcpy(arcname,aname); | |
133 if (arcname[strlen(arcname)-1] == DIR_SPLIT) | |
134 arcname[strlen(arcname)-1] = '\0'; | |
135 } | |
136 return; | |
137 } | |
138 | |
139 void ARCFILE::Init(void) { | |
140 if (! arc_atom.empty()) return; | |
141 if (arcname == 0) return; | |
142 /* ¥Õ¥¡¥¤¥ë¿ô¤òÆÀ¤ë */ | |
143 int slen = CheckFileDeal(); | |
144 /* ¥Õ¥¡¥¤¥ë̾¤Î¥»¥Ã¥È */ | |
145 ListupFiles(slen); | |
146 if ( (!arc_atom.empty()) && arc_atom[0].filename) filenames_orig = arc_atom[0].filename; | |
147 sort(arc_atom.begin(), arc_atom.end()); | |
148 } | |
149 ARCFILE::~ARCFILE() { | |
150 if (filenames_orig) delete[] filenames_orig; | |
151 delete[] arcname; | |
50 | 152 delete next; |
0 | 153 } |
154 | |
155 ARCFILE::iterator ARCFILE::SearchName(const char* f, const char* ext) { | |
156 char buf[1024]; char buf_ext[1024]; | |
157 iterator it; | |
158 Init(); | |
159 if (f == 0) return arc_atom.end(); | |
160 if (arc_atom.empty()) return arc_atom.end(); | |
161 /* ¥¨¥é¡¼¥Á¥§¥Ã¥¯ */ | |
162 if (strlen(f)>500) return arc_atom.end(); | |
163 if (ext && strlen(ext)>500) return arc_atom.end(); | |
164 | |
165 /* ¸¡º÷ */ | |
166 strncpy(buf, f, 1000); | |
167 buf[1000]=0; | |
168 it = lower_bound(arc_atom.begin(), arc_atom.end(), (char*)buf); | |
169 if (it != arc_atom.end() && strcmp(it->filename_lower, buf) == 0) return it; | |
170 // ³ÈÄ¥»Ò¤ò¤Ä¤±¤Æ¸¡º÷ | |
171 if (ext) { | |
172 strcpy(buf_ext, buf); | |
173 char* ext_pt = strrchr(buf_ext, '.'); | |
174 if (ext_pt == 0 || ext_pt == buf_ext) ext_pt = buf_ext + strlen(buf_ext); | |
175 *ext_pt++ = '.'; | |
176 while(*ext=='.') ext++; | |
177 strcat(buf_ext, ext); | |
178 it = lower_bound(arc_atom.begin(), arc_atom.end(), (char*)buf_ext); | |
179 if (it != arc_atom.end() && strcmp(it->filename_lower, buf_ext) == 0) return it; | |
180 } | |
181 | |
182 /* ¾®Ê¸»ú¤Ë¤·¤Æ ¸¡º÷ */ | |
183 int i; int l = strlen(f); | |
184 if (l > 500) l = 500; | |
185 for (i=0; i<l; i++) | |
186 buf[i] = tolower(f[i]); | |
187 buf[i++] = 0; | |
188 it = lower_bound(arc_atom.begin(), arc_atom.end(), (char*)buf); | |
189 if (it != arc_atom.end() && strcmp(it->filename_lower, buf) == 0) return it; | |
190 | |
191 // ³ÈÄ¥»Ò¤ò¤Ä¤±¤Æ¸¡º÷ | |
192 if (ext == 0) return arc_atom.end(); | |
193 strcpy(buf_ext, buf); | |
194 char* ext_pt = strrchr(buf_ext, '.'); | |
195 if (ext_pt == 0 || ext_pt == buf_ext) ext_pt = buf_ext + strlen(buf_ext); | |
196 *ext_pt++ = '.'; | |
197 /* ³ÈÄ¥»Ò¤ÎŤµ¤òÆÀ¤ë */ | |
198 l = strlen(ext); | |
199 for (i=0; i<l; i++) | |
200 ext_pt[i] = tolower(*ext++); | |
201 ext_pt[i] = 0; | |
202 it = lower_bound(arc_atom.begin(), arc_atom.end(), (char*)buf_ext); | |
203 if (it != arc_atom.end() && strcmp(it->filename_lower, buf_ext) == 0) return it; | |
204 return arc_atom.end(); | |
205 } | |
206 | |
207 ARCINFO* ARCFILE::Find(const char* fname, const char* ext) { | |
208 Init(); | |
209 iterator atom = SearchName(fname,ext); | |
210 if (atom == arc_atom.end()) { | |
211 if (next) return next->Find(fname, ext); | |
212 else return 0; | |
213 } | |
214 return MakeARCINFO(*atom); | |
215 } | |
216 ARCINFO* ARCFILE::MakeARCINFO(ARCFILE_ATOM& atom) { | |
217 if (atom.arcsize == atom.filesize) | |
218 return new ARCINFO(arcname, atom); | |
219 else // °µ½ÌÉÕ | |
220 return new ARCINFO_AVG32(arcname, atom); | |
221 } | |
222 ARCINFO* NULFILE::MakeARCINFO(ARCFILE_ATOM& atom) { | |
223 fprintf(stderr,"NULFILE::MakeARCINFO is invalid call!\n"); | |
224 return 0; | |
225 } | |
226 ARCINFO* SCN2kFILE::MakeARCINFO(ARCFILE_ATOM& atom) { | |
227 return new ARCINFO2k(arcname, atom); | |
228 } | |
229 ARCINFO* DIRFILE::MakeARCINFO(ARCFILE_ATOM& atom) { | |
230 char* name = atom.filename; | |
231 char* new_path = new char[strlen(arcname)+strlen(name)+1]; | |
232 strcpy(new_path,arcname); strcat(new_path, name); | |
233 ARCINFO* ret = new ARCINFO(new_path, atom); | |
234 delete[] new_path; | |
235 return ret; | |
236 } | |
237 | |
238 FILE* DIRFILE::Open(const char* fname) { | |
239 iterator atom = SearchName(fname); | |
240 if (atom == arc_atom.end()) return 0; | |
241 char* name = atom->filename; | |
242 // make FILE* | |
243 char* new_path = new char[strlen(arcname)+strlen(name)+1]; | |
244 strcpy(new_path,arcname); strcat(new_path, name); | |
245 FILE* ret = fopen(new_path, "rb+"); | |
246 fseek(ret, 0, 0); | |
247 delete[] new_path; | |
248 return ret; | |
249 } | |
250 | |
251 char* DIRFILE::SearchFile(const char* fname) { | |
252 iterator atom = SearchName(fname); | |
253 if (atom == arc_atom.end()) return 0; | |
254 char* name = atom->filename; | |
255 char* new_path = new char[strlen(arcname)+strlen(name)+1]; | |
256 strcpy(new_path,arcname); strcat(new_path, name); | |
257 struct stat sb; | |
258 if (stat(new_path, &sb) == 0 && | |
259 ( (sb.st_mode&S_IFMT) == S_IFREG || | |
260 (sb.st_mode&S_IFMT) == S_IFDIR)) { | |
261 return new_path; | |
262 } | |
263 delete[] new_path; | |
264 return 0; | |
265 } | |
266 | |
267 void ARCFILE::ListFiles(FILE* out) { | |
268 Init(); | |
269 if (arc_atom.empty()) return; | |
270 // list file name... | |
271 fprintf(out,"%16s %10s %10s %10s\n", "Filename", | |
272 "pointer","arcsize", "filesize"); | |
273 vector<ARCFILE_ATOM>::iterator it; | |
274 for (it=arc_atom.begin(); it!=arc_atom.end(); it++) { | |
275 fprintf(out,"%16s %10d %10d %10d\n", | |
276 it->filename,it->offset,it->arcsize,it->filesize); | |
277 } | |
278 return; | |
279 } | |
280 | |
281 void ARCFILE::InitList(void) { | |
282 Init(); | |
283 list_point = 0; | |
284 } | |
285 char* ARCFILE::ListItem(void) { | |
286 if (list_point < 0) return 0; | |
287 if (list_point >= arc_atom.size()) return 0; | |
288 char* fname = arc_atom[list_point].filename; | |
289 if (fname == 0) return 0; | |
290 char* ret = new char[strlen(fname)+1]; | |
291 strcpy(ret, fname); | |
292 list_point++; | |
293 return ret; | |
294 } | |
295 | |
296 int ARCFILE::CheckFileDeal(void) { | |
297 char buf[0x20]; | |
298 /* ¥Ø¥Ã¥À¤Î¥Á¥§¥Ã¥¯ */ | |
299 FILE* stream = fopen(arcname, "rb"); | |
300 if (stream == 0) { | |
301 fprintf(stderr, "Cannot open archive file : %s\n",arcname); | |
302 return 0; | |
303 } | |
304 fseek(stream, 0, 2); size_t arc_size = ftell(stream); | |
305 fseek(stream, 0, 0); | |
306 if (arc_size < 0x20) { | |
307 fclose(stream); | |
308 return 0; | |
309 } | |
310 fread(buf, 0x20, 1, stream); | |
311 if (strncmp(buf, "PACL", 4) != 0) { | |
312 fclose(stream); | |
313 return 0; | |
314 } | |
315 int len = read_little_endian_int(buf+0x10); | |
316 if (arc_size < size_t(0x20 + len*0x20)) { | |
317 fclose(stream); | |
318 return 0; | |
319 } | |
320 int i; int slen = 0; | |
321 for (i=0; i<len; i++) { | |
322 fread(buf, 0x20, 1, stream); | |
323 slen += strlen(buf)+1; | |
324 } | |
325 fclose(stream); | |
326 return slen; | |
327 } | |
328 void ARCFILE::ListupFiles(int fname_len) { | |
329 int i; char fbuf[0x20]; | |
330 fname_len *= 2; | |
331 char* buf = new char[fname_len]; | |
332 FILE* stream = fopen(arcname, "rb"); | |
333 if (stream == 0) { | |
334 fprintf(stderr, "Cannot open archive file : %s\n",arcname); | |
335 return; | |
336 } | |
337 fread(fbuf,0x20,1,stream); | |
338 int len = read_little_endian_int(fbuf+0x10); | |
339 ARCFILE_ATOM atom; | |
340 for (i=0; i<len; i++) { | |
341 fread(fbuf, 0x20, 1, stream); | |
342 int l = strlen(fbuf); | |
343 if (l*2+2 > fname_len) { | |
344 break; | |
345 } | |
346 atom.offset = read_little_endian_int(fbuf+0x10); | |
347 atom.arcsize = read_little_endian_int(fbuf+0x14); | |
348 atom.filesize = read_little_endian_int(fbuf+0x18); | |
349 int j; for (j=0; j<l; j++) { | |
350 buf[j] = fbuf[j]; | |
351 buf[j+l+1] = tolower(fbuf[j]); | |
352 } | |
353 buf[j] = buf[j+l+1] = 0; | |
354 atom.filename = buf; | |
355 atom.filename_lower = buf+l+1; | |
356 arc_atom.push_back(atom); | |
357 buf += l*2+2; fname_len -= l*2+2; | |
358 } | |
359 fclose(stream); | |
360 return; | |
361 } | |
362 int DIRFILE::CheckFileDeal(void) { | |
363 DIR* dir; struct dirent* ent; | |
364 int flen = 0; | |
365 dir = opendir(arcname); | |
366 if (dir == 0) { | |
367 fprintf(stderr, "Cannot open dir file : %s\n",arcname); | |
368 return 0; | |
369 } | |
370 int count = 0; | |
371 while( (ent = readdir(dir)) != NULL) { | |
372 count++; | |
373 flen += strlen(ent->d_name)+1; | |
374 } | |
375 closedir(dir); | |
376 return flen; | |
377 } | |
378 void DIRFILE::ListupFiles(int fname_len) { | |
43
01aa5ddf7dc8
A lot of very minor improvements (deleted some unused variables, and other things like that...)
thib
parents:
35
diff
changeset
|
379 DIR* dir; |
0 | 380 fname_len *= 2; |
381 dir = opendir(arcname); | |
382 if (dir == 0) { | |
383 fprintf(stderr, "Cannot open dir file : %s\n",arcname); | |
384 return; | |
385 } | |
386 /* °ì»þŪ¤Ë arcname ¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë°ÜÆ°¤¹¤ë */ | |
387 int old_dir_fd = open(".",O_RDONLY); | |
388 if (old_dir_fd < 0) { | |
389 closedir(dir); | |
390 return; | |
391 } | |
392 if (chdir(arcname) != 0) { | |
393 fprintf(stderr, "Cannot open dir file : %s\n",arcname); | |
394 closedir(dir); | |
395 close(old_dir_fd); | |
396 return; | |
397 }; | |
398 | |
399 char* buf = new char[fname_len]; | |
400 ARCFILE_ATOM atom; | |
401 struct stat sb; | |
402 struct dirent* ent; | |
403 while( (ent = readdir(dir)) != NULL) { | |
404 if (stat(ent->d_name, &sb) == -1) continue; | |
405 if ( (sb.st_mode & S_IFMT) == S_IFREG) { | |
406 atom.offset = 0; | |
407 atom.arcsize = sb.st_size; | |
408 atom.filesize = sb.st_size; | |
409 } else if ( (sb.st_mode & S_IFMT) == S_IFDIR) { | |
410 atom.offset = 0; | |
411 atom.arcsize = atom.filesize = 0; | |
412 } else { | |
413 continue; | |
414 } | |
415 int l = strlen(ent->d_name); | |
416 if (l*2+2 > fname_len) { | |
417 break; | |
418 } | |
419 int j; for (j=0; j<l+1; j++) { | |
420 buf[j] = ent->d_name[j]; | |
421 buf[j+l+1] = tolower(ent->d_name[j]); | |
422 } | |
423 atom.filename = buf; atom.filename_lower = buf+l+1; | |
424 arc_atom.push_back(atom); | |
425 buf += l*2+2; fname_len -= l*2+2; | |
426 } | |
427 /* chdir() ¤·¤¿¤Î¤ò¸µ¤ËÌá¤ë */ | |
428 closedir(dir); | |
429 fchdir(old_dir_fd); close(old_dir_fd); | |
430 return; | |
431 } | |
432 int NULFILE::CheckFileDeal(void) { | |
433 return 20; | |
434 } | |
435 void NULFILE::ListupFiles(int fname_len) { | |
436 char* s = new char[40]; | |
437 ARCFILE_ATOM atom; | |
438 atom.offset = 0; atom.arcsize = 0; atom.filesize = 0; | |
439 strcpy(s, "** null dummy **"); | |
440 atom.filename = s; | |
441 atom.filename_lower = s; | |
442 arc_atom.push_back(atom); | |
443 } | |
444 int SCN2kFILE::CheckFileDeal(void) { | |
445 /* ¥Ø¥Ã¥À¤Î¥Á¥§¥Ã¥¯ */ | |
446 FILE* stream = fopen(arcname, "rb"); | |
447 if (stream == 0) { | |
448 fprintf(stderr, "Cannot open archive file : %s\n",arcname); | |
449 return 0; | |
450 } | |
451 fseek(stream, 0, 2); size_t arc_size = ftell(stream); | |
452 fseek(stream, 0, 0); | |
453 if (arc_size < 10000*8) { | |
454 fclose(stream); | |
455 return 0; | |
456 } | |
457 char* buf = new char[10000*8]; | |
458 fread(buf, 10000, 8, stream); | |
459 /* size == 0 ¤Î¥Ç¡¼¥¿¤Ï¸ºß¤·¤Ê¤¤ */ | |
460 int count = 0; | |
461 int i; for (i=0; i<10000; i++) { | |
462 int tmp_offset = read_little_endian_int(buf+i*8); | |
463 int tmp_size = read_little_endian_int(buf+i*8+4); | |
464 if (tmp_size <= 0 || tmp_offset < 0 || tmp_offset+tmp_size > int(arc_size) ) continue; | |
465 count++; | |
466 } | |
467 fclose(stream); | |
468 delete[] buf; | |
469 return count*13; /* ¥Õ¥¡¥¤¥ë̾¤Ï seenXXXX.txt ¤À¤«¤é¡¢°ì¤Ä12ʸ»ú+null */ | |
470 } | |
471 void SCN2kFILE::ListupFiles(int fname_len) { | |
472 FILE* stream = fopen(arcname, "rb"); | |
473 if (stream == 0) { | |
474 fprintf(stderr, "Cannot open archive file : %s\n",arcname); | |
475 return; | |
476 } | |
477 char* sbuf = new char[fname_len]; | |
478 char* buf = new char[10000*8]; | |
479 fread(buf, 10000, 8, stream); | |
480 fseek(stream, 0, 2); size_t arc_size = ftell(stream); | |
481 ARCFILE_ATOM atom; | |
482 int i; for (i=0; i<10000; i++) { | |
483 char header[0x200]; | |
484 int tmp_offset = read_little_endian_int(buf+i*8); | |
485 int tmp_size = read_little_endian_int(buf+i*8+4); | |
486 if (tmp_size <= 0 || tmp_offset < 0 || tmp_offset+tmp_size > int(arc_size) ) continue; | |
487 /* header ¤òÆÀ¤Æ°µ½Ì·Á¼°¤Ê¤É¤òÄ´¤Ù¤ë */ | |
488 fseek(stream, tmp_offset, 0); | |
489 fread(header, 0x200, 1, stream); | |
490 int header_top = read_little_endian_int(header+0); | |
491 int file_version = read_little_endian_int(header+4); | |
492 | |
493 if (file_version == 0x1adb2) ; // Little Busters! | |
494 else if (file_version != 0x2712) continue; /* system version ¤¬°ã¤¦ */ | |
495 | |
496 if (header_top == 0x1cc) { /* ¸Å¤¤·Á¼° : avg2000 */ | |
497 int header_size = read_little_endian_int(header+0)+read_little_endian_int(header+0x20)*4; | |
498 int data_size = read_little_endian_int(header+0x24); | |
499 atom.arcsize = data_size + header_size; | |
500 atom.filesize = data_size + header_size; | |
501 atom.private_data = header_size; | |
502 | |
503 } else if (header_top == 0x1b8) { /* ½éÌ븥¾å */ | |
504 int header_size = read_little_endian_int(header+0)+read_little_endian_int(header+0x08)*4; | |
505 int data_size = read_little_endian_int(header+0x0c); | |
506 int compdata_size = read_little_endian_int(header+0x10); | |
507 atom.arcsize = compdata_size + header_size; | |
508 atom.filesize = data_size + header_size; | |
509 atom.private_data = header_size; | |
510 | |
511 } else if (header_top == 0x1d0) { /* ¿·¤·¤¤·Á¼°¡§ reallive */ | |
512 int header_size = read_little_endian_int(header+0x20); | |
513 int data_size = read_little_endian_int(header+0x24); | |
514 int compdata_size = read_little_endian_int(header+0x28); | |
515 atom.arcsize = compdata_size + header_size; | |
516 atom.filesize = data_size + header_size; | |
517 atom.private_data = header_size; | |
518 } else { | |
519 fprintf(stderr,"invalid header top; %x : not supported\n",header_top); | |
520 continue; /* ¥µ¥Ý¡¼¥È¤·¤Ê¤¤·Á¼° */ | |
521 } | |
522 | |
523 atom.offset = tmp_offset; | |
524 atom.filename = sbuf; | |
525 atom.filename_lower = sbuf; | |
526 arc_atom.push_back(atom); | |
527 sprintf(sbuf, "seen%04d.txt",i); sbuf += 13; | |
528 } | |
7 | 529 delete[] buf; |
0 | 530 fclose(stream); |
531 return; | |
532 } | |
533 | |
534 /******************************************************** | |
35 | 535 ** KEYHOLDER |
536 */ | |
537 void KEYHOLDER::SetKey(char new_key[16]) | |
538 { | |
539 unsigned short int i; | |
540 for (i=0; i < 16; i++) | |
541 key[i] = new_key[i]; | |
542 } | |
543 | |
544 void KEYHOLDER::SetKey2(char new_key[33]) | |
545 { | |
546 unsigned short int i; | |
547 char tmp[3]; | |
548 tmp[2] = '\0'; | |
549 for (i=0; i < 16; i++) { | |
550 tmp[0] = new_key[i*2]; | |
551 tmp[1] = new_key[i*2+1]; | |
552 key[i] = strtoul(tmp, NULL, 16); | |
553 } | |
554 } | |
555 | |
556 void KEYHOLDER::GuessKey(char *regname) | |
557 { | |
558 char key1[16] = { | |
559 0xa8, 0x28, 0xfd, 0x66, | |
560 0xa0, 0x23, 0x77, 0x69, | |
561 0xf9, 0x45, 0xf8, 0x2c, | |
562 0x7c, 0x00, 0xad, 0xf4 | |
563 }; | |
564 | |
565 char key2[16] = { | |
566 0xAF, 0x2F, 0xFB, 0x6B, | |
567 0xAF, 0x30, 0x77, 0x17, | |
568 0x87, 0x48, 0xFE, 0x2C, | |
569 0x68, 0x1A, 0xB9, 0xF0 | |
570 }; | |
571 | |
572 | |
573 if (strcmp(regname, "KEY\\CLANNAD_FV") == 0) { | |
574 SetKey(key2); | |
575 } | |
576 else { | |
577 SetKey(key1); | |
578 } | |
579 } | |
580 | |
581 const char * KEYHOLDER::GetKey(void) | |
582 { | |
583 return key; | |
584 } | |
585 | |
586 /******************************************************** | |
0 | 587 ** FILESEARCH ¥¯¥é¥¹¤Î¼ÂÁõ |
588 */ | |
589 | |
590 FILESEARCH::FILESEARCH(void) { | |
591 int i; | |
592 root_dir = 0; dat_dir = 0; | |
593 for (i=0; i<TYPEMAX; i++) { | |
594 searcher[i] = 0; | |
595 filenames[i] = default_dirnames[i]; | |
596 is_archived[i] = default_is_archived[i]; | |
597 } | |
598 } | |
599 FILESEARCH::~FILESEARCH(void) { | |
600 int i; | |
601 for (i=0; i<TYPEMAX; i++) { | |
602 if (filenames[i] != 0 && filenames[i] != default_dirnames[i]) delete[] filenames[i]; | |
603 if (searcher[i] && searcher[i] != dat_dir && searcher[i] != root_dir) { | |
604 delete searcher[i]; | |
605 } | |
606 } | |
607 if (dat_dir && dat_dir != root_dir) delete dat_dir; | |
608 if (root_dir) delete root_dir; | |
609 } | |
610 | |
611 int FILESEARCH::InitRoot(char* root) { | |
612 /* ɬÍפ˱þ¤¸¤Æ ~/ ¤òŸ³« */ | |
613 if (root[0] == '~' && root[1] == '/') { | |
614 char* home = getenv("HOME"); | |
615 if (home != 0) { | |
616 char* new_root = new char[strlen(home)+strlen(root)]; | |
617 strcpy(new_root, home); | |
618 strcat(new_root, root+1); | |
619 root = new_root; | |
620 } | |
621 } | |
622 /* ¸Å¤¤¥Ç¡¼¥¿¤ò¾Ã¤¹ */ | |
623 int i; | |
624 for (i=0; i<TYPEMAX; i++) { | |
625 if (searcher[i] != 0 && | |
626 searcher[i] != root_dir && | |
627 searcher[i] != dat_dir) { | |
628 delete searcher[i]; | |
629 } | |
630 searcher[i] = 0; | |
631 } | |
632 if (dat_dir && root_dir != dat_dir) delete dat_dir; | |
633 if (root_dir) delete root_dir; | |
634 dat_dir = 0; | |
635 | |
636 /* ¿·¤·¤¤¥Ç¥£¥ì¥¯¥È¥ê¤Î¤â¤È¤Ç½é´ü²½ */ | |
637 root_dir = new DIRFILE(root); | |
638 root_dir->Init(); | |
639 /* dat/ ¤ò¸¡º÷ */ | |
640 char* dat_path = root_dir->SearchFile("dat"); | |
641 if (dat_path == 0) { | |
642 /* ¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿¤é root ¤ò dat ¤ÎÂå¤ï¤ê¤Ë¤Ä¤«¤¦ */ | |
643 dat_dir = root_dir; | |
644 } else { | |
645 dat_dir = new DIRFILE(dat_path); | |
9 | 646 delete[] dat_path; |
0 | 647 dat_dir->Init(); |
648 } | |
649 searcher[ALL] = dat_dir; | |
650 searcher[ROOT] = root_dir; | |
651 return 0; | |
652 } | |
653 | |
654 void FILESEARCH::SetFileInformation(FILETYPE tp, ARCTYPE is_arc, char* filename) { | |
655 int type = tp; | |
656 if (type < 0 || type >= TYPEMAX) return; | |
657 ARCFILE* next_arc = 0; | |
658 /* ¤¹¤Ç¤Ë searcher ¤¬Â¸ºß¤¹¤ì¤Ð²òÊü */ | |
659 if (searcher[type] != 0 && | |
660 searcher[type] != root_dir && | |
661 searcher[type] != dat_dir) { | |
662 next_arc = searcher[type]->Next(); | |
663 delete searcher[type]; | |
664 } | |
665 searcher[type] = 0; | |
666 /* ŬÅö¤Ë½é´ü²½ */ | |
667 if (filenames[type] != 0 && | |
668 filenames[type] != default_dirnames[type]) delete[] filenames[type]; | |
47
5f548e5957a8
* get rid of the "deprecated conversion from string constant to ‘char*’" warnings
thib
parents:
43
diff
changeset
|
669 filenames[type] = filename; |
0 | 670 is_archived[type] = is_arc; |
671 searcher[type] = MakeARCFILE(is_arc, filename); | |
672 if (searcher[type] && next_arc) | |
673 searcher[type]->SetNext(next_arc); | |
674 return; | |
675 } | |
676 void FILESEARCH::AppendFileInformation(FILETYPE tp, ARCTYPE is_arc, char* filename) { | |
677 int type = tp; | |
678 if (type < 0 || type >= TYPEMAX) return; | |
679 /* searcher ¤¬¤Þ¤À³ä¤êÅö¤Æ¤é¤ì¤Æ¤Ê¤¤¾ì¹ç */ | |
680 if (searcher[type] == 0 || | |
681 searcher[type] == root_dir || | |
682 searcher[type] == dat_dir) { | |
683 searcher[type] = MakeARCFILE(is_archived[type], filenames[type]); | |
684 if (searcher[type] == 0) { /* ºîÀ®¤Ç¤¤Ê¤«¤Ã¤¿¾ì¹ç */ | |
685 /* ¤³¤Î·¿¾ðÊó¤ò FileInformation ¤È¤¹¤ë */ | |
686 SetFileInformation(tp, is_arc, filename); | |
687 return; | |
688 } | |
689 } | |
690 /* ½é´ü²½ */ | |
691 ARCFILE* arc = MakeARCFILE(is_arc, filename); | |
692 /* append */ | |
693 ARCFILE* cur; | |
694 for (cur=searcher[type]; cur->Next() != 0; cur = cur->Next()) ; | |
695 cur->SetNext(arc); | |
696 return; | |
697 } | |
698 | |
47
5f548e5957a8
* get rid of the "deprecated conversion from string constant to ‘char*’" warnings
thib
parents:
43
diff
changeset
|
699 ARCFILE* FILESEARCH::MakeARCFILE(ARCTYPE tp, const char* filename) { |
0 | 700 ARCFILE* arc = 0; |
701 char* file; | |
702 if (filename == 0) goto err; | |
703 if (tp == ATYPE_DIR) { | |
704 file = root_dir->SearchFile(filename); | |
705 } else { | |
706 file = dat_dir->SearchFile(filename); | |
707 if (file == 0) | |
708 file = root_dir->SearchFile(filename); | |
709 } | |
710 if (file == 0) goto err; | |
711 switch(tp) { | |
712 case ATYPE_DIR: arc = new DIRFILE(file); break; | |
713 case ATYPE_SCN2k: | |
714 case ATYPE_ARC: { | |
715 FILE* f = fopen(file, "rb"); | |
716 if (f == 0) goto err; | |
717 char header[32]; | |
718 memset(header, 0, 32); | |
719 fread(header, 32, 1, f); | |
720 fclose(f); | |
721 char magic_raf[8] = {'C','A','P','F',1,0,0,0}; | |
722 if (strncmp(header, "PACL", 4) == 0) arc = new ARCFILE(file); | |
723 else arc = new SCN2kFILE(file); | |
724 } | |
725 break; | |
726 default: fprintf(stderr,"FILESEARCH::MAKEARCFILE : invalid archive type; type %d name %s\n",tp,filename); | |
727 delete[] file; | |
728 goto err; | |
729 } | |
730 delete[] file; | |
731 return arc; | |
732 err: | |
733 arc = new NULFILE; | |
734 return arc; | |
735 | |
736 } | |
737 | |
738 ARCINFO* FILESEARCH::Find(FILETYPE type, const char* fname, const char* ext) { | |
739 if (searcher[type] == 0) { | |
740 /* searcher ºîÀ® */ | |
741 if (filenames[type] == 0) { | |
742 searcher[type] = dat_dir; | |
743 } else { | |
744 searcher[type] = MakeARCFILE(is_archived[type], filenames[type]); | |
745 if (searcher[type] == 0) { | |
746 fprintf(stderr,"FILESEARCH::Find : invalid archive type; type %d name %s\n",type,fname); | |
747 return 0; | |
748 } | |
749 } | |
750 } | |
751 return searcher[type]->Find(fname,ext); | |
752 } | |
753 | |
754 char** FILESEARCH::ListAll(FILETYPE type) { | |
755 /* ¤È¤ê¤¢¤¨¤º searcher ¤ò½é´ü²½ */ | |
756 Find(type, "THIS FILENAME MAY NOT EXIST IN THE FILE SYSTEM !!!"); | |
757 if (searcher[type] == 0) return 0; | |
758 /* Á´¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È¥¢¥Ã¥× */ | |
759 int deal = 0; | |
760 ARCFILE* file; | |
761 for (file = searcher[type]; file != 0; file = file->Next()) | |
762 deal += file->Deal(); | |
763 if (deal <= 0) return 0; | |
764 char** ret_list = new char*[deal+1]; | |
765 int count = 0; | |
766 for (file = searcher[type]; file != 0; file = file->Next()) { | |
767 file->InitList(); | |
768 char* f; | |
769 while( (f = file->ListItem() ) != 0) { | |
770 ret_list[count] = new char[strlen(f)+1]; | |
771 strcpy(ret_list[count], f); | |
772 count++; | |
773 } | |
774 } | |
775 ret_list[count] = 0; | |
776 return ret_list; | |
777 } | |
778 | |
779 ARCINFO::ARCINFO(const char* __arcname, ARCFILE_ATOM& atom) : info(atom) { | |
780 arcfile = new char[strlen(__arcname)+1]; | |
781 strcpy(arcfile, __arcname); | |
782 use_mmap = false; | |
783 mmapped_memory = 0; | |
784 data = 0; | |
785 fd = -1; | |
786 } | |
787 | |
788 ARCINFO::~ARCINFO() { | |
789 #ifdef HAVE_MMAP | |
790 if (mmapped_memory) munmap(mmapped_memory, info.arcsize); | |
791 #endif /* HAVE_MMAP */ | |
792 if (fd != -1) close(fd); | |
793 if (data != mmapped_memory) delete[] data; | |
794 delete[] arcfile; | |
795 } | |
796 | |
797 int ARCINFO::Size(void) const { | |
798 return info.filesize; | |
799 } | |
800 | |
801 /* ¥³¥Ô¡¼¤òÊÖ¤¹ */ | |
802 char* ARCINFO::CopyRead(void) { | |
803 const char* d = Read(); | |
804 if (d == 0) return 0; | |
805 int s = Size(); | |
806 if (s <= 0) return 0; | |
807 char* ret = new char[s]; memcpy(ret, d, s); | |
808 return ret; | |
809 } | |
810 | |
811 const char* ARCINFO::Path(void) const { | |
812 if (info.offset != 0) return 0; /* archive file ¤Ê¤Î¤Ç¥Ñ¥¹¤òµ¢¤»¤Ê¤¤ */ | |
813 char* ret = new char[strlen(arcfile)+1]; | |
814 strcpy(ret, arcfile); | |
815 return ret; | |
816 } | |
817 /* ¸ß´¹ÀÀìÍÑ */ | |
818 FILE* ARCINFO::OpenFile(int* length) const { | |
819 FILE* f = fopen(arcfile, "rb"); | |
820 if (info.offset) lseek(fileno(f), info.offset, SEEK_SET); | |
821 if (length) *length = info.arcsize; | |
822 return f; | |
823 } | |
824 | |
825 // Ÿ³«½èÍý¤Ï¤Ê¤· | |
826 bool ARCINFO::ExecExtract(void) { | |
827 return true; | |
828 } | |
829 /* Æɤ߹þ¤ß¤ò³«»Ï¤¹¤ë */ | |
830 const char* ARCINFO::Read(void) { | |
831 // ¤¹¤Ç¤Ë¥Ç¡¼¥¿¤òÆɤ߹þ¤ßºÑ¤ß¤Ê¤é²¿¤â¤·¤Ê¤¤ | |
832 if (data) return data; | |
833 | |
834 if (info.offset < 0 || info.arcsize <= 0) { | |
835 return 0; | |
836 } | |
837 /* ¥Õ¥¡¥¤¥ë¤ò³«¤¯ */ | |
838 fd = open(arcfile, O_RDONLY); | |
839 if (fd < 0) { | |
840 return 0; | |
841 } | |
842 if (lseek(fd, info.offset, 0) != info.offset) { | |
843 close(fd); fd = -1; return 0; | |
844 } | |
845 /* mmap ¤ò»î¤ß¤ë */ | |
846 #ifdef HAVE_MMAP | |
847 mmapped_memory = (char*)mmap(0, info.arcsize, PROT_READ, MAP_SHARED, fd, info.offset); | |
848 if (mmapped_memory != MAP_FAILED) { | |
849 use_mmap = true; | |
850 data = (const char*)mmapped_memory; | |
851 } else | |
852 #endif /* HAVE_MMAP */ | |
853 { | |
854 /* ¼ºÇÔ¡§ÉáÄ̤˥ե¡¥¤¥ë¤òÆɤ߹þ¤ß */ | |
855 char* d = new char[info.arcsize]; | |
856 read(fd, d, info.arcsize); | |
857 close(fd); | |
858 fd = -1; | |
859 use_mmap = false; | |
860 data = d; | |
861 } | |
862 /* Ÿ³«¤¹¤ë */ | |
863 if (! ExecExtract()) { | |
864 // ¼ºÇÔ | |
865 #ifdef HAVE_MMAP | |
866 if (use_mmap) { | |
867 munmap(mmapped_memory, info.arcsize); | |
868 if (data == (const char*)mmapped_memory) data = 0; | |
869 } | |
870 #endif /* HAVE_MMAP */ | |
871 delete[] (char*)data; | |
872 close(fd); | |
873 fd = -1; data = 0; | |
874 return 0; | |
875 } | |
876 #ifdef HAVE_MMAP | |
877 if (use_mmap && data != (const char*)mmapped_memory) { | |
878 // ¤¹¤Ç¤Ë mmap ¤ÏɬÍפʤ¤ | |
879 munmap(mmapped_memory, info.arcsize); | |
880 close(fd); | |
881 fd = -1; | |
882 use_mmap = false; | |
883 } | |
884 #endif /* HAVE_MMAP */ | |
885 return data; | |
886 } | |
887 | |
888 /********************************************** | |
889 ** | |
890 ** ²èÁüŸ³«·Ï¥¯¥é¥¹¤ÎÄêµÁ¡¢¼ÂÁõ | |
891 ** | |
892 *********************************************** | |
893 */ | |
894 GRPCONV::GRPCONV(void) { | |
895 filename = 0; | |
896 data = 0; | |
897 } | |
898 GRPCONV::~GRPCONV() { | |
899 if (filename) delete[] filename; | |
900 } | |
901 void GRPCONV::Init(const char* f, const char* d, int dlen, int w, int h, bool is_m) { | |
902 if (filename) delete[] filename; | |
903 if (f == 0) { | |
904 char* fn = new char[1]; | |
905 fn[0] = 0; | |
906 filename = fn; | |
907 } else { | |
908 char* fn = new char[strlen(f)+1]; | |
909 strcpy(fn,f); | |
910 filename = fn; | |
911 } | |
912 | |
913 data = d; | |
914 datalen = dlen; | |
915 width = w; | |
916 height = h; | |
917 is_mask = is_m; | |
918 } | |
919 class PDTCONV : public GRPCONV { | |
920 bool Read_PDT10(char* image); | |
921 bool Read_PDT11(char* image); | |
922 public: | |
923 PDTCONV(const char* _inbuf, int inlen, const char* fname); | |
924 ~PDTCONV() {} | |
925 bool Read(char* image); | |
926 }; | |
927 class G00CONV : public GRPCONV { | |
928 struct REGION { | |
929 int x1, y1, x2, y2; | |
930 int Width() { return x2-x1+1;} | |
931 int Height() { return y2-y1+1;} | |
932 void FixVar(int& v, int& w) { | |
933 if (v < 0) v = 0; | |
934 if (v >= w) v = w-1; | |
935 } | |
936 void Fix(int w, int h) { | |
937 FixVar(x1,w); | |
938 FixVar(x2,w); | |
939 FixVar(y1,h); | |
940 FixVar(y2,h); | |
941 if (x1 > x2) x2 = x1; | |
942 if (y1 > y2) y2 = y1; | |
943 } | |
944 }; | |
945 | |
946 void Copy_16bpp(char* image, int x, int y, const char* src, int bpl, int h); | |
947 void Copy_32bpp(char* image, int x, int y, const char* src, int bpl, int h); | |
948 bool Read_Type0(char* image); | |
949 bool Read_Type1(char* image); | |
950 bool Read_Type2(char* image); | |
951 public: | |
952 G00CONV(const char* _inbuf, int _inlen, const char* fname); | |
953 ~G00CONV() { } | |
954 bool Read(char* image); | |
955 }; | |
956 | |
957 class BMPCONV : public GRPCONV { | |
958 public: | |
959 BMPCONV(const char* _inbuf, int _inlen, const char* fname); | |
960 ~BMPCONV() {}; | |
961 bool Read(char* image); | |
962 }; | |
963 #if HAVE_LIBPNG | |
964 class PNGCONV : public GRPCONV { | |
965 const char* png_data; | |
966 static void png_read(png_structp, png_bytep, png_size_t); | |
967 | |
968 public: | |
969 PNGCONV(const char* _inbuf, int _inlen, const char* fname); | |
970 ~PNGCONV() {}; | |
971 bool Read(char* image); | |
972 }; | |
973 #endif | |
974 | |
975 #if HAVE_LIBJPEG | |
976 class JPEGCONV : public GRPCONV { | |
977 | |
978 public: | |
979 JPEGCONV(const char* _inbuf, int _inlen, const char* fname); | |
980 ~JPEGCONV() {}; | |
981 bool Read(char* image); | |
982 void SetupSrc(struct jpeg_decompress_struct* cinfo, const char* data, int size); | |
983 static void init_source(j_decompress_ptr cinfo); | |
984 static boolean fill_input_buffer(j_decompress_ptr cinfo); | |
985 static void skip_input_data(j_decompress_ptr cinfo, long num_bytes); | |
986 static boolean resync_to_restart(j_decompress_ptr cinfo, int desired); | |
987 static void term_source(j_decompress_ptr cinf); | |
988 }; | |
989 #endif | |
990 | |
991 GRPCONV* GRPCONV::AssignConverter(const char* inbuf, int inlen, const char* fname) { | |
992 /* ¥Õ¥¡¥¤¥ë¤ÎÆâÍƤ˱þ¤¸¤¿¥³¥ó¥Ð¡¼¥¿¡¼¤ò³ä¤êÅö¤Æ¤ë */ | |
993 GRPCONV* conv = 0; | |
994 if (inlen < 10) return 0; /* invalid file */ | |
43
01aa5ddf7dc8
A lot of very minor improvements (deleted some unused variables, and other things like that...)
thib
parents:
35
diff
changeset
|
995 if (strncmp(inbuf, "PDT10", 5) == 0 || strncmp(inbuf, "PDT11", 5) == 0) { /* PDT10 or PDT11 */ |
0 | 996 conv = new PDTCONV(inbuf, inlen, fname); |
997 if (conv->data == 0) { delete conv; conv = 0;} | |
998 } | |
999 #if HAVE_LIBPNG | |
1000 unsigned char png_magic[4] = {0x89, 'P', 'N', 'G'}; | |
1001 if (conv == 0 && memcmp(inbuf, png_magic,4) == 0) { | |
1002 conv = new PNGCONV(inbuf, inlen, fname); | |
1003 if (conv->data == 0) { delete conv; conv = 0;} | |
1004 } | |
1005 #endif | |
1006 #if HAVE_LIBJPEG | |
1007 if ( conv == 0 && *(unsigned char*)inbuf == 0xff && *(unsigned char*)(inbuf+1) == 0xd8 && | |
1008 (strncmp(inbuf+6, "JFIF",4) == 0 || strncmp(inbuf+6,"Exif",4) == 0)) { | |
1009 conv = new JPEGCONV(inbuf, inlen, fname); | |
1010 if (conv->data == 0) { delete conv; conv = 0;} | |
1011 } | |
1012 #endif | |
1013 if (conv == 0 && inbuf[0]=='B' && inbuf[1]=='M' && read_little_endian_int(inbuf+10)==0x36 && read_little_endian_int(inbuf+14) == 0x28) { // Windows BMP | |
1014 conv = new BMPCONV(inbuf, inlen, fname); | |
1015 if (conv->data == 0) { delete conv; conv = 0;} | |
1016 } | |
1017 if (conv == 0 && (inbuf[0] == 0 || inbuf[0] == 1 || inbuf[0] == 2)) { /* G00 */ | |
1018 conv = new G00CONV(inbuf, inlen, fname); | |
1019 if (conv->data == 0) { delete conv; conv = 0;} | |
1020 } | |
1021 return conv; | |
1022 } | |
1023 | |
1024 PDTCONV::PDTCONV(const char* _inbuf, int _inlen,const char* filename) { | |
1025 // PDT FILE ¤Î¥Ø¥Ã¥À | |
1026 // +00 'PDT10' (PDT11 ¤Ï̤Âбþ) | |
1027 // +08 ¥Õ¥¡¥¤¥ë¥µ¥¤¥º (̵»ë) | |
1028 // +0C width (¤Û¤Ü¤¹¤Ù¤Æ¡¢640) | |
1029 // +10 height(¤Û¤Ü¤¹¤Ù¤Æ¡¢480) | |
1030 // +14 (mask ¤Î) x ºÂɸ (¼ÂºÝ¤Ï̵»ë¡¦¡¦¡¦Á´¥Õ¥¡¥¤¥ë¤Ç 0 ) | |
1031 // +1c (mask ¤Î) yºÂɸ (¼ÂºÝ¤Ï̵»ë ¡¦¡¦¡¦Á´¥Õ¥¡¥¤¥ë¤Ç 0 ) | |
1032 // +20 mask ¤¬Â¸ºß¤¹¤ì¤Ð¡¢mask ¤Ø¤Î¥Ý¥¤¥ó¥¿ | |
1033 | |
1034 /* ¥Ø¥Ã¥À¥Á¥§¥Ã¥¯ */ | |
1035 if (_inlen < 0x20) { | |
1036 fprintf(stderr, "Invalid PDT file %s : size is too small\n",filename); | |
1037 return; | |
1038 } | |
1039 if (strncmp(_inbuf, "PDT10", 5) != 0 && strncmp(_inbuf, "PDT11", 5) != 0) { | |
1040 fprintf(stderr, "Invalid PDT file %s : not 'PDT10 / PDT11' file.\n", filename); | |
1041 return; | |
1042 } | |
1043 if (size_t(_inlen) != size_t(read_little_endian_int(_inbuf+0x08))) { | |
1044 fprintf(stderr, "Invalid archive file %s : invalid header.(size)\n", | |
1045 filename); | |
1046 return; | |
1047 } | |
1048 | |
1049 int w = read_little_endian_int(_inbuf+0x0c); | |
1050 int h = read_little_endian_int(_inbuf+0x10); | |
1051 int mask_pt = read_little_endian_int(_inbuf + 0x1c); | |
1052 Init(filename, _inbuf, _inlen, w, h, mask_pt ? true : false); | |
1053 | |
1054 return; | |
1055 } | |
1056 | |
1057 | |
1058 G00CONV::G00CONV(const char* _inbuf, int _inlen, const char* filename) { | |
1059 // G00 FILE ¤Î¥Ø¥Ã¥À | |
1060 // +00 type (1, 2) | |
1061 // +01: width(word) | |
1062 // +03: height(word) | |
1063 // type 1: (color table ÉÕ¤ LZ °µ½Ì ; PDT11 ¤ËÂбþ) | |
1064 // +05: °µ½Ì¥µ¥¤¥º(dword) ; +5 ¤¹¤ë¤È¥Ç¡¼¥¿Á´ÂΤΥµ¥¤¥º | |
1065 // +09: Ÿ³«¸å¥µ¥¤¥º(dword) | |
1066 // type 2: (¥Þ¥¹¥¯²Ä¡¢²èÁü¤ò¶ë·ÁÎΰè¤Ëʬ³ä¤·¤Æ¤½¤ì¤¾¤ì°µ½Ì) | |
1067 // +05: index size | |
1068 // +09: index table(each size is 0x18) | |
1069 // +00 | |
1070 // | |
1071 // +09+0x18*size+00: data size | |
1072 // +09+0x18*size+04: out size | |
1073 // +09+0x18*size+08: (data top) | |
1074 // | |
1075 | |
1076 /* ¥Ç¡¼¥¿¤«¤é¾ðÊóÆɤ߹þ¤ß */ | |
1077 int type = *_inbuf; | |
1078 | |
1079 int w = read_little_endian_short(_inbuf+1); | |
1080 int h = read_little_endian_short(_inbuf+3); | |
1081 if (w < 0 || h < 0) return; | |
1082 | |
1083 if (type == 0 || type == 1) { // color table ÉÕ¤°µ½Ì | |
1084 if (_inlen < 13) { | |
1085 fprintf(stderr, "Invalid G00 file %s : size is too small\n",filename); | |
1086 return; | |
1087 } | |
1088 int data_sz = read_little_endian_int(_inbuf+5); | |
1089 | |
1090 if (_inlen != data_sz+5) { | |
1091 fprintf(stderr, "Invalid archive file %s : invalid header.(size)\n", | |
1092 filename); | |
1093 return; | |
1094 } | |
1095 Init(filename, _inbuf, _inlen, w, h, false); | |
1096 } else if (type == 2) { // color table ¤Ê¤·¡¢¥Þ¥¹¥¯ÉÕ¤²Ä¤Î°µ½Ì | |
1097 | |
1098 int head_size = read_little_endian_short(_inbuf+5); | |
1099 if (head_size < 0 || head_size*24 > _inlen) return; | |
1100 | |
1101 const char* data_top = _inbuf + 9 + head_size*24; | |
1102 int data_sz = read_little_endian_int(data_top); | |
1103 if (_inbuf + _inlen != data_top + data_sz) { | |
1104 fprintf(stderr, "Invalid archive file %s : invalid header.(size)\n", | |
1105 filename); | |
1106 return; | |
1107 } | |
1108 Init(filename, _inbuf, _inlen, w, h, true); | |
1109 } | |
1110 return; | |
1111 } | |
1112 | |
1113 bool G00CONV::Read(char* image) { | |
1114 if (data == 0) return false; | |
1115 /* header ¼±ÊÌ */ | |
1116 int type = *data; | |
1117 if (type == 0) return Read_Type0(image); | |
1118 else if (type == 1) return Read_Type1(image); | |
1119 else if (type == 2) return Read_Type2(image); | |
1120 } | |
1121 | |
1122 /* °ìÈÌŪ¤Ê LZ °µ½Ì¤ÎŸ³«¥ë¡¼¥Á¥ó */ | |
1123 /* datasize ¤Ï¥Ç¡¼¥¿¤ÎÂ礤µ¡¢char / short / int ¤òÁÛÄê */ | |
1124 /* datatype ¤Ï Copy1Pixel (1¥Ç¡¼¥¿¤Î¥³¥Ô¡¼)µÚ¤Ó ExtractData(LZ °µ½Ì¤Î¾ðÊó¤òÆÀ¤ë | |
1125 ** ¤È¤¤¤¦¥á¥½¥Ã¥É¤ò¼ÂÁõ¤·¤¿¥¯¥é¥¹ */ | |
1126 static int bitrev_table[256] = { | |
1127 0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0, 0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0, | |
1128 0x08, 0x88, 0x48, 0xc8, 0x28, 0xa8, 0x68, 0xe8, 0x18, 0x98, 0x58, 0xd8, 0x38, 0xb8, 0x78, 0xf8, | |
1129 0x04, 0x84, 0x44, 0xc4, 0x24, 0xa4, 0x64, 0xe4, 0x14, 0x94, 0x54, 0xd4, 0x34, 0xb4, 0x74, 0xf4, | |
1130 0x0c, 0x8c, 0x4c, 0xcc, 0x2c, 0xac, 0x6c, 0xec, 0x1c, 0x9c, 0x5c, 0xdc, 0x3c, 0xbc, 0x7c, 0xfc, | |
1131 0x02, 0x82, 0x42, 0xc2, 0x22, 0xa2, 0x62, 0xe2, 0x12, 0x92, 0x52, 0xd2, 0x32, 0xb2, 0x72, 0xf2, | |
1132 0x0a, 0x8a, 0x4a, 0xca, 0x2a, 0xaa, 0x6a, 0xea, 0x1a, 0x9a, 0x5a, 0xda, 0x3a, 0xba, 0x7a, 0xfa, | |
1133 0x06, 0x86, 0x46, 0xc6, 0x26, 0xa6, 0x66, 0xe6, 0x16, 0x96, 0x56, 0xd6, 0x36, 0xb6, 0x76, 0xf6, | |
1134 0x0e, 0x8e, 0x4e, 0xce, 0x2e, 0xae, 0x6e, 0xee, 0x1e, 0x9e, 0x5e, 0xde, 0x3e, 0xbe, 0x7e, 0xfe, | |
1135 0x01, 0x81, 0x41, 0xc1, 0x21, 0xa1, 0x61, 0xe1, 0x11, 0x91, 0x51, 0xd1, 0x31, 0xb1, 0x71, 0xf1, | |
1136 0x09, 0x89, 0x49, 0xc9, 0x29, 0xa9, 0x69, 0xe9, 0x19, 0x99, 0x59, 0xd9, 0x39, 0xb9, 0x79, 0xf9, | |
1137 0x05, 0x85, 0x45, 0xc5, 0x25, 0xa5, 0x65, 0xe5, 0x15, 0x95, 0x55, 0xd5, 0x35, 0xb5, 0x75, 0xf5, | |
1138 0x0d, 0x8d, 0x4d, 0xcd, 0x2d, 0xad, 0x6d, 0xed, 0x1d, 0x9d, 0x5d, 0xdd, 0x3d, 0xbd, 0x7d, 0xfd, | |
1139 0x03, 0x83, 0x43, 0xc3, 0x23, 0xa3, 0x63, 0xe3, 0x13, 0x93, 0x53, 0xd3, 0x33, 0xb3, 0x73, 0xf3, | |
1140 0x0b, 0x8b, 0x4b, 0xcb, 0x2b, 0xab, 0x6b, 0xeb, 0x1b, 0x9b, 0x5b, 0xdb, 0x3b, 0xbb, 0x7b, 0xfb, | |
1141 0x07, 0x87, 0x47, 0xc7, 0x27, 0xa7, 0x67, 0xe7, 0x17, 0x97, 0x57, 0xd7, 0x37, 0xb7, 0x77, 0xf7, | |
1142 0x0f, 0x8f, 0x4f, 0xcf, 0x2f, 0xaf, 0x6f, 0xef, 0x1f, 0x9f, 0x5f, 0xdf, 0x3f, 0xbf, 0x7f, 0xff}; | |
1143 template<class DataType, class DataSize> inline int lzExtract(DataType& datatype,const char*& src, char*& dest, const char* srcend, char* destend) { | |
1144 int count = 0; | |
1145 const char* lsrcend = srcend; char* ldestend = destend; | |
1146 const char* lsrc = src; char* ldest = dest; | |
1147 | |
1148 if (lsrc+50 < lsrcend && ldest+1024 < ldestend) { | |
1149 /* ¤Þ¤º¡¢ÈÏ°Ï¥Á¥§¥Ã¥¯¤ò´Ë¤¯¤·¤Æ¹â®¤Ê¥ë¡¼¥Á¥ó¤ò»È¤¦ */ | |
1150 lsrcend -= 50; | |
1151 ldestend += 1024; | |
1152 while (ldest < ldestend && lsrc < lsrcend) { | |
1153 count += 8; | |
1154 int flag = int(*(unsigned char*)lsrc++); | |
1155 if (datatype.IsRev()) flag = bitrev_table[flag]; | |
1156 int i; for (i=0; i<8; i++) { | |
1157 if (flag & 0x80) { | |
1158 datatype.Copy1Pixel(lsrc, ldest); | |
1159 } else { | |
1160 int data, size; | |
1161 datatype.ExtractData(lsrc, data, size); | |
1162 DataSize* p_dest = ((DataSize*)ldest) - data; | |
1163 int k; for (k=0; k<size; k++) { | |
1164 p_dest[data] = *p_dest; | |
1165 p_dest++; | |
1166 } | |
1167 ldest += size*sizeof(DataSize); | |
1168 } | |
1169 flag <<= 1; | |
1170 } | |
1171 } | |
1172 lsrcend += 50; | |
1173 ldestend += 1024; | |
1174 } | |
1175 /* »Ä¤ê¤òÊÑ´¹ */ | |
1176 while (ldest < ldestend && lsrc < lsrcend) { | |
1177 count += 8; | |
1178 int flag = int(*(unsigned char*)lsrc++); | |
1179 if (datatype.IsRev()) flag = bitrev_table[flag]; | |
1180 int i; for (i=0; i<8 && ldest < ldestend && lsrc < lsrcend; i++) { | |
1181 if (flag & 0x80) { | |
1182 datatype.Copy1Pixel(lsrc, ldest); | |
1183 } else { | |
1184 int data, size; | |
1185 datatype.ExtractData(lsrc, data, size); | |
1186 DataSize* p_dest = ((DataSize*)ldest) - data; | |
1187 int k; for (k=0; k<size; k++) { | |
1188 p_dest[data] = *p_dest; | |
1189 p_dest++; | |
1190 } | |
1191 ldest += size*sizeof(DataSize); | |
1192 } | |
1193 flag <<= 1; | |
1194 } | |
1195 } | |
1196 dest=ldest; src=lsrc; | |
1197 return 0; | |
1198 } | |
1199 /* °ú¿ô¤ò¸º¤é¤¹¤¿¤á¤Îwrapper */ | |
1200 template<class DataType, class DataSize> inline int lzExtract(DataType datatype, DataSize datasize ,const char*& src, char*& dest, const char* srcend, char* destend) { | |
1201 return lzExtract<DataType, DataSize>(datatype,src,dest,srcend,destend); | |
1202 } | |
1203 | |
1204 /* ÉáÄ̤ΠPDT */ | |
1205 class Extract_DataType { | |
1206 public: | |
1207 static void ExtractData(const char*& lsrc, int& data, int& size) { | |
1208 data = read_little_endian_short(lsrc) & 0xffff; | |
1209 size = (data & 0x0f) + 1; | |
1210 data = (data>>4)+1; | |
1211 lsrc += 2; | |
1212 } | |
1213 static void Copy1Pixel(const char*& lsrc, char*& ldest) { | |
1214 #ifdef WORDS_BIGENDIAN | |
1215 ldest[3] = lsrc[0]; | |
1216 ldest[2] = lsrc[1]; | |
1217 ldest[1] = lsrc[2]; | |
1218 ldest[0] = 0; | |
1219 #else | |
1220 *(int*)ldest = read_little_endian_int(lsrc); ldest[3]=0; | |
1221 #endif | |
1222 lsrc += 3; ldest += 4; | |
1223 } | |
1224 static int IsRev(void) { return 0; } | |
1225 }; | |
1226 | |
1227 /* PDT11 ¤ÎÂè°ìÃʳ¬ÊÑ´¹ */ | |
1228 class Extract_DataType_PDT11 { | |
1229 int* index_table; | |
1230 public: | |
1231 Extract_DataType_PDT11(int* it) { index_table = it; } | |
1232 void ExtractData(const char*& lsrc, int& data, int& size) { | |
1233 data = int(*(const unsigned char*)lsrc); | |
1234 size = (data>>4) + 2; | |
1235 data = index_table[data&0x0f]; | |
1236 lsrc++; | |
1237 } | |
1238 static void Copy1Pixel(const char*& lsrc, char*& ldest) { | |
1239 *ldest = *lsrc; | |
1240 ldest++; lsrc++; | |
1241 } | |
1242 static int IsRev(void) { return 0; } | |
1243 }; | |
1244 /* ¥Þ¥¹¥¯ÍÑ */ | |
1245 class Extract_DataType_Mask { | |
1246 public: | |
1247 void ExtractData(const char*& lsrc, int& data, int& size) { | |
1248 int d = read_little_endian_short(lsrc) & 0xffff; | |
1249 size = (d & 0xff) + 2; | |
1250 data = (d>>8)+1; | |
1251 lsrc += 2; | |
1252 } | |
1253 static void Copy1Pixel(const char*& lsrc, char*& ldest) { | |
1254 *ldest = *lsrc; | |
1255 ldest++; lsrc++; | |
1256 } | |
1257 static int IsRev(void) { return 0; } | |
1258 }; | |
1259 /* ½ñ¸ËÍÑ */ | |
1260 class Extract_DataType_ARC { | |
1261 public: | |
1262 void ExtractData(const char*& lsrc, int& data, int& size) { | |
1263 data = read_little_endian_short(lsrc) & 0xffff; | |
1264 size = (data&0x0f) + 2; | |
1265 data = (data>>4) + 1; | |
1266 lsrc+= 2; | |
1267 } | |
1268 static void Copy1Pixel(const char*& lsrc, char*& ldest) { | |
1269 *ldest = *lsrc; | |
1270 ldest++; lsrc++; | |
1271 } | |
1272 static int IsRev(void) { return 0; } | |
1273 }; | |
1274 /* avg2000 ¤Î¥·¥Ê¥ê¥ªÍÑ */ | |
1275 class Extract_DataType_SCN2k { | |
1276 public: | |
1277 void ExtractData(const char*& lsrc, int& data, int& size) { | |
1278 data = read_little_endian_short(lsrc) & 0xffff; | |
1279 size = (data&0x0f) + 2; | |
1280 data = (data>>4); | |
1281 lsrc+= 2; | |
1282 } | |
1283 static void Copy1Pixel(const char*& lsrc, char*& ldest) { | |
1284 *ldest = *lsrc; | |
1285 ldest++; lsrc++; | |
1286 } | |
1287 static int IsRev(void) { return 1; } | |
1288 }; | |
1289 /* ReadLive ¤Î type0 */ | |
1290 class Extract_DataType_G00Type0 { | |
1291 public: | |
1292 static void ExtractData(const char*& lsrc, int& data, int& size) { | |
1293 data = read_little_endian_short(lsrc) & 0xffff; | |
1294 size = ((data & 0x0f)+ 1) * 3; | |
1295 data = (data>>4) * 3; | |
1296 lsrc += 2; | |
1297 } | |
1298 static void Copy1Pixel(const char*& lsrc, char*& ldest) { | |
1299 #ifdef WORDS_BIGENDIAN | |
1300 ldest[0] = lsrc[0]; | |
1301 ldest[1] = lsrc[1]; | |
1302 ldest[2] = lsrc[2]; | |
1303 #else /* LITTLE ENDIAN / intel architecture */ | |
1304 *(int*)ldest = *(int*)lsrc; | |
1305 #endif | |
1306 lsrc += 3; ldest += 3; | |
1307 } | |
1308 static int IsRev(void) { return 1; } | |
1309 }; | |
1310 | |
1311 | |
1312 bool PDTCONV::Read(char* image) { | |
1313 if (data == 0) return false; | |
1314 | |
1315 if (strncmp(data, "PDT10", 5) == 0) { | |
1316 if (! Read_PDT10(image)) return false; | |
1317 } else if (strncmp(data, "PDT11", 5) == 0) { | |
1318 if (! Read_PDT11(image)) return false; | |
1319 } | |
1320 if (! is_mask) return true; | |
1321 // ¥Þ¥¹¥¯Æɤ߹þ¤ß | |
1322 int mask_pt = read_little_endian_int(data + 0x1c); | |
1323 char* buf = new char[width*height+1024]; | |
1324 const char* src = data + mask_pt; | |
1325 const char* srcend = data + datalen; | |
1326 char* dest = buf; | |
1327 char* destend = buf + width*height; | |
1328 while(lzExtract(Extract_DataType_Mask(), char(), src, dest, srcend, destend)) ; | |
1329 int i; int len = width*height; | |
1330 src = buf; dest = image; | |
1331 for (i=0; i<len; i++) { | |
1332 *(int*)dest |= int(*(unsigned char*)src) << 24; | |
1333 src++; | |
1334 dest += 4; | |
1335 } | |
1336 delete[] buf; | |
1337 return true; | |
1338 } | |
1339 | |
1340 | |
1341 bool PDTCONV::Read_PDT10(char* image) { | |
1342 int mask_pt = read_little_endian_int(data + 0x1c); | |
1343 | |
1344 const char* src = data + 0x20; | |
1345 const char* srcend; | |
1346 if (mask_pt == 0) srcend = data + datalen; | |
1347 else srcend = data + mask_pt; | |
1348 | |
1349 char* dest = image; | |
1350 char* destend; | |
1351 | |
1352 destend = image + width*height*4; | |
1353 while(lzExtract(Extract_DataType(), int(), src, dest, srcend, destend)) ; | |
1354 return true; | |
1355 } | |
1356 bool PDTCONV::Read_PDT11(char* image) { | |
1357 int index_table[16]; | |
1358 int color_table[256]; | |
1359 int i; | |
1360 for (i=0; i<16; i++) | |
1361 index_table[i] = read_little_endian_int(data + 0x420 + i*4); | |
1362 | |
1363 int mask_pt = read_little_endian_int(data + 0x1c); | |
1364 | |
1365 const char* src = data + 0x460; | |
1366 const char* srcend; | |
1367 if (mask_pt == 0) srcend = data + datalen; | |
1368 else srcend = data + mask_pt; | |
1369 | |
1370 char* dest = image; | |
1371 char* destend = image + width*height; | |
1372 | |
1373 while(lzExtract(Extract_DataType_PDT11(index_table), char(), src, dest, srcend, destend)) ; | |
1374 | |
1375 const char* cur = data + 0x20; | |
1376 for (i=0; i<256; i++) { | |
1377 color_table[i] = read_little_endian_int(cur); | |
1378 cur += 4; | |
1379 } | |
1380 src = image + width*height; | |
1381 int* desti = (int*)(image + width*height*4); | |
1382 while(desti != (int*)image) | |
1383 *--desti = color_table[*(unsigned char*)--src]; | |
1384 return true; | |
1385 } | |
1386 | |
1387 /* dest ¤Ï dest_end ¤è¤ê¤â 256 byte °Ê¾åÀè¤Þ¤Ç | |
1388 ** ½ñ¤¹þ¤ß²Äǽ¤Ç¤¢¤ë¤³¤È¡£ | |
1389 */ | |
1390 void ARCINFO::Extract(char*& dest_start, char*& src_start, char* dest_end, char* src_end) { | |
1391 const char* src = src_start; | |
1392 while (lzExtract(Extract_DataType_ARC(), char(), src, dest_start, src_end, dest_end)) ; | |
1393 src_start = (char*)src; | |
1394 return; | |
1395 } | |
1396 void ARCINFO::Extract2k(char*& dest_start, char*& src_start, char* dest_end, char* src_end) { | |
1397 const char* src = src_start; | |
1398 while (lzExtract(Extract_DataType_SCN2k(), char(), src, dest_start, src_end, dest_end)) ; | |
1399 src_start = (char*)src; | |
1400 return; | |
1401 } | |
1402 | |
1403 bool ARCINFO_AVG32::ExecExtract(void) { | |
1404 // ¥Ø¥Ã¥À¤Î¥Á¥§¥Ã¥¯ | |
1405 if (strncmp(data, "PACK", 4) != 0) return false; | |
1406 if (read_little_endian_int(data+8) != info.filesize) return false; | |
1407 if (read_little_endian_int(data+12) != info.arcsize) return false; | |
1408 | |
1409 // ¥Õ¥¡¥¤¥ë¤òŸ³«¤¹¤ë | |
1410 char* ret_data = new char[info.filesize+1024]; | |
1411 | |
1412 const char* s = data + 0x10; | |
1413 const char* send = data + info.arcsize; | |
1414 char* d = ret_data; | |
1415 char* dend = ret_data + info.filesize; | |
1416 while(lzExtract(Extract_DataType_ARC(), char(), s, d, send, dend)) ; | |
1417 if (! use_mmap) delete[] data; | |
1418 data = ret_data; | |
1419 return true; | |
1420 } | |
1421 | |
1422 char ARCINFO2k::decode_seed[256] ={ | |
1423 0x8b ,0xe5 ,0x5d ,0xc3 ,0xa1 ,0xe0 ,0x30 ,0x44 ,0x00 ,0x85 ,0xc0 ,0x74 ,0x09 ,0x5f ,0x5e ,0x33 | |
1424 ,0xc0 ,0x5b ,0x8b ,0xe5 ,0x5d ,0xc3 ,0x8b ,0x45 ,0x0c ,0x85 ,0xc0 ,0x75 ,0x14 ,0x8b ,0x55 ,0xec | |
1425 ,0x83 ,0xc2 ,0x20 ,0x52 ,0x6a ,0x00 ,0xe8 ,0xf5 ,0x28 ,0x01 ,0x00 ,0x83 ,0xc4 ,0x08 ,0x89 ,0x45 | |
1426 ,0x0c ,0x8b ,0x45 ,0xe4 ,0x6a ,0x00 ,0x6a ,0x00 ,0x50 ,0x53 ,0xff ,0x15 ,0x34 ,0xb1 ,0x43 ,0x00 | |
1427 ,0x8b ,0x45 ,0x10 ,0x85 ,0xc0 ,0x74 ,0x05 ,0x8b ,0x4d ,0xec ,0x89 ,0x08 ,0x8a ,0x45 ,0xf0 ,0x84 | |
1428 ,0xc0 ,0x75 ,0x78 ,0xa1 ,0xe0 ,0x30 ,0x44 ,0x00 ,0x8b ,0x7d ,0xe8 ,0x8b ,0x75 ,0x0c ,0x85 ,0xc0 | |
1429 ,0x75 ,0x44 ,0x8b ,0x1d ,0xd0 ,0xb0 ,0x43 ,0x00 ,0x85 ,0xff ,0x76 ,0x37 ,0x81 ,0xff ,0x00 ,0x00 | |
1430 ,0x04 ,0x00 ,0x6a ,0x00 ,0x76 ,0x43 ,0x8b ,0x45 ,0xf8 ,0x8d ,0x55 ,0xfc ,0x52 ,0x68 ,0x00 ,0x00 | |
1431 ,0x04 ,0x00 ,0x56 ,0x50 ,0xff ,0x15 ,0x2c ,0xb1 ,0x43 ,0x00 ,0x6a ,0x05 ,0xff ,0xd3 ,0xa1 ,0xe0 | |
1432 ,0x30 ,0x44 ,0x00 ,0x81 ,0xef ,0x00 ,0x00 ,0x04 ,0x00 ,0x81 ,0xc6 ,0x00 ,0x00 ,0x04 ,0x00 ,0x85 | |
1433 ,0xc0 ,0x74 ,0xc5 ,0x8b ,0x5d ,0xf8 ,0x53 ,0xe8 ,0xf4 ,0xfb ,0xff ,0xff ,0x8b ,0x45 ,0x0c ,0x83 | |
1434 ,0xc4 ,0x04 ,0x5f ,0x5e ,0x5b ,0x8b ,0xe5 ,0x5d ,0xc3 ,0x8b ,0x55 ,0xf8 ,0x8d ,0x4d ,0xfc ,0x51 | |
1435 ,0x57 ,0x56 ,0x52 ,0xff ,0x15 ,0x2c ,0xb1 ,0x43 ,0x00 ,0xeb ,0xd8 ,0x8b ,0x45 ,0xe8 ,0x83 ,0xc0 | |
1436 ,0x20 ,0x50 ,0x6a ,0x00 ,0xe8 ,0x47 ,0x28 ,0x01 ,0x00 ,0x8b ,0x7d ,0xe8 ,0x89 ,0x45 ,0xf4 ,0x8b | |
1437 ,0xf0 ,0xa1 ,0xe0 ,0x30 ,0x44 ,0x00 ,0x83 ,0xc4 ,0x08 ,0x85 ,0xc0 ,0x75 ,0x56 ,0x8b ,0x1d ,0xd0 | |
1438 ,0xb0 ,0x43 ,0x00 ,0x85 ,0xff ,0x76 ,0x49 ,0x81 ,0xff ,0x00 ,0x00 ,0x04 ,0x00 ,0x6a ,0x00 ,0x76}; | |
30 | 1439 |
0 | 1440 |
1441 bool ARCINFO2k::ExecExtract(void) { | |
1442 int i; | |
1443 char* ret_data = new char[info.filesize + 1024]; | |
1444 char* decoded_data = new char[info.arcsize + 1024]; | |
1445 | |
1446 /* header ¤Î¥³¥Ô¡¼ */ | |
1447 memcpy(ret_data, data, info.private_data); | |
1448 | |
1449 /* ¤Þ¤º¡¢xor ¤Î°Å¹æ²½¤ò²ò¤¯ */ | |
1450 const char* s; const char* send; | |
1451 char* d; char* dend; | |
1452 | |
1453 s = data + info.private_data; | |
1454 send = data + info.arcsize; | |
1455 d = decoded_data + info.private_data; | |
1456 dend = decoded_data + info.arcsize; | |
1457 i = 0; | |
1458 while(s != send) | |
1459 *d++ = *s++ ^ decode_seed[(i++)&0xff]; | |
1460 | |
1461 if (info.filesize == info.arcsize) { | |
1462 memcpy(ret_data+info.private_data, decoded_data + info.private_data + 8, info.arcsize - info.private_data - 8); | |
1463 } else { | |
1464 /* °µ½Ì¤µ¤ì¤Æ¤¤¤ë¤Ê¤é¡¢¤½¤ì¤òŸ³« */ | |
1465 s = (const char*)(decoded_data + info.private_data + 8); | |
1466 send = (const char*)(decoded_data + info.arcsize); | |
1467 d = ret_data + info.private_data; | |
1468 dend = ret_data + info.filesize; | |
1469 while(lzExtract(Extract_DataType_SCN2k(), char(), s, d, send, dend)) ; | |
1470 } | |
1471 if (read_little_endian_int(data+4) == 0x1adb2) { // Little Busters! | |
35 | 1472 const char *decode_key = key_holder.GetKey(); |
0 | 1473 int header_size = info.private_data; |
1474 for (i=0x100; i<=0x200 && header_size+i < info.filesize; i++) { | |
30 | 1475 ret_data[header_size+i] ^= decode_key[i&0x0f]; |
0 | 1476 } |
1477 } | |
1478 delete[] decoded_data; | |
1479 if (! use_mmap) delete[] data; | |
1480 data = ret_data; | |
1481 return true; | |
1482 } | |
1483 | |
1484 bool G00CONV::Read_Type0(char* image) { | |
1485 int uncompress_size = read_little_endian_int(data+9); | |
1486 char* uncompress_data = new char[uncompress_size+1024]; | |
1487 | |
1488 // ¤Þ¤ºÅ¸³« | |
1489 const char* src = data + 13; | |
1490 const char* srcend = data + datalen; | |
1491 char* dest = uncompress_data; | |
1492 char* dstend = uncompress_data + uncompress_size; | |
43
01aa5ddf7dc8
A lot of very minor improvements (deleted some unused variables, and other things like that...)
thib
parents:
35
diff
changeset
|
1493 while(lzExtract(Extract_DataType_G00Type0(), char(), src, dest, srcend, dstend)){}; |
0 | 1494 // image ¤Ë¥³¥Ô¡¼ |
1495 CopyRGB(image, uncompress_data); | |
1496 delete[] uncompress_data; | |
1497 return true; | |
1498 } | |
1499 bool G00CONV::Read_Type1(char* image) { | |
1500 int i; | |
1501 int uncompress_size = read_little_endian_int(data+9) + 1; | |
1502 char* uncompress_data = new char[uncompress_size + 1024]; | |
1503 | |
1504 // ¤Þ¤º¡¢Å¸³« | |
1505 const char* src = data + 13; | |
1506 const char* srcend = data + datalen; | |
1507 char* dest = uncompress_data; | |
1508 char* destend = uncompress_data + uncompress_size; | |
1509 | |
43
01aa5ddf7dc8
A lot of very minor improvements (deleted some unused variables, and other things like that...)
thib
parents:
35
diff
changeset
|
1510 while(lzExtract(Extract_DataType_SCN2k(), char(), src, dest, srcend, destend)){}; |
0 | 1511 |
1512 int colortable[256]; | |
1513 memset(colortable, 0, sizeof(int)*256); | |
1514 int colortable_len = read_little_endian_short(uncompress_data); | |
1515 if (colortable_len > 256) colortable_len = 256; | |
1516 if (colortable_len < 0) colortable_len = 0; | |
1517 for (i=0; i<colortable_len; i++) { | |
1518 colortable[i] = read_little_endian_int(uncompress_data+2+i*4); | |
1519 } | |
1520 src = uncompress_data + 2 + read_little_endian_short(uncompress_data)*4; | |
1521 srcend = uncompress_data + uncompress_size; | |
1522 dest = image; destend = image + width*height*4; | |
1523 while(dest < destend && src < srcend) { | |
1524 *(int*)dest = colortable[*(unsigned char*)src]; | |
1525 dest += 4; src ++; | |
1526 } | |
1527 delete[] uncompress_data; | |
1528 return true; | |
1529 } | |
1530 | |
1531 bool G00CONV::Read_Type2(char* image) { | |
1532 memset(image, 0, width*height*4); | |
1533 /* ʬ³äÎΰè¤òÆÀ¤ë */ | |
1534 int region_deal = read_little_endian_int(data+5); | |
1535 REGION* region_table = new REGION[region_deal]; | |
1536 | |
1537 const char* head = data + 9; | |
1538 int i; for (i=0; i<region_deal; i++) { | |
1539 region_table[i].x1 = read_little_endian_int(head+0); | |
1540 region_table[i].y1 = read_little_endian_int(head+4); | |
1541 region_table[i].x2 = read_little_endian_int(head+8); | |
1542 region_table[i].y2 = read_little_endian_int(head+12); | |
1543 region_table[i].Fix(width, height); | |
1544 head += 24; | |
1545 } | |
1546 | |
1547 // Ÿ³« | |
1548 int uncompress_size = read_little_endian_int(head+4); | |
1549 char* uncompress_data = new char[uncompress_size + 1024]; | |
1550 | |
1551 const char* src = head + 8; | |
1552 const char* srcend = data + datalen; | |
1553 char* dest = uncompress_data; | |
1554 char* destend = uncompress_data + uncompress_size; | |
43
01aa5ddf7dc8
A lot of very minor improvements (deleted some unused variables, and other things like that...)
thib
parents:
35
diff
changeset
|
1555 while(lzExtract(Extract_DataType_SCN2k(), char(), src, dest, srcend, destend)){}; |
0 | 1556 |
1557 /* region_deal2 == region_deal ¤Î¤Ï¤º¡Ä¡Ä*/ | |
1558 int region_deal2 = read_little_endian_int(uncompress_data); | |
1559 if (region_deal > region_deal2) region_deal = region_deal2; | |
1560 | |
1561 for (i=0; i < region_deal; i++) { | |
1562 int offset = read_little_endian_int(uncompress_data + i*8 + 4); | |
1563 int length = read_little_endian_int(uncompress_data + i*8 + 8); | |
1564 src = (const char*)(uncompress_data + offset + 0x74); | |
1565 srcend = (const char*)(uncompress_data + offset + length); | |
1566 while(src < srcend) { | |
1567 int x, y, w, h; | |
1568 /* ¥³¥Ô¡¼¤¹¤ëÎΰè¤òÆÀ¤ë */ | |
1569 x = read_little_endian_short(src); | |
1570 y = read_little_endian_short(src+2); | |
1571 w = read_little_endian_short(src+6); | |
1572 h = read_little_endian_short(src+8); | |
1573 src += 0x5c; | |
1574 | |
1575 x += region_table[i].x1; | |
1576 y += region_table[i].y1; | |
1577 | |
1578 Copy_32bpp(image, x, y, src, w*4, h); | |
1579 | |
1580 src += w*h*4; | |
1581 } | |
1582 } | |
1583 delete[] uncompress_data; | |
7 | 1584 delete[] region_table; |
0 | 1585 return true; |
1586 } | |
1587 | |
1588 void G00CONV::Copy_32bpp(char* image, int x, int y, const char* src, int bpl, int h) { | |
1589 int i; | |
1590 int* dest = (int*)(image + x*4 + y*4*width); | |
1591 int w = bpl / 4; | |
1592 for (i=0; i<h; i++) { | |
1593 const char* s = src; | |
1594 int* d = dest; | |
1595 int j; for (j=0; j<w; j++) { | |
1596 *d++ = read_little_endian_int(s); | |
1597 s += 4; | |
1598 } | |
1599 src += bpl; dest += width; | |
1600 } | |
1601 } | |
1602 | |
1603 void GRPCONV::CopyRGBA_rev(char* image, const char* buf) { | |
1604 int mask = is_mask ? 0 : 0xff000000; | |
1605 /* ¿§ÊÑ´¹¤ò¹Ô¤¦ */ | |
1606 int len = width * height; | |
1607 int i; | |
1608 unsigned char* s = (unsigned char*)buf; | |
1609 int* d = (int*)image; | |
1610 for(i=0; i<len; i++) { | |
1611 *d = (int(s[2])) | (int(s[1])<<8) | (int(s[0])<<16) | (int(s[3])<<24) | mask; | |
1612 d++; s += 4; | |
1613 } | |
1614 return; | |
1615 } | |
1616 | |
1617 void GRPCONV::CopyRGBA(char* image, const char* buf) { | |
1618 if (!is_mask) { | |
1619 CopyRGB(image, buf); | |
1620 return; | |
1621 } | |
1622 /* ¿§ÊÑ´¹¤ò¹Ô¤¦ */ | |
1623 int len = width * height; | |
1624 int i; | |
1625 int* outbuf = (int*)image; | |
1626 for(i=0; i<len; i++) { | |
1627 *outbuf++ = read_little_endian_int(buf); | |
1628 buf += 4; | |
1629 } | |
1630 return; | |
1631 } | |
1632 void GRPCONV::CopyRGB(char* image, const char* buf) { | |
1633 /* ¿§ÊÑ´¹¤ò¹Ô¤¦ */ | |
1634 int len = width * height; | |
1635 int i; | |
1636 unsigned char* s = (unsigned char*)buf; | |
1637 int* d = (int*)image; | |
1638 for(i=0; i<len; i++) { | |
1639 *d = (int(s[0])) | (int(s[1])<<8) | (int(s[2])<<16) | 0xff000000; | |
1640 d++; s+=3; | |
1641 } | |
1642 return; | |
1643 } | |
1644 | |
1645 #if HAVE_LIBPNG | |
1646 PNGCONV::PNGCONV(const char* _inbuf, int _inlen, const char* _filename) { | |
1647 int w,h,type; | |
1648 png_structp png_ptr = 0; | |
1649 png_infop info_ptr = 0; | |
1650 png_infop end_info = 0; | |
1651 | |
1652 png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0); | |
1653 if (!png_ptr) return; | |
1654 | |
1655 info_ptr = png_create_info_struct(png_ptr); | |
1656 if (!info_ptr) goto err; | |
1657 | |
1658 end_info = png_create_info_struct(png_ptr); | |
1659 if (!end_info) goto err; | |
1660 | |
1661 if (setjmp(png_jmpbuf(png_ptr))) { | |
1662 /* error occured !! */ | |
1663 goto err; | |
1664 } | |
1665 | |
1666 /* initialize I/O */ | |
1667 png_data = _inbuf; | |
1668 png_set_read_fn(png_ptr, (png_voidp)this, &png_read); | |
1669 | |
1670 png_read_info(png_ptr, info_ptr); | |
1671 | |
1672 w = png_get_image_width(png_ptr, info_ptr); | |
1673 h = png_get_image_height(png_ptr, info_ptr); | |
1674 type = png_get_color_type(png_ptr, info_ptr); | |
1675 | |
1676 if (type == PNG_COLOR_TYPE_GRAY || type == PNG_COLOR_TYPE_GRAY_ALPHA) goto err; // not supported | |
1677 | |
1678 Init(filename, _inbuf, _inlen, w, h, type == PNG_COLOR_TYPE_RGB_ALPHA ? true : false); | |
1679 | |
1680 err: | |
1681 if (png_ptr) { | |
1682 if (end_info) | |
1683 png_destroy_read_struct(&png_ptr, &info_ptr,&end_info); | |
1684 else if (info_ptr) | |
1685 png_destroy_read_struct(&png_ptr, &info_ptr,(png_infopp)0); | |
1686 else | |
1687 png_destroy_read_struct(&png_ptr, (png_infopp) 0,(png_infopp)0); | |
1688 } | |
1689 return; | |
1690 } | |
1691 | |
1692 bool PNGCONV::Read(char* image) { | |
1693 if (data == 0) return false; | |
1694 bool retcode = false; | |
1695 int bpp = is_mask ? 4 : 3; | |
1696 int i; | |
1697 char* buf; | |
1698 png_bytepp row_pointers = 0; | |
1699 | |
1700 png_structp png_ptr = 0; | |
1701 png_infop info_ptr = 0; | |
1702 png_infop end_info = 0; | |
1703 | |
1704 png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0); | |
1705 if (!png_ptr) goto err; | |
1706 info_ptr = png_create_info_struct(png_ptr); | |
1707 if (!info_ptr) goto err; | |
1708 end_info = png_create_info_struct(png_ptr); | |
1709 if (!end_info) goto err; | |
1710 | |
1711 if (setjmp(png_jmpbuf(png_ptr))) { | |
1712 /* error occured !! */ | |
1713 goto err; | |
1714 } | |
1715 | |
1716 buf= new char[width*height*4]; | |
1717 /* initialize I/O */ | |
1718 png_data = data; | |
1719 png_set_read_fn(png_ptr, (png_voidp)this, &png_read); | |
1720 | |
1721 row_pointers = (png_bytepp)png_malloc(png_ptr, height*sizeof(png_bytep)); | |
1722 for (i=0; i<height; i++) row_pointers[i] = (png_bytep)(buf + width*bpp*i); | |
1723 png_set_rows(png_ptr, info_ptr, row_pointers); | |
1724 | |
1725 png_read_png(png_ptr, info_ptr, | |
1726 PNG_TRANSFORM_STRIP_16 | PNG_TRANSFORM_EXPAND | PNG_TRANSFORM_PACKING | PNG_TRANSFORM_BGR,0); | |
1727 | |
1728 if (buf != image) { | |
1729 CopyRGBA(image, buf); | |
1730 delete[] buf; | |
1731 } | |
1732 png_free(png_ptr, (png_voidp)row_pointers); | |
1733 | |
1734 retcode = true; | |
1735 err: | |
1736 if (png_ptr) { | |
1737 if (end_info) | |
1738 png_destroy_read_struct(&png_ptr, &info_ptr,&end_info); | |
1739 else if (info_ptr) | |
1740 png_destroy_read_struct(&png_ptr, &info_ptr,(png_infopp)0); | |
1741 else | |
1742 png_destroy_read_struct(&png_ptr, (png_infopp) 0,(png_infopp)0); | |
1743 } | |
1744 return retcode; | |
1745 } | |
1746 | |
1747 void PNGCONV::png_read(png_structp png_ptr, png_bytep d, png_size_t sz) { | |
1748 PNGCONV* orig = (PNGCONV*)png_get_io_ptr(png_ptr); | |
1749 memcpy(d, orig->png_data, sz); | |
1750 orig->png_data += sz; | |
1751 return; | |
1752 } | |
1753 #endif /* HAVE_LIBPNG */ | |
1754 | |
1755 #if HAVE_LIBJPEG | |
1756 JPEGCONV::JPEGCONV(const char* _inbuf, int _inlen, const char* _filename) { | |
1757 struct jpeg_decompress_struct cinfo; | |
1758 struct jpeg_error_mgr jerr; | |
1759 cinfo.err = jpeg_std_error(&jerr); | |
1760 jpeg_create_decompress(&cinfo); | |
1761 cinfo.src = new jpeg_source_mgr; | |
1762 SetupSrc(&cinfo, _inbuf, _inlen); | |
1763 | |
1764 if (jpeg_read_header(&cinfo, TRUE) == JPEG_HEADER_OK) { | |
1765 Init(filename, _inbuf, _inlen, cinfo.image_width, cinfo.image_height, false); | |
1766 } | |
1767 delete cinfo.src; | |
1768 cinfo.src = 0; | |
1769 jpeg_destroy_decompress(&cinfo); | |
1770 return; | |
1771 } | |
1772 | |
1773 bool JPEGCONV::Read(char* image) { | |
1774 if (data == 0) return false; | |
1775 bool retcode = false; | |
1776 JSAMPARRAY rows, rows_orig; int i; | |
1777 char* buf = 0; | |
1778 | |
1779 struct jpeg_decompress_struct cinfo; | |
1780 struct jpeg_error_mgr jerr; | |
1781 cinfo.err = jpeg_std_error(&jerr); | |
1782 jpeg_create_decompress(&cinfo); | |
1783 cinfo.src = new jpeg_source_mgr; | |
1784 SetupSrc(&cinfo, data, datalen); | |
1785 | |
1786 if (jpeg_read_header(&cinfo, TRUE) != JPEG_HEADER_OK) goto err; | |
1787 | |
1788 cinfo.out_color_space = JCS_RGB; | |
1789 | |
1790 jpeg_start_decompress(&cinfo); | |
1791 | |
1792 rows = new JSAMPROW[height]; | |
1793 rows_orig = rows; | |
1794 buf = new char[width*height*3]; | |
1795 for (i=0; i<height; i++) rows[i] = (JSAMPROW)(buf+width*3*i); | |
1796 | |
1797 for (i=0; i<height; ) { | |
1798 int cnt = jpeg_read_scanlines(&cinfo, rows, height-i); | |
1799 rows += cnt; | |
1800 i += cnt; | |
1801 } | |
1802 delete[] rows_orig; | |
1803 CopyRGBA_rev(image, buf); | |
1804 delete[] buf; | |
1805 | |
1806 jpeg_finish_decompress(&cinfo); | |
1807 retcode = true; | |
1808 err: | |
1809 delete cinfo.src; | |
1810 cinfo.src = 0; | |
1811 jpeg_destroy_decompress(&cinfo); | |
1812 return retcode; | |
1813 } | |
1814 | |
1815 void JPEGCONV::init_source(j_decompress_ptr cinfo) { | |
1816 } | |
1817 boolean JPEGCONV::fill_input_buffer(j_decompress_ptr cinfo) { | |
1818 static char dummy[1024]; | |
1819 memset(dummy, 0, 1024); | |
1820 cinfo->src->next_input_byte = (const JOCTET*)dummy; | |
1821 cinfo->src->bytes_in_buffer = 1024; | |
1822 fprintf(stderr,"JPEGCONV::fill_input_buffer: warning corrupted jpeg stream\n"); | |
1823 return TRUE; | |
1824 } | |
1825 void JPEGCONV::skip_input_data(j_decompress_ptr cinfo, long num_bytes) { | |
1826 if (cinfo->src->bytes_in_buffer > num_bytes) { | |
1827 cinfo->src->next_input_byte += num_bytes; | |
1828 cinfo->src->bytes_in_buffer -= num_bytes; | |
1829 } | |
1830 } | |
1831 boolean JPEGCONV::resync_to_restart(j_decompress_ptr cinfo, int desired) { | |
1832 return jpeg_resync_to_restart(cinfo, desired); | |
1833 } | |
1834 void JPEGCONV::term_source(j_decompress_ptr cinf) { | |
1835 } | |
1836 | |
1837 void JPEGCONV::SetupSrc(struct jpeg_decompress_struct* cinfo, const char* data, int size) { | |
1838 cinfo->src->next_input_byte = (const JOCTET*) data; | |
1839 cinfo->src->bytes_in_buffer = size; | |
1840 cinfo->src->init_source = init_source; | |
1841 cinfo->src->fill_input_buffer = fill_input_buffer; | |
1842 cinfo->src->skip_input_data = skip_input_data; | |
1843 cinfo->src->resync_to_restart = resync_to_restart; | |
1844 cinfo->src->term_source = term_source; | |
1845 } | |
1846 #endif /* HAVE_LIBJPEG */ | |
1847 BMPCONV::BMPCONV(const char* _inbuf, int _inlen, const char* _filename) { | |
1848 /* ¥Ç¡¼¥¿¤«¤é¾ðÊóÆɤ߹þ¤ß */ | |
1849 int w = read_little_endian_int(_inbuf + 0x12); | |
1850 int h = read_little_endian_int(_inbuf + 0x16); | |
1851 if (h < 0) h = -h; | |
1852 int bpp = read_little_endian_short(_inbuf + 0x1c); | |
1853 int comp = read_little_endian_int(_inbuf + 0x1e); | |
1854 Init(filename, _inbuf, _inlen, w, h, bpp==32 ? true : false); | |
1855 return; | |
1856 } | |
1857 | |
1858 bool BMPCONV::Read(char* image) { | |
1859 if (data == 0) return false; | |
1860 | |
1861 /* ¥Þ¥¹¥¯¤Î¥Á¥§¥Ã¥¯ */ | |
1862 int bpp = read_little_endian_short(data+0x1c); | |
1863 int h = read_little_endian_int(data + 0x16); | |
1864 int dsz = read_little_endian_int(data + 0x22); | |
1865 bpp /= 8; | |
1866 | |
1867 int bpl = dsz / height; | |
1868 if (bpl == 0) bpl = bpp*width; | |
1869 bpl = bpp * width; | |
1870 bpl = (bpl+3) & (~3); | |
1871 | |
1872 | |
1873 int i; | |
1874 char* buf = new char[width*height*bpp+1024]; | |
1875 const char* src = data + 0x36; | |
1876 char* dest = buf; | |
1877 if (h < 0) { | |
1878 for (i=0; i<height; i++) { | |
1879 memcpy(dest+i*width*bpp, src+i*bpl, width*bpp); | |
1880 } | |
1881 } else { | |
1882 for (i=0; i<height; i++) { | |
1883 memcpy(dest+i*width*bpp, src+(height-i-1)*bpl, width*bpp); | |
1884 } | |
1885 } | |
1886 if (bpp == 3) CopyRGB(image, buf); | |
1887 else /* bpp == 4 */ CopyRGBA(image, buf); | |
1888 delete[] buf; | |
1889 return true; | |
1890 } | |
1891 |