mirror of
https://github.com/zeldaret/botw
synced 2026-05-30 00:46:35 -04:00
a59add899e
Also adds source files for the resource class, though they're just stubs at the moment.
65 lines
2.5 KiB
C++
65 lines
2.5 KiB
C++
#include "KingSystem/Resource/GeneralParamList/resGParamListObjectTraveler.h"
|
|
#include "KingSystem/Utils/FixedString.h"
|
|
|
|
namespace ksys::res {
|
|
|
|
template <std::size_t N, std::size_t I = 0>
|
|
KSYS_ALWAYS_INLINE static void
|
|
initGParamListTravelerRoutePoints(GParamListObjectTraveler::RoutePoint* point,
|
|
agl::utl::ParameterObj* obj) {
|
|
if constexpr (I < N) {
|
|
point->initParameters_<I>(obj);
|
|
initGParamListTravelerRoutePoints<N, I + 1>(point + 1, obj);
|
|
}
|
|
}
|
|
|
|
GParamListObjectTraveler::GParamListObjectTraveler() {
|
|
auto* const obj = &mObj;
|
|
|
|
mAppearGameDataName.init("", "AppearGameDataName", "", obj);
|
|
mDeleteGameDataName.init("", "DeleteGameDataName", "", obj);
|
|
mRouteType.init("", "RouteType", "", obj);
|
|
mRideHorseName.init("", "RideHorseName", "", obj);
|
|
mIsLeadHorse.init(false, "IsLeadHorse", "", obj);
|
|
mHorseGearLevel.init(-1, "HorseGearLevel", "", obj);
|
|
|
|
initGParamListTravelerRoutePoints<NumRoutePoints>(mRoutePoints.data(), obj);
|
|
mRoutePoint29Name.init("", "RoutePoint29Name", "", obj);
|
|
}
|
|
|
|
KSYS_ALWAYS_INLINE GParamListObjectTraveler::RoutePoints::RoutePoints() {
|
|
// Nintendo seems to have duplicated the definitions for each of the 29 route points,
|
|
// which is utterly disgusting and error prone. Manually writing out the loop and using
|
|
// placement-new is necessary to prevent Clang from emitting a loop.
|
|
#pragma clang loop unroll(full)
|
|
for (auto& storage : mStorage)
|
|
new (&storage) RoutePoint;
|
|
}
|
|
|
|
KSYS_ALWAYS_INLINE GParamListObjectTraveler::RoutePoint::RoutePoint() = default;
|
|
|
|
template <s32 I>
|
|
KSYS_ALWAYS_INLINE void
|
|
GParamListObjectTraveler::RoutePoint::initParameters_(agl::utl::ParameterObj* obj) {
|
|
mName.init("", KSYS_STR(Str("RoutePoint") + Str<I>() + Str("Name")), "", obj);
|
|
mForward.initParameters_<I, I + 1>(obj);
|
|
mBackward.initParameters_<I + 1, I>(obj);
|
|
}
|
|
|
|
template <s32 From, s32 To>
|
|
KSYS_ALWAYS_INLINE void
|
|
GParamListObjectTraveler::RoutePoint::DirectionInfo::initParameters_(agl::utl::ParameterObj* obj) {
|
|
static constexpr auto prefix = [] {
|
|
using ksys::util::Str;
|
|
return Str("RoutePoint") + Str<From>() + Str("to") + Str<To>();
|
|
}();
|
|
|
|
mEntryPoint.init("", KSYS_STR(prefix + Str("EntryPoint")), "", obj);
|
|
mWaitFrame.init(0.0, KSYS_STR(prefix + Str("WaitFrame")), "", obj);
|
|
mSchedule.init("", KSYS_STR(prefix + Str("Schedule")), "", obj);
|
|
mMoveAS.init("", KSYS_STR(prefix + Str("MoveAS")), "", obj);
|
|
mWaitAS.init("", KSYS_STR(prefix + Str("WaitAS")), "", obj);
|
|
}
|
|
|
|
} // namespace ksys::res
|