Files
ss/include/s/s_StateMgr.hpp
T
2024-11-24 13:04:46 +01:00

70 lines
1.8 KiB
C++

#ifndef S_STATEMGR_H
#define S_STATEMGR_H
#include "s/s_StateID.hpp"
#include "s/s_StateInterfaces.hpp"
// Note: Ported from https://github.com/NSMBW-Community/NSMBW-Decomp/tree/master/include/dol/sLib
// See include/s/README.txt for changes made
/**
* @brief An implementation of sStateMgrIf_c.
*
* @tparam T The parent class for this state manager.
* @tparam Method The state method handler to use.
* @tparam Factory The state factory to use.
* @tparam Check The state ID checker to use.
* @ingroup state
*/
template <class T, class Method, template <class> class Factory, class Check>
class sStateMgr_c : sStateMgrIf_c {
public:
sStateMgr_c(T &owner)
: mFactory(owner), mMethod(mCheck, mFactory, sStateID::null) {}
sStateMgr_c(T &owner, const sStateIDIf_c &initialState)
: mFactory(owner), mMethod(mCheck, mFactory, initialState) {}
virtual void initializeState() {
mMethod.initializeStateMethod();
}
virtual void executeState() {
mMethod.executeStateMethod();
}
virtual void finalizeState() {
mMethod.finalizeStateMethod();
}
virtual void changeState(const sStateIDIf_c &newState) {
mMethod.changeStateMethod(newState);
}
virtual void refreshState() {
mMethod.refreshStateMethod();
}
virtual sStateIf_c *getState() const {
return mMethod.getState();
}
virtual const sStateIDIf_c *getNewStateID() const {
return mMethod.getNewStateID();
}
virtual const sStateIDIf_c *getStateID() const {
return mMethod.getStateID();
}
virtual const sStateIDIf_c *getOldStateID() const {
return mMethod.getOldStateID();
}
// SS addition
bool isState(const sStateIDIf_c &other) const {
return *getStateID() == other;
}
private:
Check mCheck;
Factory<T> mFactory;
Method mMethod;
};
#endif