1 #include "waypoints.qh"
3 #include <server/defs.qh>
4 #include <server/miscfunctions.qh>
8 #include "navigation.qh"
10 #include <common/state.qh>
12 #include "../../antilag.qh"
14 #include <common/constants.qh>
15 #include <common/net_linked.qh>
16 #include <common/physics/player.qh>
18 #include <lib/warpzone/common.qh>
19 #include <lib/warpzone/util_server.qh>
21 .entity spawnpointmodel;
22 void waypoint_unreachable(entity pl)
24 IL_EACH(g_waypoints, true,
26 it.colormod = '0.5 0.5 0.5';
27 it.effects &= ~(EF_NODEPTHTEST | EF_RED | EF_BLUE);
30 entity e2 = navigation_findnearestwaypoint(pl, false);
33 LOG_INFOF("Can't find any waypoint nearby\n");
37 navigation_markroutes(pl, e2);
41 IL_EACH(g_waypoints, it.wpcost >= 10000000,
43 LOG_INFO("unreachable: ", etos(it), " ", vtos(it.origin), "\n");
45 it.effects |= EF_NODEPTHTEST | EF_BLUE;
49 if (j) LOG_INFOF("%d waypoints cannot be reached from here in any way (marked with blue light)\n", j);
50 navigation_markroutes_inverted(e2);
53 IL_EACH(g_waypoints, it.wpcost >= 10000000,
55 LOG_INFO("cannot reach me: ", etos(it), " ", vtos(it.origin), "\n");
57 if (!(it.effects & EF_NODEPTHTEST)) // not already reported before
59 it.effects |= EF_NODEPTHTEST | EF_RED;
62 if (j) LOG_INFOF("%d waypoints cannot walk to here in any way (marked with red light)\n", j);
63 if (m) LOG_INFOF("%d waypoints have been marked total\n", m);
66 IL_EACH(g_spawnpoints, true,
68 if (navigation_findnearestwaypoint(it, false))
70 if(it.spawnpointmodel)
72 delete(it.spawnpointmodel);
73 it.spawnpointmodel = NULL;
78 if(!it.spawnpointmodel)
80 tracebox(it.origin, PL_MIN_CONST, PL_MAX_CONST, it.origin - '0 0 512', MOVE_NOMONSTERS, NULL);
81 entity e = new(spawnpointmodel);
82 vector org = trace_endpos + eZ;
84 e.solid = SOLID_TRIGGER;
85 it.spawnpointmodel = e;
87 LOG_INFO("spawn without waypoint: ", etos(it), " ", vtos(it.origin), "\n");
88 it.spawnpointmodel.effects |= EF_NODEPTHTEST;
89 _setmodel(it.spawnpointmodel, pl.model);
90 it.spawnpointmodel.frame = pl.frame;
91 it.spawnpointmodel.skin = pl.skin;
92 it.spawnpointmodel.colormap = pl.colormap;
93 it.spawnpointmodel.colormod = pl.colormod;
94 it.spawnpointmodel.glowmod = pl.glowmod;
95 setsize(it.spawnpointmodel, PL_MIN_CONST, PL_MAX_CONST);
99 if (j) LOG_INFOF("%d spawnpoints have no nearest waypoint (marked by player model)\n", j);
102 IL_EACH(g_items, true,
104 it.effects &= ~(EF_NODEPTHTEST | EF_RED | EF_BLUE);
105 it.colormod = '0.5 0.5 0.5';
107 IL_EACH(g_items, true,
109 if (navigation_findnearestwaypoint(it, false))
111 LOG_INFO("item without waypoint: ", etos(it), " ", vtos(it.origin), "\n");
112 it.effects |= EF_NODEPTHTEST | EF_RED;
116 if (j) LOG_INFOF("%d items have no nearest waypoint and cannot be walked away from (marked with red light)\n", j);
119 IL_EACH(g_items, true,
121 if (navigation_findnearestwaypoint(it, true))
123 LOG_INFO("item without waypoint: ", etos(it), " ", vtos(it.origin), "\n");
124 it.effects |= EF_NODEPTHTEST | EF_BLUE;
128 if (j) LOG_INFOF("%d items have no nearest waypoint and cannot be walked to (marked with blue light)\n", j);
131 vector waypoint_getSymmetricalOrigin(vector org, int ctf_flags)
133 vector new_org = org;
134 if (fabs(autocvar_g_waypointeditor_symmetrical) == 1)
136 vector map_center = havocbot_middlepoint;
137 if (autocvar_g_waypointeditor_symmetrical == -1)
138 map_center = autocvar_g_waypointeditor_symmetrical_origin;
140 new_org = Rotate(org - map_center, 360 * DEG2RAD / ctf_flags) + map_center;
142 else if (fabs(autocvar_g_waypointeditor_symmetrical) == 2)
144 float m = havocbot_symmetry_axis_m;
145 float q = havocbot_symmetry_axis_q;
146 if (autocvar_g_waypointeditor_symmetrical == -2)
148 m = autocvar_g_waypointeditor_symmetrical_axis.x;
149 q = autocvar_g_waypointeditor_symmetrical_axis.y;
152 new_org.x = (1 / (1 + m*m)) * ((1 - m*m) * org.x + 2 * m * org.y - 2 * m * q);
153 new_org.y = (1 / (1 + m*m)) * (2 * m * org.x + (m*m - 1) * org.y + 2 * q);
159 void waypoint_setupmodel(entity wp)
161 if (autocvar_g_waypointeditor)
163 // TODO: add some sort of visible box in edit mode for box waypoints
166 setmodel(wp, MDL_WAYPOINT);
168 wp.effects = EF_LOWPRECISION;
169 if (wp.wpflags & WAYPOINTFLAG_ITEM)
170 wp.colormod = '1 0 0';
171 else if (wp.wpflags & WAYPOINTFLAG_GENERATED)
172 wp.colormod = '1 1 0';
173 else if (wp.wphardwired)
174 wp.colormod = '0.5 0 1';
176 wp.colormod = '1 1 1';
182 entity waypoint_spawn(vector m1, vector m2, float f)
184 if(!(f & (WAYPOINTFLAG_PERSONAL | WAYPOINTFLAG_GENERATED)) && m1 == m2)
186 vector em1 = m1 - '8 8 8';
187 vector em2 = m2 + '8 8 8';
188 IL_EACH(g_waypoints, boxesoverlap(em1, em2, it.absmin, it.absmax),
193 // spawn only one destination waypoint for teleports teleporting player to the exact same spot
194 // otherwise links loaded from file would be applied only to the first destination
195 // waypoint since link format doesn't specify waypoint entities but just positions
196 if((f & WAYPOINTFLAG_GENERATED) && !(f & WAYPOINTFLAG_NORELINK) && m1 == m2)
198 IL_EACH(g_waypoints, boxesoverlap(m1, m2, it.absmin, it.absmax),
204 entity w = new(waypoint);
205 IL_PUSH(g_waypoints, w);
206 w.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_PLAYERCLIP | DPCONTENTS_BOTCLIP;
208 w.solid = SOLID_TRIGGER;
209 setorigin(w, (m1 + m2) * 0.5);
210 setsize(w, m1 - w.origin, m2 - w.origin);
216 setsize(w, PL_MIN_CONST - '1 1 0', PL_MAX_CONST + '1 1 0');
217 if(!move_out_of_solid(w))
219 if(!(f & WAYPOINTFLAG_GENERATED))
221 LOG_TRACE("Killed a waypoint that was stuck in solid at ", vtos(w.origin));
227 if(autocvar_developer)
229 LOG_INFO("A generated waypoint is stuck in solid at ", vtos(w.origin));
230 backtrace("Waypoint stuck");
234 setsize(w, '0 0 0', '0 0 0');
237 waypoint_clearlinks(w);
238 //waypoint_schedulerelink(w);
240 waypoint_setupmodel(w);
245 void waypoint_spawn_fromeditor(entity pl)
248 vector org = pl.origin;
249 int ctf_flags = havocbot_symmetry_origin_order;
250 bool sym = ((autocvar_g_waypointeditor_symmetrical > 0 && ctf_flags >= 2)
251 || (autocvar_g_waypointeditor_symmetrical < 0));
252 if(autocvar_g_waypointeditor_symmetrical_order >= 2)
253 ctf_flags = autocvar_g_waypointeditor_symmetrical_order;
254 int wp_num = ctf_flags;
256 if(!PHYS_INPUT_BUTTON_CROUCH(pl))
258 // snap waypoint to item's origin if close enough
259 IL_EACH(g_items, true,
261 vector item_org = (it.absmin + it.absmax) * 0.5;
262 item_org.z = it.absmin.z - PL_MIN_CONST.z;
263 if(vlen(item_org - org) < 30)
272 e = waypoint_spawn(org, org, 0);
275 LOG_INFOF("Couldn't spawn waypoint at %v\n", org);
278 waypoint_schedulerelink(e);
279 bprint(strcat("Waypoint spawned at ", vtos(e.origin), "\n"));
282 org = waypoint_getSymmetricalOrigin(e.origin, ctf_flags);
283 if (vdist(org - pl.origin, >, 32))
294 void waypoint_remove(entity wp)
296 // tell all waypoints linked to wp that they need to relink
297 IL_EACH(g_waypoints, it != wp,
299 if (waypoint_islinked(it, wp))
300 waypoint_removelink(it, wp);
305 void waypoint_remove_fromeditor(entity pl)
307 entity e = navigation_findnearestwaypoint(pl, false);
309 int ctf_flags = havocbot_symmetry_origin_order;
310 bool sym = ((autocvar_g_waypointeditor_symmetrical > 0 && ctf_flags >= 2)
311 || (autocvar_g_waypointeditor_symmetrical < 0));
312 if(autocvar_g_waypointeditor_symmetrical_order >= 2)
313 ctf_flags = autocvar_g_waypointeditor_symmetrical_order;
314 int wp_num = ctf_flags;
318 if (e.wpflags & WAYPOINTFLAG_GENERATED) return;
322 LOG_INFO("^1Warning: ^7Removal of hardwired waypoints is not allowed in the editor. Please remove links from/to this waypoint (", vtos(e.origin), ") by hand from maps/", mapname, ".waypoints.hardwired\n");
326 entity wp_sym = NULL;
329 vector org = waypoint_getSymmetricalOrigin(e.origin, ctf_flags);
330 FOREACH_ENTITY_CLASS("waypoint", !(it.wpflags & WAYPOINTFLAG_GENERATED), {
331 if(vdist(org - it.origin, <, 3))
339 bprint(strcat("Waypoint removed at ", vtos(e.origin), "\n"));
353 void waypoint_removelink(entity from, entity to)
355 if (from == to || (from.wpflags & WAYPOINTFLAG_NORELINK))
359 if (!found && from.wp00 == to) found = true; if (found) {from.wp00 = from.wp01; from.wp00mincost = from.wp01mincost;}
360 if (!found && from.wp01 == to) found = true; if (found) {from.wp01 = from.wp02; from.wp01mincost = from.wp02mincost;}
361 if (!found && from.wp02 == to) found = true; if (found) {from.wp02 = from.wp03; from.wp02mincost = from.wp03mincost;}
362 if (!found && from.wp03 == to) found = true; if (found) {from.wp03 = from.wp04; from.wp03mincost = from.wp04mincost;}
363 if (!found && from.wp04 == to) found = true; if (found) {from.wp04 = from.wp05; from.wp04mincost = from.wp05mincost;}
364 if (!found && from.wp05 == to) found = true; if (found) {from.wp05 = from.wp06; from.wp05mincost = from.wp06mincost;}
365 if (!found && from.wp06 == to) found = true; if (found) {from.wp06 = from.wp07; from.wp06mincost = from.wp07mincost;}
366 if (!found && from.wp07 == to) found = true; if (found) {from.wp07 = from.wp08; from.wp07mincost = from.wp08mincost;}
367 if (!found && from.wp08 == to) found = true; if (found) {from.wp08 = from.wp09; from.wp08mincost = from.wp09mincost;}
368 if (!found && from.wp09 == to) found = true; if (found) {from.wp09 = from.wp10; from.wp09mincost = from.wp10mincost;}
369 if (!found && from.wp10 == to) found = true; if (found) {from.wp10 = from.wp11; from.wp10mincost = from.wp11mincost;}
370 if (!found && from.wp11 == to) found = true; if (found) {from.wp11 = from.wp12; from.wp11mincost = from.wp12mincost;}
371 if (!found && from.wp12 == to) found = true; if (found) {from.wp12 = from.wp13; from.wp12mincost = from.wp13mincost;}
372 if (!found && from.wp13 == to) found = true; if (found) {from.wp13 = from.wp14; from.wp13mincost = from.wp14mincost;}
373 if (!found && from.wp14 == to) found = true; if (found) {from.wp14 = from.wp15; from.wp14mincost = from.wp15mincost;}
374 if (!found && from.wp15 == to) found = true; if (found) {from.wp15 = from.wp16; from.wp15mincost = from.wp16mincost;}
375 if (!found && from.wp16 == to) found = true; if (found) {from.wp16 = from.wp17; from.wp16mincost = from.wp17mincost;}
376 if (!found && from.wp17 == to) found = true; if (found) {from.wp17 = from.wp18; from.wp17mincost = from.wp18mincost;}
377 if (!found && from.wp18 == to) found = true; if (found) {from.wp18 = from.wp19; from.wp18mincost = from.wp19mincost;}
378 if (!found && from.wp19 == to) found = true; if (found) {from.wp19 = from.wp20; from.wp19mincost = from.wp20mincost;}
379 if (!found && from.wp20 == to) found = true; if (found) {from.wp20 = from.wp21; from.wp20mincost = from.wp21mincost;}
380 if (!found && from.wp21 == to) found = true; if (found) {from.wp21 = from.wp22; from.wp21mincost = from.wp22mincost;}
381 if (!found && from.wp22 == to) found = true; if (found) {from.wp22 = from.wp23; from.wp22mincost = from.wp23mincost;}
382 if (!found && from.wp23 == to) found = true; if (found) {from.wp23 = from.wp24; from.wp23mincost = from.wp24mincost;}
383 if (!found && from.wp24 == to) found = true; if (found) {from.wp24 = from.wp25; from.wp24mincost = from.wp25mincost;}
384 if (!found && from.wp25 == to) found = true; if (found) {from.wp25 = from.wp26; from.wp25mincost = from.wp26mincost;}
385 if (!found && from.wp26 == to) found = true; if (found) {from.wp26 = from.wp27; from.wp26mincost = from.wp27mincost;}
386 if (!found && from.wp27 == to) found = true; if (found) {from.wp27 = from.wp28; from.wp27mincost = from.wp28mincost;}
387 if (!found && from.wp28 == to) found = true; if (found) {from.wp28 = from.wp29; from.wp28mincost = from.wp29mincost;}
388 if (!found && from.wp29 == to) found = true; if (found) {from.wp29 = from.wp30; from.wp29mincost = from.wp30mincost;}
389 if (!found && from.wp30 == to) found = true; if (found) {from.wp30 = from.wp31; from.wp30mincost = from.wp31mincost;}
390 if (found) {from.wp31 = NULL; from.wp31mincost = 10000000;}
393 bool waypoint_islinked(entity from, entity to)
395 if (from.wp00 == to) return true;if (from.wp01 == to) return true;if (from.wp02 == to) return true;if (from.wp03 == to) return true;
396 if (from.wp04 == to) return true;if (from.wp05 == to) return true;if (from.wp06 == to) return true;if (from.wp07 == to) return true;
397 if (from.wp08 == to) return true;if (from.wp09 == to) return true;if (from.wp10 == to) return true;if (from.wp11 == to) return true;
398 if (from.wp12 == to) return true;if (from.wp13 == to) return true;if (from.wp14 == to) return true;if (from.wp15 == to) return true;
399 if (from.wp16 == to) return true;if (from.wp17 == to) return true;if (from.wp18 == to) return true;if (from.wp19 == to) return true;
400 if (from.wp20 == to) return true;if (from.wp21 == to) return true;if (from.wp22 == to) return true;if (from.wp23 == to) return true;
401 if (from.wp24 == to) return true;if (from.wp25 == to) return true;if (from.wp26 == to) return true;if (from.wp27 == to) return true;
402 if (from.wp28 == to) return true;if (from.wp29 == to) return true;if (from.wp30 == to) return true;if (from.wp31 == to) return true;
406 void waypoint_updatecost_foralllinks()
408 IL_EACH(g_waypoints, !(it.wpflags & WAYPOINTFLAG_TELEPORT),
410 if(it.wp00) it.wp00mincost = waypoint_getlinkcost(it, it.wp00);
411 if(it.wp01) it.wp01mincost = waypoint_getlinkcost(it, it.wp01);
412 if(it.wp02) it.wp02mincost = waypoint_getlinkcost(it, it.wp02);
413 if(it.wp03) it.wp03mincost = waypoint_getlinkcost(it, it.wp03);
414 if(it.wp04) it.wp04mincost = waypoint_getlinkcost(it, it.wp04);
415 if(it.wp05) it.wp05mincost = waypoint_getlinkcost(it, it.wp05);
416 if(it.wp06) it.wp06mincost = waypoint_getlinkcost(it, it.wp06);
417 if(it.wp07) it.wp07mincost = waypoint_getlinkcost(it, it.wp07);
418 if(it.wp08) it.wp08mincost = waypoint_getlinkcost(it, it.wp08);
419 if(it.wp09) it.wp09mincost = waypoint_getlinkcost(it, it.wp09);
420 if(it.wp10) it.wp10mincost = waypoint_getlinkcost(it, it.wp10);
421 if(it.wp11) it.wp11mincost = waypoint_getlinkcost(it, it.wp11);
422 if(it.wp12) it.wp12mincost = waypoint_getlinkcost(it, it.wp12);
423 if(it.wp13) it.wp13mincost = waypoint_getlinkcost(it, it.wp13);
424 if(it.wp14) it.wp14mincost = waypoint_getlinkcost(it, it.wp14);
425 if(it.wp15) it.wp15mincost = waypoint_getlinkcost(it, it.wp15);
426 if(it.wp16) it.wp16mincost = waypoint_getlinkcost(it, it.wp16);
427 if(it.wp17) it.wp17mincost = waypoint_getlinkcost(it, it.wp17);
428 if(it.wp18) it.wp18mincost = waypoint_getlinkcost(it, it.wp18);
429 if(it.wp19) it.wp19mincost = waypoint_getlinkcost(it, it.wp19);
430 if(it.wp20) it.wp20mincost = waypoint_getlinkcost(it, it.wp20);
431 if(it.wp21) it.wp21mincost = waypoint_getlinkcost(it, it.wp21);
432 if(it.wp22) it.wp22mincost = waypoint_getlinkcost(it, it.wp22);
433 if(it.wp23) it.wp23mincost = waypoint_getlinkcost(it, it.wp23);
434 if(it.wp24) it.wp24mincost = waypoint_getlinkcost(it, it.wp24);
435 if(it.wp25) it.wp25mincost = waypoint_getlinkcost(it, it.wp25);
436 if(it.wp26) it.wp26mincost = waypoint_getlinkcost(it, it.wp26);
437 if(it.wp27) it.wp27mincost = waypoint_getlinkcost(it, it.wp27);
438 if(it.wp28) it.wp28mincost = waypoint_getlinkcost(it, it.wp28);
439 if(it.wp29) it.wp29mincost = waypoint_getlinkcost(it, it.wp29);
440 if(it.wp30) it.wp30mincost = waypoint_getlinkcost(it, it.wp30);
441 if(it.wp31) it.wp31mincost = waypoint_getlinkcost(it, it.wp31);
445 float waypoint_getlinearcost(float dist)
447 if(skill >= autocvar_bot_ai_bunnyhop_skilloffset)
448 return dist / (autocvar_sv_maxspeed * 1.25);
449 return dist / autocvar_sv_maxspeed;
451 float waypoint_getlinearcost_underwater(float dist)
453 // NOTE: underwater speed factor is hardcoded in the engine too, see SV_WaterMove
454 return dist / (autocvar_sv_maxspeed * 0.7);
457 float waypoint_gettravelcost(vector from, vector to, entity from_ent, entity to_ent)
459 bool submerged_from = navigation_check_submerged_state(from_ent, from);
460 bool submerged_to = navigation_check_submerged_state(to_ent, to);
462 if (submerged_from && submerged_to)
463 return waypoint_getlinearcost_underwater(vlen(to - from));
465 float c = waypoint_getlinearcost(vlen(to - from));
467 float height = from.z - to.z;
468 if(height > jumpheight_vec.z && autocvar_sv_gravity > 0)
470 float height_cost = sqrt(height / (autocvar_sv_gravity / 2));
471 c = waypoint_getlinearcost(vlen(vec2(to - from))); // xy distance cost
476 if (submerged_from || submerged_to)
477 return (c + waypoint_getlinearcost_underwater(vlen(to - from))) / 2;
481 float waypoint_getlinkcost(entity from, entity to)
483 vector v1 = from.origin;
484 vector v2 = to.origin;
487 vector m1 = from.absmin, m2 = from.absmax;
488 v1.x = bound(m1.x, v2.x, m2.x);
489 v1.y = bound(m1.y, v2.y, m2.y);
490 v1.z = bound(m1.z, v2.z, m2.z);
494 vector m1 = to.absmin, m2 = to.absmax;
495 v2.x = bound(m1.x, v1.x, m2.x);
496 v2.y = bound(m1.y, v1.y, m2.y);
497 v2.z = bound(m1.z, v1.z, m2.z);
499 return waypoint_gettravelcost(v1, v2, from, to);
502 // add a new link to the spawnfunc_waypoint, replacing the furthest link it already has
503 // if c == -1 automatically determine cost of the link
504 void waypoint_addlink_customcost(entity from, entity to, float c)
506 if (from == to || waypoint_islinked(from, to))
508 if (c == -1 && (from.wpflags & WAYPOINTFLAG_NORELINK))
512 c = waypoint_getlinkcost(from, to);
514 if (from.wp31mincost < c) return;
515 if (from.wp30mincost < c) {from.wp31 = to;from.wp31mincost = c;return;} from.wp31 = from.wp30;from.wp31mincost = from.wp30mincost;
516 if (from.wp29mincost < c) {from.wp30 = to;from.wp30mincost = c;return;} from.wp30 = from.wp29;from.wp30mincost = from.wp29mincost;
517 if (from.wp28mincost < c) {from.wp29 = to;from.wp29mincost = c;return;} from.wp29 = from.wp28;from.wp29mincost = from.wp28mincost;
518 if (from.wp27mincost < c) {from.wp28 = to;from.wp28mincost = c;return;} from.wp28 = from.wp27;from.wp28mincost = from.wp27mincost;
519 if (from.wp26mincost < c) {from.wp27 = to;from.wp27mincost = c;return;} from.wp27 = from.wp26;from.wp27mincost = from.wp26mincost;
520 if (from.wp25mincost < c) {from.wp26 = to;from.wp26mincost = c;return;} from.wp26 = from.wp25;from.wp26mincost = from.wp25mincost;
521 if (from.wp24mincost < c) {from.wp25 = to;from.wp25mincost = c;return;} from.wp25 = from.wp24;from.wp25mincost = from.wp24mincost;
522 if (from.wp23mincost < c) {from.wp24 = to;from.wp24mincost = c;return;} from.wp24 = from.wp23;from.wp24mincost = from.wp23mincost;
523 if (from.wp22mincost < c) {from.wp23 = to;from.wp23mincost = c;return;} from.wp23 = from.wp22;from.wp23mincost = from.wp22mincost;
524 if (from.wp21mincost < c) {from.wp22 = to;from.wp22mincost = c;return;} from.wp22 = from.wp21;from.wp22mincost = from.wp21mincost;
525 if (from.wp20mincost < c) {from.wp21 = to;from.wp21mincost = c;return;} from.wp21 = from.wp20;from.wp21mincost = from.wp20mincost;
526 if (from.wp19mincost < c) {from.wp20 = to;from.wp20mincost = c;return;} from.wp20 = from.wp19;from.wp20mincost = from.wp19mincost;
527 if (from.wp18mincost < c) {from.wp19 = to;from.wp19mincost = c;return;} from.wp19 = from.wp18;from.wp19mincost = from.wp18mincost;
528 if (from.wp17mincost < c) {from.wp18 = to;from.wp18mincost = c;return;} from.wp18 = from.wp17;from.wp18mincost = from.wp17mincost;
529 if (from.wp16mincost < c) {from.wp17 = to;from.wp17mincost = c;return;} from.wp17 = from.wp16;from.wp17mincost = from.wp16mincost;
530 if (from.wp15mincost < c) {from.wp16 = to;from.wp16mincost = c;return;} from.wp16 = from.wp15;from.wp16mincost = from.wp15mincost;
531 if (from.wp14mincost < c) {from.wp15 = to;from.wp15mincost = c;return;} from.wp15 = from.wp14;from.wp15mincost = from.wp14mincost;
532 if (from.wp13mincost < c) {from.wp14 = to;from.wp14mincost = c;return;} from.wp14 = from.wp13;from.wp14mincost = from.wp13mincost;
533 if (from.wp12mincost < c) {from.wp13 = to;from.wp13mincost = c;return;} from.wp13 = from.wp12;from.wp13mincost = from.wp12mincost;
534 if (from.wp11mincost < c) {from.wp12 = to;from.wp12mincost = c;return;} from.wp12 = from.wp11;from.wp12mincost = from.wp11mincost;
535 if (from.wp10mincost < c) {from.wp11 = to;from.wp11mincost = c;return;} from.wp11 = from.wp10;from.wp11mincost = from.wp10mincost;
536 if (from.wp09mincost < c) {from.wp10 = to;from.wp10mincost = c;return;} from.wp10 = from.wp09;from.wp10mincost = from.wp09mincost;
537 if (from.wp08mincost < c) {from.wp09 = to;from.wp09mincost = c;return;} from.wp09 = from.wp08;from.wp09mincost = from.wp08mincost;
538 if (from.wp07mincost < c) {from.wp08 = to;from.wp08mincost = c;return;} from.wp08 = from.wp07;from.wp08mincost = from.wp07mincost;
539 if (from.wp06mincost < c) {from.wp07 = to;from.wp07mincost = c;return;} from.wp07 = from.wp06;from.wp07mincost = from.wp06mincost;
540 if (from.wp05mincost < c) {from.wp06 = to;from.wp06mincost = c;return;} from.wp06 = from.wp05;from.wp06mincost = from.wp05mincost;
541 if (from.wp04mincost < c) {from.wp05 = to;from.wp05mincost = c;return;} from.wp05 = from.wp04;from.wp05mincost = from.wp04mincost;
542 if (from.wp03mincost < c) {from.wp04 = to;from.wp04mincost = c;return;} from.wp04 = from.wp03;from.wp04mincost = from.wp03mincost;
543 if (from.wp02mincost < c) {from.wp03 = to;from.wp03mincost = c;return;} from.wp03 = from.wp02;from.wp03mincost = from.wp02mincost;
544 if (from.wp01mincost < c) {from.wp02 = to;from.wp02mincost = c;return;} from.wp02 = from.wp01;from.wp02mincost = from.wp01mincost;
545 if (from.wp00mincost < c) {from.wp01 = to;from.wp01mincost = c;return;} from.wp01 = from.wp00;from.wp01mincost = from.wp00mincost;
546 from.wp00 = to;from.wp00mincost = c;return;
549 void waypoint_addlink(entity from, entity to)
551 waypoint_addlink_customcost(from, to, -1);
554 // relink this spawnfunc_waypoint
555 // (precompile a list of all reachable waypoints from this spawnfunc_waypoint)
557 void waypoint_think(entity this)
559 vector sv = '0 0 0', sv2 = '0 0 0', ev = '0 0 0', ev2 = '0 0 0', dv;
560 float sv2_height = 0, ev2_height = 0;
562 bot_calculate_stepheightvec();
564 int dphitcontentsmask_save = this.dphitcontentsmask;
565 this.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_PLAYERCLIP | DPCONTENTS_BOTCLIP;
567 bot_navigation_movemode = ((autocvar_bot_navigation_ignoreplayers) ? MOVE_NOMONSTERS : MOVE_NORMAL);
569 //dprint("waypoint_think wpisbox = ", ftos(this.wpisbox), "\n");
570 IL_EACH(g_waypoints, this != it,
572 if (boxesoverlap(this.absmin, this.absmax, it.absmin, it.absmax))
574 waypoint_addlink(this, it);
575 waypoint_addlink(it, this);
580 if(!checkpvs(this.origin, it))
586 sv = set_tracewalk_dest_2(this, it.origin);
587 sv2 = tracewalk_dest;
588 sv2_height = tracewalk_dest_height;
589 ev = set_tracewalk_dest_2(it, this.origin);
590 ev2 = tracewalk_dest;
591 ev2_height = tracewalk_dest_height;
595 if(vdist(dv, >=, 1050)) // max search distance in XY
597 ++relink_lengthculled;
601 navigation_testtracewalk = 0;
603 //traceline(this.origin, it.origin, false, NULL);
604 //if (trace_fraction == 1)
606 relink_walkculled += 0.5;
609 if (tracewalk(this, sv, PL_MIN_CONST, PL_MAX_CONST, ev2, ev2_height, MOVE_NOMONSTERS))
610 waypoint_addlink(this, it);
612 relink_walkculled += 0.5;
616 relink_walkculled += 0.5;
619 if (tracewalk(this, ev, PL_MIN_CONST, PL_MAX_CONST, sv2, sv2_height, MOVE_NOMONSTERS))
620 waypoint_addlink(it, this);
622 relink_walkculled += 0.5;
626 navigation_testtracewalk = 0;
627 this.wplinked = true;
628 this.dphitcontentsmask = dphitcontentsmask_save;
631 void waypoint_clearlinks(entity wp)
633 // clear links to other waypoints
635 wp.wp00 = wp.wp01 = wp.wp02 = wp.wp03 = wp.wp04 = wp.wp05 = wp.wp06 = wp.wp07 = NULL;
636 wp.wp08 = wp.wp09 = wp.wp10 = wp.wp11 = wp.wp12 = wp.wp13 = wp.wp14 = wp.wp15 = NULL;
637 wp.wp16 = wp.wp17 = wp.wp18 = wp.wp19 = wp.wp20 = wp.wp21 = wp.wp22 = wp.wp23 = NULL;
638 wp.wp24 = wp.wp25 = wp.wp26 = wp.wp27 = wp.wp28 = wp.wp29 = wp.wp30 = wp.wp31 = NULL;
640 wp.wp00mincost = wp.wp01mincost = wp.wp02mincost = wp.wp03mincost = wp.wp04mincost = wp.wp05mincost = wp.wp06mincost = wp.wp07mincost = f;
641 wp.wp08mincost = wp.wp09mincost = wp.wp10mincost = wp.wp11mincost = wp.wp12mincost = wp.wp13mincost = wp.wp14mincost = wp.wp15mincost = f;
642 wp.wp16mincost = wp.wp17mincost = wp.wp18mincost = wp.wp19mincost = wp.wp20mincost = wp.wp21mincost = wp.wp22mincost = wp.wp23mincost = f;
643 wp.wp24mincost = wp.wp25mincost = wp.wp26mincost = wp.wp27mincost = wp.wp28mincost = wp.wp29mincost = wp.wp30mincost = wp.wp31mincost = f;
648 // tell a spawnfunc_waypoint to relink
649 void waypoint_schedulerelink(entity wp)
654 waypoint_setupmodel(wp);
655 wp.wpisbox = vdist(wp.size, >, 0);
657 if (!(wp.wpflags & WAYPOINTFLAG_PERSONAL))
659 if (!(wp.wpflags & WAYPOINTFLAG_NORELINK))
660 waypoint_clearlinks(wp);
661 // schedule an actual relink on next frame
662 setthink(wp, waypoint_think);
664 wp.effects = EF_LOWPRECISION;
667 // spawnfunc_waypoint map entity
670 IL_PUSH(g_waypoints, this);
672 setorigin(this, this.origin);
673 // schedule a relink after other waypoints have had a chance to spawn
674 waypoint_clearlinks(this);
675 //waypoint_schedulerelink(this);
678 // tell all waypoints to relink
679 // actually this is useful only to update relink_* stats
680 void waypoint_schedulerelinkall()
682 relink_total = relink_walkculled = relink_pvsculled = relink_lengthculled = 0;
683 IL_EACH(g_waypoints, true,
685 waypoint_schedulerelink(it);
687 waypoint_load_links_hardwired();
690 #define GET_GAMETYPE_EXTENSION() ((g_race) ? ".race" : "")
692 // Load waypoint links from file
693 bool waypoint_load_links()
696 float file, tokens, c = 0, found;
697 entity wp_from = NULL, wp_to;
698 vector wp_to_pos, wp_from_pos;
700 string gt_ext = GET_GAMETYPE_EXTENSION();
702 string filename = sprintf("maps/%s.waypoints.cache", strcat(mapname, gt_ext));
703 file = fopen(filename, FILE_READ);
705 if (gt_ext != "" && file < 0)
707 // if race waypoint file doesn't exist load the default one
708 filename = sprintf("maps/%s.waypoints.cache", mapname);
709 file = fopen(filename, FILE_READ);
714 LOG_TRACE("waypoint links load from ", filename, " failed");
715 waypoint_schedulerelinkall();
719 bool parse_comments = true;
722 while ((s = fgets(file)))
726 if(substring(s, 0, 2) == "//")
728 if(substring(s, 2, 17) == "WAYPOINT_VERSION ")
729 ver = stof(substring(s, 19, -1));
734 if(ver < WAYPOINT_VERSION)
736 LOG_TRACE("waypoint links for this map are outdated.");
739 LOG_TRACE("Assault waypoint links need to be manually updated in the editor");
743 LOG_TRACE("automatically updating...");
744 waypoint_schedulerelinkall();
749 parse_comments = false;
753 tokens = tokenizebyseparator(s, "*");
759 waypoint_schedulerelinkall(); // link all the autogenerated waypoints (teleporters)
763 wp_from_pos = stov(argv(0));
764 wp_to_pos = stov(argv(1));
766 // Search "from" waypoint
767 if(!wp_from || wp_from.origin!=wp_from_pos)
769 wp_from = findradius(wp_from_pos, 1);
773 if(vdist(wp_from.origin - wp_from_pos, <, 1))
774 if(wp_from.classname == "waypoint")
779 wp_from = wp_from.chain;
784 LOG_TRACE("waypoint_load_links: couldn't find 'from' waypoint at ", vtos(wp_from_pos));
789 // Search "to" waypoint
790 wp_to = findradius(wp_to_pos, 1);
794 if(vdist(wp_to.origin - wp_to_pos, <, 1))
795 if(wp_to.classname == "waypoint")
805 LOG_TRACE("waypoint_load_links: couldn't find 'to' waypoint at ", vtos(wp_to_pos));
810 waypoint_addlink(wp_from, wp_to);
815 LOG_TRACE("loaded ", ftos(c), " waypoint links from ", filename);
817 bool scheduled = false;
818 IL_EACH(g_waypoints, it.wpflags & WAYPOINTFLAG_ITEM,
822 waypoint_schedulerelink(it);
829 botframe_cachedwaypointlinks = true;
833 void waypoint_load_or_remove_links_hardwired(bool removal_mode)
836 float file, tokens, c = 0, found;
837 entity wp_from = NULL, wp_to;
838 vector wp_to_pos, wp_from_pos;
840 string gt_ext = GET_GAMETYPE_EXTENSION();
842 string filename = sprintf("maps/%s.waypoints.hardwired", strcat(mapname, gt_ext));
843 file = fopen(filename, FILE_READ);
845 if (gt_ext != "" && file < 0)
847 // if race waypoint file doesn't exist load the default one
848 filename = sprintf("maps/%s.waypoints.hardwired", mapname);
849 file = fopen(filename, FILE_READ);
852 botframe_loadedforcedlinks = true;
857 LOG_TRACE("waypoint links load from ", filename, " failed");
861 while ((s = fgets(file)))
863 if(substring(s, 0, 2)=="//")
866 if(substring(s, 0, 1)=="#")
869 tokens = tokenizebyseparator(s, "*");
874 wp_from_pos = stov(argv(0));
875 wp_to_pos = stov(argv(1));
877 // Search "from" waypoint
878 if(!wp_from || wp_from.origin!=wp_from_pos)
880 wp_from = findradius(wp_from_pos, 5);
884 if(vdist(wp_from.origin - wp_from_pos, <, 5))
885 if(wp_from.classname == "waypoint")
890 wp_from = wp_from.chain;
896 LOG_INFO("NOTICE: Can not find waypoint at ", vtos(wp_from_pos), ". Path skipped");
901 // Search "to" waypoint
902 wp_to = findradius(wp_to_pos, 5);
906 if(vdist(wp_to.origin - wp_to_pos, <, 5))
907 if(wp_to.classname == "waypoint")
918 LOG_INFO("NOTICE: Can not find waypoint at ", vtos(wp_to_pos), ". Path skipped");
925 waypoint_removelink(wp_from, wp_to);
929 waypoint_addlink(wp_from, wp_to);
930 wp_from.wphardwired = true;
931 wp_to.wphardwired = true;
932 waypoint_setupmodel(wp_from);
933 waypoint_setupmodel(wp_to);
938 LOG_TRACE(((removal_mode) ? "unloaded " : "loaded "),
939 ftos(c), " waypoint links from maps/", mapname, ".waypoints.hardwired");
942 entity waypoint_get_link(entity w, float i)
946 case 0:return w.wp00;
947 case 1:return w.wp01;
948 case 2:return w.wp02;
949 case 3:return w.wp03;
950 case 4:return w.wp04;
951 case 5:return w.wp05;
952 case 6:return w.wp06;
953 case 7:return w.wp07;
954 case 8:return w.wp08;
955 case 9:return w.wp09;
956 case 10:return w.wp10;
957 case 11:return w.wp11;
958 case 12:return w.wp12;
959 case 13:return w.wp13;
960 case 14:return w.wp14;
961 case 15:return w.wp15;
962 case 16:return w.wp16;
963 case 17:return w.wp17;
964 case 18:return w.wp18;
965 case 19:return w.wp19;
966 case 20:return w.wp20;
967 case 21:return w.wp21;
968 case 22:return w.wp22;
969 case 23:return w.wp23;
970 case 24:return w.wp24;
971 case 25:return w.wp25;
972 case 26:return w.wp26;
973 case 27:return w.wp27;
974 case 28:return w.wp28;
975 case 29:return w.wp29;
976 case 30:return w.wp30;
977 case 31:return w.wp31;
982 // Save all waypoint links to a file
983 void waypoint_save_links()
985 // temporarily remove hardwired links so they don't get saved among normal links
986 waypoint_remove_links_hardwired();
988 string gt_ext = GET_GAMETYPE_EXTENSION();
990 string filename = sprintf("maps/%s.waypoints.cache", strcat(mapname, gt_ext));
991 int file = fopen(filename, FILE_WRITE);
994 LOG_INFOF("waypoint link save to %s failed", filename);
998 fputs(file, strcat("//", "WAYPOINT_VERSION ", ftos_decimals(WAYPOINT_VERSION, 2), "\n"));
1001 IL_EACH(g_waypoints, true,
1003 for(int j = 0; j < 32; ++j)
1005 entity link = waypoint_get_link(it, j);
1008 string s = strcat(vtos(it.origin), "*", vtos(link.origin), "\n");
1016 botframe_cachedwaypointlinks = true;
1018 LOG_INFOF("saved %d waypoint links to %s", c, filename);
1020 waypoint_load_links_hardwired();
1023 // save waypoints to gamedir/data/maps/mapname.waypoints
1024 void waypoint_saveall()
1026 string gt_ext = GET_GAMETYPE_EXTENSION();
1028 string filename = sprintf("maps/%s.waypoints", strcat(mapname, gt_ext));
1029 int file = fopen(filename, FILE_WRITE);
1032 waypoint_save_links(); // save anyway?
1033 botframe_loadedforcedlinks = false;
1035 LOG_INFOF("waypoint links: save to %s failed", filename);
1039 float sym = autocvar_g_waypointeditor_symmetrical;
1040 string sym_str = ftos(sym);
1041 if (sym == -1 || (sym == 1 && autocvar_g_waypointeditor_symmetrical_order >= 2))
1045 sym_str = cons(sym_str, "-");
1046 sym_str = cons(sym_str, "-");
1050 sym_str = cons(sym_str, ftos(autocvar_g_waypointeditor_symmetrical_origin.x));
1051 sym_str = cons(sym_str, ftos(autocvar_g_waypointeditor_symmetrical_origin.y));
1053 if (autocvar_g_waypointeditor_symmetrical_order >= 2)
1054 sym_str = cons(sym_str, ftos(autocvar_g_waypointeditor_symmetrical_order));
1056 else if (autocvar_g_waypointeditor_symmetrical == -2)
1058 sym_str = cons(sym_str, ftos(autocvar_g_waypointeditor_symmetrical_axis.x));
1059 sym_str = cons(sym_str, ftos(autocvar_g_waypointeditor_symmetrical_axis.y));
1062 // a group of 3 comments doesn't break compatibility with older Xonotic versions
1063 // (they are read as a waypoint with origin '0 0 0' and flag 0 though)
1064 fputs(file, strcat("//", "WAYPOINT_VERSION ", ftos_decimals(WAYPOINT_VERSION, 2), "\n"));
1065 fputs(file, strcat("//", "WAYPOINT_SYMMETRY ", sym_str, "\n"));
1066 fputs(file, strcat("//", "\n"));
1069 IL_EACH(g_waypoints, true,
1071 if(it.wpflags & WAYPOINTFLAG_GENERATED)
1075 s = strcat(vtos(it.origin + it.mins), "\n");
1076 s = strcat(s, vtos(it.origin + it.maxs));
1077 s = strcat(s, "\n");
1078 s = strcat(s, ftos(it.wpflags));
1079 s = strcat(s, "\n");
1084 waypoint_save_links();
1085 botframe_loadedforcedlinks = false;
1087 LOG_INFOF("saved %d waypoints to %s", c, filename);
1090 // load waypoints from file
1091 float waypoint_loadall()
1094 float file, cwp, cwb, fl;
1099 string gt_ext = GET_GAMETYPE_EXTENSION();
1101 string filename = sprintf("maps/%s.waypoints", strcat(mapname, gt_ext));
1102 file = fopen(filename, FILE_READ);
1104 if (gt_ext != "" && file < 0)
1106 // if race waypoint file doesn't exist load the default one
1107 filename = sprintf("maps/%s.waypoints", mapname);
1108 file = fopen(filename, FILE_READ);
1113 LOG_TRACE("waypoint load from ", filename, " failed");
1117 bool parse_comments = true;
1120 float sym_param1 = 0, sym_param2 = 0, sym_param3 = 0;
1122 while ((s = fgets(file)))
1126 if(substring(s, 0, 2) == "//")
1128 if(substring(s, 2, 17) == "WAYPOINT_VERSION ")
1129 ver = stof(substring(s, 19, -1));
1130 else if(substring(s, 2, 18) == "WAYPOINT_SYMMETRY ")
1132 int tokens = tokenizebyseparator(substring(s, 20, -1), " ");
1133 if (tokens) { sym = stof(argv(0)); }
1134 if (tokens > 1) { sym_param1 = stof(argv(1)); }
1135 if (tokens > 2) { sym_param2 = stof(argv(2)); }
1136 if (tokens > 3) { sym_param3 = stof(argv(3)); }
1142 if(floor(ver) < floor(WAYPOINT_VERSION))
1144 LOG_TRACE("waypoints for this map are outdated");
1145 LOG_TRACE("please update them in the editor");
1147 parse_comments = false;
1159 waypoint_spawn(m1, m2, fl);
1166 LOG_TRACE("loaded ", ftos(cwp), " waypoints and ", ftos(cwb), " wayboxes from maps/", mapname, ".waypoints");
1168 if (autocvar_g_waypointeditor && autocvar_g_waypointeditor_symmetrical_allowload)
1170 cvar_set("g_waypointeditor_symmetrical", ftos(sym));
1171 if (sym == 1 && sym_param3 < 2)
1172 cvar_set("g_waypointeditor_symmetrical_order", "0"); // make sure this is reset if not loaded
1173 if (sym == -1 || (sym == 1 && sym_param3 >= 2))
1177 params = cons("-", "-");
1180 params = cons(ftos(sym_param1), ftos(sym_param2));
1181 cvar_set("g_waypointeditor_symmetrical_origin", params);
1183 cvar_set("g_waypointeditor_symmetrical_order", ftos(sym_param3));
1184 LOG_INFO("Waypoint editor: loaded symmetry ", ftos(sym), " with origin ", params, " and order ", ftos(sym_param3));
1188 string params = strcat(ftos(sym_param1), " ", ftos(sym_param2));
1189 cvar_set("g_waypointeditor_symmetrical_axis", params);
1190 LOG_INFO("Waypoint editor: loaded symmetry ", ftos(sym), " with axis ", params);
1193 LOG_INFO("Waypoint editor: loaded symmetry ", ftos(sym));
1194 LOG_INFO(strcat("g_waypointeditor_symmetrical", " has been set to ", cvar_string("g_waypointeditor_symmetrical")));
1200 #define waypoint_fixorigin(position, tracetest_ent) \
1201 waypoint_fixorigin_down_dir(position, tracetest_ent, '0 0 -1')
1203 vector waypoint_fixorigin_down_dir(vector position, entity tracetest_ent, vector down_dir)
1205 tracebox(position + '0 0 1', PL_MIN_CONST, PL_MAX_CONST, position + down_dir * 3000, MOVE_NOMONSTERS, tracetest_ent);
1206 if(trace_startsolid)
1207 tracebox(position + '0 0 1' * (1 - PL_MIN_CONST.z / 2), PL_MIN_CONST, PL_MAX_CONST, position + down_dir * 3000, MOVE_NOMONSTERS, tracetest_ent);
1208 if(trace_startsolid)
1209 tracebox(position + '0 0 1' * (1 - PL_MIN_CONST.z), PL_MIN_CONST, PL_MAX_CONST, position + down_dir * 3000, MOVE_NOMONSTERS, tracetest_ent);
1210 if(trace_fraction < 1)
1211 position = trace_endpos;
1215 void waypoint_spawnforitem_force(entity e, vector org)
1217 // Fix the waypoint altitude if necessary
1218 org = waypoint_fixorigin(org, NULL);
1220 // don't spawn an item spawnfunc_waypoint if it already exists
1221 IL_EACH(g_waypoints, true,
1225 if(boxesoverlap(org, org, it.absmin, it.absmax))
1227 e.nearestwaypoint = it;
1233 if(vdist(it.origin - org, <, 16))
1235 e.nearestwaypoint = it;
1241 e.nearestwaypoint = waypoint_spawn(org, org, WAYPOINTFLAG_GENERATED | WAYPOINTFLAG_ITEM);
1244 void waypoint_spawnforitem(entity e)
1246 if(!bot_waypoints_for_items)
1249 waypoint_spawnforitem_force(e, e.origin);
1252 void waypoint_spawnforteleporter_boxes(entity e, int teleport_flag, vector org1, vector org2, vector destination1, vector destination2, float timetaken)
1256 w = waypoint_spawn(org1, org2, WAYPOINTFLAG_GENERATED | teleport_flag | WAYPOINTFLAG_NORELINK);
1257 dw = waypoint_spawn(destination1, destination2, WAYPOINTFLAG_GENERATED);
1258 // one way link to the destination
1260 w.wp00mincost = timetaken; // this is just for jump pads
1261 // the teleporter's nearest spawnfunc_waypoint is this one
1262 // (teleporters are not goals, so this is probably useless)
1263 e.nearestwaypoint = w;
1264 e.nearestwaypointtimeout = -1;
1267 void waypoint_spawnforteleporter_wz(entity e, vector org, vector destination, float timetaken, vector down_dir, entity tracetest_ent)
1269 // warpzones with oblique warp plane rely on down_dir to snap waypoints
1270 // to the ground without leaving the warp plane
1271 // warpzones with horizontal warp plane (down_dir.x == -1) generate
1272 // destination waypoint snapped to the ground (leaving warpzone), source
1273 // waypoint in the center of the warp plane
1274 if(down_dir.x != -1)
1275 org = waypoint_fixorigin_down_dir(org, tracetest_ent, down_dir);
1276 if(down_dir.x == -1)
1277 down_dir = '0 0 -1';
1278 destination = waypoint_fixorigin_down_dir(destination, tracetest_ent, down_dir);
1279 waypoint_spawnforteleporter_boxes(e, WAYPOINTFLAG_TELEPORT, org, org, destination, destination, timetaken);
1282 void waypoint_spawnforteleporter(entity e, vector destination, float timetaken, entity tracetest_ent)
1284 destination = waypoint_fixorigin(destination, tracetest_ent);
1285 waypoint_spawnforteleporter_boxes(e, WAYPOINTFLAG_TELEPORT, e.absmin - PL_MAX_CONST + '1 1 1', e.absmax - PL_MIN_CONST + '-1 -1 -1', destination, destination, timetaken);
1288 entity waypoint_spawnpersonal(entity this, vector position)
1292 // drop the waypoint to a proper location:
1293 // first move it up by a player height
1294 // then move it down to hit the floor with player bbox size
1295 position = waypoint_fixorigin(position, this);
1297 w = waypoint_spawn(position, position, WAYPOINTFLAG_GENERATED | WAYPOINTFLAG_PERSONAL);
1298 w.nearestwaypoint = NULL;
1299 w.nearestwaypointtimeout = 0;
1302 waypoint_schedulerelink(w);
1307 void waypoint_showlink(entity wp1, entity wp2, int display_type)
1312 if (wp1.wphardwired && wp2.wphardwired)
1313 te_beam(NULL, wp1.origin, wp2.origin);
1314 else if (display_type == 1)
1315 te_lightning2(NULL, wp1.origin, wp2.origin);
1318 void waypoint_showlinks_to(entity wp, int display_type)
1320 IL_EACH(g_waypoints, it != wp,
1322 if (waypoint_islinked(it, wp))
1323 waypoint_showlink(it, wp, display_type);
1327 void waypoint_showlinks_from(entity wp, int display_type)
1329 waypoint_showlink(wp.wp00, wp, display_type); waypoint_showlink(wp.wp16, wp, display_type);
1330 waypoint_showlink(wp.wp01, wp, display_type); waypoint_showlink(wp.wp17, wp, display_type);
1331 waypoint_showlink(wp.wp02, wp, display_type); waypoint_showlink(wp.wp18, wp, display_type);
1332 waypoint_showlink(wp.wp03, wp, display_type); waypoint_showlink(wp.wp19, wp, display_type);
1333 waypoint_showlink(wp.wp04, wp, display_type); waypoint_showlink(wp.wp20, wp, display_type);
1334 waypoint_showlink(wp.wp05, wp, display_type); waypoint_showlink(wp.wp21, wp, display_type);
1335 waypoint_showlink(wp.wp06, wp, display_type); waypoint_showlink(wp.wp22, wp, display_type);
1336 waypoint_showlink(wp.wp07, wp, display_type); waypoint_showlink(wp.wp23, wp, display_type);
1337 waypoint_showlink(wp.wp08, wp, display_type); waypoint_showlink(wp.wp24, wp, display_type);
1338 waypoint_showlink(wp.wp09, wp, display_type); waypoint_showlink(wp.wp25, wp, display_type);
1339 waypoint_showlink(wp.wp10, wp, display_type); waypoint_showlink(wp.wp26, wp, display_type);
1340 waypoint_showlink(wp.wp11, wp, display_type); waypoint_showlink(wp.wp27, wp, display_type);
1341 waypoint_showlink(wp.wp12, wp, display_type); waypoint_showlink(wp.wp28, wp, display_type);
1342 waypoint_showlink(wp.wp13, wp, display_type); waypoint_showlink(wp.wp29, wp, display_type);
1343 waypoint_showlink(wp.wp14, wp, display_type); waypoint_showlink(wp.wp30, wp, display_type);
1344 waypoint_showlink(wp.wp15, wp, display_type); waypoint_showlink(wp.wp31, wp, display_type);
1347 void botframe_showwaypointlinks()
1349 if (time < botframe_waypointeditorlightningtime)
1351 botframe_waypointeditorlightningtime = time + 0.5;
1352 FOREACH_CLIENT(IS_PLAYER(it) && !it.isbot,
1354 int display_type = 0;
1355 entity head = navigation_findnearestwaypoint(it, false);
1356 it.nearestwaypoint = head; // mainly useful for debug
1357 it.nearestwaypointtimeout = time + 2; // while I'm at it...
1358 if (IS_ONGROUND(it) || it.waterlevel > WATERLEVEL_NONE)
1359 display_type = 1; // default
1360 else if(head && (head.wphardwired))
1361 display_type = 2; // only hardwired
1365 //navigation_testtracewalk = true;
1366 //print("currently selected WP is ", etos(head), "\n");
1367 //navigation_testtracewalk = false;
1370 te_lightning2(NULL, head.origin, it.origin);
1371 if(PHYS_INPUT_BUTTON_CROUCH(it))
1372 waypoint_showlinks_to(head, display_type);
1374 waypoint_showlinks_from(head, display_type);
1380 float botframe_autowaypoints_fixdown(vector v)
1382 tracebox(v, PL_MIN_CONST, PL_MAX_CONST, v + '0 0 -64', MOVE_NOMONSTERS, NULL);
1383 if(trace_fraction >= 1)
1388 float botframe_autowaypoints_createwp(vector v, entity p, .entity fld, float f)
1390 IL_EACH(g_waypoints, boxesoverlap(v - '32 32 32', v + '32 32 32', it.absmin, it.absmax),
1392 // if a matching spawnfunc_waypoint already exists, don't add a duplicate
1396 waypoint_schedulerelink(p.(fld) = waypoint_spawn(v, v, f));
1402 // 0 = no action needed
1403 // -1 = temp fail, try from world too
1404 // -2 = permanent fail, do not retry
1405 float botframe_autowaypoints_fix_from(entity p, float walkfromwp, entity wp, .entity fld)
1407 // make it possible to go from p to wp, if we can
1408 // if wp is NULL, nearest is chosen
1412 float t, tmin, tmax;
1416 if(!botframe_autowaypoints_fixdown(p.origin))
1418 porg = trace_endpos;
1422 // if any WP w fulfills wp -> w -> porg and w is closer than wp, then switch from wp to w
1424 // if wp -> porg, then OK
1426 if(navigation_waypoint_will_link(wp.origin, porg, p, porg, 0, wp.origin, 0, walkfromwp, 1050))
1428 // we may find a better one
1429 maxdist = vlen(wp.origin - porg);
1433 // accept any "good"
1437 float bestdist = maxdist;
1438 IL_EACH(g_waypoints, it != wp && !(it.wpflags & WAYPOINTFLAG_NORELINK),
1440 float d = vlen(wp.origin - it.origin) + vlen(it.origin - porg);
1442 if(navigation_waypoint_will_link(wp.origin, it.origin, p, it.origin, 0, wp.origin, 0, walkfromwp, 1050))
1443 if(navigation_waypoint_will_link(it.origin, porg, p, porg, 0, it.origin, 0, walkfromwp, 1050))
1449 if(bestdist < maxdist)
1451 LOG_INFO("update chain to new nearest WP ", etos(p.(fld)));
1457 // we know maxdist < 2100
1458 // so wp -> porg is still valid
1464 // otherwise, no existing WP can fix our issues
1470 w = navigation_findnearestwaypoint(p, walkfromwp);
1483 if(tmax - tmin < 0.001)
1485 // did not get a good candidate
1489 t = (tmin + tmax) * 0.5;
1490 o = antilag_takebackorigin(p, CS(p), time - t);
1491 if(!botframe_autowaypoints_fixdown(o))
1497 if(!navigation_waypoint_will_link(wp.origin, o, p, o, 0, wp.origin, 0, walkfromwp, 1050))
1499 // we cannot walk from wp.origin to o
1500 // get closer to tmax
1509 w = navigation_findnearestwaypoint(p, walkfromwp);
1513 // we cannot walk from any WP to o
1514 // get closer to tmax
1520 // if we get here, o is valid regarding waypoints
1521 // check if o is connected right to the player
1522 // we break if it succeeds, as that means o is a good waypoint location
1523 if(navigation_waypoint_will_link(o, porg, p, porg, 0, o, 0, walkfromwp, 1050))
1526 // o is no good, we need to get closer to the player
1530 LOG_INFO("spawning a waypoint for connecting to ", etos(wp));
1531 botframe_autowaypoints_createwp(o, p, fld, 0);
1535 // automatically create missing waypoints
1536 .entity botframe_autowaypoints_lastwp0, botframe_autowaypoints_lastwp1;
1537 void botframe_autowaypoints_fix(entity p, float walkfromwp, .entity fld)
1539 float r = botframe_autowaypoints_fix_from(p, walkfromwp, p.(fld), fld);
1542 r = botframe_autowaypoints_fix_from(p, walkfromwp, NULL, fld);
1546 LOG_INFO("emergency: got no good nearby WP to build a link from, starting a new chain");
1547 if(!botframe_autowaypoints_fixdown(p.origin))
1548 return; // shouldn't happen, caught above
1549 botframe_autowaypoints_createwp(trace_endpos, p, fld, WAYPOINTFLAG_PROTECTED);
1552 void botframe_deleteuselesswaypoints()
1554 IL_EACH(g_items, it.bot_pickup,
1556 // NOTE: this protects waypoints if they're the ONLY nearest
1557 // waypoint. That's the intention.
1558 navigation_findnearestwaypoint(it, false); // Walk TO item.
1559 navigation_findnearestwaypoint(it, true); // Walk FROM item.
1561 IL_EACH(g_waypoints, true,
1563 it.wpflags |= WAYPOINTFLAG_DEAD_END;
1564 it.wpflags &= ~WAYPOINTFLAG_USEFUL;
1566 if (it.wpflags & WAYPOINTFLAG_ITEM)
1567 it.wpflags |= WAYPOINTFLAG_USEFUL;
1568 if (it.wpflags & WAYPOINTFLAG_TELEPORT)
1569 it.wpflags |= WAYPOINTFLAG_USEFUL;
1570 if (it.wpflags & WAYPOINTFLAG_LADDER)
1571 it.wpflags |= WAYPOINTFLAG_USEFUL;
1572 if (it.wpflags & WAYPOINTFLAG_PROTECTED)
1573 it.wpflags |= WAYPOINTFLAG_USEFUL;
1574 // b) WP is closest WP for an item/spawnpoint/other entity
1575 // This has been done above by protecting these WPs.
1577 // c) There are w1, w, w2 so that w1 -> w, w -> w2 and not w1 -> w2.
1578 IL_EACH(g_waypoints, !(it.wpflags & WAYPOINTFLAG_PERSONAL),
1580 for (int m = 0; m < 32; ++m)
1582 entity w = waypoint_get_link(it, m);
1585 if (w.wpflags & WAYPOINTFLAG_PERSONAL)
1587 if (w.wpflags & WAYPOINTFLAG_USEFUL)
1589 for (int j = 0; j < 32; ++j)
1591 entity w2 = waypoint_get_link(w, j);
1596 if (w2.wpflags & WAYPOINTFLAG_PERSONAL)
1598 // If we got here, it != w2 exist with it -> w
1599 // and w -> w2. That means the waypoint is not
1601 w.wpflags &= ~WAYPOINTFLAG_DEAD_END;
1602 for (int k = 0; k < 32; ++k)
1604 if (waypoint_get_link(it, k) == w2)
1606 // IF WE GET HERE, w is proven useful
1607 // to get from it to w2!
1608 w.wpflags |= WAYPOINTFLAG_USEFUL;
1615 // d) The waypoint is a dead end. Dead end waypoints must be kept as
1616 // they are needed to complete routes while autowaypointing.
1618 IL_EACH(g_waypoints, !(it.wpflags & (WAYPOINTFLAG_USEFUL | WAYPOINTFLAG_DEAD_END)),
1620 LOG_INFOF("Removed a waypoint at %v. Try again for more!", it.origin);
1621 te_explosion(it.origin);
1622 waypoint_remove(it);
1626 IL_EACH(g_waypoints, true,
1628 it.wpflags &= ~(WAYPOINTFLAG_USEFUL | WAYPOINTFLAG_DEAD_END); // temp flag
1632 void botframe_autowaypoints()
1634 FOREACH_CLIENT(IS_PLAYER(it) && IS_REAL_CLIENT(it) && !IS_DEAD(it), {
1635 // going back is broken, so only fix waypoints to walk TO the player
1636 //botframe_autowaypoints_fix(p, false, botframe_autowaypoints_lastwp0);
1637 botframe_autowaypoints_fix(it, true, botframe_autowaypoints_lastwp1);
1638 //te_explosion(p.botframe_autowaypoints_lastwp0.origin);
1641 if (autocvar_g_waypointeditor_auto >= 2) {
1642 botframe_deleteuselesswaypoints();