Page 1 of 1

Tutorial/Demo - How to make a save game

PostPosted: Wed Sep 15, 2010 7:49 pm
by Game A Gogo
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

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

PostPosted: Thu Sep 16, 2010 12:33 am
by zxcvbnm
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.

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

PostPosted: Fri Sep 17, 2010 12:21 pm
by NevenResnik
Thanks a lot for your quick intervention Game A Gogo!! This helped a great deal!!!!

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

PostPosted: Fri Sep 17, 2010 9:16 pm
by Game A Gogo
glad you find it useful!