2019-12-22 20:04:07 +00:00
|
|
|
#include "Runtime/CGameHintInfo.hpp"
|
|
|
|
|
|
|
|
#include "Runtime/CMemoryCardSys.hpp"
|
|
|
|
#include "Runtime/CToken.hpp"
|
|
|
|
#include "Runtime/GameGlobalObjects.hpp"
|
2016-09-08 02:01:29 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
CGameHintInfo::CGameHintInfo(CInputStream& in, s32 version) {
|
|
|
|
u32 hintCount = in.readUint32Big();
|
|
|
|
x0_hints.reserve(hintCount);
|
|
|
|
for (u32 i = 0; i < hintCount; ++i)
|
|
|
|
x0_hints.emplace_back(in, version);
|
2016-09-08 02:01:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CGameHintInfo::CGameHint::CGameHint(CInputStream& in, s32 version)
|
|
|
|
: x0_name(in.readString())
|
2017-02-18 02:19:50 +00:00
|
|
|
, x10_immediateTime(in.readFloatBig())
|
|
|
|
, x14_normalTime(in.readFloatBig())
|
2016-09-08 02:01:29 +00:00
|
|
|
, x18_stringId(in.readUint32Big())
|
2018-12-08 05:30:43 +00:00
|
|
|
, x1c_textTime(3.f * float(version <= 0 ? 1 : in.readUint32Big())) {
|
|
|
|
u32 locationCount = in.readUint32Big();
|
|
|
|
x20_locations.reserve(locationCount);
|
|
|
|
for (u32 i = 0; i < locationCount; ++i)
|
|
|
|
x20_locations.emplace_back(in, version);
|
2016-09-08 02:01:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CGameHintInfo::SHintLocation::SHintLocation(CInputStream& in, s32)
|
|
|
|
: x0_mlvlId(in.readUint32Big())
|
|
|
|
, x4_mreaId(in.readUint32Big())
|
|
|
|
, x8_areaId(in.readUint32Big())
|
2018-12-08 05:30:43 +00:00
|
|
|
, xc_stringId(in.readUint32Big()) {}
|
2016-09-08 02:01:29 +00:00
|
|
|
|
2020-03-14 23:59:58 +00:00
|
|
|
int CGameHintInfo::FindHintIndex(std::string_view str) {
|
2018-12-08 05:30:43 +00:00
|
|
|
const std::vector<CGameHint>& gameHints = g_MemoryCardSys->GetHints();
|
2020-03-14 23:59:58 +00:00
|
|
|
const auto it =
|
|
|
|
std::find_if(gameHints.cbegin(), gameHints.cend(), [&str](const CGameHint& gh) { return gh.GetName() == str; });
|
2017-08-29 13:17:52 +00:00
|
|
|
|
2020-03-14 23:59:58 +00:00
|
|
|
return it != gameHints.cend() ? it - gameHints.cbegin() : -1;
|
2017-02-18 02:19:50 +00:00
|
|
|
}
|
|
|
|
|
2020-03-15 01:28:43 +00:00
|
|
|
CFactoryFnReturn FHintFactory(const SObjectTag&, CInputStream& in, const CVParamTransfer&, CObjectReference*) {
|
2018-12-08 05:30:43 +00:00
|
|
|
in.readUint32Big();
|
|
|
|
s32 version = in.readInt32Big();
|
2016-09-08 02:01:29 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
return TToken<CGameHintInfo>::GetIObjObjectFor(std::make_unique<CGameHintInfo>(in, version));
|
2016-09-08 02:01:29 +00:00
|
|
|
}
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|