Articles on tile-based simulation Games? eg SimLife, SimEarth, etc?

Started by
0 comments, last by laztrezort 12 years ago
Anyone have good recommendations for articles or books on simulation games?
Probably more likely to find theory rather than actual code.. But fyi, i'd be using unity3d

If not specifically to sim games, maybe some of the individual concepts like:

  • simulation cycles
  • how to efficiently deal with different rates of simulation? loops? timers? eg: NPC movement at 30hz whereas tree growth is 0.01hz
  • distributing the functions efficiently across frames?
  • tile systems
  • efficient neighbor checking
  • giant 2-dimensional arrays?
  • objects occupying multiple tiles
  • simulating tiles on an individual basis like the classic falling sand game (http://www.fallingsandgame.com/sand/)

a lot of stuff, but i'd really appreciate any resources you can pass on..
Advertisement
Cellular automata topics may be of interest, here is an article that springs to mind:
http://www.gamasutra..._automation.php

Note sure if this would be useful for your case, but it is an interesting optimization for CA:
http://en.wikipedia.org/wiki/Hashlife

This topic is closed to new replies.

Advertisement