metaforce/Runtime/World/CHUDMemoParms.hpp

36 lines
913 B
C++
Raw Normal View History

2016-05-20 09:17:51 +00:00
#ifndef CHUDMEMOPARMS_HPP
#define CHUDMEMOPARMS_HPP
#include "IOStreams.hpp"
namespace urde
{
2018-01-01 10:15:26 +00:00
2016-05-20 09:17:51 +00:00
class CHUDMemoParms
{
2018-01-01 10:15:26 +00:00
float x0_dispTime = 0.f;
bool x4_clearMemoWindow = false;
bool x5_fadeOutOnly = false;
bool x6_hintMemo = false;
2016-05-20 09:17:51 +00:00
public:
2018-01-01 10:15:26 +00:00
CHUDMemoParms() = default;
CHUDMemoParms(float dispTime, bool clearMemoWindow, bool fadeOutOnly, bool hintMemo)
: x0_dispTime(dispTime), x4_clearMemoWindow(clearMemoWindow),
x5_fadeOutOnly(fadeOutOnly), x6_hintMemo(hintMemo) {}
2016-05-20 09:17:51 +00:00
CHUDMemoParms(CInputStream& in)
2018-01-01 10:15:26 +00:00
{
x0_dispTime = in.readFloatBig();
x4_clearMemoWindow = in.readBool();
}
float GetDisplayTime() const { return x0_dispTime; }
bool IsClearMemoWindow() const { return x4_clearMemoWindow; }
bool IsFadeOutOnly() const { return x5_fadeOutOnly; }
bool IsHintMemo() const { return x6_hintMemo; }
2016-05-20 09:17:51 +00:00
};
2018-01-01 10:15:26 +00:00
2016-05-20 09:17:51 +00:00
}
#endif // CHUDMEMOPARMS_HPP