X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2FCart.c;h=cf335804d7e76524231bf65ddee4173704b76762;hb=1dceadaee482ad3ca6f5ccbef57ea93893f45e82;hp=d3e77438321a355978b00f9a0c5f168311b2b55e;hpb=bf098bc53228f6b5016cb4a6126f4466bfba4e00;p=picodrive.git diff --git a/Pico/Cart.c b/Pico/Cart.c index d3e7743..cf33580 100644 --- a/Pico/Cart.c +++ b/Pico/Cart.c @@ -1,13 +1,171 @@ // This is part of Pico Library // (c) Copyright 2004 Dave, All rights reserved. -// (c) Copyright 2006 notaz, All rights reserved. +// (c) Copyright 2006-2007, Grazvydas "notaz" Ignotas // Free for non-commercial use. // For commercial use, separate licencing terms must be obtained. #include "PicoInt.h" +#include "../zlib/zlib.h" +#include "../unzip/unzip.h" +#include "../unzip/unzip_stream.h" + + +static char *rom_exts[] = { "bin", "gen", "smd", "iso" }; + +void (*PicoCartLoadProgressCB)(int percent) = NULL; + + +pm_file *pm_open(const char *path) +{ + pm_file *file = NULL; + const char *ext; + FILE *f; + + if (path == NULL) return NULL; + + if (strlen(path) < 5) ext = NULL; // no ext + else ext = path + strlen(path) - 3; + + if (ext && strcasecmp(ext, "zip") == 0) + { + struct zipent *zipentry; + gzFile gzf = NULL; + ZIP *zipfile; + int i; + + zipfile = openzip(path); + + if (zipfile != NULL) + { + /* search for suitable file (right extension or large enough file) */ + while ((zipentry = readzip(zipfile)) != NULL) + { + if (zipentry->uncompressed_size >= 128*1024) goto found_rom_zip; + if (strlen(zipentry->name) < 5) continue; + + ext = zipentry->name+strlen(zipentry->name)-3; + for (i = 0; i < sizeof(rom_exts)/sizeof(rom_exts[0]); i++) + if (!strcasecmp(ext, rom_exts[i]) == 0) goto found_rom_zip; + } + + /* zipfile given, but nothing found suitable for us inside */ + goto zip_failed; + +found_rom_zip: + /* try to convert to gzip stream, so we could use standard gzio functions from zlib */ + gzf = zip2gz(zipfile, zipentry); + if (gzf == NULL) goto zip_failed; + + file = malloc(sizeof(*file)); + if (file == NULL) goto zip_failed; + file->file = zipfile; + file->param = gzf; + file->size = zipentry->uncompressed_size; + file->type = PMT_ZIP; + return file; + +zip_failed: + if (gzf) { + gzclose(gzf); + zipfile->fp = NULL; // gzclose() closed it + } + closezip(zipfile); + return NULL; + } + } + + /* not a zip, treat as uncompressed file */ + f = fopen(path, "rb"); + if (f == NULL) return NULL; + + /* we use our own buffering */ + setvbuf(f, NULL, _IONBF, 0); + + file = malloc(sizeof(*file)); + if (file == NULL) { + fclose(f); + return NULL; + } + fseek(f, 0, SEEK_END); + file->file = f; + file->param = NULL; + file->size = ftell(f); + file->type = PMT_UNCOMPRESSED; + fseek(f, 0, SEEK_SET); + return file; +} + +size_t pm_read(void *ptr, size_t bytes, pm_file *stream) +{ + int ret; + + if (stream->type == PMT_UNCOMPRESSED) + { + ret = fread(ptr, 1, bytes, stream->file); + } + else if (stream->type == PMT_ZIP) + { + gzFile gf = stream->param; + int err; + ret = gzread(gf, ptr, bytes); + err = gzerror2(gf); + if (ret > 0 && (err == Z_DATA_ERROR || err == Z_STREAM_END)) + /* we must reset stream pointer or else next seek/read fails */ + gzrewind(gf); + } + else + ret = 0; + + return ret; +} + +int pm_seek(pm_file *stream, long offset, int whence) +{ + if (stream->type == PMT_UNCOMPRESSED) + { + fseek(stream->file, offset, whence); + return ftell(stream->file); + } + else if (stream->type == PMT_ZIP) + { + if (PicoMessage != NULL && offset > 6*1024*1024) { + long pos = gztell((gzFile) stream->param); + if (offset < pos || offset - pos > 6*1024*1024) + PicoMessage("Decompressing data..."); + } + return gzseek((gzFile) stream->param, offset, whence); + } + else + return -1; +} + +int pm_close(pm_file *fp) +{ + int ret = 0; + + if (fp == NULL) return EOF; + + if (fp->type == PMT_UNCOMPRESSED) + { + fclose(fp->file); + } + else if (fp->type == PMT_ZIP) + { + ZIP *zipfile = fp->file; + gzclose((gzFile) fp->param); + zipfile->fp = NULL; // gzclose() closed it + closezip(zipfile); + } + else + ret = EOF; + + free(fp); + return ret; +} + void Byteswap(unsigned char *data,int len) { @@ -86,20 +244,46 @@ static unsigned char *PicoCartAlloc(int filesize) return rom; } -int PicoCartLoad(FILE *f,unsigned char **prom,unsigned int *psize) +int PicoCartLoad(pm_file *f,unsigned char **prom,unsigned int *psize) { - unsigned char *rom=NULL; int size; + unsigned char *rom=NULL; int size, bytes_read; if (f==NULL) return 1; - fseek(f,0,SEEK_END); size=ftell(f); fseek(f,0,SEEK_SET); + size=f->size; if (size <= 0) return 1; size=(size+3)&~3; // Round up to a multiple of 4 // Allocate space for the rom plus padding rom=PicoCartAlloc(size); - if (rom==NULL) return 1; // { fclose(f); return 1; } + if (rom==NULL) { + printf("out of memory (wanted %i)\n", size); + return 1; + } - fread(rom,1,size,f); // Load up the rom + if (PicoCartLoadProgressCB != NULL) + { + // read ROM in blocks, just for fun + int ret; + unsigned char *p = rom; + bytes_read=0; + do + { + int todo = size - bytes_read; + if (todo > 256*1024) todo = 256*1024; + ret = pm_read(p,todo,f); + bytes_read += ret; + p += ret; + PicoCartLoadProgressCB(bytes_read * 100 / size); + } + while (ret > 0); + } + else + bytes_read = pm_read(rom,size,f); // Load up the rom + if (bytes_read <= 0) { + printf("read failed\n"); + free(rom); + return 1; + } // maybe we are loading MegaCD BIOS? if (!(PicoMCD&1) && size == 0x20000 && (!strncmp((char *)rom+0x124, "BOOT", 4) || !strncmp((char *)rom+0x128, "BOOT", 4))) { @@ -126,10 +310,18 @@ int PicoCartInsert(unsigned char *rom,unsigned int romsize) if(rom != NULL) *(unsigned long *)(rom+romsize) = 0xFFFE4EFA; // 4EFA FFFE byteswapped - SRam.resize=1; Pico.rom=rom; Pico.romsize=romsize; + // setup correct memory map for loaded ROM + if (PicoMCD & 1) + PicoMemSetupCD(); + else PicoMemSetup(); + PicoMemReset(); + + if (!(PicoMCD & 1)) + PicoCartDetect(); + return PicoReset(1); } @@ -139,69 +331,115 @@ int PicoUnloadCart(unsigned char* romdata) return 0; } - -#ifdef _UNZIP_SUPPORT - -// notaz -#include "../unzip/unzip.h" - -// nearly same as PicoCartLoad, but works with zipfiles -int CartLoadZip(const char *fname, unsigned char **prom, unsigned int *psize) +static int name_cmp(const char *name) { - unsigned char *rom=0; - struct zipent* zipentry; - int size; - ZIP *zipfile = openzip(fname); - - if(!zipfile) return 1; - - // find first bin or smd - while((zipentry = readzip(zipfile)) != 0) - { - char *ext; - if(strlen(zipentry->name) < 5) continue; - ext = zipentry->name+strlen(zipentry->name)-4; - - if(!strcasecmp(ext, ".bin") || !strcasecmp(ext, ".smd") || !strcasecmp(ext, ".gen")) break; - } - - if(!zipentry) { - closezip(zipfile); - return 4; // no roms - } - - size = zipentry->uncompressed_size; - - size=(size+3)&~3; // Round up to a multiple of 4 - - // Allocate space for the rom plus padding - rom=PicoCartAlloc(size); - if (rom==NULL) { closezip(zipfile); return 2; } - - if(readuncompresszip(zipfile, zipentry, (char *)rom) != 0) { - free(rom); - rom = 0; - closezip(zipfile); - return 5; // unzip failed - } + int i, len = strlen(name); + const char *name_rom = (const char *)Pico.rom+0x150; + for (i = 0; i < len; i++) + if (name[i] != name_rom[i^1]) + return 1; + return 0; +} - closezip(zipfile); +/* various cart-specific things, which can't be handled by generic code */ +void PicoCartDetect(void) +{ + int sram_size = 0, csum; + if(SRam.data) free(SRam.data); SRam.data=0; + Pico.m.sram_reg = 0; - // maybe we are loading MegaCD BIOS? - if (!(PicoMCD&1) && size == 0x20000 && - (!strncmp((char *)rom+0x124, "BOOT", 4) || !strncmp((char *)rom+0x128, "BOOT", 4))) { - PicoMCD |= 1; - rom = cd_realloc(rom, size); - } + csum = PicoRead32(0x18c) & 0xffff; - // Check for SMD: - if ((size&0x3fff)==0x200) { DecodeSmd(rom,size); size-=0x200; } // Decode and byteswap SMD - else Byteswap(rom,size); // Just byteswap + if (Pico.rom[0x1B1] == 'R' && Pico.rom[0x1B0] == 'A') + { + if (Pico.rom[0x1B2] & 0x40) + { + // EEPROM + SRam.start = PicoRead32(0x1B4) & ~1; // zero address is used for clock by some games + SRam.end = PicoRead32(0x1B8); + sram_size = 0x2000; + Pico.m.sram_reg |= 4; + } else { + // normal SRAM + SRam.start = PicoRead32(0x1B4) & 0xFFFF00; + SRam.end = PicoRead32(0x1B8) | 1; + sram_size = SRam.end - SRam.start + 1; + } + Pico.m.sram_reg |= 0x10; // SRAM was detected + } + if (sram_size <= 0) + { + // some games may have bad headers, like S&K and Sonic3 + // note: majority games use 0x200000 as starting address, but there are some which + // use something else (0x300000 by HardBall '95). Luckily they have good headers. + SRam.start = 0x200000; + SRam.end = 0x203FFF; + sram_size = 0x004000; + } - if (prom) *prom=rom; - if (psize) *psize=size; + if (sram_size) + { + SRam.data = (unsigned char *) calloc(sram_size, 1); + if(!SRam.data) return; + } + SRam.changed = 0; + + // set EEPROM defaults, in case it gets detected + SRam.eeprom_type = 0; // 7bit (24C01) + SRam.eeprom_abits = 3; // eeprom access must be odd addr for: bit0 ~ cl, bit1 ~ in + SRam.eeprom_bit_cl = 1; + SRam.eeprom_bit_in = 0; + SRam.eeprom_bit_out= 0; + + // some known EEPROM data (thanks to EkeEke) + if (name_cmp("COLLEGE SLAM") == 0 || + name_cmp("FRANK THOMAS BIGHURT BASEBAL") == 0) + { + SRam.eeprom_type = 3; + SRam.eeprom_abits = 2; + SRam.eeprom_bit_cl = 0; + } + else if (name_cmp("NBA JAM TOURNAMENT EDITION") == 0 || + name_cmp("NFL QUARTERBACK CLUB") == 0) + { + SRam.eeprom_type = 2; + SRam.eeprom_abits = 2; + SRam.eeprom_bit_cl = 0; + } + else if (name_cmp("NBA JAM") == 0) + { + SRam.eeprom_type = 2; + SRam.eeprom_bit_out = 1; + SRam.eeprom_abits = 0; + } + else if (name_cmp("NHLPA HOCKEY '93") == 0 || + name_cmp("NHLPA Hockey '93") == 0 || + name_cmp("RINGS OF POWER") == 0) + { + SRam.start = SRam.end = 0x200000; + Pico.m.sram_reg = 0x14; + SRam.eeprom_abits = 0; + SRam.eeprom_bit_cl = 6; + SRam.eeprom_bit_in = 7; + SRam.eeprom_bit_out= 7; + } + else if ( name_cmp("MICRO MACHINES II") == 0 || + (name_cmp(" ") == 0 && // Micro Machines {Turbo Tournament '96, Military - It's a Blast!} + (csum == 0x165e || csum == 0x168b || csum == 0xCEE0 || csum == 0x2C41))) + { + SRam.start = 0x300000; + SRam.end = 0x380001; + Pico.m.sram_reg = 0x14; + SRam.eeprom_type = 2; + SRam.eeprom_abits = 0; + SRam.eeprom_bit_cl = 1; + SRam.eeprom_bit_in = 0; + SRam.eeprom_bit_out= 7; + } - return 0; + // Some games malfunction if SRAM is not filled with 0xff + if (name_cmp("DINO DINI'S SOCCER") == 0 || + name_cmp("MICRO MACHINES II") == 0) + memset(SRam.data, 0xff, sram_size); } -#endif