mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-03-30 07:17:03 +00:00
fixup to disable distance checks
This commit is contained in:
parent
285beb4ad2
commit
59b45c1be0
@ -91,6 +91,7 @@ static const flagtype w_skip_transducer_loops = Flag(33); /*< skip loops during
|
|||||||
static const flagtype w_skip_transducer_terminate = Flag(34); /*< skip termination during the transducer test */
|
static const flagtype w_skip_transducer_terminate = Flag(34); /*< skip termination during the transducer test */
|
||||||
static const flagtype w_r3_all_errors = Flag(35); /*< consider all errors for R3 */
|
static const flagtype w_r3_all_errors = Flag(35); /*< consider all errors for R3 */
|
||||||
static const flagtype w_r3_no_road_shortcuts = Flag(36); /*< consider all errors for R3 */
|
static const flagtype w_r3_no_road_shortcuts = Flag(36); /*< consider all errors for R3 */
|
||||||
|
static const flagtype w_ignore_transducer_dist = Flag(37); /*< ignore distance errors while testing the transducers */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/** these control the output */
|
/** these control the output */
|
||||||
|
@ -252,6 +252,8 @@ struct vstate {
|
|||||||
int current_pos;
|
int current_pos;
|
||||||
int current_root;
|
int current_root;
|
||||||
vector<pair<int, int>> rpath;
|
vector<pair<int, int>> rpath;
|
||||||
|
int steps;
|
||||||
|
vstate() { steps = 0; }
|
||||||
};
|
};
|
||||||
|
|
||||||
map<int, vector<int>> rev_roadsign_id;
|
map<int, vector<int>> rev_roadsign_id;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user