1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#pragma once
#include <container/seadBuffer.h>
#include <utility/aglParameter.h>
#include <utility/aglParameterList.h>
#include <utility/aglParameterObj.h>
#include "KingSystem/Resource/resResource.h"
#include "KingSystem/Utils/ParamIO.h"
namespace ksys::res {
class AS;
class ASList : public ParamIO, public Resource {
SEAD_RTTI_OVERRIDE(ASList, Resource)
public:
struct ASDefine {
const char* getFileName() const { return file_name.ref().cstr(); }
agl::utl::Parameter<sead::SafeString> name;
agl::utl::Parameter<sead::SafeString> file_name;
agl::utl::ParameterObj obj;
AS* as;
};
KSYS_CHECK_SIZE_NX150(ASDefine, 0x88);
struct CFPost {
static int compare(const CFPost& o, const sead::SafeString& n);
agl::utl::Parameter<sead::SafeString> name;
agl::utl::Parameter<float> frame;
agl::utl::Parameter<float> start_frame_rate;
agl::utl::ParameterObj obj;
};
KSYS_CHECK_SIZE_NX150(CFPost, 0x98);
struct CFExcept {
static int compare(const CFExcept& o, const sead::SafeString& n);
agl::utl::Parameter<sead::SafeString> name;
};
KSYS_CHECK_SIZE_NX150(CFExcept, 0x28);
struct CFDefine {
agl::utl::Parameter<sead::SafeString> name;
agl::utl::ParameterObj pre_obj;
sead::Buffer<CFPost> posts;
agl::utl::ParameterList posts_list;
sead::Buffer<CFExcept> excepts;
agl::utl::ParameterObj excepts_obj;
agl::utl::ParameterList list;
};
KSYS_CHECK_SIZE_NX150(CFDefine, 0x138);
struct AddRes {
agl::utl::Parameter<sead::SafeString> anim;
agl::utl::Parameter<sead::SafeString> retarget_model;
agl::utl::Parameter<bool> retarget_no_correct;
agl::utl::ParameterObj obj;
};
KSYS_CHECK_SIZE_NX150(AddRes, 0xa0);
struct Common {
agl::utl::Parameter<f32> rate_all;
agl::utl::ParameterObj obj;
};
KSYS_CHECK_SIZE_NX150(Common, 0x50);
ASList();
~ASList() override;
void doCreate_(u8* buffer, u32 buffer_size, sead::Heap* heap) override;
bool needsParse() const override { return true; }
bool parse_(u8* data, size_t size, sead::Heap* heap) override;
const sead::Buffer<ASDefine>& getASDefines() const { return mASDefines; }
const sead::Buffer<CFDefine>& getCFDefines() const { return mCFDefines; }
const sead::Buffer<AddRes>& getAddReses() const { return mAddReses; }
const Common& getCommon() const { return mCommon; }
void addAS_(s32 index, AS* as);
const char* getASFileName(const sead::SafeString& name) const;
int findASDefine(const sead::SafeString& name) const;
int findCFDefine(const sead::SafeString& name) const;
bool getCFDefineInfo(float* frame, float* key, const sead::SafeString& name,
const sead::SafeString& post_name, bool* is_default) const;
protected:
bool finishParsing_() override;
bool m7_() override;
private:
u8 _2b0 = 0;
u8 _2b1 = 0;
u8 _2b2 = 0;
u8 _2b3 = 0;
sead::Buffer<ASDefine> mASDefines;
sead::Buffer<CFDefine> mCFDefines;
sead::Buffer<AddRes> mAddReses;
agl::utl::ParameterList mCFDefinesList;
agl::utl::ParameterList mASDefinesList;
agl::utl::ParameterList mAddResesList;
Common mCommon;
};
KSYS_CHECK_SIZE_NX150(ASList, 0x410);
} // namespace ksys::res
|