admin 发表于 2020-1-13 21:45:13

MPQ中BIN文件解读

此帖为MPQ文件中BIN文件解码具体说明。
BIN文件为程序内部直接执行文件。相应的TXT文件则仅仅只是为BIN文件做注释以及生成BIN文件必要条件,关于BIN文件的查看,使用二进制编辑软件,推荐使用UltraEdit-32。
PS:在查看BIN文件同时,可以同时打开相应TXT文件用以对照。

【L】行数,二进制中每16个Bit为一行
【Head】文件头信息,注:每个文件头信息只有在文件头出现一次,以下的的数据表示将循环表示。


下面以Runes.bin为例,共16*18=288Bit为一循环。

L1 0-3/Head 4-f/Name
L2 Null
L3 Null
L4 Null
L5-L6 Rune Name
L7 Null
L8 Null
L9 0-1/Null 4/complete 5/server 6-9/Null a-b/itype1 c-d/itype2 e-f/itype3
L10 0-1/itype4 2-3/itype5 4-5/itype6 6-7/etype1 8-9/etype2 a-b/etype3 c-f/Rune1
L11 0-3/Rune2 4-7/Rune3 8-b/Rune4 c-f/Rune5
L12 0-3/Rune6 4-7/T1Code1 8-b/T1Param1 c-f/T1Min1
L13 0-3/T1Max1 4-7/T1Code2 8-b/T1Param2 c-f/T1Min2
L14 0-3/T1Max2 4-7/T1Code3 8-b/T1Param3 c-f/T1Min3
L15 0-3/T1Max3 4-7/T1Code4 8-b/T1Param4 c-f/T1Min4
L16 0-3/T1Max4 4-7/T1Code5 8-b/T1Param5 c-f/T1Min5
L17 0-3/T1Max5 4-7/T1Code6 8-b/T1Param6 c-f/T1Min6
L18 0-3/T1Max6 4-7/T1Code7 8-b/T1Param7 c-f/T1Min7
L19 0-3/T1Max7

关键注释:
1. Head位仅存在于最前的位置,说明文件的特性。
2. 关于Rune位,当不取Rune时,则Rune位全置为FF FF FF FF。
3. 数据的表示方式为插后表示,举例:'312'超过'256'换为16进制为'138',则代码的写入为'38 01 00 00'。

符文说明
【r1 - r33】62 02 00 00 - 82 02 00 00

space 发表于 2022-3-23 13:10:12

666666666神话战网出品,必出精品!
页: [1]
查看完整版本: MPQ中BIN文件解读