I'm looking for some guidance when designing a windows 8 store, turn-by-turn game application (XAML / C#).
Each turn, the AI does some tasks, and the player does some tasks. This can be treated as a state-machine/fixed workflow.
I can think of using a game loop [1] or creating and tracking each state in a state machine triggered by user input[2]:
[1]:
where(true)
{
BeginTurn();
AiDoSomething1();
await PlayerInput1();
AiDoSomething2();
await PlayerInput2();
EndTurn();
}
[2]:
void PlayerInput1()
{
lock(_lock)
{
if(State == State.State1)
{
State = State.State2;
AiDoSomething2();
}
}
}
void PlayerInput2()
{
lock(_lock)
{
if(State == State.State2)
{
State = State.State1;
EndTurn(); BeginTurn();
AiDoSomething1();
}
}
}
For windows 8 store apps using XAML/C#, is there a well known pattern to tackle this sort of scenario?
VisualStateManager:msdn.microsoft.com/en-us/library/windows/apps/… – mydogisbox Oct 10 '12 at 18:22