blob: 777a3c4902b8c5ce0ac5eb8266442abe9099dab8 (
plain)
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
|
#pragma once
#include <container/seadBuffer.h>
#include <utility/aglParameter.h>
#include <utility/aglParameterObj.h>
#include "KingSystem/Resource/resResource.h"
#include "KingSystem/Utils/ParamIO.h"
namespace ksys::res {
class Shop : public ParamIO, public Resource {
SEAD_RTTI_OVERRIDE(Shop, Resource)
public:
struct Item {
agl::utl::Parameter<s32> sort_value;
agl::utl::Parameter<sead::SafeString> name;
agl::utl::Parameter<s32> num_stock;
agl::utl::Parameter<s32> price_adjustment;
agl::utl::Parameter<bool> demo_flag;
agl::utl::Parameter<s32> price;
};
KSYS_CHECK_SIZE_NX150(Item, 0xC8);
struct Table {
agl::utl::ParameterObj obj;
agl::utl::Parameter<sead::SafeString> name;
agl::utl::Parameter<s32> column_num;
sead::Buffer<Item> items;
};
KSYS_CHECK_SIZE_NX150(Table, 0x88);
Shop() : ParamIO("shop", 0) {}
s32 findTableIndexOrNormal(const sead::SafeString& table_name) const;
s32 findTableIndex(const sead::SafeString& table_name) const;
bool ParamIO_m0(char* data) override { return true; }
void doCreate_(u8*, u32, sead::Heap*) override {}
bool needsParse() const override { return true; }
const sead::Buffer<Table>& getTables() const { return mTables; }
private:
bool parse_(u8* data, size_t size, sead::Heap* heap) override;
void parseTable_(const s32& table_idx);
agl::utl::ParameterObj mObj;
agl::utl::Parameter<s32> mTableNum;
sead::Buffer<void*> _300;
sead::Buffer<Table> mTables;
};
KSYS_CHECK_SIZE_NX150(Shop, 0x320);
} // namespace ksys::res
|