4#include "runtime_state.h"
5#include "main_character_state.h"
6#include "relationship_state.h"
7#include "instant_message_state.h"
8#include "minigame_state.h"
9#include "weekend_event_state.h"
10#define UNLOCKED_MARKETING state::st.unlock_state.is_unlocked[character::KANADE]
11#define UNLOCKED_SALES state::st.unlock_state.is_unlocked[character::RIKA]
12#define UNLOCKED_SECURITY state::st.unlock_state.is_unlocked[character::RIN]
35 last = character::GENERIC;
110 return (
day / 7) + 1;
constexpr int COUNT
there are four characters
Definition character.h:6
const CHAR_ENUM characters[]
conviences array used in loop structures
Definition character.h:16
CHAR_ENUM
the character enum
Definition character.h:8
control loop of game built on top of vnlib::next
Definition day.h:17
various settings that can be changed at runtime
Definition runtime_state.h:7
global game state
Definition state.h:22
GameState st
the singular global game state
Definition state.cpp:4
constexpr char initialized_char
magic value used to tell if a save slot is initialized
Definition state.h:24
various state components when sending messages
Definition instant_message_state.h:6
void init()
initialze the struct
Definition instant_message_state.h:12
state struct containing various stateful item preferences
Definition main_character_state.h:162
void init()
initialize the struct
Definition main_character_state.h:217
encapsulated minigame state
Definition minigame_state.h:18
void init()
initialize the struct
Definition minigame_state.h:26
the relationship state struct
Definition relationship_state.h:26
void init()
initialize the struct
Definition relationship_state.h:34
struct to bundle runtime toggles
Definition runtime_state.h:25
encapsulated game state
Definition state.h:53
int week()
convenience function to get the normalized week count (starting at 1)
Definition state.h:109
relationship_state::relationship_state rel_state
various relationship settings
Definition state.h:66
lock_state unlock_state
store if character is locked/unlocked
Definition state.h:62
main_character_state::mc_state mc_state
various character preferences
Definition state.h:68
bool is_sunday()
is the day Sunday
Definition state.h:105
runtime_state::runtime_state runtime_state
various runtime settings
Definition state.h:64
instant_message_state::im_state im_state
various instant_message settings
Definition state.h:70
weekend_event_state::weekend_event_state wke_state
various weekend event settings
Definition state.h:74
bn::string< 10 > day_name()
convenience function used when printing the day of the week
Definition state.h:113
bn::string< 2 > short_day_name()
convenience function uesd when printing the day of the week
Definition state.h:134
minigame_state::minigame_state mg_state
various minigame settings
Definition state.h:72
void initialize()
initialize the struct
Definition state.h:76
bool is_initialized()
check if this memory region was inintialized, used when reading from SRAM
Definition state.h:93
char initialized
char to indicate if this memory region is initialized
Definition state.h:56
bool is_saturday()
is the day Saturday
Definition state.h:101
char mc_name[GAME_NAME_LEN+1]
the main character's name. input at story start
Definition state.h:60
bool is_workday()
convenience function to tell if its a workday (could technically support holidays)
Definition state.h:97
int day
day counter in game, starts at 0
Definition state.h:58
store if character is unlocked. see story::unlocks
Definition state.h:26
bool is_unlocked[character::COUNT]
locks per character (true = unlocked, false = locked)
Definition state.h:28
int progression[character::COUNT]
story the progression counter for unlock dialog
Definition state.h:30
void unlock(character::CHAR_ENUM c)
ensure that character is in unlocked state
Definition state.h:47
void init()
initialize the struct
Definition state.h:34
character::CHAR_ENUM last
last character to initiate an unlock event with
Definition state.h:32
void lock(character::CHAR_ENUM c)
ensure that character is in locked state
Definition state.h:43
struct containing weekend_event progress values
Definition weekend_event_state.h:6
void init()
initialize the struct
Definition weekend_event_state.h:12