mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-10-31 19:36:16 +00:00
rulegen:: tests:: view_actual_seq
This commit is contained in:
parent
46cf751200
commit
1cd8abd011
@ -505,6 +505,14 @@ void list_all_sequences(string tesname) {
|
|||||||
seq_stream->flush();
|
seq_stream->flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void view_actual_seq(int max) {
|
||||||
|
celllister cl(cwt.at, 1000, max, nullptr);
|
||||||
|
vector<int> dlist(1000, 0);
|
||||||
|
for(auto d: cl.dists) dlist[d]++;
|
||||||
|
while(dlist.back() == 0) dlist.pop_back();
|
||||||
|
println(hlog, "obtained dlist = ", dlist);
|
||||||
|
}
|
||||||
|
|
||||||
void print_rules();
|
void print_rules();
|
||||||
|
|
||||||
string rule_name(int r) {
|
string rule_name(int r) {
|
||||||
@ -1487,6 +1495,11 @@ int testargs() {
|
|||||||
view_examine_branch = true;
|
view_examine_branch = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if(argis("-act-seq")) {
|
||||||
|
start_game();
|
||||||
|
shift(); view_actual_seq(argi());
|
||||||
|
}
|
||||||
|
|
||||||
else if(argis("-dseek")) {
|
else if(argis("-dseek")) {
|
||||||
shift();
|
shift();
|
||||||
int i = argi();
|
int i = argi();
|
||||||
|
Loading…
Reference in New Issue
Block a user