]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/bot/waypoints.qc
Merge branch 'master' into terencehill/arena_stuff
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / bot / waypoints.qc
1 // create a new spawnfunc_waypoint and automatically link it to other waypoints, and link
2 // them back to it as well
3 // (suitable for spawnfunc_waypoint editor)
4 entity waypoint_spawn(vector m1, vector m2, float f)
5 {
6         local entity w;
7         w = find(world, classname, "waypoint");
8
9         if not(f & WAYPOINTFLAG_PERSONAL)
10         while (w)
11         {
12                 // if a matching spawnfunc_waypoint already exists, don't add a duplicate
13                 if (boxesoverlap(m1, m2, w.absmin, w.absmax))
14                         return w;
15                 w = find(w, classname, "waypoint");
16         }
17
18         w = spawn();
19         w.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_PLAYERCLIP | DPCONTENTS_BOTCLIP;
20         w.classname = "waypoint";
21         w.wpflags = f;
22         setorigin(w, (m1 + m2) * 0.5);
23         setsize(w, m1 - w.origin, m2 - w.origin);
24         if (vlen(w.size) > 0)
25                 w.wpisbox = TRUE;
26
27         if(!w.wpisbox)
28         {
29                 setsize(w, PL_MIN - '1 1 0', PL_MAX + '1 1 0');
30                 if(!move_out_of_solid(w))
31                 {
32                         if(!(f & WAYPOINTFLAG_GENERATED))
33                         {
34                                 dprint("Killed a waypoint that was stuck in solid at ", vtos(w.origin), "\n");
35                                 remove(w);
36                                 return world;
37                         }
38                         else
39                         {
40                                 if(autocvar_developer)
41                                 {
42                                         print("A generated waypoint is stuck in solid at ", vtos(w.origin), "\n");
43                                         backtrace("Waypoint stuck");
44                                 }
45                         }
46                 }
47                 setsize(w, '0 0 0', '0 0 0');
48         }
49
50         waypoint_clearlinks(w);
51         //waypoint_schedulerelink(w);
52
53         if (autocvar_g_waypointeditor)
54         {
55                 m1 = w.mins;
56                 m2 = w.maxs;
57                 setmodel(w, "models/runematch/rune.mdl"); w.effects = EF_LOWPRECISION;
58                 setsize(w, m1, m2);
59                 if (w.wpflags & WAYPOINTFLAG_ITEM)
60                         w.colormod = '1 0 0';
61                 else if (w.wpflags & WAYPOINTFLAG_GENERATED)
62                         w.colormod = '1 1 0';
63                 else
64                         w.colormod = '1 1 1';
65         }
66         else
67                 w.model = "";
68
69         return w;
70 };
71
72 // add a new link to the spawnfunc_waypoint, replacing the furthest link it already has
73 void waypoint_addlink(entity from, entity to)
74 {
75         local float c;
76
77         if (from == to)
78                 return;
79         if (from.wpflags & WAYPOINTFLAG_NORELINK)
80                 return;
81
82         if (from.wp00 == to) return;if (from.wp01 == to) return;if (from.wp02 == to) return;if (from.wp03 == to) return;
83         if (from.wp04 == to) return;if (from.wp05 == to) return;if (from.wp06 == to) return;if (from.wp07 == to) return;
84         if (from.wp08 == to) return;if (from.wp09 == to) return;if (from.wp10 == to) return;if (from.wp11 == to) return;
85         if (from.wp12 == to) return;if (from.wp13 == to) return;if (from.wp14 == to) return;if (from.wp15 == to) return;
86         if (from.wp16 == to) return;if (from.wp17 == to) return;if (from.wp18 == to) return;if (from.wp19 == to) return;
87         if (from.wp20 == to) return;if (from.wp21 == to) return;if (from.wp22 == to) return;if (from.wp23 == to) return;
88         if (from.wp24 == to) return;if (from.wp25 == to) return;if (from.wp26 == to) return;if (from.wp27 == to) return;
89         if (from.wp28 == to) return;if (from.wp29 == to) return;if (from.wp30 == to) return;if (from.wp31 == to) return;
90
91         if (to.wpisbox || from.wpisbox)
92         {
93                 // if either is a box we have to find the nearest points on them to
94                 // calculate the distance properly
95                 local vector v1, v2, m1, m2;
96                 v1 = from.origin;
97                 m1 = to.absmin;
98                 m2 = to.absmax;
99                 v1_x = bound(m1_x, v1_x, m2_x);
100                 v1_y = bound(m1_y, v1_y, m2_y);
101                 v1_z = bound(m1_z, v1_z, m2_z);
102                 v2 = to.origin;
103                 m1 = from.absmin;
104                 m2 = from.absmax;
105                 v2_x = bound(m1_x, v2_x, m2_x);
106                 v2_y = bound(m1_y, v2_y, m2_y);
107                 v2_z = bound(m1_z, v2_z, m2_z);
108                 v2 = to.origin;
109                 c = vlen(v2 - v1);
110         }
111         else
112                 c = vlen(to.origin - from.origin);
113
114         if (from.wp31mincost < c) return;
115         if (from.wp30mincost < c) {from.wp31 = to;from.wp31mincost = c;return;} from.wp31 = from.wp30;from.wp31mincost = from.wp30mincost;
116         if (from.wp29mincost < c) {from.wp30 = to;from.wp30mincost = c;return;} from.wp30 = from.wp29;from.wp30mincost = from.wp29mincost;
117         if (from.wp28mincost < c) {from.wp29 = to;from.wp29mincost = c;return;} from.wp29 = from.wp28;from.wp29mincost = from.wp28mincost;
118         if (from.wp27mincost < c) {from.wp28 = to;from.wp28mincost = c;return;} from.wp28 = from.wp27;from.wp28mincost = from.wp27mincost;
119         if (from.wp26mincost < c) {from.wp27 = to;from.wp27mincost = c;return;} from.wp27 = from.wp26;from.wp27mincost = from.wp26mincost;
120         if (from.wp25mincost < c) {from.wp26 = to;from.wp26mincost = c;return;} from.wp26 = from.wp25;from.wp26mincost = from.wp25mincost;
121         if (from.wp24mincost < c) {from.wp25 = to;from.wp25mincost = c;return;} from.wp25 = from.wp24;from.wp25mincost = from.wp24mincost;
122         if (from.wp23mincost < c) {from.wp24 = to;from.wp24mincost = c;return;} from.wp24 = from.wp23;from.wp24mincost = from.wp23mincost;
123         if (from.wp22mincost < c) {from.wp23 = to;from.wp23mincost = c;return;} from.wp23 = from.wp22;from.wp23mincost = from.wp22mincost;
124         if (from.wp21mincost < c) {from.wp22 = to;from.wp22mincost = c;return;} from.wp22 = from.wp21;from.wp22mincost = from.wp21mincost;
125         if (from.wp20mincost < c) {from.wp21 = to;from.wp21mincost = c;return;} from.wp21 = from.wp20;from.wp21mincost = from.wp20mincost;
126         if (from.wp19mincost < c) {from.wp20 = to;from.wp20mincost = c;return;} from.wp20 = from.wp19;from.wp20mincost = from.wp19mincost;
127         if (from.wp18mincost < c) {from.wp19 = to;from.wp19mincost = c;return;} from.wp19 = from.wp18;from.wp19mincost = from.wp18mincost;
128         if (from.wp17mincost < c) {from.wp18 = to;from.wp18mincost = c;return;} from.wp18 = from.wp17;from.wp18mincost = from.wp17mincost;
129         if (from.wp16mincost < c) {from.wp17 = to;from.wp17mincost = c;return;} from.wp17 = from.wp16;from.wp17mincost = from.wp16mincost;
130         if (from.wp15mincost < c) {from.wp16 = to;from.wp16mincost = c;return;} from.wp16 = from.wp15;from.wp16mincost = from.wp15mincost;
131         if (from.wp14mincost < c) {from.wp15 = to;from.wp15mincost = c;return;} from.wp15 = from.wp14;from.wp15mincost = from.wp14mincost;
132         if (from.wp13mincost < c) {from.wp14 = to;from.wp14mincost = c;return;} from.wp14 = from.wp13;from.wp14mincost = from.wp13mincost;
133         if (from.wp12mincost < c) {from.wp13 = to;from.wp13mincost = c;return;} from.wp13 = from.wp12;from.wp13mincost = from.wp12mincost;
134         if (from.wp11mincost < c) {from.wp12 = to;from.wp12mincost = c;return;} from.wp12 = from.wp11;from.wp12mincost = from.wp11mincost;
135         if (from.wp10mincost < c) {from.wp11 = to;from.wp11mincost = c;return;} from.wp11 = from.wp10;from.wp11mincost = from.wp10mincost;
136         if (from.wp09mincost < c) {from.wp10 = to;from.wp10mincost = c;return;} from.wp10 = from.wp09;from.wp10mincost = from.wp09mincost;
137         if (from.wp08mincost < c) {from.wp09 = to;from.wp09mincost = c;return;} from.wp09 = from.wp08;from.wp09mincost = from.wp08mincost;
138         if (from.wp07mincost < c) {from.wp08 = to;from.wp08mincost = c;return;} from.wp08 = from.wp07;from.wp08mincost = from.wp07mincost;
139         if (from.wp06mincost < c) {from.wp07 = to;from.wp07mincost = c;return;} from.wp07 = from.wp06;from.wp07mincost = from.wp06mincost;
140         if (from.wp05mincost < c) {from.wp06 = to;from.wp06mincost = c;return;} from.wp06 = from.wp05;from.wp06mincost = from.wp05mincost;
141         if (from.wp04mincost < c) {from.wp05 = to;from.wp05mincost = c;return;} from.wp05 = from.wp04;from.wp05mincost = from.wp04mincost;
142         if (from.wp03mincost < c) {from.wp04 = to;from.wp04mincost = c;return;} from.wp04 = from.wp03;from.wp04mincost = from.wp03mincost;
143         if (from.wp02mincost < c) {from.wp03 = to;from.wp03mincost = c;return;} from.wp03 = from.wp02;from.wp03mincost = from.wp02mincost;
144         if (from.wp01mincost < c) {from.wp02 = to;from.wp02mincost = c;return;} from.wp02 = from.wp01;from.wp02mincost = from.wp01mincost;
145         if (from.wp00mincost < c) {from.wp01 = to;from.wp01mincost = c;return;} from.wp01 = from.wp00;from.wp01mincost = from.wp00mincost;
146         from.wp00 = to;from.wp00mincost = c;return;
147 };
148
149 // relink this spawnfunc_waypoint
150 // (precompile a list of all reachable waypoints from this spawnfunc_waypoint)
151 // (SLOW!)
152 void waypoint_think()
153 {
154         local entity e;
155         local vector sv, sm1, sm2, ev, em1, em2, dv;
156
157         bot_calculate_stepheightvec();
158
159         bot_navigation_movemode = ((autocvar_bot_navigation_ignoreplayers) ? MOVE_NOMONSTERS : MOVE_NORMAL);
160
161         //dprint("waypoint_think wpisbox = ", ftos(self.wpisbox), "\n");
162         sm1 = self.origin + self.mins;
163         sm2 = self.origin + self.maxs;
164         for(e = world; (e = find(e, classname, "waypoint")); )
165         {
166                 if (boxesoverlap(self.absmin, self.absmax, e.absmin, e.absmax))
167                 {
168                         waypoint_addlink(self, e);
169                         waypoint_addlink(e, self);
170                 }
171                 else
172                 {
173                         ++relink_total;
174                         if(!checkpvs(self.origin, e))
175                         {
176                                 ++relink_pvsculled;
177                                 continue;
178                         }
179                         sv = e.origin;
180                         sv_x = bound(sm1_x, sv_x, sm2_x);
181                         sv_y = bound(sm1_y, sv_y, sm2_y);
182                         sv_z = bound(sm1_z, sv_z, sm2_z);
183                         ev = self.origin;
184                         em1 = e.origin + e.mins;
185                         em2 = e.origin + e.maxs;
186                         ev_x = bound(em1_x, ev_x, em2_x);
187                         ev_y = bound(em1_y, ev_y, em2_y);
188                         ev_z = bound(em1_z, ev_z, em2_z);
189                         dv = ev - sv;
190                         dv_z = 0;
191                         if (vlen(dv) >= 1050) // max search distance in XY
192                         {
193                                 ++relink_lengthculled;
194                                 continue;
195                         }
196                         navigation_testtracewalk = 0;
197                         if (!self.wpisbox)
198                         {
199                                 tracebox(sv - PL_MIN_z * '0 0 1', PL_MIN, PL_MAX, sv, FALSE, self);
200                                 if (!trace_startsolid)
201                                 {
202                                         //dprint("sv deviation", vtos(trace_endpos - sv), "\n");
203                                         sv = trace_endpos + '0 0 1';
204                                 }
205                         }
206                         if (!e.wpisbox)
207                         {
208                                 tracebox(ev - PL_MIN_z * '0 0 1', PL_MIN, PL_MAX, ev, FALSE, e);
209                                 if (!trace_startsolid)
210                                 {
211                                         //dprint("ev deviation", vtos(trace_endpos - ev), "\n");
212                                         ev = trace_endpos + '0 0 1';
213                                 }
214                         }
215                         //traceline(self.origin, e.origin, FALSE, world);
216                         //if (trace_fraction == 1)
217                         if (!self.wpisbox && tracewalk(self, sv, PL_MIN, PL_MAX, ev, MOVE_NOMONSTERS))
218                                 waypoint_addlink(self, e);
219                         else
220                                 relink_walkculled += 0.5;
221                         if (!e.wpisbox && tracewalk(e, ev, PL_MIN, PL_MAX, sv, MOVE_NOMONSTERS))
222                                 waypoint_addlink(e, self);
223                         else
224                                 relink_walkculled += 0.5;
225                 }
226         }
227         navigation_testtracewalk = 0;
228         self.wplinked = TRUE;
229 };
230
231 void waypoint_clearlinks(entity wp)
232 {
233         // clear links to other waypoints
234         local float f;
235         f = 10000000;
236         wp.wp00 = wp.wp01 = wp.wp02 = wp.wp03 = wp.wp04 = wp.wp05 = wp.wp06 = wp.wp07 = world;
237         wp.wp08 = wp.wp09 = wp.wp10 = wp.wp11 = wp.wp12 = wp.wp13 = wp.wp14 = wp.wp15 = world;
238         wp.wp16 = wp.wp17 = wp.wp18 = wp.wp19 = wp.wp20 = wp.wp21 = wp.wp22 = wp.wp23 = world;
239         wp.wp24 = wp.wp25 = wp.wp26 = wp.wp27 = wp.wp28 = wp.wp29 = wp.wp30 = wp.wp31 = world;
240
241         wp.wp00mincost = wp.wp01mincost = wp.wp02mincost = wp.wp03mincost = wp.wp04mincost = wp.wp05mincost = wp.wp06mincost = wp.wp07mincost = f;
242         wp.wp08mincost = wp.wp09mincost = wp.wp10mincost = wp.wp11mincost = wp.wp12mincost = wp.wp13mincost = wp.wp14mincost = wp.wp15mincost = f;
243         wp.wp16mincost = wp.wp17mincost = wp.wp18mincost = wp.wp19mincost = wp.wp20mincost = wp.wp21mincost = wp.wp22mincost = wp.wp23mincost = f;
244         wp.wp24mincost = wp.wp25mincost = wp.wp26mincost = wp.wp27mincost = wp.wp28mincost = wp.wp29mincost = wp.wp30mincost = wp.wp31mincost = f;
245
246         wp.wplinked = FALSE;
247 };
248
249 // tell a spawnfunc_waypoint to relink
250 void waypoint_schedulerelink(entity wp)
251 {
252         if (wp == world)
253                 return;
254         // TODO: add some sort of visible box in edit mode for box waypoints
255         if (autocvar_g_waypointeditor)
256         {
257                 local vector m1, m2;
258                 m1 = wp.mins;
259                 m2 = wp.maxs;
260                 setmodel(wp, "models/runematch/rune.mdl"); wp.effects = EF_LOWPRECISION;
261                 setsize(wp, m1, m2);
262                 if (wp.wpflags & WAYPOINTFLAG_ITEM)
263                         wp.colormod = '1 0 0';
264                 else if (wp.wpflags & WAYPOINTFLAG_GENERATED)
265                         wp.colormod = '1 1 0';
266                 else
267                         wp.colormod = '1 1 1';
268         }
269         else
270                 wp.model = "";
271         wp.wpisbox = vlen(wp.size) > 0;
272         wp.enemy = world;
273         if (!(wp.wpflags & WAYPOINTFLAG_PERSONAL))
274                 wp.owner = world;
275         if (!(wp.wpflags & WAYPOINTFLAG_NORELINK))
276                 waypoint_clearlinks(wp);
277         // schedule an actual relink on next frame
278         wp.think = waypoint_think;
279         wp.nextthink = time;
280         wp.effects = EF_LOWPRECISION;
281 }
282
283 // spawnfunc_waypoint map entity
284 void spawnfunc_waypoint()
285 {
286         setorigin(self, self.origin);
287         // schedule a relink after other waypoints have had a chance to spawn
288         waypoint_clearlinks(self);
289         //waypoint_schedulerelink(self);
290 };
291
292 // remove a spawnfunc_waypoint, and schedule all neighbors to relink
293 void waypoint_remove(entity e)
294 {
295         // tell all linked waypoints that they need to relink
296         waypoint_schedulerelink(e.wp00);
297         waypoint_schedulerelink(e.wp01);
298         waypoint_schedulerelink(e.wp02);
299         waypoint_schedulerelink(e.wp03);
300         waypoint_schedulerelink(e.wp04);
301         waypoint_schedulerelink(e.wp05);
302         waypoint_schedulerelink(e.wp06);
303         waypoint_schedulerelink(e.wp07);
304         waypoint_schedulerelink(e.wp08);
305         waypoint_schedulerelink(e.wp09);
306         waypoint_schedulerelink(e.wp10);
307         waypoint_schedulerelink(e.wp11);
308         waypoint_schedulerelink(e.wp12);
309         waypoint_schedulerelink(e.wp13);
310         waypoint_schedulerelink(e.wp14);
311         waypoint_schedulerelink(e.wp15);
312         waypoint_schedulerelink(e.wp16);
313         waypoint_schedulerelink(e.wp17);
314         waypoint_schedulerelink(e.wp18);
315         waypoint_schedulerelink(e.wp19);
316         waypoint_schedulerelink(e.wp20);
317         waypoint_schedulerelink(e.wp21);
318         waypoint_schedulerelink(e.wp22);
319         waypoint_schedulerelink(e.wp23);
320         waypoint_schedulerelink(e.wp24);
321         waypoint_schedulerelink(e.wp25);
322         waypoint_schedulerelink(e.wp26);
323         waypoint_schedulerelink(e.wp27);
324         waypoint_schedulerelink(e.wp28);
325         waypoint_schedulerelink(e.wp29);
326         waypoint_schedulerelink(e.wp30);
327         waypoint_schedulerelink(e.wp31);
328         // and now remove the spawnfunc_waypoint
329         remove(e);
330 };
331
332 // empties the map of waypoints
333 void waypoint_removeall()
334 {
335         local entity head, next;
336         head = findchain(classname, "waypoint");
337         while (head)
338         {
339                 next = head.chain;
340                 remove(head);
341                 head = next;
342         }
343 };
344
345 // tell all waypoints to relink
346 // (is this useful at all?)
347 void waypoint_schedulerelinkall()
348 {
349         local entity head;
350         relink_total = relink_walkculled = relink_pvsculled = relink_lengthculled = 0;
351         head = findchain(classname, "waypoint");
352         while (head)
353         {
354                 waypoint_schedulerelink(head);
355                 head = head.chain;
356         }
357 };
358
359 // Load waypoint links from file
360 float waypoint_load_links()
361 {
362         local string filename, s;
363         local float file, tokens, c, found;
364         local entity wp_from, wp_to;
365         local vector wp_to_pos, wp_from_pos;
366         filename = strcat("maps/", mapname);
367         filename = strcat(filename, ".waypoints.cache");
368         file = fopen(filename, FILE_READ);
369
370         if (file < 0)
371         {
372                 dprint("waypoint links load from ");
373                 dprint(filename);
374                 dprint(" failed\n");
375                 return FALSE;
376         }
377
378         while (1)
379         {
380                 s = fgets(file);
381                 if (!s)
382                         break;
383
384                 tokens = tokenizebyseparator(s, "*");
385
386                 if (tokens!=2)
387                 {
388                         // bad file format
389                         fclose(file);
390                         return FALSE;
391                 }
392
393                 wp_from_pos     = stov(argv(0));
394                 wp_to_pos       = stov(argv(1));
395
396                 // Search "from" waypoint
397                 if(wp_from.origin!=wp_from_pos)
398                 {
399                         wp_from = findradius(wp_from_pos, 1);
400                         found = FALSE;
401                         while(wp_from)
402                         {
403                                 if(vlen(wp_from.origin-wp_from_pos)<1)
404                                 if(wp_from.classname == "waypoint")
405                                 {
406                                         found = TRUE;
407                                         break;
408                                 }
409                                 wp_from = wp_from.chain;
410                         }
411
412                         if(!found)
413                         {
414                                 // can't find that waypoint
415                                 fclose(file);
416                                 return FALSE;
417                         }
418                 }
419
420                 // Search "to" waypoint
421                 wp_to = findradius(wp_to_pos, 1);
422                 found = FALSE;
423                 while(wp_to)
424                 {
425                         if(vlen(wp_to.origin-wp_to_pos)<1)
426                         if(wp_to.classname == "waypoint")
427                         {
428                                 found = TRUE;
429                                 break;
430                         }
431                         wp_to = wp_to.chain;
432                 }
433
434                 if(!found)
435                 {
436                         // can't find that waypoint
437                         fclose(file);
438                         return FALSE;
439                 }
440
441                 ++c;
442                 waypoint_addlink(wp_from, wp_to);
443         }
444
445         fclose(file);
446
447         dprint("loaded ");
448         dprint(ftos(c));
449         dprint(" waypoint links from maps/");
450         dprint(mapname);
451         dprint(".waypoints.cache\n");
452
453         botframe_cachedwaypointlinks = TRUE;
454         return TRUE;
455 };
456
457 void waypoint_load_links_hardwired()
458 {
459         local string filename, s;
460         local float file, tokens, c, found;
461         local entity wp_from, wp_to;
462         local vector wp_to_pos, wp_from_pos;
463         filename = strcat("maps/", mapname);
464         filename = strcat(filename, ".waypoints.hardwired");
465         file = fopen(filename, FILE_READ);
466
467         botframe_loadedforcedlinks = TRUE;
468
469         if (file < 0)
470         {
471                 dprint("waypoint links load from ");
472                 dprint(filename);
473                 dprint(" failed\n");
474                 return;
475         }
476
477         for (;;)
478         {
479                 s = fgets(file);
480                 if (!s)
481                         break;
482
483                 if(substring(s, 0, 2)=="//")
484                         continue;
485
486                 if(substring(s, 0, 1)=="#")
487                         continue;
488
489                 tokens = tokenizebyseparator(s, "*");
490
491                 if (tokens!=2)
492                         continue;
493
494                 wp_from_pos     = stov(argv(0));
495                 wp_to_pos       = stov(argv(1));
496
497                 // Search "from" waypoint
498                 if(wp_from.origin!=wp_from_pos)
499                 {
500                         wp_from = findradius(wp_from_pos, 5);
501                         found = FALSE;
502                         while(wp_from)
503                         {
504                                 if(vlen(wp_from.origin-wp_from_pos)<5)
505                                 if(wp_from.classname == "waypoint")
506                                 {
507                                         found = TRUE;
508                                         break;
509                                 }
510                                 wp_from = wp_from.chain;
511                         }
512
513                         if(!found)
514                         {
515                                 print(strcat("NOTICE: Can not find waypoint at ", vtos(wp_from_pos), ". Path skipped\n"));
516                                 continue;
517                         }
518                 }
519
520                 // Search "to" waypoint
521                 wp_to = findradius(wp_to_pos, 5);
522                 found = FALSE;
523                 while(wp_to)
524                 {
525                         if(vlen(wp_to.origin-wp_to_pos)<5)
526                         if(wp_to.classname == "waypoint")
527                         {
528                                 found = TRUE;
529                                 break;
530                         }
531                         wp_to = wp_to.chain;
532                 }
533
534                 if(!found)
535                 {
536                         print(strcat("NOTICE: Can not find waypoint at ", vtos(wp_to_pos), ". Path skipped\n"));
537                         continue;
538                 }
539
540                 ++c;
541                 waypoint_addlink(wp_from, wp_to);
542         }
543
544         fclose(file);
545
546         dprint("loaded ");
547         dprint(ftos(c));
548         dprint(" waypoint links from maps/");
549         dprint(mapname);
550         dprint(".waypoints.hardwired\n");
551 };
552
553 // Save all waypoint links to a file
554 void waypoint_save_links()
555 {
556         local string filename, s;
557         local float file, c, i;
558         local entity w, link;
559         filename = strcat("maps/", mapname);
560         filename = strcat(filename, ".waypoints.cache");
561         file = fopen(filename, FILE_WRITE);
562         if (file < 0)
563         {
564                 print("waypoint links save to ");
565                 print(filename);
566                 print(" failed\n");
567         }
568         c = 0;
569         w = findchain(classname, "waypoint");
570         while (w)
571         {
572                 for(i=0;i<32;++i)
573                 {
574                         // :S
575                         switch(i)
576                         {
577                                 //      for i in $(seq -w 0 31); do echo "case $i:link = w.wp$i; break;"; done;
578                                 case 00:link = w.wp00; break;
579                                 case 01:link = w.wp01; break;
580                                 case 02:link = w.wp02; break;
581                                 case 03:link = w.wp03; break;
582                                 case 04:link = w.wp04; break;
583                                 case 05:link = w.wp05; break;
584                                 case 06:link = w.wp06; break;
585                                 case 07:link = w.wp07; break;
586                                 case 08:link = w.wp08; break;
587                                 case 09:link = w.wp09; break;
588                                 case 10:link = w.wp10; break;
589                                 case 11:link = w.wp11; break;
590                                 case 12:link = w.wp12; break;
591                                 case 13:link = w.wp13; break;
592                                 case 14:link = w.wp14; break;
593                                 case 15:link = w.wp15; break;
594                                 case 16:link = w.wp16; break;
595                                 case 17:link = w.wp17; break;
596                                 case 18:link = w.wp18; break;
597                                 case 19:link = w.wp19; break;
598                                 case 20:link = w.wp20; break;
599                                 case 21:link = w.wp21; break;
600                                 case 22:link = w.wp22; break;
601                                 case 23:link = w.wp23; break;
602                                 case 24:link = w.wp24; break;
603                                 case 25:link = w.wp25; break;
604                                 case 26:link = w.wp26; break;
605                                 case 27:link = w.wp27; break;
606                                 case 28:link = w.wp28; break;
607                                 case 29:link = w.wp29; break;
608                                 case 30:link = w.wp30; break;
609                                 case 31:link = w.wp31; break;
610                         }
611
612                         if(link==world)
613                                 continue;
614
615                         s = strcat(vtos(w.origin), "*", vtos(link.origin), "\n");
616                         fputs(file, s);
617                         ++c;
618                 }
619                 w = w.chain;
620         }
621         fclose(file);
622         botframe_cachedwaypointlinks = TRUE;
623
624         print("saved ");
625         print(ftos(c));
626         print(" waypoints links to maps/");
627         print(mapname);
628         print(".waypoints.cache\n");
629 };
630
631 // save waypoints to gamedir/data/maps/mapname.waypoints
632 void waypoint_saveall()
633 {
634         local string filename, s;
635         local float file, c;
636         local entity w;
637         filename = strcat("maps/", mapname);
638         filename = strcat(filename, ".waypoints");
639         file = fopen(filename, FILE_WRITE);
640         if (file >= 0)
641         {
642                 c = 0;
643                 w = findchain(classname, "waypoint");
644                 while (w)
645                 {
646                         if (!(w.wpflags & WAYPOINTFLAG_GENERATED))
647                         {
648                                 s = strcat(vtos(w.origin + w.mins), "\n");
649                                 s = strcat(s, vtos(w.origin + w.maxs));
650                                 s = strcat(s, "\n");
651                                 s = strcat(s, ftos(w.wpflags));
652                                 s = strcat(s, "\n");
653                                 fputs(file, s);
654                                 c = c + 1;
655                         }
656                         w = w.chain;
657                 }
658                 fclose(file);
659                 bprint("saved ");
660                 bprint(ftos(c));
661                 bprint(" waypoints to maps/");
662                 bprint(mapname);
663                 bprint(".waypoints\n");
664         }
665         else
666         {
667                 bprint("waypoint save to ");
668                 bprint(filename);
669                 bprint(" failed\n");
670         }
671         waypoint_save_links();
672         botframe_loadedforcedlinks = FALSE;
673 };
674
675 // load waypoints from file
676 float waypoint_loadall()
677 {
678         local string filename, s;
679         local float file, cwp, cwb, fl;
680         local vector m1, m2;
681         cwp = 0;
682         cwb = 0;
683         filename = strcat("maps/", mapname);
684         filename = strcat(filename, ".waypoints");
685         file = fopen(filename, FILE_READ);
686         if (file >= 0)
687         {
688                 while (1)
689                 {
690                         s = fgets(file);
691                         if (!s)
692                                 break;
693                         m1 = stov(s);
694                         s = fgets(file);
695                         if (!s)
696                                 break;
697                         m2 = stov(s);
698                         s = fgets(file);
699                         if (!s)
700                                 break;
701                         fl = stof(s);
702                         waypoint_spawn(m1, m2, fl);
703                         if (m1 == m2)
704                                 cwp = cwp + 1;
705                         else
706                                 cwb = cwb + 1;
707                 }
708                 fclose(file);
709                 dprint("loaded ");
710                 dprint(ftos(cwp));
711                 dprint(" waypoints and ");
712                 dprint(ftos(cwb));
713                 dprint(" wayboxes from maps/");
714                 dprint(mapname);
715                 dprint(".waypoints\n");
716         }
717         else
718         {
719                 dprint("waypoint load from ");
720                 dprint(filename);
721                 dprint(" failed\n");
722         }
723         return cwp + cwb;
724 };
725
726 vector waypoint_fixorigin(vector position)
727 {
728         tracebox(position + '0 0 1' * (1 - PL_MIN_z), PL_MIN, PL_MAX, position + '0 0 -512', MOVE_NOMONSTERS, world);
729         if(trace_fraction < 1)
730                 position = trace_endpos;
731         //traceline(position, position + '0 0 -512', MOVE_NOMONSTERS, world);
732         //print("position is ", ftos(trace_endpos_z - position_z), " above solid\n");
733         return position;
734 }
735
736 void waypoint_spawnforitem_force(entity e, vector org)
737 {
738         local entity w;
739
740         // Fix the waypoint altitude if necessary
741         org = waypoint_fixorigin(org);
742
743         // don't spawn an item spawnfunc_waypoint if it already exists
744         w = findchain(classname, "waypoint");
745         while (w)
746         {
747                 if (w.wpisbox)
748                 {
749                         if (boxesoverlap(org, org, w.absmin, w.absmax))
750                         {
751                                 e.nearestwaypoint = w;
752                                 return;
753                         }
754                 }
755                 else
756                 {
757                         if (vlen(w.origin - org) < 16)
758                         {
759                                 e.nearestwaypoint = w;
760                                 return;
761                         }
762                 }
763                 w = w.chain;
764         }
765         e.nearestwaypoint = waypoint_spawn(org, org, WAYPOINTFLAG_GENERATED | WAYPOINTFLAG_ITEM);
766 }
767
768 void waypoint_spawnforitem(entity e)
769 {
770         if(!bot_waypoints_for_items)
771                 return;
772
773         waypoint_spawnforitem_force(e, e.origin);
774 };
775
776 void waypoint_spawnforteleporter_boxes(entity e, vector org1, vector org2, vector destination1, vector destination2, float timetaken)
777 {
778         local entity w;
779         local entity dw;
780         w = waypoint_spawn(org1, org2, WAYPOINTFLAG_GENERATED | WAYPOINTFLAG_TELEPORT | WAYPOINTFLAG_NORELINK);
781         dw = waypoint_spawn(destination1, destination2, WAYPOINTFLAG_GENERATED);
782         // one way link to the destination
783         w.wp00 = dw;
784         w.wp00mincost = timetaken; // this is just for jump pads
785         // the teleporter's nearest spawnfunc_waypoint is this one
786         // (teleporters are not goals, so this is probably useless)
787         e.nearestwaypoint = w;
788         e.nearestwaypointtimeout = time + 1000000000;
789 };
790
791 void waypoint_spawnforteleporter_v(entity e, vector org, vector destination, float timetaken)
792 {
793         org = waypoint_fixorigin(org);
794         destination = waypoint_fixorigin(destination);
795         waypoint_spawnforteleporter_boxes(e, org, org, destination, destination, timetaken);
796 };
797
798 void waypoint_spawnforteleporter(entity e, vector destination, float timetaken)
799 {
800         destination = waypoint_fixorigin(destination);
801         waypoint_spawnforteleporter_boxes(e, e.absmin, e.absmax, destination, destination, timetaken);
802 };
803
804 entity waypoint_spawnpersonal(vector position)
805 {
806         entity w;
807
808         // drop the waypoint to a proper location:
809         //   first move it up by a player height
810         //   then move it down to hit the floor with player bbox size
811         position = waypoint_fixorigin(position);
812
813         w = waypoint_spawn(position, position, WAYPOINTFLAG_GENERATED | WAYPOINTFLAG_PERSONAL);
814         w.nearestwaypoint = world;
815         w.nearestwaypointtimeout = 0;
816         w.owner = self;
817
818         waypoint_schedulerelink(w);
819
820         return w;
821 };
822
823 void botframe_showwaypointlinks()
824 {
825         local entity player, head, w;
826         if (time < botframe_waypointeditorlightningtime)
827                 return;
828         botframe_waypointeditorlightningtime = time + 0.5;
829         player = find(world, classname, "player");
830         while (player)
831         {
832                 if (!player.isbot)
833                 if (player.flags & FL_ONGROUND || player.waterlevel > WATERLEVEL_NONE)
834                 {
835                         //navigation_testtracewalk = TRUE;
836                         head = navigation_findnearestwaypoint(player, FALSE);
837                 //      print("currently selected WP is ", etos(head), "\n");
838                         //navigation_testtracewalk = FALSE;
839                         if (head)
840                         {
841                                 w = head     ;if (w) te_lightning2(world, w.origin, player.origin);
842                                 w = head.wp00;if (w) te_lightning2(world, w.origin, head.origin);
843                                 w = head.wp01;if (w) te_lightning2(world, w.origin, head.origin);
844                                 w = head.wp02;if (w) te_lightning2(world, w.origin, head.origin);
845                                 w = head.wp03;if (w) te_lightning2(world, w.origin, head.origin);
846                                 w = head.wp04;if (w) te_lightning2(world, w.origin, head.origin);
847                                 w = head.wp05;if (w) te_lightning2(world, w.origin, head.origin);
848                                 w = head.wp06;if (w) te_lightning2(world, w.origin, head.origin);
849                                 w = head.wp07;if (w) te_lightning2(world, w.origin, head.origin);
850                                 w = head.wp08;if (w) te_lightning2(world, w.origin, head.origin);
851                                 w = head.wp09;if (w) te_lightning2(world, w.origin, head.origin);
852                                 w = head.wp10;if (w) te_lightning2(world, w.origin, head.origin);
853                                 w = head.wp11;if (w) te_lightning2(world, w.origin, head.origin);
854                                 w = head.wp12;if (w) te_lightning2(world, w.origin, head.origin);
855                                 w = head.wp13;if (w) te_lightning2(world, w.origin, head.origin);
856                                 w = head.wp14;if (w) te_lightning2(world, w.origin, head.origin);
857                                 w = head.wp15;if (w) te_lightning2(world, w.origin, head.origin);
858                                 w = head.wp16;if (w) te_lightning2(world, w.origin, head.origin);
859                                 w = head.wp17;if (w) te_lightning2(world, w.origin, head.origin);
860                                 w = head.wp18;if (w) te_lightning2(world, w.origin, head.origin);
861                                 w = head.wp19;if (w) te_lightning2(world, w.origin, head.origin);
862                                 w = head.wp20;if (w) te_lightning2(world, w.origin, head.origin);
863                                 w = head.wp21;if (w) te_lightning2(world, w.origin, head.origin);
864                                 w = head.wp22;if (w) te_lightning2(world, w.origin, head.origin);
865                                 w = head.wp23;if (w) te_lightning2(world, w.origin, head.origin);
866                                 w = head.wp24;if (w) te_lightning2(world, w.origin, head.origin);
867                                 w = head.wp25;if (w) te_lightning2(world, w.origin, head.origin);
868                                 w = head.wp26;if (w) te_lightning2(world, w.origin, head.origin);
869                                 w = head.wp27;if (w) te_lightning2(world, w.origin, head.origin);
870                                 w = head.wp28;if (w) te_lightning2(world, w.origin, head.origin);
871                                 w = head.wp29;if (w) te_lightning2(world, w.origin, head.origin);
872                                 w = head.wp30;if (w) te_lightning2(world, w.origin, head.origin);
873                                 w = head.wp31;if (w) te_lightning2(world, w.origin, head.origin);
874                         }
875                 }
876                 player = find(player, classname, "player");
877         }
878 };