1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-23 18:07:41 +00:00

some extra commandline options

This commit is contained in:
Zeno Rogue
2018-01-25 17:18:30 +01:00
parent c3d38e2e1c
commit a6563420ed
2 changed files with 21 additions and 4 deletions

View File

@@ -1,8 +1,9 @@
namespace inv {
bool on;
int usedup[ittypes];
int remaining[ittypes];
array<int, ittypes> usedup;
array<int, ittypes> remaining;
array<int, ittypes> extra_orbs;
int rseed;
bool usedForbidden;
@@ -254,7 +255,7 @@ namespace inv {
extra = "";
orbinfoline = "";
for(int i=0; i<ittypes; i++) remaining[i] = -usedup[i];
for(int i=0; i<ittypes; i++) remaining[i] = extra_orbs[i]-usedup[i];
for(int i=0; i<ittypes; i++) if(usedup[i] >= TESTMIRRORED) {
remaining[i] += MIRRORED;
remaining[i] -= mirrorqty0(eItem(i));
@@ -360,7 +361,6 @@ namespace inv {
for(int i=0; i<ittypes; i++)
if(i != itGreenStone && i != itOrbYendor)
items[itInventory] += remaining[i];
}
map<char, eItem> orbmap;