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.
1
vote
0answers
42 views
sharing preferences between two apps on android with libgdx
I am making an android game with both a demo version and a paid version. I want users who decide to buy the paid version to continue from where they left off, with all their old data and settings.
...
5
votes
4answers
485 views
How to save and restore Bullet Physics state?
I'm looking for information on how to save the runtime state of rigid bodies with Bullet Physics. Most of my world consists of static objects, but I have a few dynamic and kinematic objects as well. I ...
6
votes
3answers
294 views
Saving roguelike game state?
I'm working on a basic roguelike using HTML5 and jQuery, and I've come across a problem.
The way the game currently stands, the system only saves the game state every time the user moves between ...
0
votes
1answer
45 views
Saving an arbitrary sized 2d array
I'm trying to create an arbitrary sized(but not infinite) 2d tilebased world. My question is, how do i save a world like this?
My idea was to split up the tiles into bigger chunks and then save those ...
0
votes
1answer
107 views
Good way to store entity data
I'm building an RPG style game, but i have some trouble with storing data from entities. These entities can carry data including but not limited to their location, their graphics, whether they are ...
0
votes
1answer
137 views
Saving Scores Using Cookies
I've recently created a small galiga like game recently using JavaScript and HTML5. I've run into a bit of trouble saving cookies, the cookie saves, but then resets itself when the page is refreshed, ...
2
votes
5answers
405 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 ...
1
vote
2answers
99 views
Cocos2d savegame cctmxtiledmap
my game features several tilemaps that are initially loaded from a tmx file and modified during gameplay.
How can I save the changed tilemaps in a save game? Will NSCoding do the trick here or is the ...
4
votes
1answer
103 views
Forward Compatibility of Save Files
My game is driven by a scripting language, and the user can save at almost anytime in the middle of the script, so the instruction number of the script engine must be saved. The problem is that the ...
1
vote
2answers
484 views
CCUserDefault, iOS/Android and game updates
My game uses cocos2d-x and will be published on iOS platform first, later on Android. I save a lot of things with CCUserDefault (scores, which level was completed, number of coins taken, etc...). But ...
1
vote
1answer
167 views
Saving and Loading the Game (Automatically or Manually) via Internal Storage Only (Tablet PC Issues)
Here is my question. When making a game app for Android, I considered first the device. It's no problem to save progress everything (from levels to records) on a smartphone because it has an SD Card ...
2
votes
5answers
431 views
How can I write data to a file that users can't easily edit? [duplicate]
Possible Duplicate:
How can I protect my save data from casual hacking?
While working on game saving and loading I figured I could just write all the variable values to a file and then load ...
15
votes
4answers
1k views
How does one save a procedural world?
I have recently read about how to create procedural worlds... but how do I save one?
In games like Terraria or Minecraft users can freely modify the landscape, but that world can't be recreated from ...
25
votes
3answers
871 views
In which directory to write game save files/data?
I need a definite list of directories, one or more per platform, of where to put game save files and other game generated data. Either based on the OS developer specification, or because it is common ...
5
votes
1answer
283 views
How is the Call of Duty checkpoint system implemented?
Does anybody know how it is implemented or has any advice how to do it?
I'm especially interested in how to avoid that a player dies right after a checkpoint. How does the game evaluate when it's ...