groworld/plant-eyes
2009-10-28 08:23:14 +00:00
..
blender rename fpp -> plant-eyes 2009-06-20 07:07:24 +01:00
meshes added 2009-10-21 22:22:04 +01:00
scripts joypad + optimisations 2009-10-28 08:23:14 +00:00
shaders more fixes 2009-10-22 11:31:11 +01:00
snd sommercamp fixes on the last day - sounds, space is grow key, fixes 2009-08-19 11:29:01 +01:00
test-scripts twiglets fixed, moved stuff around... 2009-09-28 09:57:29 +01:00
textures tot ornaments, new shaders etc etc 2009-10-21 19:07:30 +01:00
plant-eyes.scm tot ornaments, new shaders etc etc 2009-10-21 19:07:30 +01:00
README twiglets fixed, moved stuff around... 2009-09-28 09:57:29 +01:00
stones.txt pickups working again, added world builder script 2009-08-04 09:06:14 +01:00
world-build.scm added text, and lots of other things 2009-10-06 15:44:10 +01:00
world.txt tot ornaments, new shaders etc etc 2009-10-21 19:07:30 +01:00

notes:

* keeping with a view/logic separation, although this is quite different to 
  the hexagon game. the main advantages:
	- just a divide and conquer strategy for staying sane 
	- able to debug the logic without the view, or vice versa
	- the logic can be ticked at a lower frequency - or even different 
	  parts at different rates, whereas the view needs ticking every frame

* need to try to keep all the intensive 'every thing vs every thing' checking 
  in the logic side, where it can be done over many frames (i'm thinking the
  lags involved with things like nutrients getting absorbed may not matter 
  too much in this game)

* using a message passing system to formalise the passing of information on 
  the logic side. this makes it possible to have objects sending messages
  at any point, and have them automatically collected up and dispatched to 
  the view

* these messages are also converted to xmpp messages and sent out over the 
  network

* line segments are computed in the logic side, and can be represented any
  way by the view - maybe the players plant will be geometry and everyone
  elses will be ribbons (stoopid LOD)

* in the same way, the line segments can be created in any way by the logic 
  side - eg. lsystem, or different methods per plant (or per twig even)