This seems like a bit of a silly question but I'll go ahead anyway. I'm working on a relatively simple game in Java using OPENGL (via Processing). I'm using a typical MVC pattern with game updates being passed to the Processing Applet using an Observer pattern. I want to implement a relatively simple scene graph that the model side of the program can update and the view side can read. So far so good but scene graphs are new to me and I'm having trouble coming up with a decent way of generating the scene graph in the first place.
The model side has two collections for game entities at the moment, one for units in the game and a second for environmental objects. I could simply iterate through these and generate nodes to add to the scene graph. What I'm not sure about is what to do when one of these entities is changed or destroyed. Do I generate the entire tree again (seems pretty inefficient) or should each entity `know' its scene node and be able to update it when required?
If anyone has any general advice or links to material on how to generate the scene graph I'd be very grateful. As I said I'm a bit clueless on how to do this so apologies if this question is a bit trivial.