C64: rework T64 support to use memory file.

This commit is contained in:
sorgelig
2020-01-20 23:46:21 +08:00
parent 35f81c3826
commit 6e27efef8d
7 changed files with 76 additions and 64 deletions

View File

@@ -3337,10 +3337,10 @@ int dsk2nib(const char *name, fileTYPE *f)
return 0; return 0;
} }
if (!FileOpenEx(f, "vtrd", -1)) if (!FileOpenEx(f, "vdsk", -1))
{ {
FileClose(&disk_file); FileClose(&disk_file);
printf("ERROR: fail to create /vtrd\n"); printf("ERROR: fail to create vdsk\n");
return 0; return 0;
} }
@@ -3372,7 +3372,7 @@ int dsk2nib(const char *name, fileTYPE *f)
if (FileWriteAdv(f, raw_track, RAW_TRACK_uint8_tS) != RAW_TRACK_uint8_tS) if (FileWriteAdv(f, raw_track, RAW_TRACK_uint8_tS) != RAW_TRACK_uint8_tS)
{ {
printf("Error writing to /vtrd file\n"); printf("Error writing to vdsk file\n");
FileClose(&disk_file); FileClose(&disk_file);
FileClose(f); FileClose(f);
return 0; return 0;
@@ -3383,7 +3383,7 @@ int dsk2nib(const char *name, fileTYPE *f)
f->size = FileGetSize(f); f->size = FileGetSize(f);
FileSeekLBA(f, 0); FileSeekLBA(f, 0);
printf("dsk2nib: vtrd size=%llu.\n", f->size); printf("dsk2nib: vdsk size=%llu.\n", f->size);
return 1; return 1;
} }
@@ -3394,10 +3394,10 @@ int x2trd(const char *name, fileTYPE *f)
TDiskImage *img = new TDiskImage; TDiskImage *img = new TDiskImage;
img->Open(getFullPath(name), true); img->Open(getFullPath(name), true);
if (!FileOpenEx(f, "vtrd", -1)) if (!FileOpenEx(f, "vdsk", -1))
{ {
delete img; delete img;
printf("ERROR: fail to create /vtrd\n"); printf("ERROR: fail to create vdsk\n");
return 0; return 0;
} }
@@ -3406,7 +3406,7 @@ int x2trd(const char *name, fileTYPE *f)
f->size = FileGetSize(f); f->size = FileGetSize(f);
FileSeekLBA(f, 0); FileSeekLBA(f, 0);
printf("x2trd: vtrd size=%llu.\n", f->size); printf("x2trd: vdsk size=%llu.\n", f->size);
return 1; return 1;
} }

View File

@@ -79,6 +79,7 @@
<ClCompile Include="support\arcade\buffer.cpp" /> <ClCompile Include="support\arcade\buffer.cpp" />
<ClCompile Include="support\arcade\romutils.cpp" /> <ClCompile Include="support\arcade\romutils.cpp" />
<ClCompile Include="support\archie\archie.cpp" /> <ClCompile Include="support\archie\archie.cpp" />
<ClCompile Include="support\c64\c64.cpp" />
<ClCompile Include="support\megacd\cdd.cpp" /> <ClCompile Include="support\megacd\cdd.cpp" />
<ClCompile Include="support\megacd\megacd.cpp" /> <ClCompile Include="support\megacd\megacd.cpp" />
<ClCompile Include="support\minimig\minimig_boot.cpp" /> <ClCompile Include="support\minimig\minimig_boot.cpp" />
@@ -136,6 +137,7 @@
<ClInclude Include="support\arcade\buffer.h" /> <ClInclude Include="support\arcade\buffer.h" />
<ClInclude Include="support\arcade\romutils.h" /> <ClInclude Include="support\arcade\romutils.h" />
<ClInclude Include="support\archie\archie.h" /> <ClInclude Include="support\archie\archie.h" />
<ClInclude Include="support\c64\c64.h" />
<ClInclude Include="support\megacd\megacd.h" /> <ClInclude Include="support\megacd\megacd.h" />
<ClInclude Include="support\minimig\minimig_boot.h" /> <ClInclude Include="support\minimig\minimig_boot.h" />
<ClInclude Include="support\minimig\minimig_config.h" /> <ClInclude Include="support\minimig\minimig_config.h" />

