Page 1 of 1

Found the English Translation of X68000 Games

Posted: Sun May 19, 2024 6:41 pm
by xboxown

Hello everyone,

I have found this link https://archive.org/details/sharp-x68000-translations which have English translation of Sharp x68000 games that just recently this year got released. Can someone take them and transfer them into hdf or turn these disks into d88 please?


Re: Found the English Translation of X68000 Games

Posted: Sun May 19, 2024 9:33 pm
by pgimeno

XDF and HDM are the same format. You can convert them to D88 with the hdm2d88.py script in my signature.


Re: Found the English Translation of X68000 Games

Posted: Mon May 20, 2024 9:34 am
by Syntax Error
pgimeno wrote: Sun May 19, 2024 9:33 pm

XDF and HDM are the same format. You can convert them to D88 with the hdm2d88.py script in my signature.

thx, theres a few converters i didnt have yet, i can confirm the dim2d88.py working

https://pastebin.com/vx4ud7gs

actually a thread with nothing but converters and tools to easily inject stuff into hard disk files per respective cores for linux (and the other things whose names i shant mention wouldnt be too bad if anyone knows of more)


Re: Found the English Translation of X68000 Games

Posted: Mon May 20, 2024 5:38 pm
by xboxown

It does not work with microsoft edge. it just shows the source code. How do I use your code, please?


Re: Found the English Translation of X68000 Games

Posted: Mon May 20, 2024 10:24 pm
by xboxown

thank you for the script. I got it working now. Thank you. I have 10 GB worth of converston to d88 to do...maybe someone will translate them to english i nfuture?


Re: Found the English Translation of X68000 Games

Posted: Tue May 21, 2024 10:29 am
by pgimeno
Syntax Error wrote: Mon May 20, 2024 9:34 am

<snip>

https://pastebin.com/vx4ud7gs

Thanks, I've adopted your patch to make it work on Python 2.7 too.


Re: Found the English Translation of X68000 Games

Posted: Wed May 29, 2024 2:14 am
by Syntax Error
pgimeno wrote: Tue May 21, 2024 10:29 am
Syntax Error wrote: Mon May 20, 2024 9:34 am

<snip>

https://pastebin.com/vx4ud7gs

Thanks, I've adopted your patch to make it work on Python 2.7 too.

would you mind sharing it ? i dont check my posts and replies daily but i certainly like keep a collection of tools handy :shock: :o


Re: Found the English Translation of X68000 Games

Posted: Thu May 30, 2024 6:37 am
by pgimeno
Syntax Error wrote: Wed May 29, 2024 2:14 am
pgimeno wrote: Tue May 21, 2024 10:29 am
Syntax Error wrote: Mon May 20, 2024 9:34 am

<snip>

https://pastebin.com/vx4ud7gs

Thanks, I've adopted your patch to make it work on Python 2.7 too.

would you mind sharing it ? i dont check my posts and replies daily but i certainly like keep a collection of tools handy :shock: :o

It's not under source control. I've updated it in the link in my signature. The patch I applied was to change the print statement that reports the format, to use %.

Code: Select all

--- dim2d88.py~	2020-06-28 02:03:41.000000000 +0200
+++ dim2d88.py	2024-05-21 12:26:11.975567464 +0200
@@ -14,7 +14,7 @@
 
     trkflags = bytearray(trkflags)
 
-    print("DIM format: ", fmt)
+    print("DIM format: %d" % fmt)
     if fmt == 0x00:
       sectors = 8
       sectorlen = 1024

Re: Found the English Translation of X68000 Games

Posted: Sat Jun 08, 2024 11:55 am
by Syntax Error

thanks