isle/LEGO1/omni/include/mxomnicreateflags.h

95 lines
3.3 KiB
C
Raw Normal View History

2023-04-27 22:19:39 -04:00
#ifndef MXOMNICREATEFLAGS_H
#define MXOMNICREATEFLAGS_H
#include "mxtypes.h"
2023-10-24 19:38:27 -04:00
class MxOmniCreateFlags {
2023-04-27 22:19:39 -04:00
public:
2023-10-24 19:38:27 -04:00
enum LowFlags {
Flag_CreateObjectFactory = 0x01,
Flag_CreateVariableTable = 0x02,
Flag_CreateTickleManager = 0x04,
Flag_CreateNotificationManager = 0x08,
Flag_CreateVideoManager = 0x10,
Flag_CreateSoundManager = 0x20,
Flag_CreateMusicManager = 0x40,
Flag_CreateEventManager = 0x80
};
enum HighFlags {
Flag_CreateTimer = 0x02,
Flag_CreateStreamer = 0x04
};
__declspec(dllexport) MxOmniCreateFlags();
inline const MxBool CreateObjectFactory() const { return this->m_flags1 & Flag_CreateObjectFactory; }
inline const MxBool CreateVariableTable() const { return this->m_flags1 & Flag_CreateVariableTable; }
inline const MxBool CreateTickleManager() const { return this->m_flags1 & Flag_CreateTickleManager; }
inline const MxBool CreateNotificationManager() const { return this->m_flags1 & Flag_CreateNotificationManager; }
inline const MxBool CreateVideoManager() const { return this->m_flags1 & Flag_CreateVideoManager; }
inline const MxBool CreateSoundManager() const { return this->m_flags1 & Flag_CreateSoundManager; }
inline const MxBool CreateMusicManager() const { return this->m_flags1 & Flag_CreateMusicManager; }
inline const MxBool CreateEventManager() const { return this->m_flags1 & Flag_CreateEventManager; }
2023-10-24 19:38:27 -04:00
inline const MxBool CreateTimer() const { return this->m_flags2 & Flag_CreateTimer; }
inline const MxBool CreateStreamer() const { return this->m_flags2 & Flag_CreateStreamer; }
2023-10-24 19:38:27 -04:00
inline void CreateObjectFactory(MxBool p_enable)
2023-10-24 19:38:27 -04:00
{
this->m_flags1 =
(p_enable ? this->m_flags1 | Flag_CreateObjectFactory : this->m_flags1 & ~Flag_CreateObjectFactory);
2023-10-24 19:38:27 -04:00
}
inline void CreateVariableTable(MxBool p_enable)
2023-10-24 19:38:27 -04:00
{
this->m_flags1 =
(p_enable ? this->m_flags1 | Flag_CreateVariableTable : this->m_flags1 & ~Flag_CreateVariableTable);
2023-10-24 19:38:27 -04:00
}
inline void CreateTickleManager(MxBool p_enable)
2023-10-24 19:38:27 -04:00
{
this->m_flags1 =
(p_enable ? this->m_flags1 | Flag_CreateTickleManager : this->m_flags1 & ~Flag_CreateTickleManager);
2023-10-24 19:38:27 -04:00
}
inline void CreateNotificationManager(MxBool p_enable)
2023-10-24 19:38:27 -04:00
{
this->m_flags1 =
(p_enable ? this->m_flags1 | Flag_CreateNotificationManager
: this->m_flags1 & ~Flag_CreateNotificationManager);
2023-10-24 19:38:27 -04:00
}
inline void CreateVideoManager(MxBool p_enable)
2023-10-24 19:38:27 -04:00
{
this->m_flags1 =
(p_enable ? this->m_flags1 | Flag_CreateVideoManager : this->m_flags1 & ~Flag_CreateVideoManager);
2023-10-24 19:38:27 -04:00
}
inline void CreateSoundManager(MxBool p_enable)
2023-10-24 19:38:27 -04:00
{
this->m_flags1 =
(p_enable ? this->m_flags1 | Flag_CreateSoundManager : this->m_flags1 & ~Flag_CreateSoundManager);
2023-10-24 19:38:27 -04:00
}
inline void CreateMusicManager(MxBool p_enable)
2023-10-24 19:38:27 -04:00
{
this->m_flags1 =
(p_enable ? this->m_flags1 | Flag_CreateMusicManager : this->m_flags1 & ~Flag_CreateMusicManager);
2023-10-24 19:38:27 -04:00
}
inline void CreateEventManager(MxBool p_enable)
2023-10-24 19:38:27 -04:00
{
this->m_flags1 =
(p_enable ? this->m_flags1 | Flag_CreateEventManager : this->m_flags1 & ~Flag_CreateEventManager);
2023-10-24 19:38:27 -04:00
}
inline void CreateTimer(MxBool p_enable)
2023-10-24 19:38:27 -04:00
{
this->m_flags2 = (p_enable ? this->m_flags2 | Flag_CreateTimer : this->m_flags2 & ~Flag_CreateTimer);
2023-10-24 19:38:27 -04:00
}
inline void CreateStreamer(MxBool p_enable)
2023-10-24 19:38:27 -04:00
{
this->m_flags2 = (p_enable ? this->m_flags2 | Flag_CreateStreamer : this->m_flags2 & ~Flag_CreateStreamer);
2023-10-24 19:38:27 -04:00
}
private:
MxU8 m_flags1;
MxU8 m_flags2;
2023-04-27 22:19:39 -04:00
};
#endif // MXOMNICREATEFLAGS_H