HomeForumsWhat's newResources 
 
 
Translating Shin Megami Tensei: Devil Summoner: Soul Hackers
TrekkiesUnite118 - Mar 4, 2023

 1  2  3  Next> 

 TrekkiesUnite118 Mar 4, 2023
So Megaflan sent me the files he extracted from the 3DS version of the game and I've been playing around with them for the past few days. Overall this looks like it could be a fairly straight forward script conversion. The key things that work in this game's favor are the following:
  • The 3DS file formats are very similar to the Saturn file formats save for some endian differences.
  • The game already supports ASCII encoding and will automatically switch to an 8x16 font when it detects ASCII text.
So with those things in mind, I've had some success with converting the 3DS files over to work on the Saturn as you can see here:






As you can see the game seems fairly stable with this converted text, but there are some issues. The biggest one is that the 3DS version allows for more characters per line, and implements a Variable Width Font. The Saturn on the other hand has a fixed width font and about 3-4 less characters per line. So either we can try to rework the font system to use a VWF system, have more characters per line, or edit the script to fit with in the Saturn's technical limits.

There's still a lot to do here but overall it's looking very promising. If any other programmers want to help out on this let me know. It could probably be something to work on in between other projects to eventually get it done. This thread can effectively be the official project discussion area.

 mrkotfw Mar 4, 2023
This is excellent work.

I think that using the original font is the best way to go.

 TrekkiesUnite118 Mar 4, 2023
With some more tinkering I have the Map screens working in a similar fashion. They still need some fine tuning but it is looking to be pretty easy to get the data working.



As you can see the same formatting issues apply, but it should be fixable.

 dibz Mar 5, 2023
Nice, excellent work as always guys. Looking forward to this!

 luis Mar 5, 2023
This is really exciting news, I'll love to test this out once It's released

 Ardiloso Mar 5, 2023
The timing is perfect since Soul Hackers 2 came to Gamepass and I was planning a playthrough.

 TrekkiesUnite118 Mar 26, 2023
Working with Mr.Conan we've been able to start work on getting a Variable Width Font system into the game which along with a few other tweaks seems to address the issues with lines not fitting in the original text boxes:

 savemypoorbrain Mar 27, 2023
Excellent work as always Trekkies! Excited for this one

 dibz Mar 27, 2023

TrekkiesUnite118 said:

The new VWF looks great!

 Nemu Mar 31, 2023
This is amazing! I'll never be grateful enough for all the time you guys spend to allow us to play these masterpieces.

 Hee-Ho Jul 2, 2023
So excited for this project! I've been playing the game in Japanese as of lately and seeing that this version will be soon in English makes me happy!

 Riza Jul 24, 2023
oh this is cool, i am really looking forward to this btw im ripping the ps1 version for assets and stuff so i found this very cute disc boot image of nemissa saying "bim bam"
#video

 TrekkiesUnite118 Aug 15, 2023
Just a small update. I finally had some time to start looking at this again and I was able to finally get the Paradigm X text sorted out. So far it seems to be working ok:



I still need to work more on the font system however. It seems the game has multiple font routines so while we go it working for one, all the others are still the old font system. So the different font routines will need to be isolated and fixed.

Another issue I've found that pops up from time to time is the 3DS script having more text sequences than the original. This can cause the game to get confused in certain spots. One specific one is in the home area. On 3DS it seems more options are available to interact with and some of those options are being mistaken for dialogue causing some comical bits. So that will need to be sorted out as well.

 soundofvictory Aug 21, 2023
Wow, great work! I found this thread via this reddit post...'s spreadsheet... and would very much like to help.

I know a thing or two about bits and bytes and have a decade of professional software development experience, but I'm pretty new to romhacking and fantranslations. That being said, I've looked through some of the guides on romhacking.net

Seriously, let me know how I can help.

 OfManNotMachine Aug 22, 2023
This is awesome!! I'm so excited for this! Thank you to everyone who is working on it!

 TrekkiesUnite118 Sep 13, 2023
So I think I've solved the issue of the 3DS version adding new lines that weren't there in the original Saturn version. These lines were actually originally added in the PS1 port, and like 3DS it's file formats are also similar. So after extracting the PS1 files I effectively used it's files to compare each line against the Saturn version to find which files were newly added. Using that I could then skip the new lines coming in from the 3DS script and only bring in the lines that align to the Saturn script. This seems to have worked and I'm no longer getting messed lines or menus being seen as dialogue, etc.

 mkd Jan 21, 2024
This is awesome, great work Trekkies!
Grateful for all the work you guys are doing.

 OfManNotMachine Feb 9, 2024
Can't wait for this!! I've wanted to play this for years on the Saturn!!

 Pheobus Feb 9, 2024
I've been playing what's done so far. Really excellent work. I've stopped playing as I'm going to wait until the full release. But it looks very promising!

 mashburn4077 Feb 21, 2024

TrekkiesUnite118 said:

Hi! So I'm brand-new to this scene, but last summer I spent a couple months as a first attempt at reverse engineering the PSX version (more nostalgia for me, and I have a lot more MIPS experience). Nice work on the variable-width font - I'm stumped at how you did that, outside of rewriting the print functions entirely. I attacked it differently - I reworked Megaflan's code for the PSX files, then wrote Python scripts that realigned the text to the smaller column count - though this makes new dialogue pages half the time, and I still have text run-over when a choice is asked.

I think I stopped at the same spot you did - did you ever find where the game addresses into the mini-font and draws the battle HUD? In fact, could we compare notes on this?

 1  2  3  Next>