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