Scrolling Game Development Kit Forum

SGDK Version 1 => General Discussion => Topic started by: billybob884 on 2006-01-17, 06:33:34 PM

Title: just out of curiosity
Post by: billybob884 on 2006-01-17, 06:33:34 PM
do any of the games in the project listing make use of the save feature? i was considering adding it to my game, but I wasn't sure how it worked, i've never played with it before.
Title: Re: just out of curiosity
Post by: GameDeveloper on 2006-01-17, 06:40:05 PM
Well, I know that at least two of my games on the listing use it ['Turok World','Family Reunion'].  If you want, i could tell you how to use it[or someone else], or you could just look through those two games. 

To answer your question, yes, I do believe many of them do.
Title: Re: just out of curiosity
Post by: billybob884 on 2006-01-17, 07:33:26 PM
thanks, ill d/l turok world and see how it works.
Title: Re: just out of curiosity
Post by: Guilect on 2006-01-17, 08:04:45 PM
I think if you wanted to find out how to save by looking at another game, then you're better off downloading 'Family Reunion'.  It might be a bit easier to understand than Turok World.  But that's just my opinion...
Title: Re: just out of curiosity
Post by: durnurd on 2006-01-17, 09:04:45 PM
The save function is rather easy to understand.  It saves the game in the exact state it's in to a sub-folder of the directory the GDP is in with the name you give the saved game in the special function.  You can then have multiple saved games in this way.  Then loading it just restores the state to the same place it was saved at.

The way it saves everything is simply by creating new MAP files that are the current state of all of the maps as well as creating a .sav file in the same directory as the GDP file to store other information (like inventory, etc.)  It's very similar to a GDP file with some different information.

The GameDev Academy project illustrates this specifically in an educational manner (I think).
Title: Re: just out of curiosity
Post by: bluemonkmn on 2006-01-18, 05:55:49 AM
Yes, save is quite easy to use and only gets a little tricky if you want to do a menu.  To save a game all you have to do is activate a save function and provide a name.  Behind the scenes it does what durnurd describes, but you don't really need to understand that to use it.  Just be aware that there are a fixed number of save "slots" depending on how many different names you use with the save game functions.  Each distinct name represents one slot.

The Game Academy Demo demonstrates some of the tricky usage.  And by "tricky" I mean loading the game in a slightly different state than it was saved.  For example, you might want a save game menu to pick a save slot, but when you load the game, you don't want to load back to the state where you're looking at the save game menu.  So if I remember correctly, the Game Academy Demo gets around this by using a "activate series" function that transports the player and then saves the game in a single function.  The new location of the player activates a function that returns to a more sensible location instead of the save menu.  Technically it gets loaded to the exact same state it was saved in, but that state is one where you're in the middle of transporting somewhere else.  The one thing that doesn't get saved is the state of the script.  If you have any script, its data have to be saved separately (I think there's an example of this in the 2-player demo, to save the second player, but I can't remember for sure).

But if you don't want to do anythig tricky, it's much simpler.  Just save the game, and offer some way to load the same game and there's really no trick to it, especially if you only use one fixed slot.
Title: Re: just out of curiosity
Post by: billybob884 on 2006-01-18, 09:43:43 AM
this sounds more like what i want to do. if i did implement saving, it would jsut occur at the end of each level, after the boss, then have a load option at teh title screen, and when u opened one of the save slots it would go right to the "next" level or map in line.
Title: Re: just out of curiosity
Post by: Guilect on 2006-01-18, 10:06:38 AM
"Just out of curiosity..." shouldn't this topic be in the Help/FAQ thread? ???

Just wondering... :P
Title: Re: just out of curiosity
Post by: billybob884 on 2006-01-18, 11:58:24 AM
So if I remember correctly, the Game Academy Demo gets around this by using a "activate series" function that transports the player and then saves the game in a single function.  The new location of the player activates a function that returns to a more sensible location instead of the save menu.
ok, so i would have to have a different "save map" after each level boss (i.e. each time i wanted to save)? thats no problem, ill only have 5, maybe 6 places to save
Title: Re: just out of curiosity
Post by: Guilect on 2006-01-18, 03:29:21 PM
I don't think you would requrie multiple save maps.  After every boss fight, just teleport the player to the same save map with an item that signifies that they beat that specfic boss.  Why you would give the player a different item after everytime you beat one boss is so that on the save map you can have multiple global functions that send you to the next level.  Here's an example:  You just beat the level one boss and it teleports you to the save map with an item called 'GoToLevel2'.  On the Save Map you have multiple functions that teleport you to a different level, and each function requires an item so that it san teleport you to that specific map.  So the player saves and he goes to some part on the save map to be teleported to the next level.  When he uses the function to teleport, have one of the functions that teleports you to level two require the item 'GoToLevel2' and have it removed.

If you have trouble understanding this, then just let me know and I will try to simplify it.
Title: Re: just out of curiosity
Post by: billybob884 on 2006-01-18, 03:46:32 PM
Heh, no, it makes sense, but the problem is by the time i found your post i had alreasy finished adding in the 7 sets of save maps. Oh well.. at least it works
Title: Re: just out of curiosity
Post by: Guilect on 2006-01-18, 03:57:18 PM
Oh well... :-[

Glad it works for you though :).  How much have you completed with that game?  It seems like you've been working on it for quite some time.
Title: Re: just out of curiosity
Post by: durnurd on 2006-01-18, 03:57:51 PM
Another way to do this would be after each boss fight, teleport to the next level, where there is a special function that is deleted after it's first use which teleports to the save map (remembering the old map), saves it (if they want to or whatever), then simply return to the old map.
Title: Re: just out of curiosity
Post by: Guilect on 2006-01-18, 04:01:09 PM
Your suggestion would have been more helpful if you had posted it before he created the 7 save maps ;).

