Nice.Lecture 16: Introduction to Game Development (Mike Acton, Insomiac Games)
Search found 10 matches
- Sat Jan 19, 2008 4:56 am
- Forum: PS3 Development
- Topic: Learn and Compete in Programming the PLAYSTATION®3
- Replies: 7
- Views: 9698
- Thu Dec 20, 2007 4:46 am
- Forum: PS3 Linux Development
- Topic: Does Firmware 2.10 remove access to RSX?
- Replies: 30
- Views: 32718
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.
- Tue Nov 20, 2007 8:00 am
- Forum: PS3 Development
- Topic: PS3 Theme Extractor
- Replies: 9
- Views: 10332
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...
- Sun Nov 18, 2007 9:19 am
- Forum: PS3 Development
- Topic: PS3 Theme Extractor
- Replies: 9
- Views: 10332
- Sat Nov 17, 2007 5:52 pm
- Forum: PS3 Development
- Topic: PS3 Theme Extractor
- Replies: 9
- Views: 10332
- Sat Nov 17, 2007 5:52 pm
- Forum: PS3 Development
- Topic: PS3 themes
- Replies: 8
- Views: 8638
Theme extractor
If anyone's interested in a theme extractor, it's available here.
- Sat Nov 17, 2007 7:52 am
- Forum: PS3 Development
- Topic: PS3 Theme Extractor
- Replies: 9
- Views: 10332
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.
- Fri Nov 16, 2007 11:15 am
- Forum: PS3 Development
- Topic: PS3 Theme Extractor
- Replies: 9
- Views: 10332
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 (c) 2007. Anoop Menon <codelogic @ gmail.com> This program unpacks Playstation 3 Theme files (.p3t). By default, it will extract the contents of t...
- Thu Nov 15, 2007 11:45 am
- Forum: PS3 Development
- Topic: PS3 themes
- Replies: 8
- Views: 8638
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
Here are the links
Disassembly of p3tcompiler.pyo
and
Disassembly of cxml.pyo
- Thu Nov 15, 2007 11:43 am
- Forum: PS3 Development
- Topic: PS3 themes
- Replies: 8
- Views: 8638
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("p3tcompiler.exe&q...