TROPHY.TRP: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
Trophy installation data.
Trophy installation data.


* Version 1 Structure:
* Version 1 Structure (for PS3):


<code>
<code>
Line 13: Line 13:
</code>
</code>


* Version 2 Structure:
* Version 2 Structure (for PS3/PS Vita):


<code>
<code>
Line 26: Line 26:
</code>
</code>


* Version 3 Structure (for PS4):


{{File Formats}}<noinclude>[[Category:Main]]</noinclude>
{{File Formats}}<noinclude>[[Category:Main]]</noinclude>

Revision as of 02:03, 23 December 2014

Trophy installation data.

  • Version 1 Structure (for PS3):

 uint32_t magic;
 uint32_t version; // 1
 uint64_t file_size;
 uint32_t files_count;
 uint32_t element_size;
 uint32_t unknown;
 unsigned char padding[36];

  • Version 2 Structure (for PS3/PS Vita):

 uint32_t magic;
 uint32_t version; // 2
 uint64_t file_size;
 uint32_t files_count;
 uint32_t element_size;
 uint32_t unknown;
 unsigned char sha1[20];
 unsigned char padding[16]

  • Version 3 Structure (for PS4):