Page 1 of 1
Adding an option to load a different savegame
Posted: Wed Mar 29, 2006 7:03 pm
by Trantor
When you die, you can choose to "restart this game". But if you want to load a different savegame, you have to quit the game and restart it. An option to load any savegame would be very nice.
Posted: Wed Mar 29, 2006 7:13 pm
by George Gilbert
Yes, this sort of thing has come up several times before. Basically, for performance / memory reasons, when you load a dungeon, RTC throws away all data that isn't needed in that game (all graphics / sounds / objects etc).
Whilst this means that game runs alot faster and uses alot less memory than it otherwise would, it also means that once a dungeon has been loaded once, loading other ones is much more tricky (as you'd have to reload everything, just in case it was required in the new dungeon).
As such, it's basically as fast to quit and restart than it would be for RTC to do it for you!
Posted: Thu Mar 30, 2006 2:33 pm
by Lee
Is this the same reason why there's no option to 'restart' the current dungeon you were playing, if you hadn't saved it instead of only displaying 'quit'?
Posted: Thu Mar 30, 2006 3:08 pm
by George Gilbert
Broadly speaking, yes.
For your amusement, this is also the root cause for the bug you found earlier today - the code that threw away the graphics was a bit too keen and threw away the graphics for the screamer slice when it should have spotted that (even though the screamer slice wasn't in the dungeon, it was dropped by a bonsai, and even though that wasn't in the dungeon it was required because it was created by the full cage) it was required.
Posted: Thu Mar 30, 2006 3:32 pm
by Lee
Oooh OK, cheers for that.