17 bn::sram::read(*
this);
21 bn::sram::write(*
this);
25 extern SaveState
save;
34 void render_save_slot(
int slot, bn::fixed x, bn::fixed y, bn::sprite_text_generator gen, bn::vector<bn::sprite_ptr, 96>* sprites);
save state cover how SRAM is mapped
Definition save_state.h:9
void save_slot_selected(int slot)
load a particular game state (state::GameState) from save_state::save (SaveState::states) into the gl...
Definition save_state.cpp:10
void read_all_saves()
read SRAM and load into save_state::save
Definition save_state.cpp:6
SaveState save
singular global SaveSate
Definition save_state.cpp:4
void render_save_slot(int slot, bn::fixed x, bn::fixed y, bn::sprite_text_generator gen, bn::vector< bn::sprite_ptr, 96 > *sprites)
paint a save slot on the save screen
Definition save_state.cpp:22
void write_to_slot(int slot)
write the global game state (state::st) into a particular save slot (save_state::save 's SaveState::s...
Definition save_state.cpp:16
SaveState holds 3 game states.
Definition save_state.h:11
state::GameState states[3]
array of contiguous game states
Definition save_state.h:14
void read()
read SaveState from SRAM
Definition save_state.h:16
void write()
write this SaveState to SRAM
Definition save_state.h:20
encapsulated game state
Definition state.h:53