I'm learning java so I try to code a basic cellular automata on a hexgrid.
I want to separate display code from simulation code so the simulation just process calculations and the display refresh itself based on it.
I try to figure out for days how to properly do this but I'm still confused. I've found many resources on the internet but none gives a simple walkthrough to code this in a object oriented way.
For now I don't care about implementing any pattern, a simple continuous movement on the x and y axes would be good enough to check if it works.
So what I've done :
- a GUI with go, pause, clear controls and a blank display Jpanel
If somebody could give me a method or skeleton or any advice on how to achieve this it'd be really appreciated.