mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
bc5ca621a4
* Add ncc tool * Add symlink * Fixes * Try this * Try this * Try this * Try this * Add include path * Update style * Update style * Add more rules * Fix style * Update styles * Fix name parameter * Fix MxParam p * Fix m_unk0x pattern * Allow 4 digits for relative hex * Add missing offset * Fix some parameters * Fix some vtables * Fix more vtables * Update rules, fixes * More fixes * More fixes * More fixes * More fixes * More fixes * More fixes * More fixes * Fix last issue * Update readme * Update readme * Update CONTRIBUTING.md * Fix annotations * Rename * Update CONTRIBUTING.md * Update README.md
94 lines
3.3 KiB
C++
94 lines
3.3 KiB
C++
#ifndef MXOMNICREATEFLAGS_H
|
|
#define MXOMNICREATEFLAGS_H
|
|
|
|
#include "mxtypes.h"
|
|
|
|
class MxOmniCreateFlags {
|
|
public:
|
|
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; }
|
|
|
|
inline const MxBool CreateTimer() const { return this->m_flags2 & Flag_CreateTimer; }
|
|
inline const MxBool CreateStreamer() const { return this->m_flags2 & Flag_CreateStreamer; }
|
|
|
|
inline void CreateObjectFactory(MxBool p_enable)
|
|
{
|
|
this->m_flags1 =
|
|
(p_enable ? this->m_flags1 | Flag_CreateObjectFactory : this->m_flags1 & ~Flag_CreateObjectFactory);
|
|
}
|
|
inline void CreateVariableTable(MxBool p_enable)
|
|
{
|
|
this->m_flags1 =
|
|
(p_enable ? this->m_flags1 | Flag_CreateVariableTable : this->m_flags1 & ~Flag_CreateVariableTable);
|
|
}
|
|
inline void CreateTickleManager(MxBool p_enable)
|
|
{
|
|
this->m_flags1 =
|
|
(p_enable ? this->m_flags1 | Flag_CreateTickleManager : this->m_flags1 & ~Flag_CreateTickleManager);
|
|
}
|
|
inline void CreateNotificationManager(MxBool p_enable)
|
|
{
|
|
this->m_flags1 =
|
|
(p_enable ? this->m_flags1 | Flag_CreateNotificationManager
|
|
: this->m_flags1 & ~Flag_CreateNotificationManager);
|
|
}
|
|
inline void CreateVideoManager(MxBool p_enable)
|
|
{
|
|
this->m_flags1 =
|
|
(p_enable ? this->m_flags1 | Flag_CreateVideoManager : this->m_flags1 & ~Flag_CreateVideoManager);
|
|
}
|
|
inline void CreateSoundManager(MxBool p_enable)
|
|
{
|
|
this->m_flags1 =
|
|
(p_enable ? this->m_flags1 | Flag_CreateSoundManager : this->m_flags1 & ~Flag_CreateSoundManager);
|
|
}
|
|
inline void CreateMusicManager(MxBool p_enable)
|
|
{
|
|
this->m_flags1 =
|
|
(p_enable ? this->m_flags1 | Flag_CreateMusicManager : this->m_flags1 & ~Flag_CreateMusicManager);
|
|
}
|
|
inline void CreateEventManager(MxBool p_enable)
|
|
{
|
|
this->m_flags1 =
|
|
(p_enable ? this->m_flags1 | Flag_CreateEventManager : this->m_flags1 & ~Flag_CreateEventManager);
|
|
}
|
|
|
|
inline void CreateTimer(MxBool p_enable)
|
|
{
|
|
this->m_flags2 = (p_enable ? this->m_flags2 | Flag_CreateTimer : this->m_flags2 & ~Flag_CreateTimer);
|
|
}
|
|
inline void CreateStreamer(MxBool p_enable)
|
|
{
|
|
this->m_flags2 = (p_enable ? this->m_flags2 | Flag_CreateStreamer : this->m_flags2 & ~Flag_CreateStreamer);
|
|
}
|
|
|
|
private:
|
|
MxU8 m_flags1;
|
|
MxU8 m_flags2;
|
|
};
|
|
|
|
#endif // MXOMNICREATEFLAGS_H
|