mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2025-01-17 06:11:49 +01:00
In the text interface, display the seed used for the random number generator
This commit is contained in:
parent
bce4ce4604
commit
9e330cf83b
25 changed files with 29 additions and 2 deletions
|
@ -1,3 +1,4 @@
|
|||
Using seed: 5
|
||||
[?] pour l'aide
|
||||
commande> d 0 2
|
||||
mode duplicate
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 6
|
||||
[?] pour l'aide
|
||||
commande> d 2 1
|
||||
mode duplicate
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 2
|
||||
[?] pour l'aide
|
||||
commande> l 0 3
|
||||
mode partie libre
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 3
|
||||
[?] pour l'aide
|
||||
commande> l 2 0
|
||||
mode partie libre
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 1
|
||||
[?] pour l'aide
|
||||
commande> l 1 1
|
||||
mode partie libre
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 7
|
||||
[?] pour l'aide
|
||||
commande> l 1 0
|
||||
mode partie libre
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> c fumee
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> x a.* 50
|
||||
search for a.* (50,1,15)
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> c hutte
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> c rosace
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Using seed: 0
|
||||
[?] pour l'aide
|
||||
commande> e
|
||||
mode entraînement
|
||||
|
|
|
@ -1097,10 +1097,13 @@ int main(int argc, char *argv[])
|
|||
{
|
||||
Dictionary dic(dicPath);
|
||||
|
||||
unsigned int seed;
|
||||
if (argc == 3)
|
||||
srand(atoi(argv[2]));
|
||||
seed = atoi(argv[2]);
|
||||
else
|
||||
srand(time(NULL));
|
||||
seed = time(NULL);
|
||||
srand(seed);
|
||||
cerr << "Using seed: " << seed << endl;
|
||||
|
||||
main_loop(dic);
|
||||
GameFactory::Destroy();
|
||||
|
|
Loading…
Reference in a new issue