SekRunPS Cyclone integration
[picodrive.git] / Pico / Cart.c
CommitLineData
cc68a136 1// This is part of Pico Library\r
2\r
3// (c) Copyright 2004 Dave, All rights reserved.\r
4// (c) Copyright 2006 notaz, All rights reserved.\r
5// Free for non-commercial use.\r
6\r
7// For commercial use, separate licencing terms must be obtained.\r
8\r
9\r
10#include "PicoInt.h"\r
83bd0b76 11#include "../zlib/zlib.h"\r
12#include "../unzip/unzip.h"\r
13#include "../unzip/unzip_stream.h"\r
14\r
7336a99a 15\r
83bd0b76 16static char *rom_exts[] = { "bin", "gen", "smd", "iso" };\r
17\r
18\r
19pm_file *pm_open(const char *path)\r
20{\r
21 pm_file *file = NULL;\r
22 const char *ext;\r
23 FILE *f;\r
24\r
25 if (path == NULL) return NULL;\r
26\r
27 if (strlen(path) < 5) ext = NULL; // no ext\r
28 else ext = path + strlen(path) - 3;\r
29\r
30 if (ext && strcasecmp(ext, "zip") == 0)\r
31 {\r
32 struct zipent *zipentry;\r
33 gzFile gzf = NULL;\r
34 ZIP *zipfile;\r
35 int i;\r
36\r
37 zipfile = openzip(path);\r
38\r
39 if (zipfile != NULL)\r
40 {\r
41 /* search for suitable file (right extension or large enough file) */\r
42 while ((zipentry = readzip(zipfile)) != NULL)\r
43 {\r
44 if (zipentry->uncompressed_size >= 128*1024) goto found_rom_zip;\r
45 if (strlen(zipentry->name) < 5) continue;\r
46\r
47 ext = zipentry->name+strlen(zipentry->name)-3;\r
48 for (i = 0; i < sizeof(rom_exts)/sizeof(rom_exts[0]); i++)\r
49 if (!strcasecmp(ext, rom_exts[i]) == 0) goto found_rom_zip;\r
50 }\r
51\r
52 /* zipfile given, but nothing found suitable for us inside */\r
53 goto zip_failed;\r
54\r
55found_rom_zip:\r
56 /* try to convert to gzip stream, so we could use standard gzio functions from zlib */\r
57 gzf = zip2gz(zipfile, zipentry);\r
58 if (gzf == NULL) goto zip_failed;\r
59\r
60 file = malloc(sizeof(*file));\r
61 if (file == NULL) goto zip_failed;\r
62 file->file = zipfile;\r
63 file->param = gzf;\r
64 file->size = zipentry->uncompressed_size;\r
65 file->type = PMT_ZIP;\r
66 return file;\r
67\r
68zip_failed:\r
69 if (gzf) {\r
70 gzclose(gzf);\r
71 zipfile->fp = NULL; // gzclose() closed it\r
72 }\r
73 closezip(zipfile);\r
74 return NULL;\r
75 }\r
76 }\r
77\r
78 /* not a zip, treat as uncompressed file */\r
79 f = fopen(path, "rb");\r
80 if (f == NULL) return NULL;\r
81\r
7336a99a 82 /* we use our own buffering */\r
83 setvbuf(f, NULL, _IONBF, 0);\r
84\r
83bd0b76 85 file = malloc(sizeof(*file));\r
86 if (file == NULL) {\r
87 fclose(f);\r
88 return NULL;\r
89 }\r
90 fseek(f, 0, SEEK_END);\r
91 file->file = f;\r
92 file->param = NULL;\r
93 file->size = ftell(f);\r
94 file->type = PMT_UNCOMPRESSED;\r
95 fseek(f, 0, SEEK_SET);\r
96 return file;\r
97}\r
98\r
99size_t pm_read(void *ptr, size_t bytes, pm_file *stream)\r
100{\r
101 int ret;\r
102\r
103 if (stream->type == PMT_UNCOMPRESSED)\r
104 {\r
105 ret = fread(ptr, 1, bytes, stream->file);\r
106 }\r
107 else if (stream->type == PMT_ZIP)\r
108 {\r
109 gzFile gf = stream->param;\r
110 int err;\r
111 ret = gzread(gf, ptr, bytes);\r
112 err = gzerror2(gf);\r
113 if (ret > 0 && (err == Z_DATA_ERROR || err == Z_STREAM_END))\r
114 /* we must reset stream pointer or else next seek/read fails */\r
115 gzrewind(gf);\r
116 }\r
117 else\r
118 ret = 0;\r
119\r
120 return ret;\r
121}\r
122\r
123int pm_seek(pm_file *stream, long offset, int whence)\r
124{\r
125 if (stream->type == PMT_UNCOMPRESSED)\r
126 {\r
7336a99a 127 fseek(stream->file, offset, whence);\r
128 return ftell(stream->file);\r
83bd0b76 129 }\r
130 else if (stream->type == PMT_ZIP)\r
131 {\r
132 return gzseek((gzFile) stream->param, offset, whence);\r
133 }\r
134 else\r
135 return -1;\r
136}\r
137\r
138int pm_close(pm_file *fp)\r
139{\r
140 int ret = 0;\r
141\r
142 if (fp == NULL) return EOF;\r
143\r
144 if (fp->type == PMT_UNCOMPRESSED)\r
145 {\r
146 fclose(fp->file);\r
147 }\r
148 else if (fp->type == PMT_ZIP)\r
149 {\r
150 ZIP *zipfile = fp->file;\r
151 gzclose((gzFile) fp->param);\r
152 zipfile->fp = NULL; // gzclose() closed it\r
153 closezip(zipfile);\r
154 }\r
155 else\r
156 ret = EOF;\r
157\r
158 free(fp);\r
159 return ret;\r
160}\r
161\r
cc68a136 162\r
163void Byteswap(unsigned char *data,int len)\r
164{\r
165 int i=0;\r
166\r
167 if (len<2) return; // Too short\r
168\r
169 do\r
170 {\r
171 unsigned short *pd=(unsigned short *)(data+i);\r
172 int value=*pd; // Get 2 bytes\r
173\r
174 value=(value<<8)|(value>>8); // Byteswap it\r
175 *pd=(unsigned short)value; // Put 2b ytes\r
176 i+=2;\r
177 }\r
178 while (i+2<=len);\r
179}\r
180\r
181// Interleve a 16k block and byteswap\r
182static int InterleveBlock(unsigned char *dest,unsigned char *src)\r
183{\r
184 int i=0;\r
185 for (i=0;i<0x2000;i++) dest[(i<<1) ]=src[ i]; // Odd\r
186 for (i=0;i<0x2000;i++) dest[(i<<1)+1]=src[0x2000+i]; // Even\r
187 return 0;\r
188}\r
189\r
190// Decode a SMD file\r
191static int DecodeSmd(unsigned char *data,int len)\r
192{\r
193 unsigned char *temp=NULL;\r
194 int i=0;\r
195\r
196 temp=(unsigned char *)malloc(0x4000);\r
197 if (temp==NULL) return 1;\r
198 memset(temp,0,0x4000);\r
199\r
200 // Interleve each 16k block and shift down by 0x200:\r
201 for (i=0; i+0x4200<=len; i+=0x4000)\r
202 {\r
203 InterleveBlock(temp,data+0x200+i); // Interleve 16k to temporary buffer\r
204 memcpy(data+i,temp,0x4000); // Copy back in\r
205 }\r
206\r
207 free(temp);\r
208 return 0;\r
209}\r
210\r
bf098bc5 211static unsigned char *cd_realloc(void *old, int filesize)\r
212{\r
213 unsigned char *rom;\r
214 dprintf("sizeof(mcd_state): %i", sizeof(mcd_state));\r
215 rom=realloc(old, sizeof(mcd_state));\r
216 if (rom) memset(rom+0x20000, 0, sizeof(mcd_state)-0x20000);\r
217 return rom;\r
218}\r
219\r
cc68a136 220static unsigned char *PicoCartAlloc(int filesize)\r
221{\r
222 int alloc_size;\r
223 unsigned char *rom;\r
224\r
bf098bc5 225 if (PicoMCD & 1) return cd_realloc(NULL, filesize);\r
cc68a136 226\r
227 alloc_size=filesize+0x7ffff;\r
228 if((filesize&0x3fff)==0x200) alloc_size-=0x200;\r
229 alloc_size&=~0x7ffff; // use alloc size of multiples of 512K, so that memhandlers could be set up more efficiently\r
230 if((filesize&0x3fff)==0x200) alloc_size+=0x200;\r
231 else if(alloc_size-filesize < 4) alloc_size+=4; // padding for out-of-bound exec protection\r
232 //dprintf("alloc_size: %x\n", alloc_size);\r
233\r
234 // Allocate space for the rom plus padding\r
235 rom=(unsigned char *)malloc(alloc_size);\r
236 if(rom) memset(rom+alloc_size-0x80000,0,0x80000);\r
237 return rom;\r
238}\r
239\r
83bd0b76 240int PicoCartLoad(pm_file *f,unsigned char **prom,unsigned int *psize)\r
cc68a136 241{\r
242 unsigned char *rom=NULL; int size;\r
243 if (f==NULL) return 1;\r
244\r
83bd0b76 245 size=f->size;\r
cc68a136 246 if (size <= 0) return 1;\r
bf098bc5 247 size=(size+3)&~3; // Round up to a multiple of 4\r
cc68a136 248\r
249 // Allocate space for the rom plus padding\r
250 rom=PicoCartAlloc(size);\r
7336a99a 251 if (rom==NULL) {\r
252 printf("out of memory (wanted %i)\n", size);\r
253 return 1;\r
254 }\r
cc68a136 255\r
83bd0b76 256 pm_read(rom,size,f); // Load up the rom\r
bf098bc5 257\r
258 // maybe we are loading MegaCD BIOS?\r
259 if (!(PicoMCD&1) && size == 0x20000 && (!strncmp((char *)rom+0x124, "BOOT", 4) || !strncmp((char *)rom+0x128, "BOOT", 4))) {\r
260 PicoMCD |= 1;\r
261 rom = cd_realloc(rom, size);\r
262 }\r
cc68a136 263\r
264 // Check for SMD:\r
265 if ((size&0x3fff)==0x200) { DecodeSmd(rom,size); size-=0x200; } // Decode and byteswap SMD\r
266 else Byteswap(rom,size); // Just byteswap\r
267\r
268 if (prom) *prom=rom;\r
269 if (psize) *psize=size;\r
270\r
271 return 0;\r
272}\r
273\r
274// Insert/remove a cartridge:\r
275int PicoCartInsert(unsigned char *rom,unsigned int romsize)\r
276{\r
277 // notaz: add a 68k "jump one op back" opcode to the end of ROM.\r
278 // This will hang the emu, but will prevent nasty crashes.\r
279 // note: 4 bytes are padded to every ROM\r
280 if(rom != NULL)\r
281 *(unsigned long *)(rom+romsize) = 0xFFFE4EFA; // 4EFA FFFE byteswapped\r
282\r
283 SRam.resize=1;\r
284 Pico.rom=rom;\r
285 Pico.romsize=romsize;\r
286\r
287 return PicoReset(1);\r
288}\r
289\r
290int PicoUnloadCart(unsigned char* romdata)\r
291{\r
292 free(romdata);\r
293 return 0;\r
294}\r
295\r