[7ee2b42] | 1 | /* extend.c |
---|
[d1b1380] | 2 | * Produce an extended elevation |
---|
[93a1c79] | 3 | * Copyright (C) 1995-2025 Olly Betts |
---|
[d92d282] | 4 | * Copyright (C) 2004,2005 John Pybus |
---|
[846746e] | 5 | * |
---|
[89231c4] | 6 | * This program is free software; you can redistribute it and/or modify |
---|
| 7 | * it under the terms of the GNU General Public License as published by |
---|
| 8 | * the Free Software Foundation; either version 2 of the License, or |
---|
| 9 | * (at your option) any later version. |
---|
[846746e] | 10 | * |
---|
| 11 | * This program is distributed in the hope that it will be useful, |
---|
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
[89231c4] | 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 14 | * GNU General Public License for more details. |
---|
[846746e] | 15 | * |
---|
[89231c4] | 16 | * You should have received a copy of the GNU General Public License |
---|
| 17 | * along with this program; if not, write to the Free Software |
---|
[ecbc6c18] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
[d1b1380] | 19 | */ |
---|
| 20 | |
---|
[4c83f84] | 21 | #include <config.h> |
---|
[d1b1380] | 22 | |
---|
[e55ee28] | 23 | #include <float.h> |
---|
[d1b1380] | 24 | #include <stdio.h> |
---|
| 25 | #include <stdlib.h> |
---|
| 26 | #include <string.h> |
---|
| 27 | |
---|
[acc20b1] | 28 | #include "cmdline.h" |
---|
[693388e] | 29 | #include "debug.h" |
---|
[d1b1380] | 30 | #include "filelist.h" |
---|
[693388e] | 31 | #include "filename.h" |
---|
| 32 | #include "hash.h" |
---|
[a405bc1] | 33 | #include "img_hosted.h" |
---|
[693388e] | 34 | #include "message.h" |
---|
[b3b0900] | 35 | #include "osalloc.h" |
---|
[693388e] | 36 | #include "useful.h" |
---|
[d1b1380] | 37 | |
---|
[693388e] | 38 | /* To save memory we should probably use the prefix hash for the prefix on |
---|
| 39 | * point labels (FIXME) */ |
---|
[ea1c342] | 40 | |
---|
| 41 | typedef struct stn { |
---|
| 42 | const char *label; |
---|
| 43 | int flags; |
---|
[ee11c6a7] | 44 | const struct stn *next; |
---|
[ea1c342] | 45 | } stn; |
---|
| 46 | |
---|
[ae6d92e] | 47 | typedef struct splay { |
---|
| 48 | struct POINT *pt; |
---|
| 49 | struct splay *next; |
---|
| 50 | } splay; |
---|
| 51 | |
---|
[d1b1380] | 52 | typedef struct POINT { |
---|
[0ed0e16] | 53 | img_point p; |
---|
[9f841e3] | 54 | double X; |
---|
[ea1c342] | 55 | const stn *stns; |
---|
[647407d] | 56 | unsigned int order; |
---|
[d92d282] | 57 | char dir; |
---|
| 58 | char fDone; |
---|
| 59 | char fBroken; |
---|
[ae6d92e] | 60 | splay *splays; |
---|
[d1b1380] | 61 | struct POINT *next; |
---|
| 62 | } point; |
---|
| 63 | |
---|
| 64 | typedef struct LEG { |
---|
| 65 | point *fr, *to; |
---|
[693388e] | 66 | const char *prefix; |
---|
[d92d282] | 67 | char dir; |
---|
| 68 | char fDone; |
---|
| 69 | char broken; |
---|
[95c3272] | 70 | int flags; |
---|
| 71 | struct LEG *next; |
---|
[d1b1380] | 72 | } leg; |
---|
| 73 | |
---|
[d92d282] | 74 | /* Values for leg.broken: */ |
---|
| 75 | #define BREAK_FR 0x01 |
---|
| 76 | #define BREAK_TO 0x02 |
---|
[d1b1380] | 77 | |
---|
[d92d282] | 78 | /* Values for point.dir and leg.dir: */ |
---|
| 79 | #define ELEFT 0x01 |
---|
| 80 | #define ERIGHT 0x02 |
---|
| 81 | #define ESWAP 0x04 |
---|
| 82 | |
---|
[ae6d92e] | 83 | static point headpoint = {{0, 0, 0}, 0, NULL, 0, 0, 0, 0, NULL, NULL}; |
---|
[d92d282] | 84 | |
---|
| 85 | static leg headleg = {NULL, NULL, NULL, 0, 0, 0, 0, NULL}; |
---|
[d1b1380] | 86 | |
---|
[31b7105] | 87 | static img *pimg_out; |
---|
[d1b1380] | 88 | |
---|
[93a1c79] | 89 | static bool show_breaks = false; |
---|
[c50cbcf] | 90 | |
---|
[e67cb60] | 91 | static void do_stn(point *, double, const char *, int, int, double, double); |
---|
[d1b1380] | 92 | |
---|
[693388e] | 93 | typedef struct pfx { |
---|
| 94 | const char *label; |
---|
| 95 | struct pfx *next; |
---|
| 96 | } pfx; |
---|
| 97 | |
---|
| 98 | static pfx **htab; |
---|
| 99 | |
---|
[63dc4eb] | 100 | #define HTAB_SIZE 0x2000 |
---|
| 101 | |
---|
[693388e] | 102 | static const char * |
---|
| 103 | find_prefix(const char *prefix) |
---|
| 104 | { |
---|
| 105 | pfx *p; |
---|
| 106 | |
---|
[4c07c51] | 107 | SVX_ASSERT(prefix); |
---|
[421b7d2] | 108 | |
---|
[131b4912] | 109 | unsigned hash = hash_string(prefix) & (HTAB_SIZE - 1); |
---|
[693388e] | 110 | for (p = htab[hash]; p; p = p->next) { |
---|
| 111 | if (strcmp(prefix, p->label) == 0) return p->label; |
---|
| 112 | } |
---|
| 113 | |
---|
| 114 | p = osnew(pfx); |
---|
| 115 | p->label = osstrdup(prefix); |
---|
| 116 | p->next = htab[hash]; |
---|
| 117 | htab[hash] = p; |
---|
| 118 | |
---|
| 119 | return p->label; |
---|
| 120 | } |
---|
| 121 | |
---|
[a420b49] | 122 | static point * |
---|
[0ed0e16] | 123 | find_point(const img_point *pt) |
---|
[a420b49] | 124 | { |
---|
[d1b1380] | 125 | point *p; |
---|
[647407d] | 126 | for (p = headpoint.next; p != NULL; p = p->next) { |
---|
[0ed0e16] | 127 | if (pt->x == p->p.x && pt->y == p->p.y && pt->z == p->p.z) { |
---|
[647407d] | 128 | return p; |
---|
| 129 | } |
---|
| 130 | } |
---|
[a420b49] | 131 | |
---|
| 132 | p = osmalloc(ossizeof(point)); |
---|
[0ed0e16] | 133 | p->p = *pt; |
---|
[9f841e3] | 134 | p->X = HUGE_VAL; |
---|
[ea1c342] | 135 | p->stns = NULL; |
---|
[7ee2b42] | 136 | p->order = 0; |
---|
[d92d282] | 137 | p->dir = 0; |
---|
| 138 | p->fDone = 0; |
---|
[8add4c9] | 139 | p->fBroken = 0; |
---|
[ae6d92e] | 140 | p->splays = NULL; |
---|
[a420b49] | 141 | p->next = headpoint.next; |
---|
| 142 | headpoint.next = p; |
---|
[d1b1380] | 143 | return p; |
---|
| 144 | } |
---|
| 145 | |
---|
[a420b49] | 146 | static void |
---|
[693388e] | 147 | add_leg(point *fr, point *to, const char *prefix, int flags) |
---|
[a420b49] | 148 | { |
---|
[95c3272] | 149 | leg *l; |
---|
[7ee2b42] | 150 | fr->order++; |
---|
| 151 | to->order++; |
---|
[95c3272] | 152 | l = osmalloc(ossizeof(leg)); |
---|
| 153 | l->fr = fr; |
---|
| 154 | l->to = to; |
---|
[693388e] | 155 | if (prefix) |
---|
| 156 | l->prefix = find_prefix(prefix); |
---|
| 157 | else |
---|
| 158 | l->prefix = NULL; |
---|
[95c3272] | 159 | l->next = headleg.next; |
---|
[d92d282] | 160 | l->dir = 0; |
---|
[95c3272] | 161 | l->fDone = 0; |
---|
[8add4c9] | 162 | l->broken = 0; |
---|
[95c3272] | 163 | l->flags = flags; |
---|
| 164 | headleg.next = l; |
---|
[d1b1380] | 165 | } |
---|
| 166 | |
---|
[a420b49] | 167 | static void |
---|
[95c3272] | 168 | add_label(point *p, const char *label, int flags) |
---|
[a420b49] | 169 | { |
---|
[ea1c342] | 170 | stn *s = osnew(stn); |
---|
| 171 | s->label = osstrdup(label); |
---|
| 172 | s->flags = flags; |
---|
| 173 | s->next = p->stns; |
---|
| 174 | p->stns = s; |
---|
[d1b1380] | 175 | } |
---|
| 176 | |
---|
[d92d282] | 177 | /* Read in config file */ |
---|
| 178 | |
---|
| 179 | |
---|
| 180 | /* lifted from img.c Should be put somewhere common? JPNP*/ |
---|
| 181 | static char * |
---|
| 182 | getline_alloc(FILE *fh, size_t ilen) |
---|
| 183 | { |
---|
| 184 | int ch; |
---|
| 185 | size_t i = 0; |
---|
| 186 | size_t len = ilen; |
---|
| 187 | char *buf = xosmalloc(len); |
---|
| 188 | if (!buf) return NULL; |
---|
| 189 | |
---|
[e02a6a6] | 190 | ch = GETC(fh); |
---|
[d92d282] | 191 | while (ch != '\n' && ch != '\r' && ch != EOF) { |
---|
| 192 | buf[i++] = ch; |
---|
| 193 | if (i == len - 1) { |
---|
| 194 | char *p; |
---|
| 195 | len += len; |
---|
| 196 | p = xosrealloc(buf, len); |
---|
| 197 | if (!p) { |
---|
| 198 | osfree(buf); |
---|
| 199 | return NULL; |
---|
| 200 | } |
---|
| 201 | buf = p; |
---|
| 202 | } |
---|
[e02a6a6] | 203 | ch = GETC(fh); |
---|
[d92d282] | 204 | } |
---|
| 205 | if (ch == '\n' || ch == '\r') { |
---|
| 206 | int otherone = ch ^ ('\n' ^ '\r'); |
---|
[e02a6a6] | 207 | ch = GETC(fh); |
---|
[d92d282] | 208 | /* if it's not the other eol character, put it back */ |
---|
| 209 | if (ch != otherone) ungetc(ch, fh); |
---|
| 210 | } |
---|
| 211 | buf[i++] = '\0'; |
---|
| 212 | return buf; |
---|
| 213 | } |
---|
| 214 | |
---|
| 215 | static int lineno = 0; |
---|
| 216 | static point *start = NULL; |
---|
| 217 | |
---|
| 218 | static char* |
---|
| 219 | delimword(char *ln, char** lr) |
---|
| 220 | { |
---|
| 221 | char *le; |
---|
| 222 | |
---|
| 223 | while (*ln == ' ' || *ln == '\t' || *ln == '\n' || *ln == '\r') |
---|
| 224 | ln++; |
---|
| 225 | |
---|
| 226 | le = ln; |
---|
| 227 | while (*le != ' ' && *le != '\t' && *le != '\n' && *le != '\r' && *le != ';' && *le != '\0') |
---|
| 228 | le++; |
---|
| 229 | |
---|
| 230 | if (*le == '\0' || *le == ';') { |
---|
| 231 | *lr = le; |
---|
| 232 | } else { |
---|
| 233 | *lr = le + 1; |
---|
| 234 | } |
---|
[6e4a123] | 235 | |
---|
[d92d282] | 236 | *le = '\0'; |
---|
| 237 | return ln; |
---|
| 238 | } |
---|
| 239 | |
---|
[b42ef60] | 240 | static const char* |
---|
| 241 | check_label(const char* label, const char* ll, const char* ln) |
---|
| 242 | { |
---|
| 243 | if (strcmp(label, ll) == 0) { |
---|
| 244 | return ln; |
---|
| 245 | } else if (strcmp(label, ln) == 0) { |
---|
| 246 | return ll; |
---|
| 247 | } else { |
---|
| 248 | return NULL; |
---|
| 249 | } |
---|
| 250 | } |
---|
| 251 | |
---|
[d92d282] | 252 | static void |
---|
[7926772] | 253 | parseconfigline(const char *fnm, char *ln) |
---|
[d92d282] | 254 | { |
---|
| 255 | point *p; |
---|
| 256 | const stn *s; |
---|
| 257 | const stn *t; |
---|
| 258 | leg *l; |
---|
| 259 | char *lc = NULL; |
---|
| 260 | |
---|
| 261 | ln = delimword(ln, &lc); |
---|
| 262 | |
---|
| 263 | if (*ln == '\0') return; |
---|
| 264 | |
---|
| 265 | if (strcmp(ln, "*start")==0) { |
---|
| 266 | ln = delimword(lc, &lc); |
---|
[7926772] | 267 | if (*ln == 0) |
---|
[0b8c321] | 268 | /* TRANSLATORS: Here "station" is a survey station, not a train station. */ |
---|
[7926772] | 269 | fatalerror_in_file(fnm, lineno, /*Expecting station name*/28); |
---|
[d92d282] | 270 | for (p = headpoint.next; p != NULL; p = p->next) { |
---|
| 271 | for (s = p->stns; s; s = s->next) { |
---|
| 272 | if (strcmp(s->label, ln)==0) { |
---|
| 273 | start = p; |
---|
[736f7df] | 274 | /* TRANSLATORS: for extend: "extend" is starting to produce an extended elevation from station %s */ |
---|
[7926772] | 275 | printf(msg(/*Starting from station %s*/512),ln); |
---|
[d92d282] | 276 | putnl(); |
---|
| 277 | goto loopend; |
---|
| 278 | } |
---|
| 279 | } |
---|
| 280 | } |
---|
[736f7df] | 281 | /* TRANSLATORS: for extend: the user specified breaking a loop or |
---|
| 282 | * changing extend direction at this station, but we didn’t find it in |
---|
| 283 | * the 3d file */ |
---|
[7926772] | 284 | warning_in_file(fnm, lineno, /*Failed to find station %s*/510, ln); |
---|
[d92d282] | 285 | } else if (strcmp(ln, "*eleft")==0) { |
---|
| 286 | char *ll = delimword(lc, &lc); |
---|
[7926772] | 287 | if (*ll == 0) |
---|
| 288 | fatalerror_in_file(fnm, lineno, /*Expecting station name*/28); |
---|
[d92d282] | 289 | ln = delimword(lc, &lc); |
---|
[deb536fb] | 290 | if (*ln == 0) { |
---|
| 291 | /* One argument - look for station to switch at. */ |
---|
[d92d282] | 292 | for (p = headpoint.next; p != NULL; p = p->next) { |
---|
| 293 | for (s = p->stns; s; s = s->next) { |
---|
| 294 | if (strcmp(s->label, ll)==0) { |
---|
[736f7df] | 295 | /* TRANSLATORS: for extend: */ |
---|
[7926772] | 296 | printf(msg(/*Extending to the left from station %s*/513), ll); |
---|
[d92d282] | 297 | putnl(); |
---|
| 298 | p->dir = ELEFT; |
---|
| 299 | goto loopend; |
---|
| 300 | } |
---|
| 301 | } |
---|
| 302 | } |
---|
[7926772] | 303 | warning_in_file(fnm, lineno, /*Failed to find station %s*/510, ll); |
---|
[deb536fb] | 304 | } else { |
---|
| 305 | /* Two arguments - look for a specified leg. */ |
---|
[d92d282] | 306 | for (l = headleg.next; l; l=l->next) { |
---|
| 307 | point * fr = l->fr; |
---|
| 308 | point * to = l->to; |
---|
| 309 | if (fr && to) { |
---|
| 310 | for (s=fr->stns; s; s=s->next) { |
---|
[b42ef60] | 311 | const char* lr = check_label(s->label, ll, ln); |
---|
| 312 | if (lr) { |
---|
[d92d282] | 313 | for (t=to->stns; t; t=t->next) { |
---|
| 314 | if (strcmp(t->label,lr)==0) { |
---|
[736f7df] | 315 | /* TRANSLATORS: for extend: */ |
---|
[ee7511a] | 316 | printf(msg(/*Extending to the left from leg %s → %s*/515), s->label, t->label); |
---|
[d92d282] | 317 | putnl(); |
---|
| 318 | l->dir = ELEFT; |
---|
| 319 | goto loopend; |
---|
| 320 | } |
---|
| 321 | } |
---|
| 322 | } |
---|
| 323 | } |
---|
| 324 | } |
---|
| 325 | } |
---|
[736f7df] | 326 | /* TRANSLATORS: for extend: the user specified breaking a loop or |
---|
| 327 | * changing extend direction at this leg, but we didn’t find it in the |
---|
| 328 | * 3d file */ |
---|
[ee7511a] | 329 | warning_in_file(fnm, lineno, /*Failed to find leg %s → %s*/511, ll, ln); |
---|
[d92d282] | 330 | } |
---|
| 331 | } else if (strcmp(ln, "*eright")==0) { |
---|
| 332 | char *ll = delimword(lc, &lc); |
---|
[7926772] | 333 | if (*ll == 0) |
---|
| 334 | fatalerror_in_file(fnm, lineno, /*Expecting station name*/28); |
---|
[d92d282] | 335 | ln = delimword(lc, &lc); |
---|
[deb536fb] | 336 | if (*ln == 0) { |
---|
| 337 | /* One argument - look for station to switch at. */ |
---|
[d92d282] | 338 | for (p = headpoint.next; p != NULL; p = p->next) { |
---|
| 339 | for (s = p->stns; s; s = s->next) { |
---|
| 340 | if (strcmp(s->label, ll)==0) { |
---|
[736f7df] | 341 | /* TRANSLATORS: for extend: */ |
---|
[7926772] | 342 | printf(msg(/*Extending to the right from station %s*/514), ll); |
---|
[d92d282] | 343 | putnl(); |
---|
| 344 | p->dir = ERIGHT; |
---|
| 345 | goto loopend; |
---|
| 346 | } |
---|
| 347 | } |
---|
| 348 | } |
---|
[7926772] | 349 | warning_in_file(fnm, lineno, /*Failed to find station %s*/510, ll); |
---|
[deb536fb] | 350 | } else { |
---|
| 351 | /* Two arguments - look for a specified leg. */ |
---|
[d92d282] | 352 | for (l = headleg.next; l; l=l->next) { |
---|
| 353 | point * fr = l->fr; |
---|
| 354 | point * to = l->to; |
---|
| 355 | if (fr && to) { |
---|
| 356 | for (s=fr->stns; s; s=s->next) { |
---|
[b42ef60] | 357 | const char* lr = check_label(s->label, ll, ln); |
---|
| 358 | if (lr) { |
---|
[d92d282] | 359 | for (t=to->stns; t; t=t->next) { |
---|
| 360 | if (strcmp(t->label,lr)==0) { |
---|
[736f7df] | 361 | /* TRANSLATORS: for extend: */ |
---|
[ee7511a] | 362 | printf(msg(/*Extending to the right from leg %s → %s*/516), s->label, t->label); |
---|
[7926772] | 363 | putnl(); |
---|
[d92d282] | 364 | l->dir=ERIGHT; |
---|
| 365 | goto loopend; |
---|
| 366 | } |
---|
| 367 | } |
---|
| 368 | } |
---|
| 369 | } |
---|
| 370 | } |
---|
| 371 | } |
---|
[ee7511a] | 372 | warning_in_file(fnm, lineno, /*Failed to find leg %s → %s*/511, ll, ln); |
---|
[d92d282] | 373 | } |
---|
| 374 | } else if (strcmp(ln, "*eswap")==0) { |
---|
| 375 | char *ll = delimword(lc, &lc); |
---|
[7926772] | 376 | if (*ll == 0) |
---|
| 377 | fatalerror_in_file(fnm, lineno, /*Expecting station name*/28); |
---|
[d92d282] | 378 | ln = delimword(lc, &lc); |
---|
[deb536fb] | 379 | if (*ln == 0) { |
---|
| 380 | /* One argument - look for station to switch at. */ |
---|
[d92d282] | 381 | for (p = headpoint.next; p != NULL; p = p->next) { |
---|
| 382 | for (s = p->stns; s; s = s->next) { |
---|
| 383 | if (strcmp(s->label, ll)==0) { |
---|
[736f7df] | 384 | /* TRANSLATORS: for extend: */ |
---|
[7926772] | 385 | printf(msg(/*Swapping extend direction from station %s*/519),ll); |
---|
[d92d282] | 386 | putnl(); |
---|
| 387 | p->dir = ESWAP; |
---|
| 388 | goto loopend; |
---|
| 389 | } |
---|
| 390 | } |
---|
| 391 | } |
---|
[7926772] | 392 | warning_in_file(fnm, lineno, /*Failed to find station %s*/510, ll); |
---|
[deb536fb] | 393 | } else { |
---|
| 394 | /* Two arguments - look for a specified leg. */ |
---|
[d92d282] | 395 | for (l = headleg.next; l; l=l->next) { |
---|
| 396 | point * fr = l->fr; |
---|
| 397 | point * to = l->to; |
---|
| 398 | if (fr && to) { |
---|
| 399 | for (s=fr->stns; s; s=s->next) { |
---|
[b42ef60] | 400 | const char* lr = check_label(s->label, ll, ln); |
---|
| 401 | if (lr) { |
---|
[d92d282] | 402 | for (t=to->stns; t; t=t->next) { |
---|
| 403 | if (strcmp(t->label,lr)==0) { |
---|
[736f7df] | 404 | /* TRANSLATORS: for extend: */ |
---|
[ee7511a] | 405 | printf(msg(/*Swapping extend direction from leg %s → %s*/520), s->label, t->label); |
---|
[7926772] | 406 | putnl(); |
---|
[d92d282] | 407 | l->dir = ESWAP; |
---|
| 408 | goto loopend; |
---|
| 409 | } |
---|
| 410 | } |
---|
| 411 | } |
---|
| 412 | } |
---|
| 413 | } |
---|
| 414 | } |
---|
[ee7511a] | 415 | warning_in_file(fnm, lineno, /*Failed to find leg %s → %s*/511, ll, ln); |
---|
[d92d282] | 416 | } |
---|
| 417 | } else if (strcmp(ln, "*break")==0) { |
---|
| 418 | char *ll = delimword(lc, &lc); |
---|
[7926772] | 419 | if (*ll == 0) |
---|
| 420 | fatalerror_in_file(fnm, lineno, /*Expecting station name*/28); |
---|
[d92d282] | 421 | ln = delimword(lc, &lc); |
---|
[deb536fb] | 422 | if (*ln == 0) { |
---|
| 423 | /* One argument - look for specified station to break at. */ |
---|
[d92d282] | 424 | for (p = headpoint.next; p != NULL; p = p->next) { |
---|
| 425 | for (s = p->stns; s; s = s->next) { |
---|
| 426 | if (strcmp(s->label, ll)==0) { |
---|
[736f7df] | 427 | /* TRANSLATORS: for extend: */ |
---|
[7926772] | 428 | printf(msg(/*Breaking survey loop at station %s*/517), ll); |
---|
[d92d282] | 429 | putnl(); |
---|
| 430 | p->fBroken = 1; |
---|
| 431 | goto loopend; |
---|
| 432 | } |
---|
| 433 | } |
---|
| 434 | } |
---|
[7926772] | 435 | warning_in_file(fnm, lineno, /*Failed to find station %s*/510, ll); |
---|
[deb536fb] | 436 | } else { |
---|
| 437 | /* Two arguments - look for specified leg and disconnect it at the |
---|
| 438 | * first station. */ |
---|
[d92d282] | 439 | for (l = headleg.next; l; l=l->next) { |
---|
| 440 | point * fr = l->fr; |
---|
| 441 | point * to = l->to; |
---|
| 442 | if (fr && to) { |
---|
| 443 | for (s=fr->stns; s; s=s->next) { |
---|
[b42ef60] | 444 | const char* lr = check_label(s->label, ll, ln); |
---|
| 445 | if (lr) { |
---|
[d92d282] | 446 | for (t=to->stns; t; t=t->next) { |
---|
| 447 | if (strcmp(t->label,lr)==0) { |
---|
[736f7df] | 448 | /* TRANSLATORS: for extend: */ |
---|
[ee7511a] | 449 | printf(msg(/*Breaking survey loop at leg %s → %s*/518), s->label, t->label); |
---|
[d92d282] | 450 | putnl(); |
---|
[b42ef60] | 451 | l->broken = (lr == ll ? BREAK_TO : BREAK_FR); |
---|
[d92d282] | 452 | goto loopend; |
---|
| 453 | } |
---|
| 454 | } |
---|
| 455 | } |
---|
| 456 | } |
---|
| 457 | } |
---|
| 458 | } |
---|
[ee7511a] | 459 | warning_in_file(fnm, lineno, /*Failed to find leg %s → %s*/511, ll, ln); |
---|
[d92d282] | 460 | } |
---|
| 461 | } else { |
---|
[0804fbe] | 462 | fatalerror_in_file(fnm, lineno, /*Unknown command “%s”*/12, ln); |
---|
[d92d282] | 463 | } |
---|
| 464 | loopend: |
---|
| 465 | ln = delimword(lc, &lc); |
---|
| 466 | if (*ln != 0) { |
---|
[7926772] | 467 | fatalerror_in_file(fnm, lineno, /*End of line not blank*/15); |
---|
| 468 | /* FIXME: give ln as context? */ |
---|
[d92d282] | 469 | } |
---|
| 470 | } |
---|
| 471 | |
---|
[acc20b1] | 472 | static const struct option long_opts[] = { |
---|
| 473 | /* const char *name; int has_arg (0 no_argument, 1 required_*, 2 optional_*); int *flag; int val; */ |
---|
[76bbb7c9] | 474 | {"survey", required_argument, 0, 's'}, |
---|
[d92d282] | 475 | {"specfile", required_argument, 0, 'p'}, |
---|
[c50cbcf] | 476 | {"show-breaks", no_argument, 0, 'b' }, |
---|
[acc20b1] | 477 | {"help", no_argument, 0, HLP_HELP}, |
---|
| 478 | {"version", no_argument, 0, HLP_VERSION}, |
---|
| 479 | {0, 0, 0, 0} |
---|
| 480 | }; |
---|
| 481 | |
---|
[c50cbcf] | 482 | #define short_opts "s:p:b" |
---|
[acc20b1] | 483 | |
---|
| 484 | static struct help_msg help[] = { |
---|
| 485 | /* <-- */ |
---|
[5a2d346] | 486 | {HLP_ENCODELONG(0), /*only load the sub-survey with this prefix*/199, 0, 0}, |
---|
[de934213] | 487 | /* TRANSLATORS: --help output for extend --specfile option */ |
---|
[5a2d346] | 488 | {HLP_ENCODELONG(1), /*.espec file to control extending*/90, 0, "ESPEC_FILE"}, |
---|
[c50cbcf] | 489 | /* TRANSLATORS: --help output for extend --show-breaks option */ |
---|
[5a2d346] | 490 | {HLP_ENCODELONG(2), /*show breaks with surface survey legs in output*/91, 0, 0}, |
---|
| 491 | {0, 0, 0, 0} |
---|
[acc20b1] | 492 | }; |
---|
| 493 | |
---|
[47d8509] | 494 | static point * |
---|
| 495 | pick_start_stn(void) |
---|
| 496 | { |
---|
| 497 | point * best = NULL; |
---|
| 498 | double zMax = -DBL_MAX; |
---|
| 499 | point *p; |
---|
| 500 | |
---|
| 501 | /* Start at the highest entrance with some legs attached. */ |
---|
| 502 | for (p = headpoint.next; p != NULL; p = p->next) { |
---|
| 503 | if (p->order > 0 && p->p.z > zMax) { |
---|
| 504 | const stn *s; |
---|
| 505 | for (s = p->stns; s; s = s->next) { |
---|
| 506 | if (s->flags & img_SFLAG_ENTRANCE) { |
---|
| 507 | zMax = p->p.z; |
---|
| 508 | return p; |
---|
| 509 | } |
---|
| 510 | } |
---|
| 511 | } |
---|
| 512 | } |
---|
| 513 | if (best) return best; |
---|
| 514 | |
---|
| 515 | /* If no entrances with legs, start at the highest 1-node. */ |
---|
| 516 | for (p = headpoint.next; p != NULL; p = p->next) { |
---|
| 517 | if (p->order == 1 && p->p.z > zMax) { |
---|
| 518 | best = p; |
---|
| 519 | zMax = p->p.z; |
---|
| 520 | } |
---|
| 521 | } |
---|
| 522 | if (best) return best; |
---|
| 523 | |
---|
| 524 | /* of course we may have no 1-nodes... */ |
---|
| 525 | for (p = headpoint.next; p != NULL; p = p->next) { |
---|
| 526 | if (p->order != 0 && p->p.z > zMax) { |
---|
| 527 | best = p; |
---|
| 528 | zMax = p->p.z; |
---|
| 529 | } |
---|
| 530 | } |
---|
| 531 | if (best) return best; |
---|
| 532 | |
---|
| 533 | /* There are no legs - just pick the highest station... */ |
---|
| 534 | for (p = headpoint.next; p != NULL; p = p->next) { |
---|
| 535 | if (p->p.z > zMax) { |
---|
| 536 | best = p; |
---|
| 537 | zMax = p->p.z; |
---|
| 538 | } |
---|
| 539 | } |
---|
| 540 | return best; |
---|
| 541 | } |
---|
| 542 | |
---|
[a420b49] | 543 | int |
---|
| 544 | main(int argc, char **argv) |
---|
| 545 | { |
---|
[6f185e5] | 546 | const char *fnm_in, *fnm_out; |
---|
[a2ad284] | 547 | char *desc; |
---|
[0ed0e16] | 548 | img_point pt; |
---|
[d1b1380] | 549 | int result; |
---|
[647407d] | 550 | point *fr = NULL, *to; |
---|
[76bbb7c9] | 551 | const char *survey = NULL; |
---|
[d92d282] | 552 | const char *specfile = NULL; |
---|
[31b7105] | 553 | img *pimg; |
---|
[ae6d92e] | 554 | int xsections = 0, splays = 0; |
---|
[d1b1380] | 555 | |
---|
[bdfe97f] | 556 | msg_init(argv); |
---|
[d1b1380] | 557 | |
---|
[736f7df] | 558 | /* TRANSLATORS: Part of extend --help */ |
---|
[1a6692f] | 559 | cmdline_set_syntax_message(/*INPUT_FILE [OUTPUT_3D_FILE]*/267, 0, NULL); |
---|
[acc20b1] | 560 | cmdline_init(argc, argv, short_opts, long_opts, NULL, help, 1, 2); |
---|
[76bbb7c9] | 561 | while (1) { |
---|
| 562 | int opt = cmdline_getopt(); |
---|
| 563 | if (opt == EOF) break; |
---|
[cffe70f] | 564 | switch (opt) { |
---|
[c50cbcf] | 565 | case 'b': |
---|
[93a1c79] | 566 | show_breaks = true; |
---|
[c50cbcf] | 567 | break; |
---|
[cffe70f] | 568 | case 's': |
---|
| 569 | survey = optarg; |
---|
| 570 | break; |
---|
| 571 | case 'p': |
---|
| 572 | specfile = optarg; |
---|
| 573 | break; |
---|
| 574 | } |
---|
[acc20b1] | 575 | } |
---|
[6f185e5] | 576 | fnm_in = argv[optind++]; |
---|
[acc20b1] | 577 | if (argv[optind]) { |
---|
[6f185e5] | 578 | fnm_out = argv[optind]; |
---|
[acc20b1] | 579 | } else { |
---|
[6379f93] | 580 | char * base_in = base_from_fnm(fnm_in); |
---|
| 581 | char * base_out = osmalloc(strlen(base_in) + 8); |
---|
| 582 | strcpy(base_out, base_in); |
---|
| 583 | strcat(base_out, "_extend"); |
---|
| 584 | fnm_out = add_ext(base_out, EXT_SVX_3D); |
---|
| 585 | osfree(base_in); |
---|
| 586 | osfree(base_out); |
---|
[d1b1380] | 587 | } |
---|
| 588 | |
---|
| 589 | /* try to open image file, and check it has correct header */ |
---|
[36b8060] | 590 | pimg = img_hosted_open_survey(fnm_in, survey); |
---|
[a405bc1] | 591 | if (pimg == NULL) fatalerror(img_error2msg(img_error()), fnm_in); |
---|
[d1b1380] | 592 | |
---|
| 593 | putnl(); |
---|
[ee7511a] | 594 | puts(msg(/*Reading in data - please wait…*/105)); |
---|
[d1b1380] | 595 | |
---|
[63dc4eb] | 596 | htab = osmalloc(ossizeof(pfx*) * HTAB_SIZE); |
---|
| 597 | { |
---|
| 598 | int i; |
---|
| 599 | for (i = 0; i < HTAB_SIZE; ++i) htab[i] = NULL; |
---|
| 600 | } |
---|
[421b7d2] | 601 | |
---|
[d1b1380] | 602 | do { |
---|
[23f7ea7] | 603 | result = img_read_item(pimg, &pt); |
---|
[d1b1380] | 604 | switch (result) { |
---|
[a420b49] | 605 | case img_MOVE: |
---|
[421b7d2] | 606 | fr = find_point(&pt); |
---|
| 607 | break; |
---|
[a420b49] | 608 | case img_LINE: |
---|
[421b7d2] | 609 | if (!fr) { |
---|
[76bbb7c9] | 610 | result = img_BAD; |
---|
| 611 | break; |
---|
[421b7d2] | 612 | } |
---|
| 613 | to = find_point(&pt); |
---|
[ae6d92e] | 614 | if (!(pimg->flags & img_FLAG_SURFACE)) { |
---|
| 615 | if (pimg->flags & img_FLAG_SPLAY) { |
---|
| 616 | ++splays; |
---|
| 617 | } else { |
---|
| 618 | add_leg(fr, to, pimg->label, pimg->flags); |
---|
| 619 | } |
---|
| 620 | } |
---|
[421b7d2] | 621 | fr = to; |
---|
| 622 | break; |
---|
[a420b49] | 623 | case img_LABEL: |
---|
[388ad50] | 624 | to = find_point(&pt); |
---|
| 625 | add_label(to, pimg->label, pimg->flags); |
---|
[421b7d2] | 626 | break; |
---|
[ed0f5b6] | 627 | case img_BAD: |
---|
[6f185e5] | 628 | (void)img_close(pimg); |
---|
[a405bc1] | 629 | fatalerror(img_error2msg(img_error()), fnm_in); |
---|
[31b7105] | 630 | break; |
---|
| 631 | case img_XSECT: |
---|
[a412bc9] | 632 | case img_XSECT_END: |
---|
| 633 | ++xsections; |
---|
[b49ac56] | 634 | break; |
---|
[d1b1380] | 635 | } |
---|
[ed0f5b6] | 636 | } while (result != img_STOP); |
---|
[d1b1380] | 637 | |
---|
[ae6d92e] | 638 | if (splays) { |
---|
| 639 | img_rewind(pimg); |
---|
| 640 | fr = NULL; |
---|
| 641 | do { |
---|
| 642 | result = img_read_item(pimg, &pt); |
---|
| 643 | switch (result) { |
---|
| 644 | case img_MOVE: |
---|
| 645 | fr = find_point(&pt); |
---|
| 646 | break; |
---|
| 647 | case img_LINE: |
---|
| 648 | if (!fr) { |
---|
| 649 | result = img_BAD; |
---|
| 650 | break; |
---|
| 651 | } |
---|
| 652 | to = find_point(&pt); |
---|
| 653 | if (!(pimg->flags & img_FLAG_SURFACE)) { |
---|
| 654 | if (pimg->flags & img_FLAG_SPLAY) { |
---|
| 655 | splay *sp = osmalloc(ossizeof(splay)); |
---|
| 656 | --splays; |
---|
| 657 | if (fr->order) { |
---|
| 658 | if (to->order == 0) { |
---|
| 659 | sp->pt = to; |
---|
| 660 | sp->next = fr->splays; |
---|
| 661 | fr->splays = sp; |
---|
| 662 | } else { |
---|
| 663 | printf("Splay without a dead end from %s to %s\n", fr->stns->label, to->stns->label); |
---|
| 664 | osfree(sp); |
---|
| 665 | } |
---|
| 666 | } else if (to->order) { |
---|
| 667 | sp->pt = fr; |
---|
| 668 | sp->next = to->splays; |
---|
| 669 | to->splays = sp; |
---|
| 670 | } else { |
---|
| 671 | printf("Isolated splay from %s to %s\n", fr->stns->label, to->stns->label); |
---|
| 672 | osfree(sp); |
---|
| 673 | } |
---|
| 674 | } |
---|
| 675 | } |
---|
| 676 | fr = to; |
---|
| 677 | break; |
---|
| 678 | } |
---|
| 679 | } while (splays && result != img_STOP); |
---|
| 680 | } |
---|
| 681 | |
---|
[0c50ce3] | 682 | desc = osstrdup(pimg->title); |
---|
[a2ad284] | 683 | |
---|
[d92d282] | 684 | if (specfile) { |
---|
| 685 | FILE *fs = NULL; |
---|
[7926772] | 686 | char *fnm_used; |
---|
[736f7df] | 687 | /* TRANSLATORS: for extend: */ |
---|
[0804fbe] | 688 | printf(msg(/*Applying specfile: “%s”*/521), specfile); |
---|
[d92d282] | 689 | putnl(); |
---|
[7926772] | 690 | fs = fopenWithPthAndExt("", specfile, NULL, "r", &fnm_used); |
---|
[7962c9d] | 691 | if (fs == NULL) fatalerror(/*Couldn’t open file “%s”*/1, specfile); |
---|
[c0f9e1e] | 692 | while (!FEOF(fs)) { |
---|
[7926772] | 693 | char *lbuf = getline_alloc(fs, 32); |
---|
[d92d282] | 694 | lineno++; |
---|
[7926772] | 695 | if (!lbuf) |
---|
| 696 | fatalerror_in_file(fnm_used, lineno, /*Error reading file*/18); |
---|
| 697 | parseconfigline(fnm_used, lbuf); |
---|
[d92d282] | 698 | osfree(lbuf); |
---|
[647407d] | 699 | } |
---|
[7926772] | 700 | osfree(fnm_used); |
---|
[647407d] | 701 | } |
---|
[d92d282] | 702 | |
---|
[deb536fb] | 703 | if (start == NULL) { |
---|
[47d8509] | 704 | /* *start wasn't specified in specfile. */ |
---|
| 705 | start = pick_start_stn(); |
---|
| 706 | if (!start) fatalerror(/*No survey data*/43); |
---|
[647407d] | 707 | } |
---|
[d92d282] | 708 | |
---|
[736f7df] | 709 | /* TRANSLATORS: for extend: |
---|
| 710 | * Used to tell the user that a file is being written - %s is the filename |
---|
| 711 | */ |
---|
[ee7511a] | 712 | printf(msg(/*Writing %s…*/522), fnm_out); |
---|
[d92d282] | 713 | putnl(); |
---|
[0c50ce3] | 714 | pimg_out = img_open_write(fnm_out, desc, img_FFLAG_EXTENDED); |
---|
[d1b1380] | 715 | |
---|
[d92d282] | 716 | /* Only does single connected component currently. */ |
---|
[e67cb60] | 717 | do_stn(start, 0.0, NULL, ERIGHT, 0, 0.0, 0.0); |
---|
[31b7105] | 718 | |
---|
[a412bc9] | 719 | if (xsections) { |
---|
[31b7105] | 720 | img_rewind(pimg); |
---|
[2f1c0c0] | 721 | /* Read ahead on pimg before writing pimg_out so we find out if an |
---|
| 722 | * img_XSECT_END comes next. */ |
---|
| 723 | char * label = NULL; |
---|
| 724 | int flags = 0; |
---|
[31b7105] | 725 | do { |
---|
| 726 | result = img_read_item(pimg, &pt); |
---|
[a412bc9] | 727 | if (result != img_XSECT && result != img_XSECT_END) |
---|
| 728 | continue; |
---|
| 729 | --xsections; |
---|
| 730 | if (label) { |
---|
| 731 | if (result == img_XSECT_END) |
---|
| 732 | flags |= img_XFLAG_END; |
---|
| 733 | img_write_item(pimg_out, img_XSECT, flags, label, 0, 0, 0); |
---|
| 734 | osfree(label); |
---|
| 735 | label = NULL; |
---|
[2f1c0c0] | 736 | } |
---|
[31b7105] | 737 | if (result == img_XSECT) { |
---|
[2f1c0c0] | 738 | label = osstrdup(pimg->label); |
---|
| 739 | flags = pimg->flags; |
---|
| 740 | pimg_out->l = pimg->l; |
---|
| 741 | pimg_out->r = pimg->r; |
---|
| 742 | pimg_out->u = pimg->u; |
---|
[31b7105] | 743 | pimg_out->d = pimg->d; |
---|
| 744 | } |
---|
[a412bc9] | 745 | } while (xsections && result != img_STOP); |
---|
[31b7105] | 746 | } |
---|
[8add4c9] | 747 | |
---|
[31b7105] | 748 | (void)img_close(pimg); |
---|
| 749 | |
---|
| 750 | if (!img_close(pimg_out)) { |
---|
[6f185e5] | 751 | (void)remove(fnm_out); |
---|
[a405bc1] | 752 | fatalerror(img_error2msg(img_error()), fnm_out); |
---|
[6f185e5] | 753 | } |
---|
[cb3d1e2] | 754 | |
---|
[d1b1380] | 755 | return EXIT_SUCCESS; |
---|
| 756 | } |
---|
| 757 | |
---|
[d92d282] | 758 | static int adjust_direction(int dir, int by) { |
---|
| 759 | if (by == ESWAP) |
---|
| 760 | return dir ^ (ELEFT|ERIGHT); |
---|
| 761 | if (by) |
---|
| 762 | return by; |
---|
| 763 | return dir; |
---|
| 764 | } |
---|
| 765 | |
---|
[a420b49] | 766 | static void |
---|
[e67cb60] | 767 | do_splays(point *p, double X, int dir, double tdx, double tdy) |
---|
[ae6d92e] | 768 | { |
---|
| 769 | const splay *sp; |
---|
| 770 | double a; |
---|
| 771 | double C, S; |
---|
| 772 | |
---|
[e67cb60] | 773 | if (!p->splays) return; |
---|
[ae6d92e] | 774 | |
---|
[e67cb60] | 775 | if (tdx == 0 && tdy == 0) { |
---|
| 776 | /* Two adjacent plumbs, or a pair of legs that exactly cancel. */ |
---|
| 777 | return; |
---|
| 778 | } |
---|
| 779 | |
---|
| 780 | /* Bearing in radians. */ |
---|
| 781 | a = atan2(tdx, tdy); |
---|
[ae6d92e] | 782 | if (dir == ELEFT) { |
---|
[e67cb60] | 783 | a = -M_PI_2 - a; |
---|
[ae6d92e] | 784 | } else { |
---|
[e67cb60] | 785 | a = M_PI_2 - a; |
---|
[ae6d92e] | 786 | } |
---|
| 787 | C = cos(a); |
---|
| 788 | S = sin(a); |
---|
| 789 | for (sp = p->splays; sp; sp = sp->next) { |
---|
| 790 | double x = X; |
---|
| 791 | double z = p->p.z; |
---|
| 792 | img_write_item(pimg_out, img_MOVE, 0, NULL, x, 0, z); |
---|
| 793 | |
---|
| 794 | double dx = sp->pt->p.x - p->p.x; |
---|
| 795 | double dy = sp->pt->p.y - p->p.y; |
---|
| 796 | double dz = sp->pt->p.z - p->p.z; |
---|
| 797 | |
---|
| 798 | double tmp = dx * C + dy * S; |
---|
| 799 | dy = dy * C - dx * S; |
---|
| 800 | dx = tmp; |
---|
| 801 | |
---|
| 802 | img_write_item(pimg_out, img_LINE, img_FLAG_SPLAY, NULL, x + dx, dy, z + dz); |
---|
| 803 | } |
---|
| 804 | p->splays = NULL; |
---|
| 805 | } |
---|
| 806 | |
---|
| 807 | static void |
---|
[e67cb60] | 808 | do_stn(point *p, double X, const char *prefix, int dir, int labOnly, |
---|
| 809 | double odx, double ody) |
---|
[a420b49] | 810 | { |
---|
| 811 | leg *l, *lp; |
---|
[badeec8] | 812 | double dX; |
---|
[ee11c6a7] | 813 | const stn *s; |
---|
[d92d282] | 814 | int odir = dir; |
---|
[74506f1] | 815 | int try_all; |
---|
[ae6d92e] | 816 | int order = p->order; |
---|
| 817 | |
---|
[ea1c342] | 818 | for (s = p->stns; s; s = s->next) { |
---|
[31b7105] | 819 | img_write_item(pimg_out, img_LABEL, s->flags, s->label, X, 0, p->p.z); |
---|
[ea1c342] | 820 | } |
---|
[ae6d92e] | 821 | |
---|
[110957b] | 822 | if (show_breaks && p->X != HUGE_VAL && p->X != X) { |
---|
[9f841e3] | 823 | /* Draw "surface" leg between broken stations. */ |
---|
| 824 | img_write_item(pimg_out, img_MOVE, 0, NULL, p->X, 0, p->p.z); |
---|
| 825 | img_write_item(pimg_out, img_LINE, img_FLAG_SURFACE, NULL, X, 0, p->p.z); |
---|
| 826 | } |
---|
| 827 | p->X = X; |
---|
[d92d282] | 828 | if (labOnly || p->fBroken) { |
---|
| 829 | return; |
---|
| 830 | } |
---|
| 831 | |
---|
[ae6d92e] | 832 | |
---|
| 833 | if (order == 0) { |
---|
| 834 | /* We've reached a dead end. */ |
---|
[e67cb60] | 835 | do_splays(p, X, dir, odx, ody); |
---|
[ae6d92e] | 836 | return; |
---|
| 837 | } |
---|
| 838 | |
---|
[a16d11b] | 839 | /* It's better to follow legs along a survey, so make two passes and only |
---|
| 840 | * follow legs in the same survey for the first pass. |
---|
| 841 | */ |
---|
[74506f1] | 842 | for (try_all = 0; try_all != 2; ++try_all) { |
---|
[a16d11b] | 843 | lp = &headleg; |
---|
| 844 | for (l = lp->next; l; lp = l, l = lp->next) { |
---|
| 845 | dir = odir; |
---|
| 846 | if (l->fDone) { |
---|
| 847 | /* this case happens iff a recursive call causes the next leg to be |
---|
| 848 | * removed, leaving our next pointing to a leg which has been dealt |
---|
| 849 | * with... */ |
---|
| 850 | continue; |
---|
| 851 | } |
---|
| 852 | if (!try_all && l->prefix != prefix) { |
---|
| 853 | continue; |
---|
| 854 | } |
---|
[ea8d9a1] | 855 | int break_flag; |
---|
| 856 | point *p2; |
---|
[a16d11b] | 857 | if (l->to == p) { |
---|
[ea8d9a1] | 858 | break_flag = BREAK_TO; |
---|
| 859 | p2 = l->fr; |
---|
[a16d11b] | 860 | } else if (l->fr == p) { |
---|
[ea8d9a1] | 861 | break_flag = BREAK_FR; |
---|
| 862 | p2 = l->to; |
---|
| 863 | } else { |
---|
| 864 | continue; |
---|
| 865 | } |
---|
| 866 | if (l->broken & break_flag) continue; |
---|
| 867 | lp->next = l->next; |
---|
| 868 | /* adjust direction of extension if necessary */ |
---|
| 869 | dir = adjust_direction(dir, p->dir); |
---|
| 870 | dir = adjust_direction(dir, l->dir); |
---|
| 871 | |
---|
| 872 | double dx = p2->p.x - p->p.x; |
---|
| 873 | double dy = p2->p.y - p->p.y; |
---|
| 874 | dX = hypot(dx, dy); |
---|
| 875 | double X2 = X; |
---|
| 876 | if (dir == ELEFT) { |
---|
[ae6d92e] | 877 | X2 -= dX; |
---|
[ea8d9a1] | 878 | } else { |
---|
[ae6d92e] | 879 | X2 += dX; |
---|
[a16d11b] | 880 | } |
---|
[ea8d9a1] | 881 | |
---|
[5b1703f] | 882 | if (p->splays) { |
---|
[e67cb60] | 883 | do_splays(p, X, dir, odx + dx, ody + dy); |
---|
[5b1703f] | 884 | } |
---|
[ae6d92e] | 885 | |
---|
[ea8d9a1] | 886 | img_write_item(pimg_out, img_MOVE, 0, NULL, X, 0, p->p.z); |
---|
| 887 | img_write_item(pimg_out, img_LINE, l->flags, l->prefix, |
---|
| 888 | X2, 0, p2->p.z); |
---|
| 889 | |
---|
[e67cb60] | 890 | /* We arrive at p2 via a leg, so that's one down right away. */ |
---|
| 891 | --p2->order; |
---|
| 892 | |
---|
[ea8d9a1] | 893 | l->fDone = 1; |
---|
| 894 | /* l->broken doesn't have break_flag set as we checked that above. */ |
---|
[e67cb60] | 895 | do_stn(p2, X2, l->prefix, dir, l->broken, dx, dy); |
---|
[ea8d9a1] | 896 | l = lp; |
---|
[ae6d92e] | 897 | if (--order == 0) return; |
---|
[d1b1380] | 898 | } |
---|
| 899 | } |
---|
| 900 | } |
---|