return false;
}
+ /* Check that properties of objects aren't beyond expected */
+ for (int obj = 0; obj <= NOBJECTS; obj++) {
+ if (game.prop[obj] < STATE_NOTFOUND || game.prop[obj] > 1) {
+ switch (obj) {
+ case RUG:
+ case DRAGON:
+ case BIRD:
+ case BOTTLE:
+ case PLANT:
+ case PLANT2:
+ case TROLL:
+ case URN:
+ case EGGS:
+ case VASE:
+ case CHAIN:
+ if (game.prop[obj] == 2) // There are multiple different states, but it's convenient to clump them together
+ continue;
+ case BEAR:
+ if (game.prop[BEAR] == CONTENTED_BEAR || game.prop[BEAR] == BEAR_DEAD)
+ continue;
+ default:
+ printf("%i", obj);
+ return false;
+ }
+ }
+ }
+
return true;
}