English 中文(简体)
建立一套卷宗的包装式代表制?
原标题:Creating a packed Binary Representation of a Set of Files?
  • 时间:2009-09-12 21:29:33
  •  标签:

因此,我正试图在我自己的小小游戏中工作。 我现在越来越多地学习C#。 我想知道,什么是包装资产的最佳方法,例如文本/文字?

总而言之,我想做的是:

[header]
[number of records]
[Offset to Record 1 from End of header]
[Offset to Record 2 from end of Record 1]
.
.
[Offset to record N from Record N-1]
[record 1]
[256 bytes represent the filename]
[32 byte size]
[binary data]
[record 2]
.
.

现在我只想存储、简单图片和文字档案。 我做了一些研究,而实际发现的最好东西是储存异构体的老例子。

是否有任何经验?

最佳回答

罚款。 如果你能够把所有东西都装上虚拟记忆,让它去掉,那么你就可以真正使用任何形式。 如果你想要随意查阅仅一份记录(例如,你可以装满,尽管不压缩的地图也是 la),那么你可能希望保持这一指数。

大多数人使用一个图书馆,让他们可以查阅一个.zip, .jar, .pak(固定格式),或其他类似(压缩或未)档案格式,如它属于档案系统的一部分(即,记录可以通过显示钥匙查阅)。 如果你能够找到一个已经建成的图书馆,例如:truezip for Java. Apache Commons ,但我不知道如何方便地融合/NET(一个大型的C代码I)。 ZipFS 视之为实际。 NET zip 案卷的顶端只有头盔。

或者,由于可能不太方便,你可以使用。 直接

问题回答

不要浪费你发明自己的储存形式的时间。

You can use SharpZipLib or another free compression library for .net. With it you can also pack multiple files into one archive and extract the files you want separately on demand.

你的设计令我看好,尽管我假定你指的是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”的案文。 在这方面,我认为你将如何做到这一点:

  1. Open the pack file.
  2. Read in the fixed-size header.
  3. Extract the index offset and number of entries from the header.
  4. Seek to the start of the index.
  5. Read the index into an array (fixed index entry size times number of entries).
  6. Search through the index for the asset called "TankTexture.png".
  7. Extract the asset offset and size from the index entry.
  8. Seek to the start of the asset.
  9. Read in the number of bytes given by the asset size.

当然,对于随后的资产,你只需要步骤6-9。

我希望这有助于解释我的想法。 让我知道,你是否有任何其他问题。

If you want to do this for learning purposes then the WAD format is a good place to start. However, I d propose using a chunked file format.
So it would basically follow your proposed format ( i.e header, TOC etc ) but for each data entry you d have a chunk ID which identifies what type of data it is.
This has lots of benefits, mainly that you can vary your data format against your code format by setting your code to skip chunks that it doesn t understand - this allows your tools development to proceed whilst keeping backwards compatibility on your data in your game.

我也建议,在你的电离层中添加32条轨道旗帜,使你能够使用一个轨道场,使压缩型、加密等选择成为可能。

帮助的希望

我说,你的形式是一个很好的选择。 理想的情况是,你想把你们的所有资产从一个读到。 例如,你想要获得同一包裹中第3级的所有数据,这样你就可以把所有级别数据装上不寻求的读物。 在不止一个一揽子计划中,它确实有单一资产。 你只是需要处理资产已经装上并绕过它的情况。

您的数据应如何分开,取决于您的数据(例如,如果文字需要某种模式,应当放在相同的组合中),以及你需要做些什么才能读到(你能够读到你所有的级别数据)。 然后,你可以把你的敌人放在一揽子计划中。 但是,如果你们的游戏在世界流逝,也许你们需要为敌人单独提供包裹。

实际上,跟踪你的数据依赖性是很难做到的。 在你想要知道你掌握的每件数据的可靠性的时候。 通常,你只想读到你的包裹中,并且有资产显示记忆。 你们也需要在一段时间内跟踪依赖情况,因为你需要知道联络处在任何时间的安全。





相关问题