Tutorial/Demo - How to make a save game

Learn how to make certain types of games and use gameEditor.

Tutorial/Demo - How to make a save game

Postby Game A Gogo » Wed Sep 15, 2010 7:49 pm

Making a save/load game is simple; if you know how to do it!

Firstly, identify all the variables you're going to have to save and load (So you're basically saving an actor's state)
in the presented demo, the player can only move left and right and change color, so the variables I'll need to store are x, y and r. (Position and Color)

Create new variables that should hold the saved state of these, and make sure to associate a savegroup name that's the same for each.
untitled.PNG

Group the variables that should be together with an array if you want; here, I grouped x and y inside SaveCo[2] and made another one for r, SaveRed.

Now for the event that will save these variables into a file. It can be whatever you want, the press of a key, a timer, or whatever event.
Simply assign the values your save variable should hold. in this exemple I used
Code: Select all
SaveCo[0]=x;
SaveCo[1]=y;
SaveRed=r;

and then save these variables with the saveVars function, in this case:
Code: Select all
saveVars("SavedGame.gdt","SaveMe");


Now for the event that will load these variables from a file. Again, it can be anything.
Simply use the loadVars function, in this case:
Code: Select all
loadVars("SavedGame.gdt","SaveMe");

then assign the actor's variable to the save vars, in this exemple:
Code: Select all
x=SaveCo[0];
y=SaveCo[1];
r=SaveRed;

and that's it!

Note: you can also load vars saved from one game to another, different game! simply make sure both variables are the same, with the same savegroup.

you can view the demo's code for further explanation, since I commented on the load/save scripts
Attachments
save game.zip
(3.42 KiB) Downloaded 258 times
Programming games is an art,
    Respect it.
User avatar
Game A Gogo
 
Posts: 3466
Joined: Wed Jun 29, 2005 10:49 pm
Location: French Canada *laughs*
Score: 181 Give a positive score

Re: Tutorial/Demo - How to make a save game

Postby zxcvbnm » Thu Sep 16, 2010 12:33 am

Excellent work game a gogo . I am sure all the new and vets appreciate your fine work. This should be included in the tutorials page , a fine addition.
Check out Momo AlienStarcatcher , featured in apples new and noteworthy and has 5 star reviews!!!
http://itunes.apple.com/us/app/momo-ali ... 61779?mt=8
zxcvbnm
 
Posts: 248
Joined: Sun Aug 22, 2010 7:57 pm
Score: 10 Give a positive score

Re: Tutorial/Demo - How to make a save game

Postby NevenResnik » Fri Sep 17, 2010 12:21 pm

Thanks a lot for your quick intervention Game A Gogo!! This helped a great deal!!!!
NevenResnik
 
Posts: 42
Joined: Mon May 31, 2010 9:59 am
Score: 0 Give a positive score

Re: Tutorial/Demo - How to make a save game

Postby Game A Gogo » Fri Sep 17, 2010 9:16 pm

glad you find it useful!
Programming games is an art,
    Respect it.
User avatar
Game A Gogo
 
Posts: 3466
Joined: Wed Jun 29, 2005 10:49 pm
Location: French Canada *laughs*
Score: 181 Give a positive score


Return to Tutorials

Who is online

Users browsing this forum: No registered users and 1 guest