NPK文件格式
用驢子拖了個<<Drakensang>>, 想把資源弄出來利用一下
這游戲是用N2+N3做的, 文件格式什么的, 還是N2的
到N2的代碼里找了下, 果然有讀取NPK文件的代碼
想想自己全部解壓出來太麻煩, 不如做個查看器
但是從頭自己做一個性價比不是很高, 再加上我是TC的死忠
那么, 就做個像MPQ那樣的插件好了
?
NPK的文件包格式, 看完N2的注釋就明白了, 無非就是把文件一個個都拼了起來
數據段就是FourCC+Size+Data的這種Chunk結構, 沒有版本號的概念
這樣無壓縮也無加密, 屬于最原始的文件包格式
npk file format:@verbatim# headerblock HEADER {uint32 'NPK0' // magic numberuint32 blockLen // number of following bytes in blockuint32 dataOffset // byte offset of data block from beginning of file}# table of contents, sequence of blocks of 3 types:block DIR {uint32 'DIR_' // magic number of directory blockuint32 blockLen // number of following bytes in blockuint16 dirNameLength // length of the following namechar[] dirName // name of directory}block FILE {uint32 'FILE' // magic number of file blockuint32 blockLen // number of following bytes in blockuint32 fileOffset // start of file data inside data blockuint32 fileLength // length of file data in bytesuint16 fileNameLength // length of the following namechar[] fileName // name of file}block ENDOFDIR {uint32 'DEND' // magic number of end of dir blockuint32 blockLen // number of following bytes in block (0)}# the data blockblock DATA {uint32 'DATA' // magic number of data blockuint32 blockLen // number of following bytes in blockchar[] data // the data}@endverbatim
整個文件的結構, 是這樣組織的:
- NPK0
- DIR_
- DIR_
- FILE
- FILE
- ...
- DEND
- DIR_
- FILE
- FILE
- ...
- DEND
- ...
- DIR_
- DEND
- DATA
簡單得不能再簡單了, 要寫一個文件讀取的話, 連N2的庫都不用依賴
又下了一個TC的ISO源碼看了下, 原來就是個DLL, 把相應的函數實現一下, 然后扔給TC就可以用
?
=========================================================
更新一個TC插件:
總結
- 上一篇: SVM多分类算法-一对一
- 下一篇: 内是不是半包围结构_轻钢别墅的体系结构