I'd like to make a 2D game in Java using the Model-View-Controller (MVC) pattern, but I have some issues concerning the battles.
There are two groups of characters in each battle: heroes and monsters. The player controls the heroes. My game is turn-based: I'd like to select one character at a time, ask the player the action to use, its target, and finally execute the action. However I can't seem to adjust this sequence of commands with the MVC pattern.
Could anyone help me?