博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

PSP开发--PBP文件格式说明

Posted on 2010-05-17 19:07  淡如水wp  阅读(1645)  评论(0编辑  收藏  举报

PBP文件实际上是一个文件容器,其中可能容纳的文件格式包括:

  1. 说明文件 (PARAM.SFO)
  2. 预览图 (ICON0.PNG)
  3. 预览视频 (ICON1.PMF)
  4. 介绍图片 (PIC0.PNG)
  5. 背景图 (PIC1.PNG)
  6. 音乐 (SND0.AT3)
  7. 执行数据 (DATA.PSP)
  8. 其他数据文件 (DATA.PSAR)

这些文件之间没有任何分隔符,PBP文件头为固定的40字节,说明如下:

偏移量内容说明
0-3 文件类型/说明 总是一个00跟着"PSP"
4-7 PBP版本(?) 总是00 00 01 00
8-11 PARAM.SFO的偏移量  
12-15 ICON0.PNG的偏移量  
16-19 ICON1.PMF的偏移量  
20-23 PIC0.PNG的偏移量  
24-27 PIC1.PNG的偏移量  
28-31 SND0.AT3的偏移量  
32-35 DATA.PSP的偏移量  
36-39 DATA.PSAR的偏移量  

如果PBP中若没有包含某文件的话,则该文件的偏移量与上一个文件的偏移量相同。比如:如果一个PBP中只有PARAM.SFO, ICON0.PNG 和 DATA.PSP,则偏移量应与下面的类似:

文件PARAM.SFOICON0.PNGICON1.PMFPIC0.PNGPIC1.PNGSND0.AT3DATA.PSPDATA.PSAR
偏移量 40 1772 1772 1772 1772 1772 20606 20606

SFO 文件
SFO文件被PSP用来存储有关游戏和软件信息,比如固件升级和UMD游戏,他们本质上是一个键值对的文件。对齐方式是4字节(byte)。SFO的头文件共20个字节。如下:

偏移量内容说明
0-3 文件类型/描述  总是一个00跟着"PSF".
4-7 PSF版本 总是 01 01 00 00.
8-11 键表的偏移量  In bytes. Relative to start of file. 32-bit unsigned little endian.
12-15 值表的偏移量  In bytes. Relative to start of file. 32-bit unsigned little endian.
16-19 Number of Data Items. 32-bit unsigned little endian.  

紧接着是索引表,每条记录描述一条数据项。每个数据项在索引表里包括以下数据:

OffsetContentsRemarks
0-1 Offset of Key Name in Key Table Always a null byte followed by "PSF".
2 Data-alignment requirements (?) Always 04. Single (1) byte.
3 Data type of value Single (1) byte. See below for data-type information.
4-7 Size of Value data In bytes. 32-bit unsigned little endian.
8-11 Size of Value data and Padding 32-bit unsigned little endian.
12-15 Offset of Data Value in Data Table 32-bit unsigned little endian.

"Offset of Key Name in Key Table" means just that. The first item will have offset 0 (ZERO). The same principle is true for "Offset of Data Value in Data Table"

Data types are one of 3:-


Next comes the Key Table. This is a simple list of all Key names. Each key name is null-terminated.
Key names need to be in alphabetical order. Presumably, a binary search is carried out to find data values and their respective keys.
The 'Key Table' must conform to 4-byte data alignment. Null padding can fulfill this requirement after the final key.

After this comes the all-important Value Table. Essentially, the Data items are listed one after another.
String (Type 2) and Binary (Type 0) data may have any amount of padding in the form of null bytes.
Each data item has to conform to the data alignment requirements. Once again, null bytes can fulfill this requirement by being added on the end of the data.

N.B.
The "Category" key describes the purpose of the SFO file. The three options are MS (MemoryStick SaveGame), MG (MemoryStick Game) and UG (UMD Game).
An interesting observation is that when "Category" is "MS", the "MS" string and only the "MS" string is not null terminated.
The practical implication of this is simply that "Size of Data" for "MS" is 2 (rather than 3) and null bytes must still fill the remaining 2 bytes as normal.