diff options
author | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 01:50:44 +0100 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 01:50:44 +0100 |
commit | 7b21c44c67b1b61d4606205219264f084fab07ea (patch) | |
tree | 82ec242e4247389d9d5006c57ee7319da49b7bf3 /tsalis | |
parent | 2dc9d118efb64de6ea54a5a9eb4474f8e5ef3145 (diff) |
Added randomize command. Added ancestors.
Diffstat (limited to 'tsalis')
-rw-r--r-- | tsalis/README.md | 1 | ||||
-rw-r--r-- | tsalis/bin/.keep | 0 | ||||
-rw-r--r-- | tsalis/bin/genomes/32shftr.anc | 1 | ||||
-rw-r--r-- | tsalis/bin/genomes/55.anc | 1 | ||||
-rw-r--r-- | tsalis/src/handler.c | 10 |
5 files changed, 13 insertions, 0 deletions
diff --git a/tsalis/README.md b/tsalis/README.md index 214e3b9..abfe188 100644 --- a/tsalis/README.md +++ b/tsalis/README.md @@ -60,6 +60,7 @@ control some aspects of the simulation. Parameters here are represented by |s |--- |--- |Save simulation. | |r*XX* |name |--- |Rename simulation (will be automatically saved to this name on exit). | |a*XX* |interval |--- |Set simulation's auto-save interval. | +|? |--- |--- |Fill memory with random data. | ### Legend In WORLD view, as well as in PROCESS view (when gene mode is selected), each diff --git a/tsalis/bin/.keep b/tsalis/bin/.keep deleted file mode 100644 index e69de29..0000000 --- a/tsalis/bin/.keep +++ /dev/null diff --git a/tsalis/bin/genomes/32shftr.anc b/tsalis/bin/genomes/32shftr.anc new file mode 100644 index 0000000..756bd9c --- /dev/null +++ b/tsalis/bin/genomes/32shftr.anc @@ -0,0 +1 @@ +A[a1u<<<<<}02B.13:23^1^2v?(b$(a diff --git a/tsalis/bin/genomes/55.anc b/tsalis/bin/genomes/55.anc new file mode 100644 index 0000000..ca02b65 --- /dev/null +++ b/tsalis/bin/genomes/55.anc @@ -0,0 +1 @@ +A[a]a1^1-11B!3#1#3?3)c{12)dC}12D.03:23^^2v1?1(d$~3~1(bA diff --git a/tsalis/src/handler.c b/tsalis/src/handler.c index 21aa706..a0730ad 100644 --- a/tsalis/src/handler.c +++ b/tsalis/src/handler.c @@ -141,6 +141,12 @@ setAutoSave(const char *command) } static void +randomize(void) +{ + se_randomize(); +} + +static void clearConsoleLine(void) { move(LINES - 1, 0); @@ -200,6 +206,10 @@ runConsole(void) case 'a': setAutoSave(&command[1]); break; + + case '?': + randomize(); + break; } } |