Anything related in any way to game development as a whole is welcome here. Tell us about your game, grace us with your project, show us your new YouTube video, etc.
dnxviral wrote:Not what we save but how we save it.
Obviously the only way to get data static from a program executing and terminating would be to save it to a file.
Kinda funny how you completely and utterly failed to answer the question he asked. What he's talking about is Serialization, how you take an in-game data structure and put it in a file. The answer is that you have a lot of different choices, mainly depending on what the data itself is. Just look up some info on serialization, google is your friend
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
ginto8 wrote:Kinda funny how you completely and utterly failed to answer the question he asked. What he's talking about is Serialization, how you take an in-game data structure and put it in a file. The answer is that you have a lot of different choices, mainly depending on what the data itself is. Just look up some info on serialization, google is your friend
Most of the time you wouldn't want this in games though. Object serialisation is not normally necessary. If this is what he meant and he has a good reason for saving an entire object, then it would be useful and a good way of doing it. However in most situations whole objects are not needed to be saved, only parts of it, and saving the whole object would potentially increase file size and loading times.
dnxviral wrote:Not what we save but how we save it.
Obviously the only way to get data static from a program executing and terminating would be to save it to a file.
Kinda funny how you completely and utterly failed to answer the question he asked. What he's talking about is Serialization, how you take an in-game data structure and put it in a file. The answer is that you have a lot of different choices, mainly depending on what the data itself is. Just look up some info on serialization, google is your friend
Oh my bad XD
Supposing you had a inventory containing 3 potions and 2 cookies ( why? I dunno cookies rock ).
Your inventory actully probably looks like this:
Noob -- Name
22 -- Up to level 22
75 -- You had 25 HP before you quit the game
2054 1023 666 -- X, Y and Z coords you were at when you saved
1 1 1 2 2 0 0 -- Your items
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
From this you could do somthing like this in the program
shit = LoadShit()
for i = 0 20 do this
if shit.Items(i) not = 0 then
Player.GiveItem(shit.Items(i));
end
end
Player.SetName(shit.Name)
Player.SetHealth(shit.health)
Player.SetCoords(shit.x,shit.y,shit.z)
Level.LoadLevel("Level" + shit.levelnum + ".level")
Crappy example ( no perticular launguage )
But this could do well for somthing like a linear level 1, level 2, level 3 type game. ( Or at least thats how I would go about it )
Haha Yea I know what your trying to get at. Cookies ftw.
Ginto8 wrote:
N64vSNES wrote:
dnxviral wrote:Not what we save but how we save it.
Obviously the only way to get data static from a program executing and terminating would be to save it to a file.
Kinda funny how you completely and utterly failed to answer the question he asked. What he's talking about is Serialization, how you take an in-game data structure and put it in a file. The answer is that you have a lot of different choices, mainly depending on what the data itself is. Just look up some info on serialization, google is your friend
Yes and No. I'm trying to secure data to make it virtually impossible for somebody to change their stats, game position, items, etc.
I have map xml files and later items that would be defined through xml files, but these will be stored remotely and the player has no influence over them.
I'm not sure how to save my player's profile securely so it can't be, in a way influenced.
You could encode the data in the file, I've never really had experiance with this but I'm sure something will come up if you google it.
To be fair you are never going to have a completely secure save data, because after all it is only data, which can be modified in some way regardless of your best efforts.
The is no such thing as "secure" data since anything can be decoded.
The simplest way I'd suggest would be to encode the file like thejahooli said, the advantages to this being unreadable is that the file size will be very small and loading shouldn't take too much time.
thejahooli wrote:You could encode the data in the file, I've never really had experiance with this but I'm sure something will come up if you google it.
To be fair you are never going to have a completely secure save data, because after all it is only data, which can be modified in some way regardless of your best efforts.
Encoding sounds.... fun. And I wouldn't mind if somebody edited the file and have their game file be corrupt either
N64vSNES wrote:The is no such thing as "secure" data since anything can be decoded.
The simplest way I'd suggest would be to encode the file like thejahooli said, the advantages to this being unreadable is that the file size will be very small and loading shouldn't take too much time.
Would be smaller?
How would you do the encoding?/What would you use for the encoding?
The only secure way is to store data on a server where they can't directly edit a file.
For your purposes saving the file as binary ought to deter cheaters without completely disallowing hardcore modders having fun.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
thejahooli wrote:You could encode the data in the file, I've never really had experiance with this but I'm sure something will come up if you google it.
To be fair you are never going to have a completely secure save data, because after all it is only data, which can be modified in some way regardless of your best efforts.
Encoding sounds.... fun. And I wouldn't mind if somebody edited the file and have their game file be corrupt either
N64vSNES wrote:The is no such thing as "secure" data since anything can be decoded.
The simplest way I'd suggest would be to encode the file like thejahooli said, the advantages to this being unreadable is that the file size will be very small and loading shouldn't take too much time.
Would be smaller?
How would you do the encoding?/What would you use for the encoding?
Yes the file size will be much smaller.
Depends on what launguage you are using for encoding the file.
Its basically just working with bytes rather than numbers.
dandymcgee wrote:The only secure way is to store data on a server where they can't directly edit a file.
For your purposes saving the file as binary ought to deter cheaters without completely disallowing hardcore modders having fun.
Haha nice
N64vSNES wrote:
dnxviral wrote:
thejahooli wrote:You could encode the data in the file, I've never really had experiance with this but I'm sure something will come up if you google it.
To be fair you are never going to have a completely secure save data, because after all it is only data, which can be modified in some way regardless of your best efforts.
Encoding sounds.... fun. And I wouldn't mind if somebody edited the file and have their game file be corrupt either
N64vSNES wrote:The is no such thing as "secure" data since anything can be decoded.
The simplest way I'd suggest would be to encode the file like thejahooli said, the advantages to this being unreadable is that the file size will be very small and loading shouldn't take too much time.
Would be smaller?
How would you do the encoding?/What would you use for the encoding?
Yes the file size will be much smaller.
Depends on what launguage you are using for encoding the file.
Its basically just working with bytes rather than numbers.
1 byte = 1 byte
1 integer = 4 bytes
ahh ok. I'll look into both approaches. Server side, and files. Thanks!