]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/bot/default/waypoints.qc
a98a04a376a77385f5df2acb5109f125d0e95fbb
[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                 v2 = to.origin;
402                 c = vlen(v2 - v1);
403         }
404         else
405                 c = vlen(to.origin - from.origin);
406
407         if (from.wp31mincost < c) return;
408         if (from.wp30mincost < c) {from.wp31 = to;from.wp31mincost = c;return;} from.wp31 = from.wp30;from.wp31mincost = from.wp30mincost;
409         if (from.wp29mincost < c) {from.wp30 = to;from.wp30mincost = c;return;} from.wp30 = from.wp29;from.wp30mincost = from.wp29mincost;
410         if (from.wp28mincost < c) {from.wp29 = to;from.wp29mincost = c;return;} from.wp29 = from.wp28;from.wp29mincost = from.wp28mincost;
411         if (from.wp27mincost < c) {from.wp28 = to;from.wp28mincost = c;return;} from.wp28 = from.wp27;from.wp28mincost = from.wp27mincost;
412         if (from.wp26mincost < c) {from.wp27 = to;from.wp27mincost = c;return;} from.wp27 = from.wp26;from.wp27mincost = from.wp26mincost;
413         if (from.wp25mincost < c) {from.wp26 = to;from.wp26mincost = c;return;} from.wp26 = from.wp25;from.wp26mincost = from.wp25mincost;
414         if (from.wp24mincost < c) {from.wp25 = to;from.wp25mincost = c;return;} from.wp25 = from.wp24;from.wp25mincost = from.wp24mincost;
415         if (from.wp23mincost < c) {from.wp24 = to;from.wp24mincost = c;return;} from.wp24 = from.wp23;from.wp24mincost = from.wp23mincost;
416         if (from.wp22mincost < c) {from.wp23 = to;from.wp23mincost = c;return;} from.wp23 = from.wp22;from.wp23mincost = from.wp22mincost;
417         if (from.wp21mincost < c) {from.wp22 = to;from.wp22mincost = c;return;} from.wp22 = from.wp21;from.wp22mincost = from.wp21mincost;
418         if (from.wp20mincost < c) {from.wp21 = to;from.wp21mincost = c;return;} from.wp21 = from.wp20;from.wp21mincost = from.wp20mincost;
419         if (from.wp19mincost < c) {from.wp20 = to;from.wp20mincost = c;return;} from.wp20 = from.wp19;from.wp20mincost = from.wp19mincost;
420         if (from.wp18mincost < c) {from.wp19 = to;from.wp19mincost = c;return;} from.wp19 = from.wp18;from.wp19mincost = from.wp18mincost;
421         if (from.wp17mincost < c) {from.wp18 = to;from.wp18mincost = c;return;} from.wp18 = from.wp17;from.wp18mincost = from.wp17mincost;
422         if (from.wp16mincost < c) {from.wp17 = to;from.wp17mincost = c;return;} from.wp17 = from.wp16;from.wp17mincost = from.wp16mincost;
423         if (from.wp15mincost < c) {from.wp16 = to;from.wp16mincost = c;return;} from.wp16 = from.wp15;from.wp16mincost = from.wp15mincost;
424         if (from.wp14mincost < c) {from.wp15 = to;from.wp15mincost = c;return;} from.wp15 = from.wp14;from.wp15mincost = from.wp14mincost;
425         if (from.wp13mincost < c) {from.wp14 = to;from.wp14mincost = c;return;} from.wp14 = from.wp13;from.wp14mincost = from.wp13mincost;
426         if (from.wp12mincost < c) {from.wp13 = to;from.wp13mincost = c;return;} from.wp13 = from.wp12;from.wp13mincost = from.wp12mincost;
427         if (from.wp11mincost < c) {from.wp12 = to;from.wp12mincost = c;return;} from.wp12 = from.wp11;from.wp12mincost = from.wp11mincost;
428         if (from.wp10mincost < c) {from.wp11 = to;from.wp11mincost = c;return;} from.wp11 = from.wp10;from.wp11mincost = from.wp10mincost;
429         if (from.wp09mincost < c) {from.wp10 = to;from.wp10mincost = c;return;} from.wp10 = from.wp09;from.wp10mincost = from.wp09mincost;
430         if (from.wp08mincost < c) {from.wp09 = to;from.wp09mincost = c;return;} from.wp09 = from.wp08;from.wp09mincost = from.wp08mincost;
431         if (from.wp07mincost < c) {from.wp08 = to;from.wp08mincost = c;return;} from.wp08 = from.wp07;from.wp08mincost = from.wp07mincost;
432         if (from.wp06mincost < c) {from.wp07 = to;from.wp07mincost = c;return;} from.wp07 = from.wp06;from.wp07mincost = from.wp06mincost;
433         if (from.wp05mincost < c) {from.wp06 = to;from.wp06mincost = c;return;} from.wp06 = from.wp05;from.wp06mincost = from.wp05mincost;
434         if (from.wp04mincost < c) {from.wp05 = to;from.wp05mincost = c;return;} from.wp05 = from.wp04;from.wp05mincost = from.wp04mincost;
435         if (from.wp03mincost < c) {from.wp04 = to;from.wp04mincost = c;return;} from.wp04 = from.wp03;from.wp04mincost = from.wp03mincost;
436         if (from.wp02mincost < c) {from.wp03 = to;from.wp03mincost = c;return;} from.wp03 = from.wp02;from.wp03mincost = from.wp02mincost;
437         if (from.wp01mincost < c) {from.wp02 = to;from.wp02mincost = c;return;} from.wp02 = from.wp01;from.wp02mincost = from.wp01mincost;
438         if (from.wp00mincost < c) {from.wp01 = to;from.wp01mincost = c;return;} from.wp01 = from.wp00;from.wp01mincost = from.wp00mincost;
439         from.wp00 = to;from.wp00mincost = c;return;
440 }
441
442 // relink this spawnfunc_waypoint
443 // (precompile a list of all reachable waypoints from this spawnfunc_waypoint)
444 // (SLOW!)
445 void waypoint_think(entity this)
446 {
447         vector sv, sm1, sm2, ev, em1, em2, dv;
448
449         bot_calculate_stepheightvec();
450
451         bot_navigation_movemode = ((autocvar_bot_navigation_ignoreplayers) ? MOVE_NOMONSTERS : MOVE_NORMAL);
452
453         //dprint("waypoint_think wpisbox = ", ftos(this.wpisbox), "\n");
454         sm1 = this.origin + this.mins;
455         sm2 = this.origin + this.maxs;
456         IL_EACH(g_waypoints, this != it,
457         {
458                 if (boxesoverlap(this.absmin, this.absmax, it.absmin, it.absmax))
459                 {
460                         waypoint_addlink(this, it);
461                         waypoint_addlink(it, this);
462                 }
463                 else
464                 {
465                         ++relink_total;
466                         if(!checkpvs(this.origin, it))
467                         {
468                                 ++relink_pvsculled;
469                                 continue;
470                         }
471                         sv = it.origin;
472                         sv.x = bound(sm1_x, sv.x, sm2_x);
473                         sv.y = bound(sm1_y, sv.y, sm2_y);
474                         sv.z = bound(sm1_z, sv.z, sm2_z);
475                         ev = this.origin;
476                         em1 = it.origin + it.mins;
477                         em2 = it.origin + it.maxs;
478                         ev.x = bound(em1_x, ev.x, em2_x);
479                         ev.y = bound(em1_y, ev.y, em2_y);
480                         ev.z = bound(em1_z, ev.z, em2_z);
481                         dv = ev - sv;
482                         dv.z = 0;
483                         if(vdist(dv, >=, 1050)) // max search distance in XY
484                         {
485                                 ++relink_lengthculled;
486                                 continue;
487                         }
488                         navigation_testtracewalk = 0;
489                         if (!this.wpisbox)
490                         {
491                                 tracebox(sv - PL_MIN_CONST.z * '0 0 1', PL_MIN_CONST, PL_MAX_CONST, sv, false, this);
492                                 if (!trace_startsolid)
493                                 {
494                                         //dprint("sv deviation", vtos(trace_endpos - sv), "\n");
495                                         sv = trace_endpos + '0 0 1';
496                                 }
497                         }
498                         if (!it.wpisbox)
499                         {
500                                 tracebox(ev - PL_MIN_CONST.z * '0 0 1', PL_MIN_CONST, PL_MAX_CONST, ev, false, it);
501                                 if (!trace_startsolid)
502                                 {
503                                         //dprint("ev deviation", vtos(trace_endpos - ev), "\n");
504                                         ev = trace_endpos + '0 0 1';
505                                 }
506                         }
507                         //traceline(this.origin, it.origin, false, NULL);
508                         //if (trace_fraction == 1)
509                         if (!this.wpisbox && tracewalk(this, sv, PL_MIN_CONST, PL_MAX_CONST, ev, MOVE_NOMONSTERS))
510                                 waypoint_addlink(this, it);
511                         else
512                                 relink_walkculled += 0.5;
513                         if (!it.wpisbox && tracewalk(it, ev, PL_MIN_CONST, PL_MAX_CONST, sv, MOVE_NOMONSTERS))
514                                 waypoint_addlink(it, this);
515                         else
516                                 relink_walkculled += 0.5;
517                 }
518         });
519         navigation_testtracewalk = 0;
520         this.wplinked = true;
521 }
522
523 void waypoint_clearlinks(entity wp)
524 {
525         // clear links to other waypoints
526         float f = 10000000;
527         wp.wp00 = wp.wp01 = wp.wp02 = wp.wp03 = wp.wp04 = wp.wp05 = wp.wp06 = wp.wp07 = NULL;
528         wp.wp08 = wp.wp09 = wp.wp10 = wp.wp11 = wp.wp12 = wp.wp13 = wp.wp14 = wp.wp15 = NULL;
529         wp.wp16 = wp.wp17 = wp.wp18 = wp.wp19 = wp.wp20 = wp.wp21 = wp.wp22 = wp.wp23 = NULL;
530         wp.wp24 = wp.wp25 = wp.wp26 = wp.wp27 = wp.wp28 = wp.wp29 = wp.wp30 = wp.wp31 = NULL;
531
532         wp.wp00mincost = wp.wp01mincost = wp.wp02mincost = wp.wp03mincost = wp.wp04mincost = wp.wp05mincost = wp.wp06mincost = wp.wp07mincost = f;
533         wp.wp08mincost = wp.wp09mincost = wp.wp10mincost = wp.wp11mincost = wp.wp12mincost = wp.wp13mincost = wp.wp14mincost = wp.wp15mincost = f;
534         wp.wp16mincost = wp.wp17mincost = wp.wp18mincost = wp.wp19mincost = wp.wp20mincost = wp.wp21mincost = wp.wp22mincost = wp.wp23mincost = f;
535         wp.wp24mincost = wp.wp25mincost = wp.wp26mincost = wp.wp27mincost = wp.wp28mincost = wp.wp29mincost = wp.wp30mincost = wp.wp31mincost = f;
536
537         wp.wplinked = false;
538 }
539
540 // tell a spawnfunc_waypoint to relink
541 void waypoint_schedulerelink(entity wp)
542 {
543         if (wp == NULL)
544                 return;
545
546         waypoint_setupmodel(wp);
547         wp.wpisbox = vdist(wp.size, >, 0);
548         wp.enemy = NULL;
549         if (!(wp.wpflags & WAYPOINTFLAG_PERSONAL))
550                 wp.owner = NULL;
551         if (!(wp.wpflags & WAYPOINTFLAG_NORELINK))
552                 waypoint_clearlinks(wp);
553         // schedule an actual relink on next frame
554         setthink(wp, waypoint_think);
555         wp.nextthink = time;
556         wp.effects = EF_LOWPRECISION;
557 }
558
559 // spawnfunc_waypoint map entity
560 spawnfunc(waypoint)
561 {
562         IL_PUSH(g_waypoints, this);
563
564         setorigin(this, this.origin);
565         // schedule a relink after other waypoints have had a chance to spawn
566         waypoint_clearlinks(this);
567         //waypoint_schedulerelink(this);
568 }
569
570 // tell all waypoints to relink
571 // actually this is useful only to update relink_* stats
572 void waypoint_schedulerelinkall()
573 {
574         relink_total = relink_walkculled = relink_pvsculled = relink_lengthculled = 0;
575         IL_EACH(g_waypoints, true,
576         {
577                 waypoint_schedulerelink(it);
578         });
579         waypoint_load_links_hardwired();
580 }
581
582 // Load waypoint links from file
583 bool waypoint_load_links()
584 {
585         string filename, s;
586         float file, tokens, c = 0, found;
587         entity wp_from = NULL, wp_to;
588         vector wp_to_pos, wp_from_pos;
589         filename = strcat("maps/", mapname);
590         filename = strcat(filename, ".waypoints.cache");
591         file = fopen(filename, FILE_READ);
592
593         if (file < 0)
594         {
595                 LOG_TRACE("waypoint links load from ");
596                 LOG_TRACE(filename);
597                 LOG_TRACE(" failed");
598                 return false;
599         }
600
601         while ((s = fgets(file)))
602         {
603                 tokens = tokenizebyseparator(s, "*");
604
605                 if (tokens!=2)
606                 {
607                         // bad file format
608                         fclose(file);
609                         return false;
610                 }
611
612                 wp_from_pos     = stov(argv(0));
613                 wp_to_pos       = stov(argv(1));
614
615                 // Search "from" waypoint
616                 if(!wp_from || wp_from.origin!=wp_from_pos)
617                 {
618                         wp_from = findradius(wp_from_pos, 1);
619                         found = false;
620                         while(wp_from)
621                         {
622                                 if(vdist(wp_from.origin - wp_from_pos, <, 1))
623                                 if(wp_from.classname == "waypoint")
624                                 {
625                                         found = true;
626                                         break;
627                                 }
628                                 wp_from = wp_from.chain;
629                         }
630
631                         if(!found)
632                         {
633                                 LOG_TRACE("waypoint_load_links: couldn't find 'from' waypoint at ", vtos(wp_from_pos));
634                                 continue;
635                         }
636
637                 }
638
639                 // Search "to" waypoint
640                 wp_to = findradius(wp_to_pos, 1);
641                 found = false;
642                 while(wp_to)
643                 {
644                         if(vdist(wp_to.origin - wp_to_pos, <, 1))
645                         if(wp_to.classname == "waypoint")
646                         {
647                                 found = true;
648                                 break;
649                         }
650                         wp_to = wp_to.chain;
651                 }
652
653                 if(!found)
654                 {
655                         LOG_TRACE("waypoint_load_links: couldn't find 'to' waypoint at ", vtos(wp_to_pos));
656                         continue;
657                 }
658
659                 ++c;
660                 waypoint_addlink(wp_from, wp_to);
661         }
662
663         fclose(file);
664
665         LOG_TRACE("loaded ", ftos(c), " waypoint links from maps/", mapname, ".waypoints.cache");
666
667         botframe_cachedwaypointlinks = true;
668         return true;
669 }
670
671 void waypoint_load_or_remove_links_hardwired(bool removal_mode)
672 {
673         string filename, s;
674         float file, tokens, c = 0, found;
675         entity wp_from = NULL, wp_to;
676         vector wp_to_pos, wp_from_pos;
677         filename = strcat("maps/", mapname);
678         filename = strcat(filename, ".waypoints.hardwired");
679         file = fopen(filename, FILE_READ);
680
681         botframe_loadedforcedlinks = true;
682
683         if (file < 0)
684         {
685                 if(!removal_mode)
686                         LOG_TRACE("waypoint links load from ", filename, " failed");
687                 return;
688         }
689
690         while ((s = fgets(file)))
691         {
692                 if(substring(s, 0, 2)=="//")
693                         continue;
694
695                 if(substring(s, 0, 1)=="#")
696                         continue;
697
698                 tokens = tokenizebyseparator(s, "*");
699
700                 if (tokens!=2)
701                         continue;
702
703                 wp_from_pos     = stov(argv(0));
704                 wp_to_pos       = stov(argv(1));
705
706                 // Search "from" waypoint
707                 if(!wp_from || wp_from.origin!=wp_from_pos)
708                 {
709                         wp_from = findradius(wp_from_pos, 5);
710                         found = false;
711                         while(wp_from)
712                         {
713                                 if(vdist(wp_from.origin - wp_from_pos, <, 5))
714                                 if(wp_from.classname == "waypoint")
715                                 {
716                                         found = true;
717                                         break;
718                                 }
719                                 wp_from = wp_from.chain;
720                         }
721
722                         if(!found)
723                         {
724                                 if(!removal_mode)
725                                         LOG_INFO(strcat("NOTICE: Can not find waypoint at ", vtos(wp_from_pos), ". Path skipped\n"));
726                                 continue;
727                         }
728                 }
729
730                 // Search "to" waypoint
731                 wp_to = findradius(wp_to_pos, 5);
732                 found = false;
733                 while(wp_to)
734                 {
735                         if(vdist(wp_to.origin - wp_to_pos, <, 5))
736                         if(wp_to.classname == "waypoint")
737                         {
738                                 found = true;
739                                 break;
740                         }
741                         wp_to = wp_to.chain;
742                 }
743
744                 if(!found)
745                 {
746                         if(!removal_mode)
747                                 LOG_INFO(strcat("NOTICE: Can not find waypoint at ", vtos(wp_to_pos), ". Path skipped\n"));
748                         continue;
749                 }
750
751                 ++c;
752                 if(removal_mode)
753                 {
754                         waypoint_removelink(wp_from, wp_to);
755                         continue;
756                 }
757
758                 waypoint_addlink(wp_from, wp_to);
759                 wp_from.wphardwired = true;
760                 wp_to.wphardwired = true;
761         }
762
763         fclose(file);
764
765         if(!removal_mode)
766                 LOG_TRACE("loaded ", ftos(c), " waypoint links from maps/", mapname, ".waypoints.hardwired");
767 }
768
769 void waypoint_load_links_hardwired() { waypoint_load_or_remove_links_hardwired(false); }
770 void waypoint_remove_links_hardwired() { waypoint_load_or_remove_links_hardwired(true); }
771
772 entity waypoint_get_link(entity w, float i)
773 {
774         switch(i)
775         {
776                 case  0:return w.wp00;
777                 case  1:return w.wp01;
778                 case  2:return w.wp02;
779                 case  3:return w.wp03;
780                 case  4:return w.wp04;
781                 case  5:return w.wp05;
782                 case  6:return w.wp06;
783                 case  7:return w.wp07;
784                 case  8:return w.wp08;
785                 case  9:return w.wp09;
786                 case 10:return w.wp10;
787                 case 11:return w.wp11;
788                 case 12:return w.wp12;
789                 case 13:return w.wp13;
790                 case 14:return w.wp14;
791                 case 15:return w.wp15;
792                 case 16:return w.wp16;
793                 case 17:return w.wp17;
794                 case 18:return w.wp18;
795                 case 19:return w.wp19;
796                 case 20:return w.wp20;
797                 case 21:return w.wp21;
798                 case 22:return w.wp22;
799                 case 23:return w.wp23;
800                 case 24:return w.wp24;
801                 case 25:return w.wp25;
802                 case 26:return w.wp26;
803                 case 27:return w.wp27;
804                 case 28:return w.wp28;
805                 case 29:return w.wp29;
806                 case 30:return w.wp30;
807                 case 31:return w.wp31;
808                 default:return NULL;
809         }
810 }
811
812 // Save all waypoint links to a file
813 void waypoint_save_links()
814 {
815         // temporarily remove hardwired links so they don't get saved among normal links
816         waypoint_remove_links_hardwired();
817
818         string filename = sprintf("maps/%s.waypoints.cache", mapname);
819         int file = fopen(filename, FILE_WRITE);
820         if (file < 0)
821         {
822                 LOG_INFOF("waypoint link save to %s failed\n", filename);
823                 return;
824         }
825
826         int c = 0;
827         IL_EACH(g_waypoints, true,
828         {
829                 for(int j = 0; j < 32; ++j)
830                 {
831                         entity link = waypoint_get_link(it, j);
832                         if(link)
833                         {
834                                 string s = strcat(vtos(it.origin), "*", vtos(link.origin), "\n");
835                                 fputs(file, s);
836                                 ++c;
837                         }
838                 }
839         });
840         fclose(file);
841         botframe_cachedwaypointlinks = true;
842
843         LOG_INFOF("saved %d waypoint links to maps/%s.waypoints.cache\n", c, mapname);
844
845         waypoint_load_links_hardwired();
846 }
847
848 // save waypoints to gamedir/data/maps/mapname.waypoints
849 void waypoint_saveall()
850 {
851         string filename = sprintf("maps/%s.waypoints", mapname);
852         int file = fopen(filename, FILE_WRITE);
853         if (file < 0)
854         {
855                 waypoint_save_links(); // save anyway?
856                 botframe_loadedforcedlinks = false;
857
858                 LOG_INFOF("waypoint links: save to %s failed\n", filename);
859                 return;
860         }
861
862         int c = 0;
863         IL_EACH(g_waypoints, true,
864         {
865                 if(it.wpflags & WAYPOINTFLAG_GENERATED)
866                         continue;
867
868                 string s;
869                 s = strcat(vtos(it.origin + it.mins), "\n");
870                 s = strcat(s, vtos(it.origin + it.maxs));
871                 s = strcat(s, "\n");
872                 s = strcat(s, ftos(it.wpflags));
873                 s = strcat(s, "\n");
874                 fputs(file, s);
875                 c++;
876         });
877         fclose(file);
878         waypoint_save_links();
879         botframe_loadedforcedlinks = false;
880
881         LOG_INFOF("saved %d waypoints to maps/%s.waypoints\n", c, mapname);
882 }
883
884 // load waypoints from file
885 float waypoint_loadall()
886 {
887         string filename, s;
888         float file, cwp, cwb, fl;
889         vector m1, m2;
890         cwp = 0;
891         cwb = 0;
892         filename = strcat("maps/", mapname);
893         filename = strcat(filename, ".waypoints");
894         file = fopen(filename, FILE_READ);
895         if (file >= 0)
896         {
897                 while ((s = fgets(file)))
898                 {
899                         m1 = stov(s);
900                         s = fgets(file);
901                         if (!s)
902                                 break;
903                         m2 = stov(s);
904                         s = fgets(file);
905                         if (!s)
906                                 break;
907                         fl = stof(s);
908                         waypoint_spawn(m1, m2, fl);
909                         if (m1 == m2)
910                                 cwp = cwp + 1;
911                         else
912                                 cwb = cwb + 1;
913                 }
914                 fclose(file);
915                 LOG_TRACE("loaded ", ftos(cwp), " waypoints and ", ftos(cwb), " wayboxes from maps/", mapname, ".waypoints");
916         }
917         else
918         {
919                 LOG_TRACE("waypoint load from ", filename, " failed");
920         }
921         return cwp + cwb;
922 }
923
924 vector waypoint_fixorigin(vector position)
925 {
926         tracebox(position + '0 0 1' * (1 - PL_MIN_CONST.z), PL_MIN_CONST, PL_MAX_CONST, position + '0 0 -512', MOVE_NOMONSTERS, NULL);
927         if(trace_fraction < 1)
928                 position = trace_endpos;
929         //traceline(position, position + '0 0 -512', MOVE_NOMONSTERS, NULL);
930         //print("position is ", ftos(trace_endpos_z - position_z), " above solid\n");
931         return position;
932 }
933
934 void waypoint_spawnforitem_force(entity e, vector org)
935 {
936         // Fix the waypoint altitude if necessary
937         org = waypoint_fixorigin(org);
938
939         // don't spawn an item spawnfunc_waypoint if it already exists
940         IL_EACH(g_waypoints, true,
941         {
942                 if(it.wpisbox)
943                 {
944                         if(boxesoverlap(org, org, it.absmin, it.absmax))
945                         {
946                                 e.nearestwaypoint = it;
947                                 return;
948                         }
949                 }
950                 else
951                 {
952                         if(vdist(it.origin - org, <, 16))
953                         {
954                                 e.nearestwaypoint = it;
955                                 return;
956                         }
957                 }
958         });
959
960         e.nearestwaypoint = waypoint_spawn(org, org, WAYPOINTFLAG_GENERATED | WAYPOINTFLAG_ITEM);
961 }
962
963 void waypoint_spawnforitem(entity e)
964 {
965         if(!bot_waypoints_for_items)
966                 return;
967
968         waypoint_spawnforitem_force(e, e.origin);
969 }
970
971 void waypoint_spawnforteleporter_boxes(entity e, vector org1, vector org2, vector destination1, vector destination2, float timetaken)
972 {
973         entity w;
974         entity dw;
975         w = waypoint_spawn(org1, org2, WAYPOINTFLAG_GENERATED | WAYPOINTFLAG_TELEPORT | WAYPOINTFLAG_NORELINK);
976         dw = waypoint_spawn(destination1, destination2, WAYPOINTFLAG_GENERATED);
977         // one way link to the destination
978         w.wp00 = dw;
979         w.wp00mincost = timetaken; // this is just for jump pads
980         // the teleporter's nearest spawnfunc_waypoint is this one
981         // (teleporters are not goals, so this is probably useless)
982         e.nearestwaypoint = w;
983         e.nearestwaypointtimeout = -1;
984 }
985
986 void waypoint_spawnforteleporter_v(entity e, vector org, vector destination, float timetaken)
987 {
988         org = waypoint_fixorigin(org);
989         destination = waypoint_fixorigin(destination);
990         waypoint_spawnforteleporter_boxes(e, org, org, destination, destination, timetaken);
991 }
992
993 void waypoint_spawnforteleporter(entity e, vector destination, float timetaken)
994 {
995         destination = waypoint_fixorigin(destination);
996         waypoint_spawnforteleporter_boxes(e, e.absmin, e.absmax, destination, destination, timetaken);
997 }
998
999 entity waypoint_spawnpersonal(entity this, vector position)
1000 {
1001         entity w;
1002
1003         // drop the waypoint to a proper location:
1004         //   first move it up by a player height
1005         //   then move it down to hit the floor with player bbox size
1006         position = waypoint_fixorigin(position);
1007
1008         w = waypoint_spawn(position, position, WAYPOINTFLAG_GENERATED | WAYPOINTFLAG_PERSONAL);
1009         w.nearestwaypoint = NULL;
1010         w.nearestwaypointtimeout = 0;
1011         w.owner = this;
1012
1013         waypoint_schedulerelink(w);
1014
1015         return w;
1016 }
1017
1018 void waypoint_showlink(entity wp1, entity wp2, int display_type)
1019 {
1020         if (!(wp1 && wp2))
1021                 return;
1022
1023         if (wp1.wphardwired && wp2.wphardwired)
1024                 te_beam(NULL, wp1.origin, wp2.origin);
1025         else if (display_type == 1)
1026                 te_lightning2(NULL, wp1.origin, wp2.origin);
1027 }
1028
1029 void botframe_showwaypointlinks()
1030 {
1031         if (time < botframe_waypointeditorlightningtime)
1032                 return;
1033         botframe_waypointeditorlightningtime = time + 0.5;
1034         FOREACH_CLIENT(IS_PLAYER(it) && !it.isbot,
1035         {
1036                 int display_type = 0;
1037                 entity head = navigation_findnearestwaypoint(it, false);
1038                 if (IS_ONGROUND(it) || it.waterlevel > WATERLEVEL_NONE)
1039                         display_type = 1; // default
1040                 else if(head && (head.wphardwired))
1041                         display_type = 2; // only hardwired
1042
1043                 if (display_type)
1044                 {
1045                         //navigation_testtracewalk = true;
1046                         //print("currently selected WP is ", etos(head), "\n");
1047                         //navigation_testtracewalk = false;
1048                         if (head)
1049                         {
1050                                 te_lightning2(NULL, head.origin, it.origin);
1051                                 waypoint_showlink(head.wp00, head, display_type);
1052                                 waypoint_showlink(head.wp01, head, display_type);
1053                                 waypoint_showlink(head.wp02, head, display_type);
1054                                 waypoint_showlink(head.wp03, head, display_type);
1055                                 waypoint_showlink(head.wp04, head, display_type);
1056                                 waypoint_showlink(head.wp05, head, display_type);
1057                                 waypoint_showlink(head.wp06, head, display_type);
1058                                 waypoint_showlink(head.wp07, head, display_type);
1059                                 waypoint_showlink(head.wp08, head, display_type);
1060                                 waypoint_showlink(head.wp09, head, display_type);
1061                                 waypoint_showlink(head.wp10, head, display_type);
1062                                 waypoint_showlink(head.wp11, head, display_type);
1063                                 waypoint_showlink(head.wp12, head, display_type);
1064                                 waypoint_showlink(head.wp13, head, display_type);
1065                                 waypoint_showlink(head.wp14, head, display_type);
1066                                 waypoint_showlink(head.wp15, head, display_type);
1067                                 waypoint_showlink(head.wp16, head, display_type);
1068                                 waypoint_showlink(head.wp17, head, display_type);
1069                                 waypoint_showlink(head.wp18, head, display_type);
1070                                 waypoint_showlink(head.wp19, head, display_type);
1071                                 waypoint_showlink(head.wp20, head, display_type);
1072                                 waypoint_showlink(head.wp21, head, display_type);
1073                                 waypoint_showlink(head.wp22, head, display_type);
1074                                 waypoint_showlink(head.wp23, head, display_type);
1075                                 waypoint_showlink(head.wp24, head, display_type);
1076                                 waypoint_showlink(head.wp25, head, display_type);
1077                                 waypoint_showlink(head.wp26, head, display_type);
1078                                 waypoint_showlink(head.wp27, head, display_type);
1079                                 waypoint_showlink(head.wp28, head, display_type);
1080                                 waypoint_showlink(head.wp29, head, display_type);
1081                                 waypoint_showlink(head.wp30, head, display_type);
1082                                 waypoint_showlink(head.wp31, head, display_type);
1083                         }
1084                 }
1085         });
1086 }
1087
1088 float botframe_autowaypoints_fixdown(vector v)
1089 {
1090         tracebox(v, PL_MIN_CONST, PL_MAX_CONST, v + '0 0 -64', MOVE_NOMONSTERS, NULL);
1091         if(trace_fraction >= 1)
1092                 return 0;
1093         return 1;
1094 }
1095
1096 float botframe_autowaypoints_createwp(vector v, entity p, .entity fld, float f)
1097 {
1098         IL_EACH(g_waypoints, boxesoverlap(v - '32 32 32', v + '32 32 32', it.absmin, it.absmax),
1099         {
1100                 // if a matching spawnfunc_waypoint already exists, don't add a duplicate
1101                 return 0;
1102         });
1103
1104         waypoint_schedulerelink(p.(fld) = waypoint_spawn(v, v, f));
1105         return 1;
1106 }
1107
1108 // return value:
1109 //    1 = WP created
1110 //    0 = no action needed
1111 //   -1 = temp fail, try from world too
1112 //   -2 = permanent fail, do not retry
1113 float botframe_autowaypoints_fix_from(entity p, float walkfromwp, entity wp, .entity fld)
1114 {
1115         // make it possible to go from p to wp, if we can
1116         // if wp is NULL, nearest is chosen
1117
1118         entity w;
1119         vector porg;
1120         float t, tmin, tmax;
1121         vector o;
1122         vector save;
1123
1124         if(!botframe_autowaypoints_fixdown(p.origin))
1125                 return -2;
1126         porg = trace_endpos;
1127
1128         if(wp)
1129         {
1130                 // if any WP w fulfills wp -> w -> porg and w is closer than wp, then switch from wp to w
1131
1132                 // if wp -> porg, then OK
1133                 float maxdist;
1134                 if(navigation_waypoint_will_link(wp.origin, porg, p, walkfromwp, 1050))
1135                 {
1136                         // we may find a better one
1137                         maxdist = vlen(wp.origin - porg);
1138                 }
1139                 else
1140                 {
1141                         // accept any "good"
1142                         maxdist = 2100;
1143                 }
1144
1145                 float bestdist = maxdist;
1146                 IL_EACH(g_waypoints, it != wp && !(it.wpflags & WAYPOINTFLAG_NORELINK),
1147                 {
1148                         float d = vlen(wp.origin - it.origin) + vlen(it.origin - porg);
1149                         if(d < bestdist)
1150                         if(navigation_waypoint_will_link(wp.origin, it.origin, p, walkfromwp, 1050))
1151                         if(navigation_waypoint_will_link(it.origin, porg, p, walkfromwp, 1050))
1152                         {
1153                                 bestdist = d;
1154                                 p.(fld) = it;
1155                         }
1156                 });
1157                 if(bestdist < maxdist)
1158                 {
1159                         LOG_INFO("update chain to new nearest WP ", etos(p.(fld)), "\n");
1160                         return 0;
1161                 }
1162
1163                 if(bestdist < 2100)
1164                 {
1165                         // we know maxdist < 2100
1166                         // so wp -> porg is still valid
1167                         // all is good
1168                         p.(fld) = wp;
1169                         return 0;
1170                 }
1171
1172                 // otherwise, no existing WP can fix our issues
1173         }
1174         else
1175         {
1176                 save = p.origin;
1177                 setorigin(p, porg);
1178                 w = navigation_findnearestwaypoint(p, walkfromwp);
1179                 setorigin(p, save);
1180                 if(w)
1181                 {
1182                         p.(fld) = w;
1183                         return 0;
1184                 }
1185         }
1186
1187         tmin = 0;
1188         tmax = 1;
1189         for (;;)
1190         {
1191                 if(tmax - tmin < 0.001)
1192                 {
1193                         // did not get a good candidate
1194                         return -1;
1195                 }
1196
1197                 t = (tmin + tmax) * 0.5;
1198                 o = antilag_takebackorigin(p, CS(p), time - t);
1199                 if(!botframe_autowaypoints_fixdown(o))
1200                         return -2;
1201                 o = trace_endpos;
1202
1203                 if(wp)
1204                 {
1205                         if(!navigation_waypoint_will_link(wp.origin, o, p, walkfromwp, 1050))
1206                         {
1207                                 // we cannot walk from wp.origin to o
1208                                 // get closer to tmax
1209                                 tmin = t;
1210                                 continue;
1211                         }
1212                 }
1213                 else
1214                 {
1215                         save = p.origin;
1216                         setorigin(p, o);
1217                         w = navigation_findnearestwaypoint(p, walkfromwp);
1218                         setorigin(p, save);
1219                         if(!w)
1220                         {
1221                                 // we cannot walk from any WP to o
1222                                 // get closer to tmax
1223                                 tmin = t;
1224                                 continue;
1225                         }
1226                 }
1227
1228                 // if we get here, o is valid regarding waypoints
1229                 // check if o is connected right to the player
1230                 // we break if it succeeds, as that means o is a good waypoint location
1231                 if(navigation_waypoint_will_link(o, porg, p, walkfromwp, 1050))
1232                         break;
1233
1234                 // o is no good, we need to get closer to the player
1235                 tmax = t;
1236         }
1237
1238         LOG_INFO("spawning a waypoint for connecting to ", etos(wp), "\n");
1239         botframe_autowaypoints_createwp(o, p, fld, 0);
1240         return 1;
1241 }
1242
1243 // automatically create missing waypoints
1244 .entity botframe_autowaypoints_lastwp0, botframe_autowaypoints_lastwp1;
1245 void botframe_autowaypoints_fix(entity p, float walkfromwp, .entity fld)
1246 {
1247         float r = botframe_autowaypoints_fix_from(p, walkfromwp, p.(fld), fld);
1248         if(r != -1)
1249                 return;
1250         r = botframe_autowaypoints_fix_from(p, walkfromwp, NULL, fld);
1251         if(r != -1)
1252                 return;
1253
1254         LOG_INFO("emergency: got no good nearby WP to build a link from, starting a new chain\n");
1255         if(!botframe_autowaypoints_fixdown(p.origin))
1256                 return; // shouldn't happen, caught above
1257         botframe_autowaypoints_createwp(trace_endpos, p, fld, WAYPOINTFLAG_PROTECTED);
1258 }
1259
1260 void botframe_deleteuselesswaypoints()
1261 {
1262         IL_EACH(g_items, it.bot_pickup,
1263         {
1264                 // NOTE: this protects waypoints if they're the ONLY nearest
1265                 // waypoint. That's the intention.
1266                 navigation_findnearestwaypoint(it, false);  // Walk TO item.
1267                 navigation_findnearestwaypoint(it, true);  // Walk FROM item.
1268         });
1269         IL_EACH(g_waypoints, true,
1270         {
1271                 it.wpflags |= WAYPOINTFLAG_DEAD_END;
1272                 it.wpflags &= ~WAYPOINTFLAG_USEFUL;
1273                 // WP is useful if:
1274                 if (it.wpflags & WAYPOINTFLAG_ITEM)
1275                         it.wpflags |= WAYPOINTFLAG_USEFUL;
1276                 if (it.wpflags & WAYPOINTFLAG_TELEPORT)
1277                         it.wpflags |= WAYPOINTFLAG_USEFUL;
1278                 if (it.wpflags & WAYPOINTFLAG_PROTECTED)
1279                         it.wpflags |= WAYPOINTFLAG_USEFUL;
1280                 // b) WP is closest WP for an item/spawnpoint/other entity
1281                 //    This has been done above by protecting these WPs.
1282         });
1283         // c) There are w1, w, w2 so that w1 -> w, w -> w2 and not w1 -> w2.
1284         IL_EACH(g_waypoints, !(it.wpflags & WAYPOINTFLAG_PERSONAL),
1285         {
1286                 for (int m = 0; m < 32; ++m)
1287                 {
1288                         entity w = waypoint_get_link(it, m);
1289                         if (!w)
1290                                 break;
1291                         if (w.wpflags & WAYPOINTFLAG_PERSONAL)
1292                                 continue;
1293                         if (w.wpflags & WAYPOINTFLAG_USEFUL)
1294                                 continue;
1295                         for (int j = 0; j < 32; ++j)
1296                         {
1297                                 entity w2 = waypoint_get_link(w, j);
1298                                 if (!w2)
1299                                         break;
1300                                 if (it == w2)
1301                                         continue;
1302                                 if (w2.wpflags & WAYPOINTFLAG_PERSONAL)
1303                                         continue;
1304                                 // If we got here, it != w2 exist with it -> w
1305                                 // and w -> w2. That means the waypoint is not
1306                                 // a dead end.
1307                                 w.wpflags &= ~WAYPOINTFLAG_DEAD_END;
1308                                 for (int k = 0; k < 32; ++k)
1309                                 {
1310                                         if (waypoint_get_link(it, k) == w2)
1311                                                 continue;
1312                                         // IF WE GET HERE, w is proven useful
1313                                         // to get from it to w2!
1314                                         w.wpflags |= WAYPOINTFLAG_USEFUL;
1315                                         goto next;
1316                                 }
1317                         }
1318 LABEL(next)
1319                 }
1320         });
1321         // d) The waypoint is a dead end. Dead end waypoints must be kept as
1322         //     they are needed to complete routes while autowaypointing.
1323
1324         IL_EACH(g_waypoints, !(it.wpflags & (WAYPOINTFLAG_USEFUL | WAYPOINTFLAG_DEAD_END)),
1325         {
1326                 LOG_INFOF("Removed a waypoint at %v. Try again for more!\n", it.origin);
1327                 te_explosion(it.origin);
1328                 waypoint_remove(it);
1329                 break;
1330         });
1331
1332         IL_EACH(g_waypoints, true,
1333         {
1334                 it.wpflags &= ~(WAYPOINTFLAG_USEFUL | WAYPOINTFLAG_DEAD_END); // temp flag
1335         });
1336 }
1337
1338 void botframe_autowaypoints()
1339 {
1340         FOREACH_CLIENT(IS_PLAYER(it) && IS_REAL_CLIENT(it) && !IS_DEAD(it), LAMBDA(
1341                 // going back is broken, so only fix waypoints to walk TO the player
1342                 //botframe_autowaypoints_fix(p, false, botframe_autowaypoints_lastwp0);
1343                 botframe_autowaypoints_fix(it, true, botframe_autowaypoints_lastwp1);
1344                 //te_explosion(p.botframe_autowaypoints_lastwp0.origin);
1345         ));
1346
1347         if (autocvar_g_waypointeditor_auto >= 2) {
1348                 botframe_deleteuselesswaypoints();
1349         }
1350 }
1351