Found the English Translation of X68000 Games

xboxown
Posts: 21
Joined: Thu Feb 15, 2024 5:46 am
Been thanked: 7 times

Found the English Translation of X68000 Games

Unread post 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?

User avatar
pgimeno
Top Contributor
Posts: 689
Joined: Thu Jun 11, 2020 9:44 am
Has thanked: 269 times
Been thanked: 213 times

Re: Found the English Translation of X68000 Games

Unread post by pgimeno »

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

Syntax Error
Posts: 28
Joined: Fri Sep 08, 2023 6:31 am
Has thanked: 9 times

Re: Found the English Translation of X68000 Games

Unread post 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)

xboxown
Posts: 21
Joined: Thu Feb 15, 2024 5:46 am
Been thanked: 7 times

Re: Found the English Translation of X68000 Games

Unread post by xboxown »

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

xboxown
Posts: 21
Joined: Thu Feb 15, 2024 5:46 am
Been thanked: 7 times

Re: Found the English Translation of X68000 Games

Unread post 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?

User avatar
pgimeno
Top Contributor
Posts: 689
Joined: Thu Jun 11, 2020 9:44 am
Has thanked: 269 times
Been thanked: 213 times

Re: Found the English Translation of X68000 Games

Unread post 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.

Syntax Error
Posts: 28
Joined: Fri Sep 08, 2023 6:31 am
Has thanked: 9 times

Re: Found the English Translation of X68000 Games

Unread post 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

User avatar
pgimeno
Top Contributor
Posts: 689
Joined: Thu Jun 11, 2020 9:44 am
Has thanked: 269 times
Been thanked: 213 times

Re: Found the English Translation of X68000 Games

Unread post 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
Post Reply