mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-05 02:07:03 +00:00
racing:: fixed handing incorrectly built track
This commit is contained in:
parent
4fe1fe8c38
commit
9ed730e10d
11
racing.cpp
11
racing.cpp
@ -239,6 +239,8 @@ int race_checksum;
|
||||
|
||||
ld start_line_width;
|
||||
|
||||
struct hr_track_failure : hr_exception {};
|
||||
|
||||
void find_track(cell *start, int sign, int len) {
|
||||
int dl = 7 - getDistLimit() - genrange_bonus;
|
||||
cell *goal;
|
||||
@ -252,9 +254,7 @@ void find_track(cell *start, int sign, int len) {
|
||||
traversed++;
|
||||
if(cellbydist.empty()) {
|
||||
printf("reset after traversing %d\n", traversed);
|
||||
race_try++;
|
||||
gamegen_failure = true;
|
||||
return;
|
||||
throw hr_track_failure();
|
||||
}
|
||||
auto it = cellbydist.end();
|
||||
it--;
|
||||
@ -339,6 +339,11 @@ EX void generate_track() {
|
||||
else try {
|
||||
find_track(s, 0, LENGTH);
|
||||
}
|
||||
catch(hr_track_failure&) {
|
||||
race_try++;
|
||||
gamegen_failure = true;
|
||||
return;
|
||||
}
|
||||
catch(hr_shortest_path_exception&) {
|
||||
addMessage("error: could not build path");
|
||||
gamegen_failure = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user