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
|
#ifndef Z64BOMBERS_NOTEBOOK_H
#define Z64BOMBERS_NOTEBOOK_H
#ifdef __cplusplus
extern "C" {
#define this thisx
#endif
#include "ultra64.h"
#include "z64dma.h"
struct PlayState;
#define DEFINE_PERSON(enum, _photo, _description, _metEnum, _metMessage, _metFlag) enum,
#define DEFINE_EVENT(enum, _icon, _colorFlag, _description, _completedMessage, _completedFlag)
typedef enum BombersNotebookPerson {
#include "tables/notebook_table.h"
/* 0x14 */ BOMBERS_NOTEBOOK_PERSON_MAX
} BombersNotebookPerson;
#undef DEFINE_PERSON
#undef DEFINE_EVENT
typedef enum BombersNotebookLoadState {
/* 0 */ BOMBERS_NOTEBOOK_LOAD_STATE_NONE,
/* 1 */ BOMBERS_NOTEBOOK_LOAD_STATE_STARTED,
/* 2 */ BOMBERS_NOTEBOOK_LOAD_STATE_DONE
} BombersNotebookLoadState;
#define DEFINE_PERSON(_enum, _photo, _description, metEnum, _metMessage, _metFlag) metEnum,
#define DEFINE_EVENT(enum, _icon, _colorFlag, _description, _completedMessage, _completedFlag) enum,
typedef enum BombersNotebookEvent {
#include "tables/notebook_table.h"
/* 0x37 */ BOMBERS_NOTEBOOK_EVENT_MAX
} BombersNotebookEvent;
#undef DEFINE_PERSON
#undef DEFINE_EVENT
typedef struct BombersNotebook {
/* 0x00 */ u8 loadState;
/* 0x01 */ UNK_TYPE1 pad01[0x3F];
/* 0x40 */ void* scheduleDmaSegment;
/* 0x44 */ uintptr_t scheduleDmaSegmentStart;
/* 0x48 */ size_t scheduleDmaSegmentSize;
/* 0x4C */ DmaRequest dmaRequest;
/* 0x6C */ OSMesgQueue loadQueue;
/* 0x84 */ OSMesg loadMsg[1];
/* 0x88 */ void* scheduleSegment;
/* 0x8C */ uintptr_t scheduleSegmentStart;
/* 0x90 */ size_t scheduleSegmentSize;
/* 0x94 */ s32 cursorPageRow;
/* 0x98 */ s32 cursorEntry; // Entries are 3 apart, see BOMBERS_NOTEBOOK_ENTRY_SIZE
/* 0x9C */ s32 cursorPage;
/* 0xA0 */ UNK_TYPE1 padA0[0x4];
/* 0xA4 */ s32 scrollAmount;
/* 0xA8 */ s32 scrollOffset;
} BombersNotebook; // size = 0xAC
void BombersNotebook_Draw(BombersNotebook* this, struct GraphicsContext* gfxCtx);
void BombersNotebook_Update(struct PlayState* play, BombersNotebook* this, Input* input);
void BombersNotebook_Init(BombersNotebook* this);
void BombersNotebook_Destroy(BombersNotebook* this);
#ifdef __cplusplus
}
#undef this
#endif
#endif
|