你的设计令我看好,尽管我假定你指的是32个“<>bits>/em>,而不是32个“bytes/em>!
我认为,如果你想要把你们的所有资产装上一线,你的设计最好能做到,因为它具有某种顺序设计。 如果你想要在某个时候仅仅装上少数资产(或许是因为每个游戏级只使用一小部分资产),那么,效率就会降低,因为你不得不通过每项资产来理解你想要的东西。
在此情况下,你可能想尝试一种更指数化的设计,或许像这样:
[HEADER]
[Miscellaneous header stuff]
[Offset to index from start of file]
[Number of entries in index]
[RECORD 1]
[Asset data]
[RECORD 2]
[Asset data]
.
.
[RECORD N]
[Asset data]
[INDEX]
[ID or filename of asset 1]
[Size of asset 1]
[Offset to asset 1 from start of file]
[Other asset 1 flags or whatever]
[ID or filename of asset 2]
[Size of asset 2]
[Offset to asset 2 from start of file]
[Other asset 2 flags or whatever]
.
.
这将使资产更容易任意获取,因为现在,你只得通过你的指数(你将记为记忆)而不是通过你的整个档案(可能不适于记忆)查询。 如果你想要ancy,你就能够使用树木或薄膜。
在案卷末而不是前线安装该指数的原因是,如果不必重建整件材料,就更容易在你的包装档案中添加另一个资产。 否则,你指数中的额外条目就会冲出你们的所有抵消。
<><>EDIT: to response to comments...
我所铭记的是,你只能通过该指数获取资产,因此,希望你在阅读资产时永远不会偏离资产末端。 典型使用案例的例子或许会有所帮助。
你们想读一下“TankTexture.png”的案文。 在这方面,我认为你将如何做到这一点:
- Open the pack file.
- Read in the fixed-size header.
- Extract the index offset and number of entries from the header.
- Seek to the start of the index.
- Read the index into an array (fixed index entry size times number of entries).
- Search through the index for the asset called "TankTexture.png".
- Extract the asset offset and size from the index entry.
- Seek to the start of the asset.
- Read in the number of bytes given by the asset size.
当然,对于随后的资产,你只需要步骤6-9。
我希望这有助于解释我的想法。 让我知道,你是否有任何其他问题。