Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
ever thought about using Netlogo? – ITroubs Apr 8 '11 at 16:14
1  
Get the program to work without any GUI at all first - just display the output to the terminal. Once you have that working its not very hard to develop a simple GUI around that – Amir Afghani Apr 8 '11 at 16:19
@Bradley: Are you familiar with and are you using MVC techniques? The first thing to do is to create your model in a GUI-agnostic way. Once this is well constructed, construct the GUI and control class that use the model. edit: as Amir said just before I did. :) – Hovercraft Full Of Eels Apr 8 '11 at 16:19
@ITroubs yeh but I need to learn java, so re-using existing classes is not the best way imo – Bradley Cooper Apr 8 '11 at 16:26
@Amir & @Hovercraft You're right I'll try to have a simple model running first. Should the output be an array ? – Bradley Cooper Apr 8 '11 at 16:28
show 1 more comment

1 Answer

pseudocode:

class MyModel {
    private int x;
    private int y;

    public int getX() { return x; }
    public int getY() { return y; }

    public void go() {
        // sart a thread that changes x & y over time
    }
    public void stop() {
        // stop the thread
    }
    public void reset() {
        // reset x & y to their initial values
    }
}

The above is your model. Your view should monitor changes in the model's x and y values and display movement based on that. Your controller should call the model's "go" method when the user taps the "go" button, etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.