2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-07-30 11:00:30 +00:00
|
|
|
|
|
|
|
#include "World/CEntity.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
class CScriptPlayerStateChange : public CEntity {
|
2017-07-30 11:00:30 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
enum class EControl { Unfiltered, Filtered };
|
|
|
|
enum class EControlCommandOption { Unfiltered, Filtered };
|
|
|
|
|
2017-07-30 11:00:30 +00:00
|
|
|
private:
|
2018-12-08 05:30:43 +00:00
|
|
|
u32 x34_itemType;
|
|
|
|
u32 x38_itemCount;
|
|
|
|
u32 x3c_itemCapacity;
|
|
|
|
EControl x40_ctrl;
|
|
|
|
EControlCommandOption x44_ctrlCmdOpt;
|
|
|
|
|
2017-07-30 11:00:30 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CScriptPlayerStateChange(TUniqueId, std::string_view, const CEntityInfo&, bool, u32, u32, u32, EControl,
|
|
|
|
EControlCommandOption);
|
2019-08-09 12:45:18 +00:00
|
|
|
void Accept(IVisitor& visit) override;
|
|
|
|
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
|
2017-07-30 11:00:30 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|