2016-09-08 02:01:29 +00:00
|
|
|
#ifndef __URDE_CGAMEHINTINFO_HPP__
|
|
|
|
#define __URDE_CGAMEHINTINFO_HPP__
|
|
|
|
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
#include "IFactory.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
class CGameHintInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct SHintLocation
|
|
|
|
{
|
2017-11-15 04:12:13 +00:00
|
|
|
CAssetId x0_mlvlId;
|
|
|
|
CAssetId x4_mreaId;
|
2016-09-08 02:01:29 +00:00
|
|
|
TAreaId x8_areaId = kInvalidAreaId;
|
2017-11-15 04:12:13 +00:00
|
|
|
CAssetId xc_stringId;
|
2016-09-08 02:01:29 +00:00
|
|
|
SHintLocation(CInputStream&, s32);
|
|
|
|
};
|
|
|
|
|
|
|
|
class CGameHint
|
|
|
|
{
|
|
|
|
std::string x0_name;
|
2017-02-18 02:19:50 +00:00
|
|
|
float x10_immediateTime;
|
|
|
|
float x14_normalTime;
|
2017-08-13 05:26:14 +00:00
|
|
|
CAssetId x18_stringId;
|
2017-02-19 09:27:01 +00:00
|
|
|
float x1c_textTime;
|
2016-09-08 02:01:29 +00:00
|
|
|
std::vector<SHintLocation> x20_locations;
|
|
|
|
public:
|
|
|
|
CGameHint(CInputStream&, s32);
|
2016-12-22 02:48:22 +00:00
|
|
|
|
2017-02-18 02:19:50 +00:00
|
|
|
float GetNormalTime() const { return x14_normalTime; }
|
|
|
|
float GetImmediateTime() const { return x10_immediateTime; }
|
2017-02-19 09:27:01 +00:00
|
|
|
float GetTextTime() const { return x1c_textTime; }
|
2017-11-13 06:19:18 +00:00
|
|
|
std::string_view GetName() const { return x0_name; }
|
2017-08-13 05:26:14 +00:00
|
|
|
CAssetId GetStringID() const { return x18_stringId; }
|
2016-12-22 02:48:22 +00:00
|
|
|
const std::vector<SHintLocation>& GetLocations() const { return x20_locations; }
|
2016-09-08 02:01:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<CGameHint> x0_hints;
|
|
|
|
public:
|
|
|
|
CGameHintInfo(CInputStream&, s32);
|
2016-09-25 01:58:20 +00:00
|
|
|
const std::vector<CGameHint>& GetHints() const { return x0_hints; }
|
2017-02-18 02:19:50 +00:00
|
|
|
static int FindHintIndex(const char* str);
|
2016-09-08 02:01:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
CFactoryFnReturn FHintFactory(const SObjectTag&, CInputStream&, const CVParamTransfer, CObjectReference*);
|
|
|
|
}
|
|
|
|
#endif // __URDE_CGAMEHINTINFO_HPP__
|