saramibreak / DiscImageCreator

This is the disc (CD, GD, DVD, HD-DVD, BD, GC/Wii, XBOX, XBOX 360) and disk (Floppy, MO, USB etc) image creation tool
http://forum.redump.org/topic/10483/discimagecreator/
Apache License 2.0
530 stars 45 forks source link

Feature Request - Create a Redump GD-ROM .cue when GD mode is used. #150

Open ehw opened 1 year ago

ehw commented 1 year ago

Is your feature request related to a problem? Please describe. Currently, when DiscImageCreator's GD mode is used to dump a GD-ROM, it outputs a .gdi file and a .cue file. The cue file is not in the format that Redump requires, and it's missing the low density tracks that are present in the .gdi file that gets output. The .cue file must have a "REM SINGLE-DENSITY AREA" and a "REM HIGH-DENSITY AREA" separating the entries for the low and high density track listings. Otherwise, without manually editing the cue files to include all the required fields, the .cue file will not work.

Describe the solution you'd like Can DiscImageCreator create a .cue file that includes all the tracks from a GD-ROM automatically when "GD" mode is used? This would mean that the output would look like the following.

REM SINGLE-DENSITY AREA FILE "Phantasy Star Online (Japan) (Demo) (Track 1).bin" BINARY TRACK 01 MODE1/2352 INDEX 01 00:00:00 FILE "Phantasy Star Online (Japan) (Demo) (Track 2).bin" BINARY TRACK 02 AUDIO INDEX 00 00:00:00 INDEX 01 00:02:00 REM HIGH-DENSITY AREA FILE "Phantasy Star Online (Japan) (Demo) (Track 3).bin" BINARY TRACK 03 MODE1/2352 INDEX 01 00:00:00

Describe alternatives you've considered Convert the .gdi output directly to .cue instead of doing it at run time?