What''s easy extensible technique to store game data?

Posted by Miro on Game Development See other posts from Game Development or by Miro
Published on 2012-11-25T13:14:19Z Indexed on 2012/11/25 17:21 UTC
Read the original article Hit count: 244

Filed under:
|

I'm looking for library/technique for storing my game resources - levels, object (effects,world info), items(price,effects,...), NPC(visual info, behavior), everything except graphics/audio stuff. I've seen lua used for Awesome WM configuration. protobuf looks good, but it seems to be designed for network communication. I've tried to write my own parser, but as the project grows it's more and more harder to manage it and catch all the bugs.

My requiremets:

  • stability
  • easy extension of data without need to convert older versions to newer
  • good(don't have to be the best) performance of loading
  • not much coding
  • not XML!

© Game Development or respective owner

Related posts about libraries

Related posts about storage