You're a little late there durnurd. :P
Title: Re: just out of curiosity
Post by: billybob884 on 2006-01-18, 08:51:45 PM
well, actually it turned out to be 14 maps, 7 sets of 2, one for saving, and one just for deleting (yes i know you can overwrite, just thought itd be nice to have the option available). well lets see, i started most of my, ahem, "concept work" in august of 04. so i guess its been nearly a year and a half, but lets not forget that it hasnt been stright through for me. at first i was learning it as i went along, so that slowed me down. then i remember losing a LOT of work that winter (04) due to a harddrive crash (that was also the time i went and built a new computer [my current 1], so a few weeks there), so that was 1 set back, then i had midterms and finals, so like 2 weeks for each, and over the summer in 05 i didnt really get too much done on it, my family from phili was here for a month, so not too much time then. and of course a bunch of stupid little mistakes that held it up for a day or so at a time, none in specific i can remember. all in all, im pretty close to finishing. im working on the final boss right now, then after that ill have sort of a generic "final escape" type level, well a mini-level, then the credits. after that i believe all is left is the "multiplayer", which will probably be 3 short 2-player races, maybe they'll loop once to make them seem longer (hehe), but the multiplayer is still in the planning stages right now. all thats really done for it is the scripting.

just out of curiosity, Guilect, are you at least 15? cuz a few things in this are a little inappropreate/wont necessarily make sense if you aren't (well, they probably wont make much sense to you even if u are over 15, hehe a lot if inside jokes)
Title: Re: just out of curiosity
Post by: durnurd on 2006-01-18, 10:44:37 PM
Well, the board (used to anyway) require that everybody is at least 13 years old who joins.

And second of all, I didn't see his first post until after he had already created all of the maps.

Also, BillyBob, it may be a good idea to remove those maps and just use one single save map for consistency, convenience for editing (only have to modify 1 file instead of 7), file size reduction, and general neatness.
Title: Re: just out of curiosity
Post by: bluemonkmn on 2006-01-19, 05:56:05 AM
billybob884, you have worked on your game for quite a while (possibly longer than any other gamedev project has ever been worked on), and even though it's been on and off, I've had the pleasure of getting a peek at it from time to time, and I see many stars in your future :).
Title: Re: just out of curiosity
Post by: billybob884 on 2006-01-19, 08:49:13 AM
heh yea, as was stated in another post, the graphics really do take up most of hte production time. im planning on spending hte next few days just wokring on all of the sprites for the final boss's attacks
Title: Re: just out of curiosity
Post by: Guilect on 2006-01-19, 09:45:46 AM
just out of curiosity, Guilect, are you at least 15? cuz a few things in this are a little inappropreate/wont necessarily make sense if you aren't (well, they probably wont make much sense to you even if u are over 15, hehe a lot if inside jokes)

If you're saying that I'm too young to comprehend/see the content in this board, or in your game, or whatever you were stating in this sentence, then you're sorely mistakined.  I'm 16 years of age, and I strongly believe that I am very mature for my age, and I am able to comprehend very difficult work/jokes/content.  If you were trying to make a joke, then your humor is of poor taste.  I am not sure if you mean  I need a certain level of maturity to understand a certain level of imaturity, as far as your game/inside jokes go.  You can easily read my fourm profile, if you want to learn my age. I believe that it is easy to access...

To reply to durnurd, I meant no offence about saying your post was worthless or by saying that you were late.  It was merely a joke.  Also, a word of advice, maybe you should read the posts before you begin typing your post.  It only makes logical sense, or at least it does to me anyway.

One more thing, I apologize for going off-topic.
Title: Re: just out of curiosity
Post by: billybob884 on 2006-01-19, 10:28:54 AM
woah easy, i just wanted to make sure you werent some 12 year old kid or something, i just wanted to make sure i wasnt showing a slightly less-than appropreate game to a younger kid, because as far as i know, you could have been; i'd just feel kinda bad for gettin you into trouble or somethin, ya know? no offense meant.
and yea, i forgot about the age in the profile thing.
Title: Re: just out of curiosity
Post by: Guilect on 2006-01-19, 10:48:28 AM
I truely am sorry for attacking you like that.  I suppose that I am a bit sensesitive.  And sorry if I caused any offense toward you, suppose I was a bit blind :-[.

I will try to be more sensible and understanding when analyzing peoples' posts.  Again I am sorry for disrespecting you.
Title: Re: just out of curiosity
Post by: durnurd on 2006-01-19, 04:06:49 PM
I was merely giving a suggestion.  I already had read the posts and, already knowing he had done it his way, gave an alternative that was relevant to the topic that he could implement if he so chose.
Title: Re: just out of curiosity
Post by: billybob884 on 2006-01-19, 04:32:35 PM
or anyone else could if they fround this topic and were looking for info on saving.