-
Hello, I have briefly mentioned this in another thread, I am having a hard time successfully writing back a .scp image of a copy protected amiga game. This is the summary:
I have tried this on the following original amiga games I own:
However, no matter what I have tried, I cannot run games on floppies I have created by writing my SCP files back to floppy. I am using the greaseweasle 4.1 (sold by amigakit) and version 1.18 of the tools on windows 10. From all my tests I believe the floppies and the drives I am using are good. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
The problem is that unanalysed SCP dumps cannot be intelligently written back to disk. These are the limitations:
To see what I mean, install HxC tools and inspect your SCP dump in the track analyzer. If you enter "disk view" you will see little red speckles all around. These are the write splices. Note how they are not forming a horizontal radial line at the index! So, loads of sectors are getting corrupted by placing the write splice at the index. I don't know about your Project-X and Sword of Sodan dumps, but the problem could well be the same. Here is a method to generate IPFs from your SCP dumps. Download my disk-utilities project. Either build for Linux/Mac from https://github.com/keirf/disk-utilities, or download a Windows prebuilt from this EAB thread: https://eab.abime.net/showthread.php?t=62217&page=51 (look for latest post from user acd2001). Once installed (that's the battle, except the Windows prebuilt should be easy), then for example:
Wow! Now you have your own IPF from your own dump :) You can write this to disk or convert to HFEv3 using |
Beta Was this translation helpful? Give feedback.
-
By the way, relating to #468, I doubt the HFEv3 you generated for Mortal Kombat using HxC is actually 100%, because of the non-index-aligned tracks. I tried
And there were loads of bad sectors. This is because the analyser is losing sync at the index mark, because the sector there is corrupt. Anyway, now you have some things to look for, like non-index-alignment, and new tools to try, like disk-utilities:disk-analyse. If you find a SCP image that does look index aligned (that should still be most commercial software), and want it handled for conversion to HFEv3 by |
Beta Was this translation helpful? Give feedback.
-
Thank you @keirf! This is all great information. I spent sometime testing SCP to IPF conversion and then writing to a real floppy... all 3 disks I was testing worked! Is the IPF conversion tool relying on officially created IPF files structure to write images? Meaning it is only able to convert to IPF if such IPF exists. I see it needs information from the format file to work correctly. I will also be experimenting with other original disks I have. I am curious if index aligned tracks look visually different in the track analyzer tool. I have noticed some ADF files look like pie slices, I wonder if that's what it is... |
Beta Was this translation helpful? Give feedback.
The problem is that unanalysed SCP dumps cannot be intelligently written back to disk. These are the limitations:
This is because
gw
doesn't know where the data is in the track. Some tools attempt to detect the write splice, and I think that might work for your Mortal Kombat dump, butgw
doesn't attempt this.To see what I mean, install HxC tools and inspect your SCP dump in the track analyzer. If you enter "disk view" you will see little red speckles all around. These are the write splices. Note how they are not forming a horizontal radial line at the index!
So, loads of secto…