mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-04 17:57:03 +00:00
option -viewall for testing
This commit is contained in:
parent
96faa8ed0e
commit
7d9d3ced50
39
debug.cpp
39
debug.cpp
@ -503,6 +503,41 @@ void showCheatMenu() {
|
||||
};
|
||||
}
|
||||
|
||||
void viewall() {
|
||||
celllister cl(cwt.at, 20, 2000, NULL);
|
||||
|
||||
vector<eMonster> all_monsters;
|
||||
for(int i=0; i<motypes; i++) {
|
||||
eMonster m = eMonster(i);
|
||||
if(!isMultitile(m)) all_monsters.push_back(m);
|
||||
}
|
||||
|
||||
for(cell *c: cl.lst) {
|
||||
if(isPlayerOn(c)) continue;
|
||||
bool can_put_monster = true;
|
||||
forCellEx(c2, c) if(c2->monst || isPlayerOn(c2)) can_put_monster = false;
|
||||
if(can_put_monster) {
|
||||
for(int k=0; k<isize(all_monsters); k++)
|
||||
if(passable_for(all_monsters[k], c, nullptr, 0)) {
|
||||
c->monst = all_monsters[k];
|
||||
all_monsters[k] = all_monsters.back();
|
||||
all_monsters.pop_back();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
vector<cell*> itemcells;
|
||||
for(cell *c: cl.lst) {
|
||||
if(isPlayerOn(c) || c->monst || c->item) continue;
|
||||
itemcells.push_back(c);
|
||||
}
|
||||
int id = 0;
|
||||
for(int it=1; it<ittypes; it++) {
|
||||
if(id >= isize(itemcells)) break;
|
||||
itemcells[id++]->item = eItem(it);
|
||||
}
|
||||
}
|
||||
|
||||
void modalDebug(cell *c) {
|
||||
viewctr.at = c->master;
|
||||
if(noGUI) {
|
||||
@ -640,6 +675,10 @@ int read_cheat_args() {
|
||||
if(itemclass(eItem(i)) == IC_TREASURE)
|
||||
items[i] = q;
|
||||
}
|
||||
else if(argis("-viewall")) {
|
||||
PHASE(3); start_game();
|
||||
viewall();
|
||||
}
|
||||
else if(argis("-we")) {
|
||||
PHASEFROM(2);
|
||||
shift_arg_formula(whatever, delayed_geo_reset);
|
||||
|
Loading…
x
Reference in New Issue
Block a user