The VG Resource
How to extract textures and sprites from a game on the libGDX engine? - Printable Version

+- The VG Resource (https://www.vg-resource.com)
+-- Forum: The Resources (https://www.vg-resource.com/forum-109.html)
+--- Forum: General Ripping (https://www.vg-resource.com/forum-145.html)
+--- Thread: How to extract textures and sprites from a game on the libGDX engine? (/thread-43037.html)



How to extract textures and sprites from a game on the libGDX engine? - alex4x - 09-22-2024

Hello!

How to extract textures and sprites from a game on the libGDX engine? I am trying to extract resources from the game Megacopter-Blades-of-the-Goddess. I found information that it is made on libGDX. The entire game is packed into a single exe file, there are no resource files. The game is under Windows. I tried to use the resource viewer in windows-exe files "Resource Tuner" from Heaventools, but this program did not find anything in the exe file.

Maybe someone knows how else you can try to extract resources from an exe file, and perhaps they are somehow specifically packed there by the libGDX engine? Maybe there is some standard cab or tar archive inside that can be separated, unpacked and then figure out what is there...
[Image: 54012227732_d3408a12a0_b.jpg]


RE: How to extract textures and sprites from a game on the libGDX engine? - gameripper - 09-23-2024

(09-22-2024, 09:13 AM)alex4x Wrote: How to extract textures and sprites from a game on the libGDX engine?
That's not an engine but a framework (meaning each game using it has its own way of storing resources, no common format exists).

(09-22-2024, 09:13 AM)alex4x Wrote: The entire game is packed into a single exe file, there are no resource files.
LibGDX is a Java library, but exe files contain machine code (so not Java bytecode). Therefore either this game is not using libGDX, or it also uses some magic to encapsulate the Java Runtime Environment too (in which case odds are it is using some even more exotic resource management method).

Regardless to the engine, you might be able to extract assets from an exe. Maybe try Microsoft's PEdump, but it's not easy to use, so I'd rather suggest ripPE or petools (or any other PE analysis and dumper tool) instead. If you're lucky you can find the assets in one of the sections, most likely in the one named '.rsrc' or '.rdata', but with a custom engine, anything is possible.

EDIT: give a try to GAME RIPPER, easy to use: just start it and drag'n'drop your the exe file on its window and that's it. I've implemented asset scanning in EXE and JAR files, so should work with a libGDX game too.