Search found 10 matches

by codelogic
Sat Jan 19, 2008 4:56 am
Forum: PS3 Development
Topic: Learn and Compete in Programming the PLAYSTATION®3
Replies: 7
Views: 8547

Lecture 16: Introduction to Game Development (Mike Acton, Insomiac Games)
Nice.
by codelogic
Thu Dec 20, 2007 4:46 am
Forum: PS3 Linux Development
Topic: Does Firmware 2.10 remove access to RSX?
Replies: 30
Views: 25636

Wroked fine for me (no RSX).

The firmware upgrade didn't break my YDL 2.6.16 vanilla kernel. It booted to X fine, with no changes whatsoever.
by codelogic
Tue Nov 20, 2007 8:00 am
Forum: PS3 Development
Topic: PS3 Theme Extractor
Replies: 9
Views: 8501

Edit: I just noticed the files have new names when extracted, would it be possible to keep the original names or maybe change teh generic names to match the sample.xml file from sony so it's easy to compile a new theme without changing names? The latest version 0.6, also creates an XML file which y...
by codelogic
Sun Nov 18, 2007 9:19 am
Forum: PS3 Development
Topic: PS3 Theme Extractor
Replies: 9
Views: 8501

There's also a Windows version on the site, for which you don't need Python installed. Just extract it into a temp directory and copy p3tcompiler.exe to the same directory and run the extractor from there.
by codelogic
Sat Nov 17, 2007 5:52 pm
Forum: PS3 Development
Topic: PS3 Theme Extractor
Replies: 9
Views: 8501

Thanks jimparis.
by codelogic
Sat Nov 17, 2007 5:52 pm
Forum: PS3 Development
Topic: PS3 themes
Replies: 8
Views: 6960

Theme extractor

If anyone's interested in a theme extractor, it's available here.
by codelogic
Sat Nov 17, 2007 7:52 am
Forum: PS3 Development
Topic: PS3 Theme Extractor
Replies: 9
Views: 8501

PNG support

The program now extracts all the images and converts them to PNGs with transparency support. You will need the python imaging library installed. apt-get install python-imaging if you're using a debian based distro like Ubuntu.
by codelogic
Fri Nov 16, 2007 11:15 am
Forum: PS3 Development
Topic: PS3 Theme Extractor
Replies: 9
Views: 8501

PS3 Theme Extractor

I wrote a theme extractor in Python. You can download it from here . Here's the basic README P3T Unpacker v0.10 Copyright &#40;c&#41; 2007. Anoop Menon <codelogic @ gmail.com> This program unpacks Playstation 3 Theme files &#40;.p3t&#41;. By default, it will extract the contents of t...
by codelogic
Thu Nov 15, 2007 11:45 am
Forum: PS3 Development
Topic: PS3 themes
Replies: 8
Views: 6960

Ok, I guess there's a message limit so I can't paste the disassembly directly.

Here are the links

Disassembly of p3tcompiler.pyo

and

Disassembly of cxml.pyo
by codelogic
Thu Nov 15, 2007 11:43 am
Forum: PS3 Development
Topic: PS3 themes
Replies: 8
Views: 6960

Disassembly

I was able to disassemble (not decompile) p3tcompiler into python bytecode. Looks like the actual packing is done in cxml. Here's the program I wrote to disassemble it #!/usr/bin/python import zipimport import dis # change to full path of exe z = zipimport.zipimporter&#40;"p3tcompiler.exe&q...