Memory

From Gamebuino Wiki
Jump to: navigation, search

Here is listed and explained of some useful Arduino storage keyword, classes, and function.

See Reference for all Gamebuino specific functions.

EEPROM

EEPROM persists after the Gamebuino has been shut down, making it perfect for game saves. There are 1024 bytes of EEPROM.

There are no special Gamebuino libraries for reading from or writing to EEPROM, because these functions come from the standard Arduino libraries. You need to use #include <EEPROM.h> for these functions.

Here are a few useful functions for working with EEPROM:

For more information on EEPROM, refer to the Arduino library reference.

How Game Switching Works

You may notice that saved data for a game works even when you switch games with the loader, and yet games have access to the entire EEPROM! How is saved data preserved even when another game can write to EEPROM?

The answer lies in the Gamebuino loader. When the loader starts, it checks to see whether there are any bytes in EEPROM that are not zero. If so, it saves the contents of EEPROM into a <GAME NAME>.SAV file on the SD card. Later, when a game is about to be loaded, it checks for a <GAME NAME>.SAV file, and writes the contents to EEPROM if it is found. If not, it clears the EEPROM.

This approach allows games to use the entire contents of EEPROM without worrying about corrupting other games' save data, and without worrying about writing save data to the SD card.