View File

@@ -187,6 +187,9 @@
<ClCompile Include="recent.cpp"> <ClCompile Include="recent.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="support\c64\c64.cpp">
<Filter>Source Files\support</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="battery.h"> <ClInclude Include="battery.h">
@@ -354,5 +357,8 @@
<ClInclude Include="recent.h"> <ClInclude Include="recent.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="support\c64\c64.h">
<Filter>Header Files\support</Filter>
</ClInclude>
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -85,7 +85,7 @@ static int FileIsZipped(char* path, char** zip_path, char** file_path)
static char* make_fullpath(const char *path, int mode = 0) static char* make_fullpath(const char *path, int mode = 0)
{ {
const char *root = getRootDir(); const char *root = getRootDir();
if (path[0] != '/') if (strncasecmp(getRootDir(), path, strlen(root)))
{ {
sprintf(full_path, "%s/%s", (mode == -1) ? "" : root, path); sprintf(full_path, "%s/%s", (mode == -1) ? "" : root, path);
} }
@@ -381,7 +381,7 @@ int FileOpenEx(fileTYPE *file, const char *name, int mode, char mute)
} }
else else
{ {
int fd = (mode == -1) ? shm_open("/vtrd", O_CREAT | O_RDWR | O_TRUNC, 0777) : open(full_path, mode, 0777); int fd = (mode == -1) ? shm_open("/vdsk", O_CREAT | O_RDWR | O_TRUNC, 0777) : open(full_path, mode, 0777);
if (fd <= 0) if (fd <= 0)
{ {
if(!mute) printf("FileOpenEx(open) File:%s, error: %s.\n", full_path, strerror(errno)); if(!mute) printf("FileOpenEx(open) File:%s, error: %s.\n", full_path, strerror(errno));

View File

@@ -38,9 +38,6 @@
#define D64_FILL_VALUE 0xA0 #define D64_FILL_VALUE 0xA0
#define D64_INIT_VALUE 0x00 // DIR relies on 0x00 initial value #define D64_INIT_VALUE 0x00 // DIR relies on 0x00 initial value
// leave file for debug
#define CHECK_SUCCESS(op) do { if (!(op)) { FileClose(&fd); /*unlink(path);*/ return 0; } } while(0)
struct FileRecord { struct FileRecord {
char name[D64_BYTE_PER_STRING]; char name[D64_BYTE_PER_STRING];
unsigned char cbm; unsigned char cbm;
@@ -53,7 +50,7 @@ struct FileRecord {
static bool cmp_offset(const FileRecord& a, const FileRecord& b) { return a.offset < b.offset; } static bool cmp_offset(const FileRecord& a, const FileRecord& b) { return a.offset < b.offset; }
static bool cmp_index(const FileRecord& a, const FileRecord& b) { return a.index < b.index; } static bool cmp_index(const FileRecord& a, const FileRecord& b) { return a.index < b.index; }
static unsigned char d64_sector_per_track(unsigned char trackNum) { static unsigned char d64_sector_per_track(unsigned char trackNum) {
return (trackNum <= 17) ? 21U return (trackNum <= 17) ? 21U
: (trackNum <= 24) ? 19U : (trackNum <= 24) ? 19U
: (trackNum <= 30) ? 18U : (trackNum <= 30) ? 18U
@@ -99,22 +96,18 @@ static void d64_advance_dir_pointer(unsigned char& trackNum, unsigned char& sect
// caller needs to handle BAM sector // caller needs to handle BAM sector
} }
int c64_convert_t64_to_d64(fileTYPE* f, const char *path) static int c64_convert_t64_to_d64(fileTYPE* f_in, fileTYPE* f_out)
{ {
fileTYPE fd;
std::vector<FileRecord> files; std::vector<FileRecord> files;
char header[T64_BYTE_PER_HEADER]; char header[T64_BYTE_PER_HEADER];
char name[D64_BYTE_PER_STRING]; char name[D64_BYTE_PER_STRING];
// remove old file to make sure we don't use it if (!FileSeek(f_in, 0, SEEK_SET)) return 0;
unlink(path);
CHECK_SUCCESS(FileSeek(f, 0, SEEK_SET));
// ignore signature // ignore signature
CHECK_SUCCESS(FileReadAdv(f, header, sizeof(header))); if(!FileReadAdv(f_in, header, sizeof(header))) return 0;
CHECK_SUCCESS(!memcmp(header, "C64", strlen("C64"))); if (memcmp(header, "C64", strlen("C64"))) return 0;
// header // header
CHECK_SUCCESS(FileReadAdv(f, header, sizeof(header))); if (!FileReadAdv(f_in, header, sizeof(header))) return 0;
unsigned short numRecords = (header[0x03] << 8) | header[0x02]; unsigned short numRecords = (header[0x03] << 8) | header[0x02];
memcpy(name, header + 0x08, sizeof(name)); memcpy(name, header + 0x08, sizeof(name));
@@ -122,7 +115,7 @@ int c64_convert_t64_to_d64(fileTYPE* f, const char *path)
for (unsigned i = 0; i < numRecords; i++) for (unsigned i = 0; i < numRecords; i++)
{ {
// record // record
CHECK_SUCCESS(FileReadAdv(f, header, sizeof(header))); if (!FileReadAdv(f_in, header, sizeof(header))) return 0;
if (!header[0x00] || !header[0x01]) continue; if (!header[0x00] || !header[0x01]) continue;
FileRecord r; FileRecord r;
@@ -140,7 +133,7 @@ int c64_convert_t64_to_d64(fileTYPE* f, const char *path)
std::sort(files.begin(), files.end(), cmp_offset); std::sort(files.begin(), files.end(), cmp_offset);
for (unsigned i = 0; i < files.size(); i++) for (unsigned i = 0; i < files.size(); i++)
{ {
unsigned short size = (i < files.size() - 1 ? files[i + 1].offset : f->size) - files[i].offset; unsigned short size = (i < files.size() - 1 ? files[i + 1].offset : f_in->size) - files[i].offset;
if (size < files[i].size) files[i].size = size; if (size < files[i].size) files[i].size = size;
} }
std::sort(files.begin(), files.end(), cmp_index); std::sort(files.begin(), files.end(), cmp_index);
@@ -162,14 +155,12 @@ int c64_convert_t64_to_d64(fileTYPE* f, const char *path)
//printf("T64: %d records\n", files.size()); for (auto r : files) printf("start: %x, size: %x, offset %x, index: %d\n", r.start, r.size, r.offset, r.index); //printf("T64: %d records\n", files.size()); for (auto r : files) printf("start: %x, size: %x, offset %x, index: %d\n", r.start, r.size, r.offset, r.index);
CHECK_SUCCESS(files.size()); if (!files.size()) return 0;
CHECK_SUCCESS(FileOpenEx(&fd, path, O_CREAT | O_TRUNC | O_RDWR | O_SYNC, 0));
unsigned char sector[D64_BYTE_PER_SECTOR]; unsigned char sector[D64_BYTE_PER_SECTOR];
memset(sector, D64_INIT_VALUE, sizeof(sector)); memset(sector, D64_INIT_VALUE, sizeof(sector));
for (unsigned i = 0; i < D64_SECTOR_PER_DISK; i++) CHECK_SUCCESS(FileWriteAdv(&fd, sector, sizeof(sector))); for (unsigned i = 0; i < D64_SECTOR_PER_DISK; i++) if (!FileWriteAdv(f_out, sector, sizeof(sector))) return 0;
CHECK_SUCCESS(FileSeek(&fd, 0, SEEK_SET)); if (!FileSeek(f_out, 0, SEEK_SET)) return 0;
unsigned char bam[D64_BYTE_PER_SECTOR]; unsigned char bam[D64_BYTE_PER_SECTOR];
memset(bam, D64_INIT_VALUE, sizeof(bam)); memset(bam, D64_INIT_VALUE, sizeof(bam));
@@ -184,19 +175,19 @@ int c64_convert_t64_to_d64(fileTYPE* f, const char *path)
if (dirEntry == 0 && i != 0) if (dirEntry == 0 && i != 0)
{ {
// set next track/sector pointer of prev node // set next track/sector pointer of prev node
CHECK_SUCCESS(FileSeek(&fd, d64_offset(dirTrackNum, dirSectorNum), SEEK_SET)); if (!FileSeek(f_out, d64_offset(dirTrackNum, dirSectorNum), SEEK_SET)) return 0;
do d64_advance_dir_pointer(dirTrackNum, dirSectorNum); while (dirTrackNum == D64_BAM_TRACK && dirSectorNum == D64_BAM_SECTOR); do d64_advance_dir_pointer(dirTrackNum, dirSectorNum); while (dirTrackNum == D64_BAM_TRACK && dirSectorNum == D64_BAM_SECTOR);
dir[0x00] = dirTrackNum; dir[0x00] = dirTrackNum;
dir[0x01] = dirSectorNum; dir[0x01] = dirSectorNum;
CHECK_SUCCESS(FileWriteAdv(&fd, dir, 2)); if (!FileWriteAdv(f_out, dir, 2)) return 0;
// check for overflow // check for overflow
bool success = dirSectorNum != D64_DIR_SECTOR; bool success = dirSectorNum != D64_DIR_SECTOR;
if (!success) printf("T64: dir overflow on file: %d\n", i); if (!success) printf("T64: dir overflow on file: %d\n", i);
CHECK_SUCCESS(success); if (!success) return 0;
} }
CHECK_SUCCESS(FileSeek(&fd, d64_offset(dirTrackNum, dirSectorNum) + dirEntry * D64_BYTE_PER_DIR, SEEK_SET)); if (!FileSeek(f_out, d64_offset(dirTrackNum, dirSectorNum) + dirEntry * D64_BYTE_PER_DIR, SEEK_SET)) return 0;
dir[0x00] = 0x00; dir[0x00] = 0x00;
dir[0x01] = dirEntry == 0 ? 0xFF : 0x00; dir[0x01] = dirEntry == 0 ? 0xFF : 0x00;
dir[0x02] = r.cbm; dir[0x02] = r.cbm;
@@ -209,16 +200,16 @@ int c64_convert_t64_to_d64(fileTYPE* f, const char *path)
unsigned sectorSize= d64_file_sector(files[i].size); unsigned sectorSize= d64_file_sector(files[i].size);
dir[0x1E] = (sectorSize >> 0) & 0xFF; dir[0x1E] = (sectorSize >> 0) & 0xFF;
dir[0x1F] = (sectorSize >> 8) & 0xFF; dir[0x1F] = (sectorSize >> 8) & 0xFF;
CHECK_SUCCESS(FileWriteAdv(&fd, dir, sizeof(dir))); if (!FileWriteAdv(f_out, dir, sizeof(dir))) return 0;
dirEntry = (dirEntry + 1) % D64_DIR_PER_SECTOR; dirEntry = (dirEntry + 1) % D64_DIR_PER_SECTOR;
// file sectors // file sectors
CHECK_SUCCESS(FileSeek(f, r.offset, SEEK_SET)); if (!FileSeek(f_in, r.offset, SEEK_SET)) return 0;
bool writeAddress = true; bool writeAddress = true;
for (unsigned s = 0; s < r.size; s+= D64_BYTE_PER_FILE_SECTOR) for (unsigned s = 0; s < r.size; s+= D64_BYTE_PER_FILE_SECTOR)
{ {
CHECK_SUCCESS(FileSeek(&fd, d64_offset(fileTrackNum, fileSectorNum), SEEK_SET)); if (!FileSeek(f_out, d64_offset(fileTrackNum, fileSectorNum), SEEK_SET)) return 0;
d64_advance_pointer(fileTrackNum, fileSectorNum); d64_advance_pointer(fileTrackNum, fileSectorNum);
if (fileTrackNum == D64_DIR_TRACK) fileTrackNum += 1; if (fileTrackNum == D64_DIR_TRACK) fileTrackNum += 1;
memset(sector, D64_FILL_VALUE, sizeof(sector)); memset(sector, D64_FILL_VALUE, sizeof(sector));
@@ -231,9 +222,9 @@ int c64_convert_t64_to_d64(fileTYPE* f, const char *path)
sector[0x02] = (r.start >> 0) & 0xFF; sector[0x02] = (r.start >> 0) & 0xFF;
sector[0x03] = (r.start >> 8) & 0xFF; sector[0x03] = (r.start >> 8) & 0xFF;
} }
CHECK_SUCCESS(FileReadAdv(f, sector + (writeAddress ? 4 : 2), cnt - (writeAddress ? 2 : 0)));
CHECK_SUCCESS(FileWriteAdv(&fd, sector, sizeof(sector))); if (!FileReadAdv(f_in, sector + (writeAddress ? 4 : 2), cnt - (writeAddress ? 2 : 0))) return 0;
if (!FileWriteAdv(f_out, sector, sizeof(sector))) return 0;
writeAddress = false; writeAddress = false;
} }
} }
@@ -272,10 +263,37 @@ int c64_convert_t64_to_d64(fileTYPE* f, const char *path)
memset(bam + 0xA7, D64_FILL_VALUE, 0xAA - 0xA7 + 1); memset(bam + 0xA7, D64_FILL_VALUE, 0xAA - 0xA7 + 1);
memset(bam + 0xAB, 0x00, 0xFF - 0xAB + 1); memset(bam + 0xAB, 0x00, 0xFF - 0xAB + 1);
CHECK_SUCCESS(FileSeek(&fd, d64_offset(D64_BAM_TRACK, D64_BAM_SECTOR), SEEK_SET)); if (!FileSeek(f_out, d64_offset(D64_BAM_TRACK, D64_BAM_SECTOR), SEEK_SET)) return 0;
CHECK_SUCCESS(FileWriteAdv(&fd, bam, sizeof(bam))); if (!FileWriteAdv(f_out, bam, sizeof(bam))) return 0;
FileClose(&fd);
f_out->size = FileGetSize(f_out);
printf("Virtual D64 size = %llu\n", f_out->size);
return 1; return 1;
} }
int c64_openT64(const char *path, fileTYPE* f)
{
if (!FileOpenEx(f, "vdsk", -1))
{
printf("ERROR: fail to create vdsk\n");
return 0;
}
fileTYPE f_in;
if (!FileOpen(&f_in, path))
{
FileClose(f);
return 0;
}
int ret = c64_convert_t64_to_d64(&f_in, f);
FileClose(&f_in);
if (!ret)
{
printf("Failed to convert T64 (%s).\n", path);
FileClose(f);
}
return ret;
}

View File

@@ -1,6 +1,6 @@
#ifndef C64_H #ifndef C64_H
#define C64_H #define C64_H
int c64_convert_t64_to_d64(fileTYPE* f, const char *path); int c64_openT64(const char *path, fileTYPE* f);
#endif #endif

View File

@@ -1191,6 +1191,7 @@ int user_io_file_mount(char *name, unsigned char index, char pre)
{ {
int writable = 0; int writable = 0;
int ret = 0; int ret = 0;
int len = strlen(name);
if (!strcasecmp(user_io_get_core_name_ex(), "apple-ii")) if (!strcasecmp(user_io_get_core_name_ex(), "apple-ii"))
{ {
@@ -1203,6 +1204,11 @@ int user_io_file_mount(char *name, unsigned char index, char pre)
{ {
ret = x2trd(name, sd_image + index); ret = x2trd(name, sd_image + index);
} }
else if (is_c64_core() && len > 4 && !strcasecmp(name + len - 4, ".t64"))
{
writable = 0;
ret = c64_openT64(name, sd_image + index);
}
else else
{ {
writable = FileCanWrite(name); writable = FileCanWrite(name);
@@ -1245,26 +1251,6 @@ int user_io_file_mount(char *name, unsigned char index, char pre)
strcpy(sd_image[index].path, name); strcpy(sd_image[index].path, name);
} }
if (is_c64_core())
{
int len = strlen(name);
if(len>4 && !strcasecmp(name+len-4, ".t64"))
{
// mount T64
size = 0;
writable = false;
const char* path = "/tmp/c64_t64_tmp.d64";
ret = c64_convert_t64_to_d64(&sd_image[index], path);
FileClose(&sd_image[index]);
if (ret)
{
ret = FileOpenEx(&sd_image[index], path, O_RDONLY, 0);
size = sd_image[index].size;
}
}
}
if (io_ver) if (io_ver)
{ {
spi_w((uint16_t)(size)); spi_w((uint16_t)(size));