Questions about saving and loading (resuming, restoring) state of the game, allowing player stop and continue playing game at arbitrary moments of real and game time.
16
votes
4answers
2k views
How can I protect my save data from casual hacking?
What options are there for saving game data in a secure manner? I'm interested in solutions specifically tailored for C++.
I'm looking for something that is fast and easy to use. I'm only concerned ...
2
votes
5answers
431 views
Saving data in games?
I'm soon going to make a game for the iPhone as a school project.
My idea was to make a TLOZ remake, with Tiled Maps.
However, I'm not quite sure how save the data.
In TLOZ you have a lot of ...
18
votes
6answers
5k views
How do I create a save file for a C++ game?
I am coding my final for a Video game Programming course, and I want to know how to create a save file for my game, so that a user can play, and then come back later. Any idea how this is done, every ...