I'm trying to emulate a combat sequence of sorts using threads and MVC. Details:
- Every creature has an initiative score governing who gets to go first.
- Every creature must state its intended target.
- Creatures are loaded into a stack on a 'Combat' class; the creature with the lowest score enters the stack first.
- Once every creature has selected a target, the stack empties, and creatures act according to their initiative order, highest-first.
An assignment constraint requires me to handle the creatures as separate threads. The problem is:
- I don't know of a way for the 'Combat' class to realize that it has to process the actions on the stack because there will be no more creatures entering it.
- I figure 'Combat' must have a way of knowing the lowest initiative score among all running threads, but I don't know how to manage that.
I apologize if I can't put this more clearly. It's very frustrating as it is.