Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my game I'm going to use random values to pick the reward the player gets from a chest. The problem is that you can quick save and quick load and that means they can keep reloading to re-randomize until they get what they want. Is there some way that I could get the current seed value of my random object and possibly return to that same point when they load so that they couldn't abuse the randomization?

share|improve this question

4 Answers

up vote 2 down vote accepted

Not sure on getting the seed, but you could save the value you give to the Random object. Remember, there are two constructors. The second is Random(Int32), so if you set the seed yourself (an easy enough value is System.DateTime.Now.Millisecond), you could store that value somewhere before you pass it to the constructor. If you haven't read it yet, check out the MSDN documentation at http://msdn.microsoft.com/en-us/library/system.random.aspx.

share|improve this answer
I have it save the seed like that now and it's working great, thanks! – Ted May 13 '11 at 1:12
1  
No problemo. If you want a slightly better randomizer, this is the class I use (I did not create it): http://geeksneversleep.com/downloads/MersenneTwister.cs – Tieson T. May 13 '11 at 1:28
I'd recommend to think about what you've achieved - basically user now guaranteed to have next random event tied to this Random object to have particular outcome depending solely on initial configuration. May be OK for your game. – Alexei Levenkov May 13 '11 at 2:01
Note that if you are using the random object for anything else too, you may not be guaranteed to get the same reward each time. For example, if there are two different game objects with random event triggers that use the same random number generator, you could save, trigger one then the other, reload and trigger again in a different order to get different results. If the objects are both chests, and they each have the same reward set to choose from, then you will still get the same rewards, just swapped, but if object type or reward sets differ you will not get the consistency you are seeking. – Ergwun May 13 '11 at 2:05
This method requires creating a new Random object every time you wish to generate a random number. -1 – Jim Oct 20 '12 at 5:44
show 3 more comments

This is not possible.

Instead, you can serialize the Random instance using binary serialization.
Random is [Serializable], and the seed and internal state will persist.

Note, however, that saving the random seed allows your players to predict the future, which is very useful if you allow saving in battle.

Also note that users can still save, open the chest, load, perform an action that generates a random number, then get a different item from the chest.

share|improve this answer
Thanks for your insight. I was thinking about that as well that they could still go and use up that number on another chest and then come back. What I mostly wanted to avoid was constant reloading 50+ times to try and get a rare item for example so if that doesn't bother me too much if they use that random elsewhere. – Ted May 13 '11 at 0:53
1  
You could generate the contents of all chests (and similar items) up-front, when loading the level. Create a new random instance just for level loading and ensure that chests are initialized in some well-defined order. After loading throw the instance away, but remember the initial seed for the savegame. – ollb May 13 '11 at 0:58
That's another option that I might just do Gnafoo that way it's all generated with the map data and then there would be nothing to worry about. – Ted May 13 '11 at 1:01
2  
+1. You may also consider using multiple Random objects for different types of "random" events. I.e. eye candy stuff to be on one Random object, while battle outcome on another and loot on yet another object. – Alexei Levenkov May 13 '11 at 1:16

I'd probably just use this as per MSDN: http://msdn.microsoft.com/en-us/library/ctssatww.aspx

Random(seed)

where seed is some value I've loaded from storage.

share|improve this answer
   
-1 - the question is exactly opposite - how to get current seed, so it can later be used for Random(seed) call after reload. – Alexei Levenkov May 13 '11 at 1:13
@Alexei: If you've saved the seed somewhere then you can get the seed at a later point in time. It doesn't have to come from the Random object and it can't as far as I know. – sashang May 13 '11 at 1:32
The problem is if you seeded the Random with say 5, and called Next several times (i.e. got 3,7,6,1) and expect next value to be 13, but instead reseeding with original value 5 due to load next Random will be 3 instead of 13. You need current seed value (internal data of Random object), not the original one that you can easily remember. – Alexei Levenkov May 13 '11 at 1:45
3  
Looking at accepted answer it is exactly what OP wanted... Edit your answer so I can give you your 1 back for having awesome psychic powers :) – Alexei Levenkov May 13 '11 at 1:52
@Alexei Levenkov: edited for you – gbn May 13 '11 at 13:46

You can calculate the random reward as a hash function of:

  1. some seed that is assigned when you begin a new game, and is persisted in saved games; and
  2. some constant property of a chest that is invariant across all games (e.g. a fixed ID, or its position if it never moves).

This method has the advantage that a given chest will always yield the same reward in a given game, no matter how many times you save and replay, even if chests are opened in different orders, or other 'random' events are triggered in different orders. Also each chest's reward is independent of other chests' rewards, so long as the chest's property used in the hash is independent.

In the following example GetRewardId generates a reward ID as a hash of the game seed XORed with the x coordinate of a chest. It uses Random to perform the hash, by using the hash input as the Random object's seed, and taking the first randomly generated number as the output.

private static int GetRewardId(int seed, float coord, int numRewards)
{
    int tempSeed = BitConverter.ToInt32(BitConverter.GetBytes(coord), 0) ^ seed;
    return new Random(tempSeed).Next(numRewards);
}

int seed  = new Random().Next();
int numDifferentRewards = 5;
float xCoordinate = chest.Position.X;
int rewardId = GetRewardId(seed, xCoordinate, numDifferentRewards);

If many of your chests are likely to be aligned in sace, you may want to choose a different property, or use additional dimensions, by XORing with the y and/or z coordinates too.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.