2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-03-18 05:12:27 +00:00
|
|
|
|
2019-09-23 19:00:23 +00:00
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
#include "Runtime/GCNTypes.hpp"
|
|
|
|
#include "Runtime/Input/ControlMapper.hpp"
|
|
|
|
#include "Runtime/World/CEntity.hpp"
|
2017-03-18 05:12:27 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2017-03-18 05:12:27 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CScriptControllerAction : public CEntity {
|
|
|
|
ControlMapper::ECommands x34_command;
|
|
|
|
u32 x38_mapScreenSubaction;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
bool x3c_24_mapScreenResponse : 1;
|
|
|
|
bool x3c_25_deactivateOnClose : 1;
|
|
|
|
bool x3c_26_pressed : 1;
|
2017-03-18 05:12:27 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
u8 _dummy = 0;
|
|
|
|
};
|
|
|
|
|
2017-03-18 05:12:27 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CScriptControllerAction(TUniqueId uid, std::string_view name, const CEntityInfo& info, bool active,
|
|
|
|
ControlMapper::ECommands command, bool b1, u32 w1, bool b2);
|
2019-08-09 12:45:18 +00:00
|
|
|
void Accept(IVisitor& visitor) override;
|
|
|
|
void Think(float, CStateManager&) override;
|
2017-03-18 05:12:27 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|