Sanity checks vs file sizes

Posted by Richard Fabian on Game Development See other posts from Game Development or by Richard Fabian
Published on 2011-06-21T14:22:57Z Indexed on 2011/06/21 16:32 UTC
Read the original article Hit count: 277

Filed under:
|
|
|

In your game assets do you make room for explicit sanity checks, or do you have some generally expected bounds which you assert?

I've been thinking about how we compress data and thought that it's much better to have the former, and less of the latter. If your data can exceed your normal valid ranges, but if it does it's an error, then surely that implies you're not compressing the data well enough?

What do you do to find out if your data is compressed as far as it can be, and what do you use to ensure your data isn't corrupted and ensure it's an official release?

EDIT

I'm not interested in sanity checking the file size, but instead, how you manage your sanity checks and whether you arrange the excess size caused by the opportunity to do sanity checks by using explicit extra data, or through allowing the data enough file space (data member size) to be out of valid range and thus able to be checked merely by looking at the asset in memory after loading.

© Game Development or respective owner

Related posts about assets

Related posts about release