]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/bot/default/waypoints.qc
Fix incorrect distance calculation between 2 waypoints when destination waypoint...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / bot / default / waypoints.qc
1 #include "waypoints.qh"
2
3 #include "cvars.qh"
4
5 #include "bot.qh"
6 #include "navigation.qh"
7
8 #include <common/state.qh>
9
10 #include "../../antilag.qh"
11
12 #include <common/constants.qh>
13 #include <common/net_linked.qh>
14
15 #include <lib/warpzone/common.qh>
16 #include <lib/warpzone/util_server.qh>
17
18 .entity spawnpointmodel;
19 void waypoint_unreachable(entity pl)
20 {
21         IL_EACH(g_waypoints, true,
22         {
23                 it.colormod = '0.5 0.5 0.5';
24                 it.effects &= ~(EF_NODEPTHTEST | EF_RED | EF_BLUE);
25         });
26         entity e2 = navigation_findnearestwaypoint(pl, false);
27         navigation_markroutes(pl, e2);
28
29         int j = 0;
30         int m = 0;
31         IL_EACH(g_waypoints, it.wpcost >= 10000000,
32         {
33                 LOG_INFO("unreachable: ", etos(it), " ", vtos(it.origin), "\n");
34                 it.colormod_z = 8;
35                 it.effects |= EF_NODEPTHTEST | EF_BLUE;
36                 j++;
37                 m++;
38         });
39         if (j) LOG_INFOF("%d waypoints cannot be reached from here in any way (marked with blue light)\n", j);
40         navigation_markroutes_inverted(e2);
41
42         j = 0;
43         IL_EACH(g_waypoints, it.wpcost >= 10000000,
44         {
45                 LOG_INFO("cannot reach me: ", etos(it), " ", vtos(it.origin), "\n");
46                 it.colormod_x = 8;
47                 if (!(it.effects & EF_NODEPTHTEST))  // not already reported before
48                         m++;
49                 it.effects |= EF_NODEPTHTEST | EF_RED;
50                 j++;
51         });
52         if (j) LOG_INFOF("%d waypoints cannot walk to here in any way (marked with red light)\n", j);
53         if (m) LOG_INFOF("%d waypoints have been marked total\n", m);
54
55         j = 0;
56         IL_EACH(g_spawnpoints, true,
57         {
58                 if (navigation_findnearestwaypoint(it, false))
59                 {
60                         if(it.spawnpointmodel)
61                         {
62                                 delete(it.spawnpointmodel);
63                                 it.spawnpointmodel = NULL;
64                         }
65                 }
66                 else
67                 {
68                         if(!it.spawnpointmodel)
69                         {
70                                 tracebox(it.origin, PL_MIN_CONST, PL_MAX_CONST, it.origin - '0 0 512', MOVE_NOMONSTERS, NULL);
71                                 entity e = new(spawnpointmodel);
72                                 vector org = trace_endpos + eZ;
73                                 setorigin(e, org);
74                                 e.solid = SOLID_TRIGGER;
75                                 it.spawnpointmodel = e;
76                         }
77                         LOG_INFO("spawn without waypoint: ", etos(it), " ", vtos(it.origin), "\n");
78                         it.spawnpointmodel.effects |= EF_NODEPTHTEST;
79                         _setmodel(it.spawnpointmodel, pl.model);
80                         it.spawnpointmodel.frame = pl.frame;
81                         it.spawnpointmodel.skin = pl.skin;
82                         it.spawnpointmodel.colormap = pl.colormap;
83                         it.spawnpointmodel.colormod = pl.colormod;
84                         it.spawnpointmodel.glowmod = pl.glowmod;
85                         setsize(it.spawnpointmodel, PL_MIN_CONST, PL_MAX_CONST);
86                         j++;
87                 }
88         });
89         if (j) LOG_INFOF("%d spawnpoints have no nearest waypoint (marked by player model)\n", j);
90
91         j = 0;
92         IL_EACH(g_items, true,
93         {
94                 it.effects &= ~(EF_NODEPTHTEST | EF_RED | EF_BLUE);
95                 it.colormod = '0.5 0.5 0.5';
96         });
97         IL_EACH(g_items, true,
98         {
99                 if (navigation_findnearestwaypoint(it, false))
100                         continue;
101                 LOG_INFO("item without waypoint: ", etos(it), " ", vtos(it.origin), "\n");
102                 it.effects |= EF_NODEPTHTEST | EF_RED;
103                 it.colormod_x = 8;
104                 j++;
105         });
106         if (j) LOG_INFOF("%d items have no nearest waypoint and cannot be walked away from (marked with red light)\n", j);
107
108         j = 0;
109         IL_EACH(g_items, true,
110         {
111                 if (navigation_findnearestwaypoint(it, true))
112                         continue;
113                 LOG_INFO("item without waypoint: ", etos(it), " ", vtos(it.origin), "\n");
114                 it.effects |= EF_NODEPTHTEST | EF_BLUE;
115                 it.colormod_z = 8;
116                 j++;
117         });
118         if (j) LOG_INFOF("%d items have no nearest waypoint and cannot be walked to (marked with blue light)\n", j);
119 }
120
121 vector waypoint_getSymmetricalOrigin(vector org, int ctf_flags)
122 {
123         vector new_org = org;
124         if (fabs(autocvar_g_waypointeditor_symmetrical) == 1)
125         {
126                 vector map_center = havocbot_middlepoint;
127                 if (autocvar_g_waypointeditor_symmetrical == -1)
128                         map_center = autocvar_g_waypointeditor_symmetrical_origin;
129
130                 new_org = Rotate(org - map_center, 360 * DEG2RAD / ctf_flags) + map_center;
131         }
132         else if (fabs(autocvar_g_waypointeditor_symmetrical) == 2)
133         {
134                 float m = havocbot_symmetryaxis_equation.x;
135                 float q = havocbot_symmetryaxis_equation.y;
136                 if (autocvar_g_waypointeditor_symmetrical == -2)
137                 {
138                         m = autocvar_g_waypointeditor_symmetrical_axis.x;
139                         q = autocvar_g_waypointeditor_symmetrical_axis.y;
140                 }
141
142                 new_org.x = (1 / (1 + m*m)) * ((1 - m*m) * org.x + 2 * m * org.y - 2 * m * q);
143                 new_org.y = (1 / (1 + m*m)) * (2 * m * org.x + (m*m - 1) * org.y + 2 * q);
144         }
145         new_org.z = org.z;
146         return new_org;
147 }
148
149 void waypoint_setupmodel(entity wp)
150 {
151         if (autocvar_g_waypointeditor)
152         {
153                 // TODO: add some sort of visible box in edit mode for box waypoints
154                 vector m1 = wp.mins;
155                 vector m2 = wp.maxs;
156                 setmodel(wp, MDL_WAYPOINT);
157                 setsize(wp, m1, m2);
158                 wp.effects = EF_LOWPRECISION;
159                 if (wp.wpflags & WAYPOINTFLAG_ITEM)
160                         wp.colormod = '1 0 0';
161                 else if (wp.wpflags & WAYPOINTFLAG_GENERATED)
162                         wp.colormod = '1 1 0';
163                 else
164                         wp.colormod = '1 1 1';
165         }
166         else
167                 wp.model = "";
168 }
169
170 // create a new spawnfunc_waypoint and automatically link it to other waypoints, and link
171 // them back to it as well
172 // (suitable for spawnfunc_waypoint editor)
173 entity waypoint_spawn(vector m1, vector m2, float f)
174 {
175         if(!(f & WAYPOINTFLAG_PERSONAL))
176         {
177                 IL_EACH(g_waypoints, boxesoverlap(m1, m2, it.absmin, it.absmax),
178                 {
179                         return it;
180                 });
181         }
182
183         entity w = new(waypoint);
184         IL_PUSH(g_waypoints, w);
185         w.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_PLAYERCLIP | DPCONTENTS_BOTCLIP;
186         w.wpflags = f;
187         w.solid = SOLID_TRIGGER;
188         setorigin(w, (m1 + m2) * 0.5);
189         setsize(w, m1 - w.origin, m2 - w.origin);
190         if (w.size)
191                 w.wpisbox = true;
192
193         if(!w.wpisbox)
194         {
195                 setsize(w, PL_MIN_CONST - '1 1 0', PL_MAX_CONST + '1 1 0');
196                 if(!move_out_of_solid(w))
197                 {
198                         if(!(f & WAYPOINTFLAG_GENERATED))
199                         {
200                                 LOG_TRACE("Killed a waypoint that was stuck in solid at ", vtos(w.origin));
201                                 delete(w);
202                                 return NULL;
203                         }
204                         else
205                         {
206                                 if(autocvar_developer)
207                                 {
208                                         LOG_INFO("A generated waypoint is stuck in solid at ", vtos(w.origin), "\n");
209                                         backtrace("Waypoint stuck");
210                                 }
211                         }
212                 }
213                 setsize(w, '0 0 0', '0 0 0');
214         }
215
216         waypoint_clearlinks(w);
217         //waypoint_schedulerelink(w);
218
219         waypoint_setupmodel(w);
220
221         return w;
222 }
223
224 void waypoint_spawn_fromeditor(entity pl)
225 {
226         entity e;
227         vector org = pl.origin;
228         int ctf_flags = havocbot_symmetryaxis_equation.z;
229         bool sym = ((autocvar_g_waypointeditor_symmetrical > 0 && ctf_flags >= 2)
230                    || (autocvar_g_waypointeditor_symmetrical < 0));
231         int order = ctf_flags;
232         if(autocvar_g_waypointeditor_symmetrical_order >= 2)
233         {
234                 order = autocvar_g_waypointeditor_symmetrical_order;
235                 ctf_flags = order;
236         }
237
238         LABEL(add_wp);
239         e = waypoint_spawn(org, org, 0);
240         waypoint_schedulerelink(e);
241         bprint(strcat("Waypoint spawned at ", vtos(org), "\n"));
242         if(sym)
243         {
244                 org = waypoint_getSymmetricalOrigin(e.origin, ctf_flags);
245                 if (vdist(org - pl.origin, >, 32))
246                 {
247                         if(order > 2)
248                                 order--;
249                         else
250                                 sym = false;
251                         goto add_wp;
252                 }
253         }
254 }
255
256 void waypoint_remove(entity wp)
257 {
258         // tell all waypoints linked to wp that they need to relink
259         IL_EACH(g_waypoints, it != wp,
260         {
261                 if (waypoint_islinked(it, wp))
262                         waypoint_removelink(it, wp);
263         });
264         delete(wp);
265 }
266
267 void waypoint_remove_fromeditor(entity pl)
268 {
269         entity e = navigation_findnearestwaypoint(pl, false);
270
271         int ctf_flags = havocbot_symmetryaxis_equation.z;
272         bool sym = ((autocvar_g_waypointeditor_symmetrical > 0 && ctf_flags >= 2)
273                    || (autocvar_g_waypointeditor_symmetrical < 0));
274         int order = ctf_flags;
275         if(autocvar_g_waypointeditor_symmetrical_order >= 2)
276         {
277                 order = autocvar_g_waypointeditor_symmetrical_order;
278                 ctf_flags = order;
279         }
280
281         LABEL(remove_wp);
282         if (!e) return;
283         if (e.wpflags & WAYPOINTFLAG_GENERATED) return;
284
285         if (e.wphardwired)
286         {
287                 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");
288                 return;
289         }
290
291         entity wp_sym = NULL;
292         if (sym)
293         {
294                 vector org = waypoint_getSymmetricalOrigin(e.origin, ctf_flags);
295                 FOREACH_ENTITY_CLASS("waypoint", !(it.wpflags & WAYPOINTFLAG_GENERATED), {
296                         if(vdist(org - it.origin, <, 3))
297                         {
298                                 wp_sym = it;
299                                 break;
300                         }
301                 });
302         }
303
304         bprint(strcat("Waypoint removed at ", vtos(e.origin), "\n"));
305         waypoint_remove(e);
306
307         if (sym && wp_sym)
308         {
309                 e = wp_sym;
310                 if(order > 2)
311                         order--;
312                 else
313                         sym = false;
314                 goto remove_wp;
315         }
316 }
317
318 void waypoint_removelink(entity from, entity to)
319 {
320         if (from == to || (from.wpflags & WAYPOINTFLAG_NORELINK))
321                 return;
322
323         bool found = false;
324         if (!found && from.wp00 == to) found = true; if (found) {from.wp00 = from.wp01; from.wp00mincost = from.wp01mincost;}
325         if (!found && from.wp01 == to) found = true; if (found) {from.wp01 = from.wp02; from.wp01mincost = from.wp02mincost;}
326         if (!found && from.wp02 == to) found = true; if (found) {from.wp02 = from.wp03; from.wp02mincost = from.wp03mincost;}
327         if (!found && from.wp03 == to) found = true; if (found) {from.wp03 = from.wp04; from.wp03mincost = from.wp04mincost;}
328         if (!found && from.wp04 == to) found = true; if (found) {from.wp04 = from.wp05; from.wp04mincost = from.wp05mincost;}
329         if (!found && from.wp05 == to) found = true; if (found) {from.wp05 = from.wp06; from.wp05mincost = from.wp06mincost;}
330         if (!found && from.wp06 == to) found = true; if (found) {from.wp06 = from.wp07; from.wp06mincost = from.wp07mincost;}
331         if (!found && from.wp07 == to) found = true; if (found) {from.wp07 = from.wp08; from.wp07mincost = from.wp08mincost;}
332         if (!found && from.wp08 == to) found = true; if (found) {from.wp08 = from.wp09; from.wp08mincost = from.wp09mincost;}
333         if (!found && from.wp09 == to) found = true; if (found) {from.wp09 = from.wp10; from.wp09mincost = from.wp10mincost;}
334         if (!found && from.wp10 == to) found = true; if (found) {from.wp10 = from.wp11; from.wp10mincost = from.wp11mincost;}
335         if (!found && from.wp11 == to) found = true; if (found) {from.wp11 = from.wp12; from.wp11mincost = from.wp12mincost;}
336         if (!found && from.wp12 == to) found = true; if (found) {from.wp12 = from.wp13; from.wp12mincost = from.wp13mincost;}
337         if (!found && from.wp13 == to) found = true; if (found) {from.wp13 = from.wp14; from.wp13mincost = from.wp14mincost;}
338         if (!found && from.wp14 == to) found = true; if (found) {from.wp14 = from.wp15; from.wp14mincost = from.wp15mincost;}
339         if (!found && from.wp15 == to) found = true; if (found) {from.wp15 = from.wp16; from.wp15mincost = from.wp16mincost;}
340         if (!found && from.wp16 == to) found = true; if (found) {from.wp16 = from.wp17; from.wp16mincost = from.wp17mincost;}
341         if (!found && from.wp17 == to) found = true; if (found) {from.wp17 = from.wp18; from.wp17mincost = from.wp18mincost;}
342         if (!found && from.wp18 == to) found = true; if (found) {from.wp18 = from.wp19; from.wp18mincost = from.wp19mincost;}
343         if (!found && from.wp19 == to) found = true; if (found) {from.wp19 = from.wp20; from.wp19mincost = from.wp20mincost;}
344         if (!found && from.wp20 == to) found = true; if (found) {from.wp20 = from.wp21; from.wp20mincost = from.wp21mincost;}
345         if (!found && from.wp21 == to) found = true; if (found) {from.wp21 = from.wp22; from.wp21mincost = from.wp22mincost;}
346         if (!found && from.wp22 == to) found = true; if (found) {from.wp22 = from.wp23; from.wp22mincost = from.wp23mincost;}
347         if (!found && from.wp23 == to) found = true; if (found) {from.wp23 = from.wp24; from.wp23mincost = from.wp24mincost;}
348         if (!found && from.wp24 == to) found = true; if (found) {from.wp24 = from.wp25; from.wp24mincost = from.wp25mincost;}
349         if (!found && from.wp25 == to) found = true; if (found) {from.wp25 = from.wp26; from.wp25mincost = from.wp26mincost;}
350         if (!found && from.wp26 == to) found = true; if (found) {from.wp26 = from.wp27; from.wp26mincost = from.wp27mincost;}
351         if (!found && from.wp27 == to) found = true; if (found) {from.wp27 = from.wp28; from.wp27mincost = from.wp28mincost;}
352         if (!found && from.wp28 == to) found = true; if (found) {from.wp28 = from.wp29; from.wp28mincost = from.wp29mincost;}
353         if (!found && from.wp29 == to) found = true; if (found) {from.wp29 = from.wp30; from.wp29mincost = from.wp30mincost;}
354         if (!found && from.wp30 == to) found = true; if (found) {from.wp30 = from.wp31; from.wp30mincost = from.wp31mincost;}
355         if (found) {from.wp31 = NULL; from.wp31mincost = 10000000;}
356 }
357
358 bool waypoint_islinked(entity from, entity to)
359 {
360         if (from.wp00 == to) return true;if (from.wp01 == to) return true;if (from.wp02 == to) return true;if (from.wp03 == to) return true;
361         if (from.wp04 == to) return true;if (from.wp05 == to) return true;if (from.wp06 == to) return true;if (from.wp07 == to) return true;
362         if (from.wp08 == to) return true;if (from.wp09 == to) return true;if (from.wp10 == to) return true;if (from.wp11 == to) return true;
363         if (from.wp12 == to) return true;if (from.wp13 == to) return true;if (from.wp14 == to) return true;if (from.wp15 == to) return true;
364         if (from.wp16 == to) return true;if (from.wp17 == to) return true;if (from.wp18 == to) return true;if (from.wp19 == to) return true;
365         if (from.wp20 == to) return true;if (from.wp21 == to) return true;if (from.wp22 == to) return true;if (from.wp23 == to) return true;
366         if (from.wp24 == to) return true;if (from.wp25 == to) return true;if (from.wp26 == to) return true;if (from.wp27 == to) return true;
367         if (from.wp28 == to) return true;if (from.wp29 == to) return true;if (from.wp30 == to) return true;if (from.wp31 == to) return true;
368         return false;
369 }
370
371 // add a new link to the spawnfunc_waypoint, replacing the furthest link it already has
372 void waypoint_addlink(entity from, entity to)
373 {
374         float c;
375
376         if (from == to)
377                 return;
378         if (from.wpflags & WAYPOINTFLAG_NORELINK)
379                 return;
380
381         if (waypoint_islinked(from, to))
382                 return;
383
384         if (to.wpisbox || from.wpisbox)
385         {
386                 // if either is a box we have to find the nearest points on them to
387                 // calculate the distance properly
388                 vector v1, v2, m1, m2;
389                 v1 = from.origin;
390                 m1 = to.absmin;
391                 m2 = to.absmax;
392                 v1_x = bound(m1_x, v1_x, m2_x);
393                 v1_y = bound(m1_y, v1_y, m2_y);
394                 v1_z = bound(m1_z, v1_z, m2_z);
395                 v2 = to.origin;
396                 m1 = from.absmin;
397                 m2 = from.absmax;
398                 v2_x = bound(m1_x, v2_x, m2_x);
399                 v2_y = bound(m1_y, v2_y, m2_y);
400                 v2_z = bound(m1_z, v2_z, m2_z);
401                 c = vlen(v2 - v1);
402         }
403         else
404                 c = vlen(to.origin - from.origin);
405
406         if (from.wp31mincost < c) return;
407         if (from.wp30mincost < c) {from.wp31 = to;from.wp31mincost = c;return;} from.wp31 = from.wp30;from.wp31mincost = from.wp30mincost;
408         if (from.wp29mincost < c) {from.wp30 = to;from.wp30mincost = c;return;} from.wp30 = from.wp29;from.wp30mincost = from.wp29mincost;
409         if (from.wp28mincost < c) {from.wp29 = to;from.wp29mincost = c;return;} from.wp29 = from.wp28;from.wp29mincost = from.wp28mincost;
410         if (from.wp27mincost < c) {from.wp28 = to;from.wp28mincost = c;return;} from.wp28 = from.wp27;from.wp28mincost = from.wp27mincost;
411         if (from.wp26mincost < c) {from.wp27 = to;from.wp27mincost = c;return;} from.wp27 = from.wp26;from.wp27mincost = from.wp26mincost;
412         if (from.wp25mincost < c) {from.wp26 = to;from.wp26mincost = c;return;} from.wp26 = from.wp25;from.wp26mincost = from.wp25mincost;
413         if (from.wp24mincost < c) {from.wp25 = to;from.wp25mincost = c;return;} from.wp25 = from.wp24;from.wp25mincost = from.wp24mincost;
414         if (from.wp23mincost < c) {from.wp24 = to;from.wp24mincost = c;return;} from.wp24 = from.wp23;from.wp24mincost = from.wp23mincost;
415         if (from.wp22mincost < c) {from.wp23 = to;from.wp23mincost = c;return;} from.wp23 = from.wp22;from.wp23mincost = from.wp22mincost;
416         if (from.wp21mincost < c) {from.wp22 = to;from.wp22mincost = c;return;} from.wp22 = from.wp21;from.wp22mincost = from.wp21mincost;
417         if (from.wp20mincost < c) {from.wp21 = to;from.wp21mincost = c;return;} from.wp21 = from.wp20;from.wp21mincost = from.wp20mincost;
418         if (from.wp19mincost < c) {from.wp20 = to;from.wp20mincost = c;return;} from.wp20 = from.wp19;from.wp20mincost = from.wp19mincost;
419         if (from.wp18mincost < c) {from.wp19 = to;from.wp19mincost = c;return;} from.wp19 = from.wp18;from.wp19mincost = from.wp18mincost;
420         if (from.wp17mincost < c) {from.wp18 = to;from.wp18mincost = c;return;} from.wp18 = from.wp17;from.wp18mincost = from.wp17mincost;
421         if (from.wp16mincost < c) {from.wp17 = to;from.wp17mincost = c;return;} from.wp17 = from.wp16;from.wp17mincost = from.wp16mincost;
422         if (from.wp15mincost < c) {from.wp16 = to;from.wp16mincost = c;return;} from.wp16 = from.wp15;from.wp16mincost = from.wp15mincost;
423         if (from.wp14mincost < c) {from.wp15 = to;from.wp15mincost = c;return;} from.wp15 = from.wp14;from.wp15mincost = from.wp14mincost;
424         if (from.wp13mincost < c) {from.wp14 = to;from.wp14mincost = c;return;} from.wp14 = from.wp13;from.wp14mincost = from.wp13mincost;
425         if (from.wp12mincost < c) {from.wp13 = to;from.wp13mincost = c;return;} from.wp13 = from.wp12;from.wp13mincost = from.wp12mincost;
426         if (from.wp11mincost < c) {from.wp12 = to;from.wp12mincost = c;return;} from.wp12 = from.wp11;from.wp12mincost = from.wp11mincost;
427         if (from.wp10mincost < c) {from.wp11 = to;from.wp11mincost = c;return;} from.wp11 = from.wp10;from.wp11mincost = from.wp10mincost;
428         if (from.wp09mincost < c) {from.wp10 = to;from.wp10mincost = c;return;} from.wp10 = from.wp09;from.wp10mincost = from.wp09mincost;
429         if (from.wp08mincost < c) {from.wp09 = to;from.wp09mincost = c;return;} from.wp09 = from.wp08;from.wp09mincost = from.wp08mincost;
430         if (from.wp07mincost < c) {from.wp08 = to;from.wp08mincost = c;return;} from.wp08 = from.wp07;from.wp08mincost = from.wp07mincost;
431         if (from.wp06mincost < c) {from.wp07 = to;from.wp07mincost = c;return;} from.wp07 = from.wp06;from.wp07mincost = from.wp06mincost;
432         if (from.wp05mincost < c) {from.wp06 = to;from.wp06mincost = c;return;} from.wp06 = from.wp05;from.wp06mincost = from.wp05mincost;
433         if (from.wp04mincost < c) {from.wp05 = to;from.wp05mincost = c;return;} from.wp05 = from.wp04;from.wp05mincost = from.wp04mincost;
434         if (from.wp03mincost < c) {from.wp04 = to;from.wp04mincost = c;return;} from.wp04 = from.wp03;from.wp04mincost = from.wp03mincost;
435         if (from.wp02mincost < c) {from.wp03 = to;from.wp03mincost = c;return;} from.wp03 = from.wp02;from.wp03mincost = from.wp02mincost;
436         if (from.wp01mincost < c) {from.wp02 = to;from.wp02mincost = c;return;} from.wp02 = from.wp01;from.wp02mincost = from.wp01mincost;
437         if (from.wp00mincost < c) {from.wp01 = to;from.wp01mincost = c;return;} from.wp01 = from.wp00;from.wp01mincost = from.wp00mincost;
438         from.wp00 = to;from.wp00mincost = c;return;
439 }
440
441 // relink this spawnfunc_waypoint
442 // (precompile a list of all reachable waypoints from this spawnfunc_waypoint)
443 // (SLOW!)
444 void waypoint_think(entity this)
445 {
446         vector sv, sm1, sm2, ev, em1, em2, dv;
447
448         bot_calculate_stepheightvec();
449
450         bot_navigation_movemode = ((autocvar_bot_navigation_ignoreplayers) ? MOVE_NOMONSTERS : MOVE_NORMAL);
451
452         //dprint("waypoint_think wpisbox = ", ftos(this.wpisbox), "\n");
453         sm1 = this.origin + this.mins;
454         sm2 = this.origin + this.maxs;
455         IL_EACH(g_waypoints, this != it,
456         {
457                 if (boxesoverlap(this.absmin, this.absmax, it.absmin, it.absmax))
458                 {
459                         waypoint_addlink(this, it);
460                         waypoint_addlink(it, this);
461                 }
462                 else
463                 {
464                         ++relink_total;
465                         if(!checkpvs(this.origin, it))
466                         {
467                                 ++relink_pvsculled;
468                                 continue;
469                         }
470                         sv = it.origin;
471                         sv.x = bound(sm1_x, sv.x, sm2_x);
472                         sv.y = bound(sm1_y, sv.y, sm2_y);
473                         sv.z = bound(sm1_z, sv.z, sm2_z);
474                         ev = this.origin;
475                         em1 = it.origin + it.mins;
476                         em2 = it.origin + it.maxs;
477                         ev.x = bound(em1_x, ev.x, em2_x);
478                         ev.y = bound(em1_y, ev.y, em2_y);
479                         ev.z = bound(em1_z, ev.z, em2_z);
480                         dv = ev - sv;
481                         dv.z = 0;
482                         if(vdist(dv, >=, 1050)) // max search distance in XY
483                         {
484                                 ++relink_lengthculled;
485                                 continue;
486                         }
487                         navigation_testtracewalk = 0;
488                         if (!this.wpisbox)
489                         {
490                                 tracebox(sv - PL_MIN_CONST.z * '0 0 1', PL_MIN_CONST, PL_MAX_CONST, sv, false, this);
491                                 if (!trace_startsolid)
492                                 {
493                                         //dprint("sv deviation", vtos(trace_endpos - sv), "\n");
494                                         sv = trace_endpos + '0 0 1';
495                                 }
496                         }
497                         if (!it.wpisbox)
498                         {
499                                 tracebox(ev - PL_MIN_CONST.z * '0 0 1', PL_MIN_CONST, PL_MAX_CONST, ev, false, it);
500                                 if (!trace_startsolid)
501                                 {
502                                         //dprint("ev deviation", vtos(trace_endpos - ev), "\n");
503                                         ev = trace_endpos + '0 0 1';
504                                 }
505                         }
506                         //traceline(this.origin, it.origin, false, NULL);
507                         //if (trace_fraction == 1)
508                         if (!this.wpisbox && tracewalk(this, sv, PL_MIN_CONST, PL_MAX_CONST, ev, MOVE_NOMONSTERS))
509                                 waypoint_addlink(this, it);
510                         else
511                                 relink_walkculled += 0.5;
512                         if (!it.wpisbox && tracewalk(it, ev, PL_MIN_CONST, PL_MAX_CONST, sv, MOVE_NOMONSTERS))
513                                 waypoint_addlink(it, this);
514                         else
515                                 relink_walkculled += 0.5;
516                 }
517         });
518         navigation_testtracewalk = 0;
519         this.wplinked = true;
520 }
521
522 void waypoint_clearlinks(entity wp)
523 {
524         // clear links to other waypoints
525         float f = 10000000;
526         wp.wp00 = wp.wp01 = wp.wp02 = wp.wp03 = wp.wp04 = wp.wp05 = wp.wp06 = wp.wp07 = NULL;
527         wp.wp08 = wp.wp09 = wp.wp10 = wp.wp11 = wp.wp12 = wp.wp13 = wp.wp14 = wp.wp15 = NULL;
528         wp.wp16 = wp.wp17 = wp.wp18 = wp.wp19 = wp.wp20 = wp.wp21 = wp.wp22 = wp.wp23 = NULL;
529         wp.wp24 = wp.wp25 = wp.wp26 = wp.wp27 = wp.wp28 = wp.wp29 = wp.wp30 = wp.wp31 = NULL;
530
531         wp.wp00mincost = wp.wp01mincost = wp.wp02mincost = wp.wp03mincost = wp.wp04mincost = wp.wp05mincost = wp.wp06mincost = wp.wp07mincost = f;
532         wp.wp08mincost = wp.wp09mincost = wp.wp10mincost = wp.wp11mincost = wp.wp12mincost = wp.wp13mincost = wp.wp14mincost = wp.wp15mincost = f;
533         wp.wp16mincost = wp.wp17mincost = wp.wp18mincost = wp.wp19mincost = wp.wp20mincost = wp.wp21mincost = wp.wp22mincost = wp.wp23mincost = f;
534         wp.wp24mincost = wp.wp25mincost = wp.wp26mincost = wp.wp27mincost = wp.wp28mincost = wp.wp29mincost = wp.wp30mincost = wp.wp31mincost = f;
535
536         wp.wplinked = false;
537 }
538
539 // tell a spawnfunc_waypoint to relink
540 void waypoint_schedulerelink(entity wp)
541 {
542         if (wp == NULL)
543                 return;
544
545         waypoint_setupmodel(wp);
546         wp.wpisbox = vdist(wp.size, >, 0);
547         wp.enemy = NULL;
548         if (!(wp.wpflags & WAYPOINTFLAG_PERSONAL))
549                 wp.owner = NULL;
550         if (!(wp.wpflags & WAYPOINTFLAG_NORELINK))
551                 waypoint_clearlinks(wp);
552         // schedule an actual relink on next frame
553         setthink(wp, waypoint_think);
554         wp.nextthink = time;
555         wp.effects = EF_LOWPRECISION;
556 }
557
558 // spawnfunc_waypoint map entity
559 spawnfunc(waypoint)
560 {
561         IL_PUSH(g_waypoints, this);
562
563         setorigin(this, this.origin);
564         // schedule a relink after other waypoints have had a chance to spawn
565         waypoint_clearlinks(this);
566         //waypoint_schedulerelink(this);
567 }
568
569 // tell all waypoints to relink
570 // actually this is useful only to update relink_* stats
571 void waypoint_schedulerelinkall()
572 {
573         relink_total = relink_walkculled = relink_pvsculled = relink_lengthculled = 0;
574         IL_EACH(g_waypoints, true,
575         {
576                 waypoint_schedulerelink(it);
577         });
578         waypoint_load_links_hardwired();
579 }
580
581 // Load waypoint links from file
582 bool waypoint_load_links()
583 {
584         string filename, s;
585         float file, tokens, c = 0, found;
586         entity wp_from = NULL, wp_to;
587         vector wp_to_pos, wp_from_pos;
588         filename = strcat("maps/", mapname);
589         filename = strcat(filename, ".waypoints.cache");
590         file = fopen(filename, FILE_READ);
591
592         if (file < 0)
593         {
594                 LOG_TRACE("waypoint links load from ");
595                 LOG_TRACE(filename);
596                 LOG_TRACE(" failed");
597                 return false;
598         }
599
600         while ((s = fgets(file)))
601         {
602                 tokens = tokenizebyseparator(s, "*");
603
604                 if (tokens!=2)
605                 {
606                         // bad file format
607                         fclose(file);
608                         return false;
609                 }
610
611                 wp_from_pos     = stov(argv(0));
612                 wp_to_pos       = stov(argv(1));
613
614                 // Search "from" waypoint
615                 if(!wp_from || wp_from.origin!=wp_from_pos)
616                 {
617                         wp_from = findradius(wp_from_pos, 1);
618                         found = false;
619                         while(wp_from)
620                         {
621                                 if(vdist(wp_from.origin - wp_from_pos, <, 1))
622                                 if(wp_from.classname == "waypoint")
623                                 {
624                                         found = true;
625                                         break;
626                                 }
627                                 wp_from = wp_from.chain;
628                         }
629
630                         if(!found)
631                         {
632                                 LOG_TRACE("waypoint_load_links: couldn't find 'from' waypoint at ", vtos(wp_from_pos));
633                                 continue;
634                         }
635
636                 }
637
638                 // Search "to" waypoint
639                 wp_to = findradius(wp_to_pos, 1);
640                 found = false;
641                 while(wp_to)
642                 {
643                         if(vdist(wp_to.origin - wp_to_pos, <, 1))
644                         if(wp_to.classname == "waypoint")
645                         {
646                                 found = true;
647                                 break;
648                         }
649                         wp_to = wp_to.chain;
650                 }
651
652                 if(!found)
653                 {
654                         LOG_TRACE("waypoint_load_links: couldn't find 'to' waypoint at ", vtos(wp_to_pos));
655                         continue;
656                 }
657
658                 ++c;
659                 waypoint_addlink(wp_from, wp_to);
660         }
661
662         fclose(file);
663
664         LOG_TRACE("loaded ", ftos(c), " waypoint links from maps/", mapname, ".waypoints.cache");
665
666         botframe_cachedwaypointlinks = true;
667         return true;
668 }
669
670 void waypoint_load_or_remove_links_hardwired(bool removal_mode)
671 {
672         string filename, s;
673         float file, tokens, c = 0, found;
674         entity wp_from = NULL, wp_to;
675         vector wp_to_pos, wp_from_pos;
676         filename = strcat("maps/", mapname);
677         filename = strcat(filename, ".waypoints.hardwired");
678         file = fopen(filename, FILE_READ);
679
680         botframe_loadedforcedlinks = true;
681
682         if (file < 0)
683         {
684                 if(!removal_mode)
685                         LOG_TRACE("waypoint links load from ", filename, " failed");
686                 return;
687         }
688
689         while ((s = fgets(file)))
690         {
691                 if(substring(s, 0, 2)=="//")
692                         continue;
693
694                 if(substring(s, 0, 1)=="#")
695                         continue;
696
697                 tokens = tokenizebyseparator(s, "*");
698
699                 if (tokens!=2)
700                         continue;
701
702                 wp_from_pos     = stov(argv(0));
703                 wp_to_pos       = stov(argv(1));
704
705                 // Search "from" waypoint
706                 if(!wp_from || wp_from.origin!=wp_from_pos)
707                 {
708                         wp_from = findradius(wp_from_pos, 5);
709                         found = false;
710                         while(wp_from)
711                         {
712                                 if(vdist(wp_from.origin - wp_from_pos, <, 5))
713                                 if(wp_from.classname == "waypoint")
714                                 {
715                                         found = true;
716                                         break;
717                                 }
718                                 wp_from = wp_from.chain;
719                         }
720
721                         if(!found)
722                         {
723                                 if(!removal_mode)
724                                         LOG_INFO(strcat("NOTICE: Can not find waypoint at ", vtos(wp_from_pos), ". Path skipped\n"));
725                                 continue;
726                         }
727                 }
728
729                 // Search "to" waypoint
730                 wp_to = findradius(wp_to_pos, 5);
731                 found = false;
732                 while(wp_to)
733                 {
734                         if(vdist(wp_to.origin - wp_to_pos, <, 5))
735                         if(wp_to.classname == "waypoint")
736                         {
737                                 found = true;
738                                 break;
739                         }
740                         wp_to = wp_to.chain;
741                 }
742
743                 if(!found)
744                 {
745                         if(!removal_mode)
746                                 LOG_INFO(strcat("NOTICE: Can not find waypoint at ", vtos(wp_to_pos), ". Path skipped\n"));
747                         continue;
748                 }
749
750                 ++c;
751                 if(removal_mode)
752                 {
753                         waypoint_removelink(wp_from, wp_to);
754                         continue;
755                 }
756
757                 waypoint_addlink(wp_from, wp_to);
758                 wp_from.wphardwired = true;
759                 wp_to.wphardwired = true;
760         }
761
762         fclose(file);
763
764         if(!removal_mode)
765                 LOG_TRACE("loaded ", ftos(c), " waypoint links from maps/", mapname, ".waypoints.hardwired");
766 }
767
768 void waypoint_load_links_hardwired() { waypoint_load_or_remove_links_hardwired(false); }
769 void waypoint_remove_links_hardwired() { waypoint_load_or_remove_links_hardwired(true); }
770
771 entity waypoint_get_link(entity w, float i)
772 {
773         switch(i)
774         {
775                 case  0:return w.wp00;
776                 case  1:return w.wp01;
777                 case  2:return w.wp02;
778                 case  3:return w.wp03;
779                 case  4:return w.wp04;
780                 case  5:return w.wp05;
781                 case  6:return w.wp06;
782                 case  7:return w.wp07;
783                 case  8:return w.wp08;
784                 case  9:return w.wp09;
785                 case 10:return w.wp10;
786                 case 11:return w.wp11;
787                 case 12:return w.wp12;
788                 case 13:return w.wp13;
789                 case 14:return w.wp14;
790                 case 15:return w.wp15;
791                 case 16:return w.wp16;
792                 case 17:return w.wp17;
793                 case 18:return w.wp18;
794                 case 19:return w.wp19;
795                 case 20:return w.wp20;
796                 case 21:return w.wp21;
797                 case 22:return w.wp22;
798                 case 23:return w.wp23;
799                 case 24:return w.wp24;
800                 case 25:return w.wp25;
801                 case 26:return w.wp26;
802                 case 27:return w.wp27;
803                 case 28:return w.wp28;
804                 case 29:return w.wp29;
805                 case 30:return w.wp30;
806                 case 31:return w.wp31;
807                 default:return NULL;
808         }
809 }
810
811 // Save all waypoint links to a file
812 void waypoint_save_links()
813 {
814         // temporarily remove hardwired links so they don't get saved among normal links
815         waypoint_remove_links_hardwired();
816
817         string filename = sprintf("maps/%s.waypoints.cache", mapname);
818         int file = fopen(filename, FILE_WRITE);
819         if (file < 0)
820         {
821                 LOG_INFOF("waypoint link save to %s failed\n", filename);
822                 return;
823         }
824
825         int c = 0;
826         IL_EACH(g_waypoints, true,
827         {
828                 for(int j = 0; j < 32; ++j)
829                 {
830                         entity link = waypoint_get_link(it, j);
831                         if(link)
832                         {
833                                 string s = strcat(vtos(it.origin), "*", vtos(link.origin), "\n");
834                                 fputs(file, s);
835                                 ++c;
836                         }
837                 }
838         });
839         fclose(file);
840         botframe_cachedwaypointlinks = true;
841
842         LOG_INFOF("saved %d waypoint links to maps/%s.waypoints.cache\n", c, mapname);
843
844         waypoint_load_links_hardwired();
845 }
846
847 // save waypoints to gamedir/data/maps/mapname.waypoints
848 void waypoint_saveall()
849 {
850         string filename = sprintf("maps/%s.waypoints", mapname);
851         int file = fopen(filename, FILE_WRITE);
852         if (file < 0)
853         {
854                 waypoint_save_links(); // save anyway?
855                 botframe_loadedforcedlinks = false;
856
857                 LOG_INFOF("waypoint links: save to %s failed\n", filename);
858                 return;
859         }
860
861         int c = 0;
862         IL_EACH(g_waypoints, true,
863         {
864                 if(it.wpflags & WAYPOINTFLAG_GENERATED)
865                         continue;
866
867                 string s;
868                 s = strcat(vtos(it.origin + it.mins), "\n");
869                 s = strcat(s, vtos(it.origin + it.maxs));
870                 s = strcat(s, "\n");
871                 s = strcat(s, ftos(it.wpflags));
872                 s = strcat(s, "\n");
873                 fputs(file, s);
874                 c++;
875         });
876         fclose(file);
877         waypoint_save_links();
878         botframe_loadedforcedlinks = false;
879
880         LOG_INFOF("saved %d waypoints to maps/%s.waypoints\n", c, mapname);
881 }
882
883 // load waypoints from file
884 float waypoint_loadall()
885 {
886         string filename, s;
887         float file, cwp, cwb, fl;
888         vector m1, m2;
889         cwp = 0;
890         cwb = 0;
891         filename = strcat("maps/", mapname);
892         filename = strcat(filename, ".waypoints");
893         file = fopen(filename, FILE_READ);
894         if (file >= 0)
895         {
896                 while ((s = fgets(file)))
897                 {
898                         m1 = stov(s);
899                         s = fgets(file);
900                         if (!s)
901                                 break;
902                         m2 = stov(s);
903                         s = fgets(file);
904                         if (!s)
905                                 break;
906                         fl = stof(s);
907                         waypoint_spawn(m1, m2, fl);
908                         if (m1 == m2)
909                                 cwp = cwp + 1;
910                         else
911                                 cwb = cwb + 1;
912                 }
913                 fclose(file);
914                 LOG_TRACE("loaded ", ftos(cwp), " waypoints and ", ftos(cwb), " wayboxes from maps/", mapname, ".waypoints");
915         }
916         else
917         {
918                 LOG_TRACE("waypoint load from ", filename, " failed");
919         }
920         return cwp + cwb;
921 }
922
923 vector waypoint_fixorigin(vector position)
924 {
925         tracebox(position + '0 0 1' * (1 - PL_MIN_CONST.z), PL_MIN_CONST, PL_MAX_CONST, position + '0 0 -512', MOVE_NOMONSTERS, NULL);
926         if(trace_fraction < 1)
927                 position = trace_endpos;
928         //traceline(position, position + '0 0 -512', MOVE_NOMONSTERS, NULL);
929         //print("position is ", ftos(trace_endpos_z - position_z), " above solid\n");
930         return position;
931 }
932
933 void waypoint_spawnforitem_force(entity e, vector org)
934 {
935         // Fix the waypoint altitude if necessary
936         org = waypoint_fixorigin(org);
937
938         // don't spawn an item spawnfunc_waypoint if it already exists
939         IL_EACH(g_waypoints, true,
940         {
941                 if(it.wpisbox)
942                 {
943                         if(boxesoverlap(org, org, it.absmin, it.absmax))
944                         {
945                                 e.nearestwaypoint = it;
946                                 return;
947                         }
948                 }
949                 else
950                 {
951                         if(vdist(it.origin - org, <, 16))
952                         {
953                                 e.nearestwaypoint = it;
954                                 return;
955                         }
956                 }
957         });
958
959         e.nearestwaypoint = waypoint_spawn(org, org, WAYPOINTFLAG_GENERATED | WAYPOINTFLAG_ITEM);
960 }
961
962 void waypoint_spawnforitem(entity e)
963 {
964         if(!bot_waypoints_for_items)
965                 return;
966
967         waypoint_spawnforitem_force(e, e.origin);
968 }
969
970 void waypoint_spawnforteleporter_boxes(entity e, int teleport_flag, vector org1, vector org2, vector destination1, vector destination2, float timetaken)
971 {
972         entity w;
973         entity dw;
974         w = waypoint_spawn(org1, org2, WAYPOINTFLAG_GENERATED | teleport_flag | WAYPOINTFLAG_NORELINK);
975         dw = waypoint_spawn(destination1, destination2, WAYPOINTFLAG_GENERATED);
976         // one way link to the destination
977         w.wp00 = dw;
978         w.wp00mincost = timetaken; // this is just for jump pads
979         // the teleporter's nearest spawnfunc_waypoint is this one
980         // (teleporters are not goals, so this is probably useless)
981         e.nearestwaypoint = w;
982         e.nearestwaypointtimeout = -1;
983 }
984
985 void waypoint_spawnforteleporter_v(entity e, vector org, vector destination, float timetaken)
986 {
987         org = waypoint_fixorigin(org);
988         destination = waypoint_fixorigin(destination);
989         waypoint_spawnforteleporter_boxes(e, WAYPOINTFLAG_TELEPORT, org, org, destination, destination, timetaken);
990 }
991
992 void waypoint_spawnforteleporter(entity e, vector destination, float timetaken)
993 {
994         destination = waypoint_fixorigin(destination);
995         waypoint_spawnforteleporter_boxes(e, WAYPOINTFLAG_TELEPORT, e.absmin, e.absmax, destination, destination, timetaken);
996 }
997
998 entity waypoint_spawnpersonal(entity this, vector position)
999 {
1000         entity w;
1001
1002         // drop the waypoint to a proper location:
1003         //   first move it up by a player height
1004         //   then move it down to hit the floor with player bbox size
1005         position = waypoint_fixorigin(position);
1006
1007         w = waypoint_spawn(position, position, WAYPOINTFLAG_GENERATED | WAYPOINTFLAG_PERSONAL);
1008         w.nearestwaypoint = NULL;
1009         w.nearestwaypointtimeout = 0;
1010         w.owner = this;
1011
1012         waypoint_schedulerelink(w);
1013
1014         return w;
1015 }
1016
1017 void waypoint_showlink(entity wp1, entity wp2, int display_type)
1018 {
1019         if (!(wp1 && wp2))
1020                 return;
1021
1022         if (wp1.wphardwired && wp2.wphardwired)
1023                 te_beam(NULL, wp1.origin, wp2.origin);
1024         else if (display_type == 1)
1025                 te_lightning2(NULL, wp1.origin, wp2.origin);
1026 }
1027
1028 void botframe_showwaypointlinks()
1029 {
1030         if (time < botframe_waypointeditorlightningtime)
1031                 return;
1032         botframe_waypointeditorlightningtime = time + 0.5;
1033         FOREACH_CLIENT(IS_PLAYER(it) && !it.isbot,
1034         {
1035                 int display_type = 0;
1036                 entity head = navigation_findnearestwaypoint(it, false);
1037                 if (IS_ONGROUND(it) || it.waterlevel > WATERLEVEL_NONE)
1038                         display_type = 1; // default
1039                 else if(head && (head.wphardwired))
1040                         display_type = 2; // only hardwired
1041
1042                 if (display_type)
1043                 {
1044                         //navigation_testtracewalk = true;
1045                         //print("currently selected WP is ", etos(head), "\n");
1046                         //navigation_testtracewalk = false;
1047                         if (head)
1048                         {
1049                                 te_lightning2(NULL, head.origin, it.origin);
1050                                 waypoint_showlink(head.wp00, head, display_type);
1051                                 waypoint_showlink(head.wp01, head, display_type);
1052                                 waypoint_showlink(head.wp02, head, display_type);
1053                                 waypoint_showlink(head.wp03, head, display_type);
1054                                 waypoint_showlink(head.wp04, head, display_type);
1055                                 waypoint_showlink(head.wp05, head, display_type);
1056                                 waypoint_showlink(head.wp06, head, display_type);
1057                                 waypoint_showlink(head.wp07, head, display_type);
1058                                 waypoint_showlink(head.wp08, head, display_type);
1059                                 waypoint_showlink(head.wp09, head, display_type);
1060                                 waypoint_showlink(head.wp10, head, display_type);
1061                                 waypoint_showlink(head.wp11, head, display_type);
1062                                 waypoint_showlink(head.wp12, head, display_type);
1063                                 waypoint_showlink(head.wp13, head, display_type);
1064                                 waypoint_showlink(head.wp14, head, display_type);
1065                                 waypoint_showlink(head.wp15, head, display_type);
1066                                 waypoint_showlink(head.wp16, head, display_type);
1067                                 waypoint_showlink(head.wp17, head, display_type);
1068                                 waypoint_showlink(head.wp18, head, display_type);
1069                                 waypoint_showlink(head.wp19, head, display_type);
1070                                 waypoint_showlink(head.wp20, head, display_type);
1071                                 waypoint_showlink(head.wp21, head, display_type);
1072                                 waypoint_showlink(head.wp22, head, display_type);
1073                                 waypoint_showlink(head.wp23, head, display_type);
1074                                 waypoint_showlink(head.wp24, head, display_type);
1075                                 waypoint_showlink(head.wp25, head, display_type);
1076                                 waypoint_showlink(head.wp26, head, display_type);
1077                                 waypoint_showlink(head.wp27, head, display_type);
1078                                 waypoint_showlink(head.wp28, head, display_type);
1079                                 waypoint_showlink(head.wp29, head, display_type);
1080                                 waypoint_showlink(head.wp30, head, display_type);
1081                                 waypoint_showlink(head.wp31, head, display_type);
1082                         }
1083                 }
1084         });
1085 }
1086
1087 float botframe_autowaypoints_fixdown(vector v)
1088 {
1089         tracebox(v, PL_MIN_CONST, PL_MAX_CONST, v + '0 0 -64', MOVE_NOMONSTERS, NULL);
1090         if(trace_fraction >= 1)
1091                 return 0;
1092         return 1;
1093 }
1094
1095 float botframe_autowaypoints_createwp(vector v, entity p, .entity fld, float f)
1096 {
1097         IL_EACH(g_waypoints, boxesoverlap(v - '32 32 32', v + '32 32 32', it.absmin, it.absmax),
1098         {
1099                 // if a matching spawnfunc_waypoint already exists, don't add a duplicate
1100                 return 0;
1101         });
1102
1103         waypoint_schedulerelink(p.(fld) = waypoint_spawn(v, v, f));
1104         return 1;
1105 }
1106
1107 // return value:
1108 //    1 = WP created
1109 //    0 = no action needed
1110 //   -1 = temp fail, try from world too
1111 //   -2 = permanent fail, do not retry
1112 float botframe_autowaypoints_fix_from(entity p, float walkfromwp, entity wp, .entity fld)
1113 {
1114         // make it possible to go from p to wp, if we can
1115         // if wp is NULL, nearest is chosen
1116
1117         entity w;
1118         vector porg;
1119         float t, tmin, tmax;
1120         vector o;
1121         vector save;
1122
1123         if(!botframe_autowaypoints_fixdown(p.origin))
1124                 return -2;
1125         porg = trace_endpos;
1126
1127         if(wp)
1128         {
1129                 // if any WP w fulfills wp -> w -> porg and w is closer than wp, then switch from wp to w
1130
1131                 // if wp -> porg, then OK
1132                 float maxdist;
1133                 if(navigation_waypoint_will_link(wp.origin, porg, p, walkfromwp, 1050))
1134                 {
1135                         // we may find a better one
1136                         maxdist = vlen(wp.origin - porg);
1137                 }
1138                 else
1139                 {
1140                         // accept any "good"
1141                         maxdist = 2100;
1142                 }
1143
1144                 float bestdist = maxdist;
1145                 IL_EACH(g_waypoints, it != wp && !(it.wpflags & WAYPOINTFLAG_NORELINK),
1146                 {
1147                         float d = vlen(wp.origin - it.origin) + vlen(it.origin - porg);
1148                         if(d < bestdist)
1149                         if(navigation_waypoint_will_link(wp.origin, it.origin, p, walkfromwp, 1050))
1150                         if(navigation_waypoint_will_link(it.origin, porg, p, walkfromwp, 1050))
1151                         {
1152                                 bestdist = d;
1153                                 p.(fld) = it;
1154                         }
1155                 });
1156                 if(bestdist < maxdist)
1157                 {
1158                         LOG_INFO("update chain to new nearest WP ", etos(p.(fld)), "\n");
1159                         return 0;
1160                 }
1161
1162                 if(bestdist < 2100)
1163                 {
1164                         // we know maxdist < 2100
1165                         // so wp -> porg is still valid
1166                         // all is good
1167                         p.(fld) = wp;
1168                         return 0;
1169                 }
1170
1171                 // otherwise, no existing WP can fix our issues
1172         }
1173         else
1174         {
1175                 save = p.origin;
1176                 setorigin(p, porg);
1177                 w = navigation_findnearestwaypoint(p, walkfromwp);
1178                 setorigin(p, save);
1179                 if(w)
1180                 {
1181                         p.(fld) = w;
1182                         return 0;
1183                 }
1184         }
1185
1186         tmin = 0;
1187         tmax = 1;
1188         for (;;)
1189         {
1190                 if(tmax - tmin < 0.001)
1191                 {
1192                         // did not get a good candidate
1193                         return -1;
1194                 }
1195
1196                 t = (tmin + tmax) * 0.5;
1197                 o = antilag_takebackorigin(p, CS(p), time - t);
1198                 if(!botframe_autowaypoints_fixdown(o))
1199                         return -2;
1200                 o = trace_endpos;
1201
1202                 if(wp)
1203                 {
1204                         if(!navigation_waypoint_will_link(wp.origin, o, p, walkfromwp, 1050))
1205                         {
1206                                 // we cannot walk from wp.origin to o
1207                                 // get closer to tmax
1208                                 tmin = t;
1209                                 continue;
1210                         }
1211                 }
1212                 else
1213                 {
1214                         save = p.origin;
1215                         setorigin(p, o);
1216                         w = navigation_findnearestwaypoint(p, walkfromwp);
1217                         setorigin(p, save);
1218                         if(!w)
1219                         {
1220                                 // we cannot walk from any WP to o
1221                                 // get closer to tmax
1222                                 tmin = t;
1223                                 continue;
1224                         }
1225                 }
1226
1227                 // if we get here, o is valid regarding waypoints
1228                 // check if o is connected right to the player
1229                 // we break if it succeeds, as that means o is a good waypoint location
1230                 if(navigation_waypoint_will_link(o, porg, p, walkfromwp, 1050))
1231                         break;
1232
1233                 // o is no good, we need to get closer to the player
1234                 tmax = t;
1235         }
1236
1237         LOG_INFO("spawning a waypoint for connecting to ", etos(wp), "\n");
1238         botframe_autowaypoints_createwp(o, p, fld, 0);
1239         return 1;
1240 }
1241
1242 // automatically create missing waypoints
1243 .entity botframe_autowaypoints_lastwp0, botframe_autowaypoints_lastwp1;
1244 void botframe_autowaypoints_fix(entity p, float walkfromwp, .entity fld)
1245 {
1246         float r = botframe_autowaypoints_fix_from(p, walkfromwp, p.(fld), fld);
1247         if(r != -1)
1248                 return;
1249         r = botframe_autowaypoints_fix_from(p, walkfromwp, NULL, fld);
1250         if(r != -1)
1251                 return;
1252
1253         LOG_INFO("emergency: got no good nearby WP to build a link from, starting a new chain\n");
1254         if(!botframe_autowaypoints_fixdown(p.origin))
1255                 return; // shouldn't happen, caught above
1256         botframe_autowaypoints_createwp(trace_endpos, p, fld, WAYPOINTFLAG_PROTECTED);
1257 }
1258
1259 void botframe_deleteuselesswaypoints()
1260 {
1261         IL_EACH(g_items, it.bot_pickup,
1262         {
1263                 // NOTE: this protects waypoints if they're the ONLY nearest
1264                 // waypoint. That's the intention.
1265                 navigation_findnearestwaypoint(it, false);  // Walk TO item.
1266                 navigation_findnearestwaypoint(it, true);  // Walk FROM item.
1267         });
1268         IL_EACH(g_waypoints, true,
1269         {
1270                 it.wpflags |= WAYPOINTFLAG_DEAD_END;
1271                 it.wpflags &= ~WAYPOINTFLAG_USEFUL;
1272                 // WP is useful if:
1273                 if (it.wpflags & WAYPOINTFLAG_ITEM)
1274                         it.wpflags |= WAYPOINTFLAG_USEFUL;
1275                 if (it.wpflags & WAYPOINTFLAG_TELEPORT)
1276                         it.wpflags |= WAYPOINTFLAG_USEFUL;
1277                 if (it.wpflags & WAYPOINTFLAG_LADDER)
1278                         it.wpflags |= WAYPOINTFLAG_USEFUL;
1279                 if (it.wpflags & WAYPOINTFLAG_PROTECTED)
1280                         it.wpflags |= WAYPOINTFLAG_USEFUL;
1281                 // b) WP is closest WP for an item/spawnpoint/other entity
1282                 //    This has been done above by protecting these WPs.
1283         });
1284         // c) There are w1, w, w2 so that w1 -> w, w -> w2 and not w1 -> w2.
1285         IL_EACH(g_waypoints, !(it.wpflags & WAYPOINTFLAG_PERSONAL),
1286         {
1287                 for (int m = 0; m < 32; ++m)
1288                 {
1289                         entity w = waypoint_get_link(it, m);
1290                         if (!w)
1291                                 break;
1292                         if (w.wpflags & WAYPOINTFLAG_PERSONAL)
1293                                 continue;
1294                         if (w.wpflags & WAYPOINTFLAG_USEFUL)
1295                                 continue;
1296                         for (int j = 0; j < 32; ++j)
1297                         {
1298                                 entity w2 = waypoint_get_link(w, j);
1299                                 if (!w2)
1300                                         break;
1301                                 if (it == w2)
1302                                         continue;
1303                                 if (w2.wpflags & WAYPOINTFLAG_PERSONAL)
1304                                         continue;
1305                                 // If we got here, it != w2 exist with it -> w
1306                                 // and w -> w2. That means the waypoint is not
1307                                 // a dead end.
1308                                 w.wpflags &= ~WAYPOINTFLAG_DEAD_END;
1309                                 for (int k = 0; k < 32; ++k)
1310                                 {
1311                                         if (waypoint_get_link(it, k) == w2)
1312                                                 continue;
1313                                         // IF WE GET HERE, w is proven useful
1314                                         // to get from it to w2!
1315                                         w.wpflags |= WAYPOINTFLAG_USEFUL;
1316                                         goto next;
1317                                 }
1318                         }
1319 LABEL(next)
1320                 }
1321         });
1322         // d) The waypoint is a dead end. Dead end waypoints must be kept as
1323         //     they are needed to complete routes while autowaypointing.
1324
1325         IL_EACH(g_waypoints, !(it.wpflags & (WAYPOINTFLAG_USEFUL | WAYPOINTFLAG_DEAD_END)),
1326         {
1327                 LOG_INFOF("Removed a waypoint at %v. Try again for more!\n", it.origin);
1328                 te_explosion(it.origin);
1329                 waypoint_remove(it);
1330                 break;
1331         });
1332
1333         IL_EACH(g_waypoints, true,
1334         {
1335                 it.wpflags &= ~(WAYPOINTFLAG_USEFUL | WAYPOINTFLAG_DEAD_END); // temp flag
1336         });
1337 }
1338
1339 void botframe_autowaypoints()
1340 {
1341         FOREACH_CLIENT(IS_PLAYER(it) && IS_REAL_CLIENT(it) && !IS_DEAD(it), LAMBDA(
1342                 // going back is broken, so only fix waypoints to walk TO the player
1343                 //botframe_autowaypoints_fix(p, false, botframe_autowaypoints_lastwp0);
1344                 botframe_autowaypoints_fix(it, true, botframe_autowaypoints_lastwp1);
1345                 //te_explosion(p.botframe_autowaypoints_lastwp0.origin);
1346         ));
1347
1348         if (autocvar_g_waypointeditor_auto >= 2) {
1349                 botframe_deleteuselesswaypoints();
1350         }
1351 }
1352