mirror of
https://github.com/isledecomp/isle.git
synced 2025-12-10 08:03:13 +00:00
Beta matching MxOmniCreateFlags (#817)
* Beta matching MxOmniCreateFlags * Add newlines and swap order * Add newline
This commit is contained in:
@@ -5,82 +5,53 @@
|
||||
|
||||
class MxOmniCreateFlags {
|
||||
public:
|
||||
enum LowFlags {
|
||||
c_createObjectFactory = 0x01,
|
||||
c_createVariableTable = 0x02,
|
||||
c_createTickleManager = 0x04,
|
||||
c_createNotificationManager = 0x08,
|
||||
c_createVideoManager = 0x10,
|
||||
c_createSoundManager = 0x20,
|
||||
c_createMusicManager = 0x40,
|
||||
c_createEventManager = 0x80
|
||||
};
|
||||
|
||||
enum HighFlags {
|
||||
c_createTimer = 0x02,
|
||||
c_createStreamer = 0x04
|
||||
};
|
||||
|
||||
MxOmniCreateFlags();
|
||||
|
||||
inline const MxBool CreateObjectFactory() const { return this->m_flags1 & c_createObjectFactory; }
|
||||
inline const MxBool CreateVariableTable() const { return this->m_flags1 & c_createVariableTable; }
|
||||
inline const MxBool CreateTickleManager() const { return this->m_flags1 & c_createTickleManager; }
|
||||
inline const MxBool CreateNotificationManager() const { return this->m_flags1 & c_createNotificationManager; }
|
||||
inline const MxBool CreateVideoManager() const { return this->m_flags1 & c_createVideoManager; }
|
||||
inline const MxBool CreateSoundManager() const { return this->m_flags1 & c_createSoundManager; }
|
||||
inline const MxBool CreateMusicManager() const { return this->m_flags1 & c_createMusicManager; }
|
||||
inline const MxBool CreateEventManager() const { return this->m_flags1 & c_createEventManager; }
|
||||
// FUNCTION: BETA10 0x10092b50
|
||||
inline void CreateObjectFactory(MxBool p_enable) { this->m_flags1.m_bit0 = p_enable; }
|
||||
|
||||
inline const MxBool CreateTimer() const { return this->m_flags2 & c_createTimer; }
|
||||
inline const MxBool CreateStreamer() const { return this->m_flags2 & c_createStreamer; }
|
||||
// FUNCTION: BETA10 0x10092b90
|
||||
inline void CreateTickleManager(MxBool p_enable) { this->m_flags1.m_bit2 = p_enable; }
|
||||
|
||||
inline void CreateObjectFactory(MxBool p_enable)
|
||||
{
|
||||
this->m_flags1 = (p_enable ? this->m_flags1 | c_createObjectFactory : this->m_flags1 & ~c_createObjectFactory);
|
||||
}
|
||||
inline void CreateVariableTable(MxBool p_enable)
|
||||
{
|
||||
this->m_flags1 = (p_enable ? this->m_flags1 | c_createVariableTable : this->m_flags1 & ~c_createVariableTable);
|
||||
}
|
||||
inline void CreateTickleManager(MxBool p_enable)
|
||||
{
|
||||
this->m_flags1 = (p_enable ? this->m_flags1 | c_createTickleManager : this->m_flags1 & ~c_createTickleManager);
|
||||
}
|
||||
inline void CreateNotificationManager(MxBool p_enable)
|
||||
{
|
||||
this->m_flags1 =
|
||||
(p_enable ? this->m_flags1 | c_createNotificationManager : this->m_flags1 & ~c_createNotificationManager);
|
||||
}
|
||||
inline void CreateVideoManager(MxBool p_enable)
|
||||
{
|
||||
this->m_flags1 = (p_enable ? this->m_flags1 | c_createVideoManager : this->m_flags1 & ~c_createVideoManager);
|
||||
}
|
||||
inline void CreateSoundManager(MxBool p_enable)
|
||||
{
|
||||
this->m_flags1 = (p_enable ? this->m_flags1 | c_createSoundManager : this->m_flags1 & ~c_createSoundManager);
|
||||
}
|
||||
inline void CreateMusicManager(MxBool p_enable)
|
||||
{
|
||||
this->m_flags1 = (p_enable ? this->m_flags1 | c_createMusicManager : this->m_flags1 & ~c_createMusicManager);
|
||||
}
|
||||
inline void CreateEventManager(MxBool p_enable)
|
||||
{
|
||||
this->m_flags1 = (p_enable ? this->m_flags1 | c_createEventManager : this->m_flags1 & ~c_createEventManager);
|
||||
}
|
||||
// FUNCTION: BETA10 0x10092bd0
|
||||
inline void CreateVideoManager(MxBool p_enable) { this->m_flags1.m_bit4 = p_enable; }
|
||||
|
||||
inline void CreateTimer(MxBool p_enable)
|
||||
{
|
||||
this->m_flags2 = (p_enable ? this->m_flags2 | c_createTimer : this->m_flags2 & ~c_createTimer);
|
||||
}
|
||||
inline void CreateStreamer(MxBool p_enable)
|
||||
{
|
||||
this->m_flags2 = (p_enable ? this->m_flags2 | c_createStreamer : this->m_flags2 & ~c_createStreamer);
|
||||
}
|
||||
// FUNCTION: BETA10 0x10092c10
|
||||
inline void CreateSoundManager(MxBool p_enable) { this->m_flags1.m_bit5 = p_enable; }
|
||||
|
||||
// FUNCTION: BETA10 0x10130cd0
|
||||
inline const MxBool CreateObjectFactory() const { return this->m_flags1.m_bit0; }
|
||||
|
||||
// FUNCTION: BETA10 0x10130cf0
|
||||
inline const MxBool CreateVariableTable() const { return this->m_flags1.m_bit1; }
|
||||
|
||||
// FUNCTION: BETA10 0x10130d10
|
||||
inline const MxBool CreateTickleManager() const { return this->m_flags1.m_bit2; }
|
||||
|
||||
// FUNCTION: BETA10 0x10130d30
|
||||
inline const MxBool CreateNotificationManager() const { return this->m_flags1.m_bit3; }
|
||||
|
||||
// FUNCTION: BETA10 0x10130d50
|
||||
inline const MxBool CreateVideoManager() const { return this->m_flags1.m_bit4; }
|
||||
|
||||
// FUNCTION: BETA10 0x10130d70
|
||||
inline const MxBool CreateSoundManager() const { return this->m_flags1.m_bit5; }
|
||||
|
||||
// FUNCTION: BETA10 0x10130d90
|
||||
inline const MxBool CreateMusicManager() const { return this->m_flags1.m_bit6; }
|
||||
|
||||
// FUNCTION: BETA10 0x10130db0
|
||||
inline const MxBool CreateEventManager() const { return this->m_flags1.m_bit7; }
|
||||
|
||||
// FUNCTION: BETA10 0x10130dd0
|
||||
inline const MxBool CreateTimer() const { return this->m_flags2.m_bit1; }
|
||||
|
||||
// FUNCTION: BETA10 0x10130e00
|
||||
inline const MxBool CreateStreamer() const { return this->m_flags2.m_bit2; }
|
||||
|
||||
private:
|
||||
MxU8 m_flags1;
|
||||
MxU8 m_flags2;
|
||||
FlagBitfield m_flags1;
|
||||
FlagBitfield m_flags2;
|
||||
};
|
||||
|
||||
#endif // MXOMNICREATEFLAGS_H
|
||||
|
||||
Reference in New Issue
Block a user