Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email?
November 20, 2008, 08:21:03 AM
News:
Tales of Forum
General
General
ToDr script dump
« previous
next »
Pages:
[
1
]
Author
Topic: ToDr script dump (Read 442 times)
pkt-zer0
Jr. Member
Posts: 11
ToDr script dump
«
on:
August 08, 2007, 07:37:57 PM »
Hi!
I'm not terribly sure whether this would be the right section of the forum to post this in, or whether such a request is out-of-line, but it's worth a shot.
So, to the point: would anyone happen to have a dump of the PS2 Tales of Destiny remake, or a program that could create one? It would be
immensely
helpful for the (slowly) ongoing translation project
here
.
Considering that there is a ToD2 translation in progress, and ToDr was done by the same guys and using a similar engine, potentially the same tools, or slightly modified versions of them, could be used for ToDr as well. At any rate, this seemed like a good place to ask around.
Any and all help (including suggestions for places to continue my investigations, in case all else fails) would be most appreciated. Thanks in advance.
Logged
Cless
Overlord
Administrator
Hero Member
Posts: 1,598
Re: ToDr script dump
«
Reply #1 on:
August 08, 2007, 08:07:43 PM »
Indeed, the engines extremely similar, and most of the ToD2 tools will possibly just need minor adjustments to work on it, but I really haven't gotten intimate with it (mostly trying to focus on ToD2). For what it's worth, DAT.BIN (where the script is likely to be located) has over 50,000 files in it, and going through and identifying what I could of ToD2's 9,300 files was already an adventure in itself.
I did adjust my ToD2 menu text dumper to ToDr though, and got some menu text dumps sitting around, but I don't know if you want those.
Logged
pkt-zer0
Jr. Member
Posts: 11
Re: ToDr script dump
«
Reply #2 on:
August 10, 2007, 02:15:57 PM »
Quote from: Cless on August 08, 2007, 08:07:43 PM
For what it's worth, DAT.BIN (where the script is likely to be located) has over 50,000 files in it, and going through and identifying what I could of ToD2's 9,300 files was already an adventure in itself.
Sounds adventurous indeed. I know I'm probably just pointing out the obvious, but couldn't that be automated by gleaning whatever info is needed from the master records? I'd like to believe that they'd organize things a bit better than throwing a tetrillion files in an archive and indexing them individually.
I wouldn't mind screwing around with that myself, actually. Question is, how much knowledge specific to this sort of stuff would be needed, beyond generic coding/computing knowledge? (This is assuming you are willing to share the tools/source code/information, that is)
Quote from: Cless on August 08, 2007, 08:07:43 PM
I did adjust my ToD2 menu text dumper to ToDr though, and got some menu text dumps sitting around, but I don't know if you want those.
Well, from the menu texts, the item/weapon/whatever lists have been compiled from various sources, but none have the item/title descriptions and suchlike. So the dumps could be interesting in case they contain the latter parts, though they aren't much of a priority.
Logged
Cless
Overlord
Administrator
Hero Member
Posts: 1,598
Re: ToDr script dump
«
Reply #3 on:
August 10, 2007, 03:53:56 PM »
Quote from: pkt-zer0 on August 10, 2007, 02:15:57 PM
Sounds adventurous indeed. I know I'm probably just pointing out the obvious, but couldn't that be automated by gleaning whatever info is needed from the master records?
There's... really no such thing. The game is compiled, so pretty much everything must be reverse-engineered.
I'll state one thing. I have NO IDEA why ToDr would need 50k files, assuming they use the same structure as all the previous Tales games. ToP only had 1350 in its virtual file system while Tales of Rebirth has around 14,000. Most of the files within are actually archives with a number of related subfiles... like a folder I guess. It's possible ToDr could have abandoned the archive system but that sounds inefficient..
Quote from: pkt-zer0 on August 10, 2007, 02:15:57 PM
I wouldn't mind screwing around with that myself, actually. Question is, how much knowledge specific to this sort of stuff would be needed, beyond generic coding/computing knowledge?
I'd say it's nearly impossible, especially without previous game hacking experience. You're likely not going to find anything in a generic format. if previous tales are anything to go by, the script itself is more than likely compressed in a custom LZSS+RLE variant, across hundreds of files.
Quote from: pkt-zer0 on August 10, 2007, 02:15:57 PM
(This is assuming you are willing to share the tools/source code/information, that is)
I'm not very keen on the idea of open sourcing the tools we have. As slim as the chances may be, the director's cut announcement has extended my position on playing "wait and see" as far as receiving the game on these shores. I'm only interested in spending time hacking so that I'll eventually be able to play in english, but the time will feel wasted if it's actually announced. PS2 isn't quite dead yet, so...
Anyway, here are the
menu text dumps
I did awhile back. A file or two may contain translated text that I did for a test...
Logged
pkt-zer0
Jr. Member
Posts: 11
Re: ToDr script dump
«
Reply #4 on:
August 10, 2007, 08:26:31 PM »
Quote from: Cless on August 10, 2007, 03:53:56 PM
I'll state one thing. I have NO IDEA why ToDr would need 50k files, assuming they use the same structure as all the previous Tales games. ToP only had 1350 in its virtual file system while Tales of Rebirth has around 14,000. Most of the files within are actually archives with a number of related subfiles... like a folder I guess. It's possible ToDr could have abandoned the archive system but that sounds inefficient..
Well, the character sprites are stored as lots of small "parts" - even just the heroes and the boss characters weigh 8,000 files this way. Haven't written a program that'd extract individual files from the DAT.BIN (seems simple enough, if DAT.TBL is just an indexer table for it), so I'm not sure whether they're actually file headers, but the string "TIM2" appears 36,311 times, unless I made a mistake somewhere.
Quote from: Cless on August 10, 2007, 03:53:56 PM
I'd say it's nearly impossible, especially without previous game hacking experience. You're likely not going to find anything in a generic format. if previous tales are anything to go by, the script itself is more than likely compressed in a custom LZSS+RLE variant, across hundreds of files.
I actually found some of the fonts/icons.
But yeah, compression algorithms I'm not too likely to reverse just intuitively. Screwing around with a disassembler would probably lead to equally few results.
Quote from: Cless on August 10, 2007, 03:53:56 PM
As slim as the chances may be, the director's cut announcement has extended my position on playing "wait and see" as far as receiving the game on these shores. I'm only interested in spending time hacking so that I'll eventually be able to play in english, but the time will feel wasted if it's actually announced. PS2 isn't quite dead yet, so...
I'd say that ToDr will come out for the PSP sooner than a US version of the original is announced. But you do have a point there.
Quote from: Cless on August 10, 2007, 03:53:56 PM
Anyway, here are the
menu text dumps
I did awhile back. A file or two may contain translated text that I did for a test...
Thanks.
Logged
Pages:
[
1
]
« previous
next »
Jump to:
Please select a destination:
-----------------------------
General
-----------------------------
=> General
=> Tales series
=> tri-Ace
-----------------------------
Phantasian Productions Projects
-----------------------------
=> Tales of Phantasia
===> News
=> Tales of Phantasia Narikiri Dungeon
=> Tales of Phantasia THE ANIMATION
=> Tales of Destiny 2 (PS2)
===> Community translation and editing board
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Powered by SMF 1.1.7
|
SMF © 2006-2008, Simple Machines LLC
Loading...