metaforce/Runtime/CMainFlowBase.cpp

25 lines
646 B
C++
Raw Permalink Normal View History

#include "Runtime/CMainFlowBase.hpp"
#include "Runtime/CArchitectureMessage.hpp"
2015-08-26 17:23:46 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2015-08-26 17:23:46 -07:00
2018-12-07 21:30:43 -08:00
CIOWin::EMessageReturn CMainFlowBase::OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue) {
switch (msg.GetType()) {
case EArchMsgType::TimerTick:
AdvanceGameState(queue);
break;
case EArchMsgType::SetGameState: {
const CArchMsgParmInt32& state = MakeMsg::GetParmNewGameflowState(msg);
x14_gameState = EClientFlowStates(state.x4_parm);
SetGameState(x14_gameState, queue);
return EMessageReturn::Exit;
}
default:
break;
}
return EMessageReturn::Normal;
2015-08-26 17:23:46 -07:00
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce