The VG Resource
Help needed with .tpx files - Printable Version

+- The VG Resource (https://www.vg-resource.com)
+-- Forum: The Resources (https://www.vg-resource.com/forum-109.html)
+--- Forum: The Spriters Resource (https://www.vg-resource.com/forum-110.html)
+---- Forum: Ripping Help (https://www.vg-resource.com/forum-114.html)
+---- Thread: Help needed with .tpx files (/thread-36020.html)



Help needed with .tpx files - 1percentcrit - 09-01-2019

I'm trying to get sprites from "Trauma Center: New Blood" but can't figure out this file type (.tpx). I've looked and looked for a program that can view or convert these files and can't find anything. The programs I've tried just give me an error message. All other posts on this subject either have no replies or no solution Sad .

Any ideas? Thanks.


RE: Help needed with .tpx files - Simpsons Dumper - 09-01-2019

Share an example of one so we can take a look?


RE: Help needed with .tpx files - 1percentcrit - 09-01-2019

Sure, the .tpx files are under "bustup". 

http://www.mediafire.com/folder/pdbn85d3cdz9c/sprite


RE: Help needed with .tpx files - Simpsons Dumper - 09-01-2019

Looks like there's raw image data in the files, though I've been unable to get it to look right.


RE: Help needed with .tpx files - 1percentcrit - 09-03-2019

Hmm, do you think it's a lost cause then?


RE: Help needed with .tpx files - Simpsons Dumper - 09-03-2019

Nah, it's not a lost cause. It would just need someone to invest the time into figuring it out, which is well within the realms of possibility seeing as image data can be fairly easily viewed in a distorted manner.


RE: Help needed with .tpx files - 1percentcrit - 09-03-2019

Glad there's hope for this haha. How are you able to view the images? The most I've gotten was text with a general file viewer.


RE: Help needed with .tpx files - Akaiji - 09-03-2019

(09-01-2019, 05:42 AM)1percentcrit Wrote: I'm trying to get sprites from "Trauma Center: New Blood" but can't figure out this file type (.tpx). I've looked and looked for a program that can view or convert these files and can't find anything. The programs I've tried just give me an error message. All other posts on this subject either have no replies or no solution :( .

Any ideas? Thanks.

.TPX files are just containers for .TPL files, however, the palette is a little tricky. The first half is a table with Green and Red values, and the second half is a table with Alpha and Blue values. So basically you need to multiply the number of colors by 4 to get the size of the palette data and then rearrange in the correct order.

I don't know if there is a program that does this, but I wrote one that successfully converted all the chr files:

tpxtopng.exe (69 MB): https://drive.google.com/open?id=1h5gcz2oTUDGDz0H4zMeYrnGAUrbMJx0R
I used Python to write and compile this tool; that's why the file size is huge for a simple tool. Drag and drop the .TPX files into the white box press Convert.

tpxtopng.py (8 KB): https://drive.google.com/open?id=1JEUfBN3BrTemI1Muo_Gq_Uf7IVe4HgUA
This is the source code. If you want to run this one, you'll need to install Python 3.6, PyQt5 and PIL.

Convert.py (4 KB): https://drive.google.com/open?id=1En_JssUC7YEc7fQJkfYPboQwqiRoURAt
This is a much simpler version. You'll only need to install Python 3.6 and PIL.

Theoretically, they should work with all .TPX files from this game.

Some examples:

                       


RE: Help needed with .tpx files - Simpsons Dumper - 09-03-2019

(09-03-2019, 02:39 PM)1percentcrit Wrote: How are you able to view the images?

http://www.rawpixels.net

But see Akaiji's post. Looks like it actually had some now-solved complexity to it. At least that explains why the headers before the image data were so large.


RE: Help needed with .tpx files - 1percentcrit - 09-03-2019

Wow, that’s very impressive! I tried it out and it works like a charm. Thanks for explaining the know-how behind the files Akaiji and Simpsons Dumper. I was in the dark since this is my first time dealing with ripping.

Thank you so much @Simpsons Dumper and @Akaiji. I appreciate you both! Big Grin


RE: Help needed with .tpx files - Akaiji - 02-10-2020

(09-03-2019, 06:18 PM)1percentcrit Wrote: Wow, that’s very impressive! I tried it out and it works like a charm. Thanks for explaining the know-how behind the files Akaiji and Simpsons Dumper. I was in the dark since this is my first time dealing with ripping.

Thank you so much @Simpsons Dumper and @Akaiji. I appreciate you both! :D

I can't send a private message because it's disabled and this is the only way to reply.

Sure, and thanks for the message, I'm quite pleased to know my tool worked.