In the text interface, display the seed used for the random number generator

This commit is contained in:
Olivier Teulière 2008-11-23 08:33:16 +00:00
parent bce4ce4604
commit 9e330cf83b
25 changed files with 29 additions and 2 deletions

View file

@ -1,3 +1,4 @@
Using seed: 5
[?] pour l'aide [?] pour l'aide
commande> d 0 2 commande> d 0 2
mode duplicate mode duplicate

View file

@ -1,3 +1,4 @@
Using seed: 6
[?] pour l'aide [?] pour l'aide
commande> d 2 1 commande> d 2 1
mode duplicate mode duplicate

View file

@ -1,3 +1,4 @@
Using seed: 2
[?] pour l'aide [?] pour l'aide
commande> l 0 3 commande> l 0 3
mode partie libre mode partie libre

View file

@ -1,3 +1,4 @@
Using seed: 3
[?] pour l'aide [?] pour l'aide
commande> l 2 0 commande> l 2 0
mode partie libre mode partie libre

View file

@ -1,3 +1,4 @@
Using seed: 1
[?] pour l'aide [?] pour l'aide
commande> l 1 1 commande> l 1 1
mode partie libre mode partie libre

View file

@ -1,3 +1,4 @@
Using seed: 7
[?] pour l'aide [?] pour l'aide
commande> l 1 0 commande> l 1 0
mode partie libre mode partie libre

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> c fumee commande> c fumee
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> x a.* 50 commande> x a.* 50
search for a.* (50,1,15) search for a.* (50,1,15)

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> c hutte commande> c hutte
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> c rosace commande> c rosace
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1,3 +1,4 @@
Using seed: 0
[?] pour l'aide [?] pour l'aide
commande> e commande> e
mode entraînement mode entraînement

View file

@ -1097,10 +1097,13 @@ int main(int argc, char *argv[])
{ {
Dictionary dic(dicPath); Dictionary dic(dicPath);
unsigned int seed;
if (argc == 3) if (argc == 3)
srand(atoi(argv[2])); seed = atoi(argv[2]);
else else
srand(time(NULL)); seed = time(NULL);
srand(seed);
cerr << "Using seed: " << seed << endl;
main_loop(dic); main_loop(dic);
GameFactory::Destroy(); GameFactory::Destroy();