Work Life (Visual Novel / Game)
Loading...
Searching...
No Matches
state.h
1#pragma once
2#define GAME_NAME_LEN 8
3#include "vnlib.h"
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]
13
22namespace state {
24 constexpr char initialized_char = '@';
26 struct lock_state {
34 void init() {
35 last = character::GENERIC;
36 for(auto c : character::characters) {
37 lock(c);
38 progression[c] = 0;
39 }
40 unlock(character::INO);
41 }
44 is_unlocked[c] = false;
45 }
48 is_unlocked[c] = true;
49 }
50 };
51
53 struct GameState {
54 public:
58 int day;
60 char mc_name[GAME_NAME_LEN + 1]; // extra slot to ensure NULL termination
76 void initialize() {
77 if(is_initialized()) {
78 return;
79 }
81 mc_name[0] = 'U';
82 mc_name[1] = '\0';
83 day = 0;
85 runtime_state.init();
87 mc_state.init();
88 im_state.init();
89 mg_state.init();
91 }
95 }
97 bool is_workday() {
98 return day % 7 <= 4;
99 }
101 bool is_saturday() {
102 return day % 7 == 5;
103 }
105 bool is_sunday() {
106 return day % 7 == 6;
107 }
109 int week() {
110 return (day / 7) + 1;
111 }
113 bn::string<10> day_name() {
114 switch(day % 7) {
115 case 0:
116 return "Monday";
117 case 1:
118 return "Tuesday";
119 case 2:
120 return "Wednesday";
121 case 3:
122 return "Thursday";
123 case 4:
124 return "Friday";
125 case 5:
126 return "Saturday";
127 case 6:
128 return "Sunday";
129 default:
130 return "";
131 }
132 }
134 bn::string<2> short_day_name() {
135 switch(day % 7) {
136 case 0:
137 return "Mo";
138 case 1:
139 return "Tu";
140 case 2:
141 return "We";
142 case 3:
143 return "Th";
144 case 4:
145 return "Fr";
146 case 5:
147 return "Sa";
148 case 6:
149 return "Su";
150 default:
151 return "";
152 }
153 }
154 };
156 extern GameState st;
157}
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