]> icculus.org git repositories - divverent/darkplaces.git/blob - world.c
add ALSA support
[divverent/darkplaces.git] / world.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // world.c -- world query functions
21
22 #include "quakedef.h"
23
24 /*
25
26 entities never clip against themselves, or their owner
27
28 line of sight checks trace->crosscontent, but bullets don't
29
30 */
31
32
33 typedef struct
34 {
35         vec3_t          boxmins, boxmaxs;// enclose the test object along entire move
36         float           *mins, *maxs;   // size of the moving object
37         vec3_t          mins2, maxs2;   // size when clipping against mosnters
38         float           *start, *end;
39         trace_t         trace;
40         int                     type;
41         edict_t         *passedict;
42 } moveclip_t;
43
44
45 /*
46 ===============================================================================
47
48 HULL BOXES
49
50 ===============================================================================
51 */
52
53
54 static  hull_t          box_hull;
55 static  dclipnode_t     box_clipnodes[6];
56 static  mplane_t        box_planes[6];
57
58 /*
59 ===================
60 SV_InitBoxHull
61
62 Set up the planes and clipnodes so that the six floats of a bounding box
63 can just be stored out and get a proper hull_t structure.
64 ===================
65 */
66 void SV_InitBoxHull (void)
67 {
68         int             i;
69         int             side;
70
71         box_hull.clipnodes = box_clipnodes;
72         box_hull.planes = box_planes;
73         box_hull.firstclipnode = 0;
74         box_hull.lastclipnode = 5;
75
76         for (i=0 ; i<6 ; i++)
77         {
78                 box_clipnodes[i].planenum = i;
79                 
80                 side = i&1;
81                 
82                 box_clipnodes[i].children[side] = CONTENTS_EMPTY;
83                 if (i != 5)
84                         box_clipnodes[i].children[side^1] = i + 1;
85                 else
86                         box_clipnodes[i].children[side^1] = CONTENTS_SOLID;
87                 
88                 box_planes[i].type = i>>1;
89                 box_planes[i].normal[i>>1] = 1;
90         }
91         
92 }
93
94
95 /*
96 ===================
97 SV_HullForBox
98
99 To keep everything totally uniform, bounding boxes are turned into small
100 BSP trees instead of being compared directly.
101 ===================
102 */
103 hull_t  *SV_HullForBox (vec3_t mins, vec3_t maxs)
104 {
105         box_planes[0].dist = maxs[0];
106         box_planes[1].dist = mins[0];
107         box_planes[2].dist = maxs[1];
108         box_planes[3].dist = mins[1];
109         box_planes[4].dist = maxs[2];
110         box_planes[5].dist = mins[2];
111
112         return &box_hull;
113 }
114
115
116
117 /*
118 ================
119 SV_HullForEntity
120
121 Returns a hull that can be used for testing or clipping an object of mins/maxs
122 size.
123 Offset is filled in to contain the adjustment that must be added to the
124 testing object's origin to get a point to use with the returned hull.
125 ================
126 */
127 hull_t *SV_HullForEntity (edict_t *ent, vec3_t mins, vec3_t maxs, vec3_t offset)
128 {
129         model_t         *model;
130         vec3_t          size;
131         vec3_t          hullmins, hullmaxs;
132         hull_t          *hull;
133
134 // decide which clipping hull to use, based on the size
135         if (ent->v.solid == SOLID_BSP)
136         {       // explicit hulls in the BSP model
137                 if (ent->v.movetype != MOVETYPE_PUSH)
138                         Host_Error ("SOLID_BSP without MOVETYPE_PUSH");
139
140                 model = sv.models[ (int)ent->v.modelindex ];
141
142                 // LordHavoc: fixed SOLID_BSP error message
143                 if (!model || model->type != mod_brush)
144                 {
145                         Con_Printf ("SOLID_BSP with a non bsp model, entity dump:\n");
146                         ED_Print (ent);
147                         Host_Error ("SOLID_BSP with a non bsp model\n");
148                 }
149
150                 VectorSubtract (maxs, mins, size);
151                 // LordHavoc: FIXME!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
152                 if (size[0] < 3)
153                         hull = &model->hulls[0];
154                 else if (size[0] <= 32)
155                         hull = &model->hulls[1];
156                 else
157                         hull = &model->hulls[2];
158
159 // calculate an offset value to center the origin
160                 VectorSubtract (hull->clip_mins, mins, offset);
161                 VectorAdd (offset, ent->v.origin, offset);
162         }
163         else
164         {       // create a temp hull from bounding box sizes
165
166                 VectorSubtract (ent->v.mins, maxs, hullmins);
167                 VectorSubtract (ent->v.maxs, mins, hullmaxs);
168                 hull = SV_HullForBox (hullmins, hullmaxs);
169                 
170                 VectorCopy (ent->v.origin, offset);
171         }
172
173
174         return hull;
175 }
176
177 /*
178 ===============================================================================
179
180 ENTITY AREA CHECKING
181
182 ===============================================================================
183 */
184
185 typedef struct areanode_s
186 {
187         int             axis;           // -1 = leaf node
188         float   dist;
189         struct areanode_s       *children[2];
190         link_t  trigger_edicts;
191         link_t  solid_edicts;
192 } areanode_t;
193
194 #define AREA_DEPTH      4
195 #define AREA_NODES      32
196
197 static  areanode_t      sv_areanodes[AREA_NODES];
198 static  int                     sv_numareanodes;
199
200 /*
201 ===============
202 SV_CreateAreaNode
203
204 ===============
205 */
206 areanode_t *SV_CreateAreaNode (int depth, vec3_t mins, vec3_t maxs)
207 {
208         areanode_t      *anode;
209         vec3_t          size;
210         vec3_t          mins1, maxs1, mins2, maxs2;
211
212         anode = &sv_areanodes[sv_numareanodes];
213         sv_numareanodes++;
214
215         ClearLink (&anode->trigger_edicts);
216         ClearLink (&anode->solid_edicts);
217         
218         if (depth == AREA_DEPTH)
219         {
220                 anode->axis = -1;
221                 anode->children[0] = anode->children[1] = NULL;
222                 return anode;
223         }
224         
225         VectorSubtract (maxs, mins, size);
226         if (size[0] > size[1])
227                 anode->axis = 0;
228         else
229                 anode->axis = 1;
230         
231         anode->dist = 0.5 * (maxs[anode->axis] + mins[anode->axis]);
232         VectorCopy (mins, mins1);       
233         VectorCopy (mins, mins2);       
234         VectorCopy (maxs, maxs1);       
235         VectorCopy (maxs, maxs2);       
236         
237         maxs1[anode->axis] = mins2[anode->axis] = anode->dist;
238         
239         anode->children[0] = SV_CreateAreaNode (depth+1, mins2, maxs2);
240         anode->children[1] = SV_CreateAreaNode (depth+1, mins1, maxs1);
241
242         return anode;
243 }
244
245 /*
246 ===============
247 SV_ClearWorld
248
249 ===============
250 */
251 void SV_ClearWorld (void)
252 {
253         SV_InitBoxHull ();
254         
255         memset (sv_areanodes, 0, sizeof(sv_areanodes));
256         sv_numareanodes = 0;
257         SV_CreateAreaNode (0, sv.worldmodel->mins, sv.worldmodel->maxs);
258 }
259
260
261 /*
262 ===============
263 SV_UnlinkEdict
264
265 ===============
266 */
267 void SV_UnlinkEdict (edict_t *ent)
268 {
269         if (!ent->area.prev)
270                 return;         // not linked in anywhere
271         RemoveLink (&ent->area);
272         ent->area.prev = ent->area.next = NULL;
273 }
274
275
276 /*
277 ====================
278 SV_TouchLinks
279 ====================
280 */
281 void SV_TouchLinks ( edict_t *ent, areanode_t *node )
282 {
283         link_t          *l, *next;
284         edict_t         *touch;
285         int                     old_self, old_other;
286
287 loc0:
288 // touch linked edicts
289         for (l = node->trigger_edicts.next ; l != &node->trigger_edicts ; l = next)
290         {
291                 next = l->next;
292                 touch = EDICT_FROM_AREA(l);
293                 if (touch == ent)
294                         continue;
295                 if (!touch->v.touch || touch->v.solid != SOLID_TRIGGER)
296                         continue;
297                 if (ent->v.absmin[0] > touch->v.absmax[0]
298                 || ent->v.absmin[1] > touch->v.absmax[1]
299                 || ent->v.absmin[2] > touch->v.absmax[2]
300                 || ent->v.absmax[0] < touch->v.absmin[0]
301                 || ent->v.absmax[1] < touch->v.absmin[1]
302                 || ent->v.absmax[2] < touch->v.absmin[2] )
303                         continue;
304                 old_self = pr_global_struct->self;
305                 old_other = pr_global_struct->other;
306
307                 pr_global_struct->self = EDICT_TO_PROG(touch);
308                 pr_global_struct->other = EDICT_TO_PROG(ent);
309                 pr_global_struct->time = sv.time;
310                 PR_ExecuteProgram (touch->v.touch);
311
312                 pr_global_struct->self = old_self;
313                 pr_global_struct->other = old_other;
314         }
315         
316 // recurse down both sides
317         if (node->axis == -1)
318                 return;
319         
320         // LordHavoc: optimized recursion
321 //      if (ent->v.absmax[node->axis] > node->dist) SV_TouchLinks (ent, node->children[0]);
322 //      if (ent->v.absmin[node->axis] < node->dist) SV_TouchLinks (ent, node->children[1]);
323         if (ent->v.absmax[node->axis] > node->dist)
324         {
325                 if (ent->v.absmin[node->axis] < node->dist)
326                         SV_TouchLinks(ent, node->children[1]); // order reversed to reduce code
327                 node = node->children[0];
328                 goto loc0;
329         }
330         else
331         {
332                 if (ent->v.absmin[node->axis] < node->dist)
333                 {
334                         node = node->children[1];
335                         goto loc0;
336                 }
337         }
338 }
339
340
341 /*
342 ===============
343 SV_FindTouchedLeafs
344
345 ===============
346 */
347 void SV_FindTouchedLeafs (edict_t *ent, mnode_t *node)
348 {
349         mplane_t        *splitplane;
350         mleaf_t         *leaf;
351         int                     sides;
352         int                     leafnum;
353
354 loc0:
355         if (node->contents == CONTENTS_SOLID)
356                 return;
357         
358 // add an efrag if the node is a leaf
359
360         if ( node->contents < 0)
361         {
362                 if (ent->num_leafs == MAX_ENT_LEAFS)
363                         return;
364
365                 leaf = (mleaf_t *)node;
366                 leafnum = leaf - sv.worldmodel->leafs - 1;
367
368                 ent->leafnums[ent->num_leafs] = leafnum;
369                 ent->num_leafs++;                       
370                 return;
371         }
372         
373 // NODE_MIXED
374
375         splitplane = node->plane;
376         sides = BOX_ON_PLANE_SIDE(ent->v.absmin, ent->v.absmax, splitplane);
377         
378 // recurse down the contacted sides
379         // LordHavoc: optimized recursion
380 //      if (sides & 1) SV_FindTouchedLeafs (ent, node->children[0]);
381 //      if (sides & 2) SV_FindTouchedLeafs (ent, node->children[1]);
382         switch (sides)
383         {
384         case 1:
385                 node = node->children[0];
386                 goto loc0;
387         case 2:
388                 node = node->children[1];
389                 goto loc0;
390         default: // 3
391                 if (node->children[0]->contents != CONTENTS_SOLID)
392                         SV_FindTouchedLeafs (ent, node->children[0]);
393                 node = node->children[1];
394                 goto loc0;
395         }
396 }
397
398 /*
399 ===============
400 SV_LinkEdict
401
402 ===============
403 */
404 void SV_LinkEdict (edict_t *ent, qboolean touch_triggers)
405 {
406         areanode_t      *node;
407
408         if (ent->area.prev)
409                 SV_UnlinkEdict (ent);   // unlink from old position
410                 
411         if (ent == sv.edicts)
412                 return;         // don't add the world
413
414         if (ent->free)
415                 return;
416
417 // set the abs box
418
419 // LordHavoc: enabling rotating bmodels
420         if (ent->v.solid == SOLID_BSP && (ent->v.angles[0] || ent->v.angles[1] || ent->v.angles[2]) )
421         {       // expand for rotation
422                 float           max, v;
423                 int                     i;
424
425                 max = 0;
426                 for (i=0 ; i<3 ; i++)
427                 {
428                         v =fabs( ent->v.mins[i]);
429                         if (v > max)
430                                 max = v;
431                         v =fabs( ent->v.maxs[i]);
432                         if (v > max)
433                                 max = v;
434                 }
435                 for (i=0 ; i<3 ; i++)
436                 {
437                         ent->v.absmin[i] = ent->v.origin[i] - max;
438                         ent->v.absmax[i] = ent->v.origin[i] + max;
439                 }
440         }
441         else
442         {
443                 VectorAdd (ent->v.origin, ent->v.mins, ent->v.absmin);  
444                 VectorAdd (ent->v.origin, ent->v.maxs, ent->v.absmax);
445         }
446
447 //
448 // to make items easier to pick up and allow them to be grabbed off
449 // of shelves, the abs sizes are expanded
450 //
451         if ((int)ent->v.flags & FL_ITEM)
452         {
453                 ent->v.absmin[0] -= 15;
454                 ent->v.absmin[1] -= 15;
455                 ent->v.absmax[0] += 15;
456                 ent->v.absmax[1] += 15;
457         }
458         else
459         {       // because movement is clipped an epsilon away from an actual edge,
460                 // we must fully check even when bounding boxes don't quite touch
461                 ent->v.absmin[0] -= 1;
462                 ent->v.absmin[1] -= 1;
463                 ent->v.absmin[2] -= 1;
464                 ent->v.absmax[0] += 1;
465                 ent->v.absmax[1] += 1;
466                 ent->v.absmax[2] += 1;
467         }
468         
469 // link to PVS leafs
470         ent->num_leafs = 0;
471         if (ent->v.modelindex)
472                 SV_FindTouchedLeafs (ent, sv.worldmodel->nodes);
473
474         if (ent->v.solid == SOLID_NOT)
475                 return;
476
477 // find the first node that the ent's box crosses
478         node = sv_areanodes;
479         while (1)
480         {
481                 if (node->axis == -1)
482                         break;
483                 if (ent->v.absmin[node->axis] > node->dist)
484                         node = node->children[0];
485                 else if (ent->v.absmax[node->axis] < node->dist)
486                         node = node->children[1];
487                 else
488                         break;          // crosses the node
489         }
490         
491 // link it in   
492
493         if (ent->v.solid == SOLID_TRIGGER)
494                 InsertLinkBefore (&ent->area, &node->trigger_edicts);
495         else
496                 InsertLinkBefore (&ent->area, &node->solid_edicts);
497         
498 // if touch_triggers, touch all entities at this node and descend for more
499         if (touch_triggers)
500                 SV_TouchLinks ( ent, sv_areanodes );
501 }
502
503
504
505 /*
506 ===============================================================================
507
508 POINT TESTING IN HULLS
509
510 ===============================================================================
511 */
512
513 // SV_HullPointContents moved to cpu_noasm.c
514
515 /*
516 ============
517 SV_TestEntityPosition
518
519 This could be a lot more efficient...
520 ============
521 */
522 edict_t *SV_TestEntityPosition (edict_t *ent)
523 {
524         trace_t trace;
525
526         trace = SV_Move (ent->v.origin, ent->v.mins, ent->v.maxs, ent->v.origin, 0, ent);
527         
528         if (trace.startsolid)
529                 return sv.edicts;
530                 
531         return NULL;
532 }
533
534
535 /*
536 ===============================================================================
537
538 LINE TESTING IN HULLS
539
540 ===============================================================================
541 */
542
543 // 1/32 epsilon to keep floating point happy
544 #define DIST_EPSILON    (0.03125)
545
546 /*
547 ==================
548 SV_RecursiveHullCheck
549
550 ==================
551 */
552 qboolean SV_RecursiveHullCheck (hull_t *hull, int num, float p1f, float p2f, vec3_t p1, vec3_t p2, trace_t *trace)
553 {
554         dclipnode_t     *node;
555         mplane_t        *plane;
556         float           t1, t2;
557         float           frac;
558         int                     i;
559         vec3_t          mid;
560         int                     side;
561         float           midf;
562
563 loc0:
564 // check for empty
565         if (num < 0)
566         {
567                 if (num != CONTENTS_SOLID)
568                 {
569                         trace->allsolid = false;
570                         if (num == CONTENTS_EMPTY)
571                                 trace->inopen = true;
572                         else
573                                 trace->inwater = true;
574                 }
575                 else
576                         trace->startsolid = true;
577                 return true;            // empty
578         }
579
580         if (num < hull->firstclipnode || num > hull->lastclipnode)
581                 Sys_Error ("SV_RecursiveHullCheck: bad node number");
582
583 //
584 // find the point distances
585 //
586         node = hull->clipnodes + num;
587         plane = hull->planes + node->planenum;
588
589         if (plane->type < 3)
590         {
591                 t1 = p1[plane->type] - plane->dist;
592                 t2 = p2[plane->type] - plane->dist;
593         }
594         else
595         {
596                 t1 = DotProduct (plane->normal, p1) - plane->dist;
597                 t2 = DotProduct (plane->normal, p2) - plane->dist;
598         }
599         
600 #if 1
601         if (t1 >= 0 && t2 >= 0)
602         // LordHavoc: optimized recursion
603 //              return SV_RecursiveHullCheck (hull, node->children[0], p1f, p2f, p1, p2, trace);
604         {
605                 num = node->children[0];
606                 goto loc0;
607         }
608         if (t1 < 0 && t2 < 0)
609 //              return SV_RecursiveHullCheck (hull, node->children[1], p1f, p2f, p1, p2, trace);
610         {
611                 num = node->children[1];
612                 goto loc0;
613         }
614 #else
615         if ( (t1 >= DIST_EPSILON && t2 >= DIST_EPSILON) || (t2 > t1 && t1 >= 0) )
616                 return SV_RecursiveHullCheck (hull, node->children[0], p1f, p2f, p1, p2, trace);
617         if ( (t1 <= -DIST_EPSILON && t2 <= -DIST_EPSILON) || (t2 < t1 && t1 <= 0) )
618                 return SV_RecursiveHullCheck (hull, node->children[1], p1f, p2f, p1, p2, trace);
619 #endif
620
621 // put the crosspoint DIST_EPSILON pixels on the near side
622         if (t1 < 0)
623                 frac = (t1 + DIST_EPSILON)/(t1-t2);
624         else
625                 frac = (t1 - DIST_EPSILON)/(t1-t2);
626         if (frac < 0)
627                 frac = 0;
628         if (frac > 1)
629                 frac = 1;
630                 
631         midf = p1f + (p2f - p1f)*frac;
632         for (i=0 ; i<3 ; i++)
633                 mid[i] = p1[i] + frac*(p2[i] - p1[i]);
634
635         side = (t1 < 0);
636
637 // move up to the node
638         if (!SV_RecursiveHullCheck (hull, node->children[side], p1f, midf, p1, mid, trace) )
639                 return false;
640
641 #ifdef PARANOID
642         if (SV_HullPointContents (hull, node->children[side], mid) == CONTENTS_SOLID)
643         {
644                 Con_Printf ("mid PointInHullSolid\n");
645                 return false;
646         }
647 #endif
648         
649         if (SV_HullPointContents (hull, node->children[side^1], mid) != CONTENTS_SOLID)
650 // go past the node
651                 return SV_RecursiveHullCheck (hull, node->children[side^1], midf, p2f, mid, p2, trace);
652         // mid would need to be duplicated during recursion...
653         /*
654         {
655                 p1f = midf;
656                 p1 = mid;
657                 num = node->children[side^1];
658                 goto loc0;
659         }
660         */
661
662         if (trace->allsolid)
663                 return false;           // never got out of the solid area
664         
665 //==================
666 // the other side of the node is solid, this is the impact point
667 //==================
668         if (!side)
669         {
670                 VectorCopy (plane->normal, trace->plane.normal);
671                 trace->plane.dist = plane->dist;
672         }
673         else
674         {
675                 // LordHavoc: unrolled vector operation because the compiler can't be sure vec3_origin is 0
676 //              VectorSubtract (vec3_origin, plane->normal, trace->plane.normal);
677                 trace->plane.normal[0] = -plane->normal[0];
678                 trace->plane.normal[1] = -plane->normal[1];
679                 trace->plane.normal[2] = -plane->normal[2];
680                 trace->plane.dist = -plane->dist;
681         }
682
683         while (SV_HullPointContents (hull, hull->firstclipnode, mid) == CONTENTS_SOLID)
684         { // shouldn't really happen, but does occasionally
685                 frac -= 0.1;
686                 if (frac < 0)
687                 {
688                         trace->fraction = midf;
689                         VectorCopy (mid, trace->endpos);
690                         Con_DPrintf ("backup past 0\n");
691                         return false;
692                 }
693                 midf = p1f + (p2f - p1f)*frac;
694                 for (i=0 ; i<3 ; i++)
695                         mid[i] = p1[i] + frac*(p2[i] - p1[i]);
696         }
697
698         trace->fraction = midf;
699         VectorCopy (mid, trace->endpos);
700
701         return false;
702 }
703
704
705 /*
706 ==================
707 SV_ClipMoveToEntity
708
709 Handles selection or creation of a clipping hull, and offseting (and
710 eventually rotation) of the end points
711 ==================
712 */
713 trace_t SV_ClipMoveToEntity (edict_t *ent, vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end)
714 {
715         trace_t         trace;
716         vec3_t          offset;
717         vec3_t          start_l, end_l;
718         hull_t          *hull;
719
720 // fill in a default trace
721         memset (&trace, 0, sizeof(trace_t));
722         trace.fraction = 1;
723         trace.allsolid = true;
724         VectorCopy (end, trace.endpos);
725
726 // get the clipping hull
727         hull = SV_HullForEntity (ent, mins, maxs, offset);
728
729         VectorSubtract (start, offset, start_l);
730         VectorSubtract (end, offset, end_l);
731
732 // LordHavoc: enabling rotating bmodels
733         // rotate start and end into the models frame of reference
734         if (ent->v.solid == SOLID_BSP && 
735         (ent->v.angles[0] || ent->v.angles[1] || ent->v.angles[2]) )
736         {
737                 vec3_t  forward, right, up;
738                 vec3_t  temp;
739
740                 AngleVectors (ent->v.angles, forward, right, up);
741
742                 VectorCopy (start_l, temp);
743                 start_l[0] = DotProduct (temp, forward);
744                 start_l[1] = -DotProduct (temp, right);
745                 start_l[2] = DotProduct (temp, up);
746
747                 VectorCopy (end_l, temp);
748                 end_l[0] = DotProduct (temp, forward);
749                 end_l[1] = -DotProduct (temp, right);
750                 end_l[2] = DotProduct (temp, up);
751         }
752
753 // trace a line through the apropriate clipping hull
754         SV_RecursiveHullCheck (hull, hull->firstclipnode, 0, 1, start_l, end_l, &trace);
755
756 // LordHavoc: enabling rotating bmodels
757         // rotate endpos back to world frame of reference
758         if (ent->v.solid == SOLID_BSP && 
759         (ent->v.angles[0] || ent->v.angles[1] || ent->v.angles[2]) )
760         {
761                 vec3_t  a;
762                 vec3_t  forward, right, up;
763                 vec3_t  temp;
764
765                 if (trace.fraction != 1)
766                 {
767                         VectorSubtract (vec3_origin, ent->v.angles, a);
768                         AngleVectors (a, forward, right, up);
769
770                         VectorCopy (trace.endpos, temp);
771                         trace.endpos[0] = DotProduct (temp, forward);
772                         trace.endpos[1] = -DotProduct (temp, right);
773                         trace.endpos[2] = DotProduct (temp, up);
774
775                         VectorCopy (trace.plane.normal, temp);
776                         trace.plane.normal[0] = DotProduct (temp, forward);
777                         trace.plane.normal[1] = -DotProduct (temp, right);
778                         trace.plane.normal[2] = DotProduct (temp, up);
779                 }
780         }
781
782 // fix trace up by the offset
783         if (trace.fraction != 1)
784                 VectorAdd (trace.endpos, offset, trace.endpos);
785
786 // did we clip the move?
787         if (trace.fraction < 1 || trace.startsolid  )
788                 trace.ent = ent;
789
790         return trace;
791 }
792
793 //===========================================================================
794
795 /*
796 ====================
797 SV_ClipToLinks
798
799 Mins and maxs enclose the entire area swept by the move
800 ====================
801 */
802 void SV_ClipToLinks ( areanode_t *node, moveclip_t *clip )
803 {
804         link_t          *l, *next;
805         edict_t         *touch;
806         trace_t         trace;
807
808 loc0:
809 // touch linked edicts
810         for (l = node->solid_edicts.next ; l != &node->solid_edicts ; l = next)
811         {
812                 next = l->next;
813                 touch = EDICT_FROM_AREA(l);
814                 if (touch->v.solid == SOLID_NOT)
815                         continue;
816                 if (touch == clip->passedict)
817                         continue;
818                 if (touch->v.solid == SOLID_TRIGGER)
819                         Sys_Error ("Trigger in clipping list");
820
821                 if (clip->type == MOVE_NOMONSTERS && touch->v.solid != SOLID_BSP)
822                         continue;
823
824                 if (clip->boxmins[0] > touch->v.absmax[0]
825                 || clip->boxmins[1] > touch->v.absmax[1]
826                 || clip->boxmins[2] > touch->v.absmax[2]
827                 || clip->boxmaxs[0] < touch->v.absmin[0]
828                 || clip->boxmaxs[1] < touch->v.absmin[1]
829                 || clip->boxmaxs[2] < touch->v.absmin[2] )
830                         continue;
831
832                 if (clip->passedict!=0 && clip->passedict->v.size[0] && !touch->v.size[0])
833                         continue;       // points never interact
834
835         // might intersect, so do an exact clip
836                 if (clip->trace.allsolid)
837                         return;
838                 if (clip->passedict)
839                 {
840                         if (PROG_TO_EDICT(touch->v.owner) == clip->passedict)
841                                 continue;       // don't clip against own missiles
842                         if (PROG_TO_EDICT(clip->passedict->v.owner) == touch)
843                                 continue;       // don't clip against owner
844                         // LordHavoc: corpse code
845                         if (clip->passedict->v.solid == SOLID_CORPSE && touch->v.solid == SOLID_SLIDEBOX)
846                                 continue;
847                         if (clip->passedict->v.solid == SOLID_SLIDEBOX && touch->v.solid == SOLID_CORPSE)
848                                 continue;
849                 }
850
851                 if ((int)touch->v.flags & FL_MONSTER)
852                         trace = SV_ClipMoveToEntity (touch, clip->start, clip->mins2, clip->maxs2, clip->end);
853                 else
854                         trace = SV_ClipMoveToEntity (touch, clip->start, clip->mins, clip->maxs, clip->end);
855                 if (trace.allsolid || trace.startsolid ||
856                 trace.fraction < clip->trace.fraction)
857                 {
858                         trace.ent = touch;
859                         if (clip->trace.startsolid)
860                         {
861                                 clip->trace = trace;
862                                 clip->trace.startsolid = true;
863                         }
864                         else
865                                 clip->trace = trace;
866                 }
867                 else if (trace.startsolid)
868                         clip->trace.startsolid = true;
869         }
870         
871 // recurse down both sides
872         if (node->axis == -1)
873                 return;
874
875         // LordHavoc: optimized recursion
876 //      if (clip->boxmaxs[node->axis] > node->dist) SV_ClipToLinks(node->children[0], clip);
877 //      if (clip->boxmins[node->axis] < node->dist) SV_ClipToLinks(node->children[1], clip);
878         if (clip->boxmaxs[node->axis] > node->dist)
879         {
880                 if (clip->boxmins[node->axis] < node->dist)
881                         SV_ClipToLinks(node->children[1], clip);
882                 node = node->children[0];
883                 goto loc0;
884         }
885         else if (clip->boxmins[node->axis] < node->dist)
886         {
887                 node = node->children[1];
888                 goto loc0;
889         }
890 }
891
892
893 /*
894 ==================
895 SV_MoveBounds
896 ==================
897 */
898 void SV_MoveBounds (vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end, vec3_t boxmins, vec3_t boxmaxs)
899 {
900 #if 0
901 // debug to test against everything
902 boxmins[0] = boxmins[1] = boxmins[2] = -9999;
903 boxmaxs[0] = boxmaxs[1] = boxmaxs[2] = 9999;
904 #else
905         int             i;
906         
907         for (i=0 ; i<3 ; i++)
908         {
909                 if (end[i] > start[i])
910                 {
911                         boxmins[i] = start[i] + mins[i] - 1;
912                         boxmaxs[i] = end[i] + maxs[i] + 1;
913                 }
914                 else
915                 {
916                         boxmins[i] = end[i] + mins[i] - 1;
917                         boxmaxs[i] = start[i] + maxs[i] + 1;
918                 }
919         }
920 #endif
921 }
922
923 /*
924 ==================
925 SV_Move
926 ==================
927 */
928 trace_t SV_Move (vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end, int type, edict_t *passedict)
929 {
930         moveclip_t      clip;
931         int                     i;
932
933         memset ( &clip, 0, sizeof ( moveclip_t ) );
934
935 // clip to world
936         clip.trace = SV_ClipMoveToEntity ( sv.edicts, start, mins, maxs, end );
937
938         clip.start = start;
939         clip.end = end;
940         clip.mins = mins;
941         clip.maxs = maxs;
942         clip.type = type;
943         clip.passedict = passedict;
944
945         if (type == MOVE_MISSILE)
946         {
947                 for (i=0 ; i<3 ; i++)
948                 {
949                         clip.mins2[i] = -15;
950                         clip.maxs2[i] = 15;
951                 }
952         }
953         else
954         {
955                 VectorCopy (mins, clip.mins2);
956                 VectorCopy (maxs, clip.maxs2);
957         }
958         
959 // create the bounding box of the entire move
960         SV_MoveBounds ( start, clip.mins2, clip.maxs2, end, clip.boxmins, clip.boxmaxs );
961
962 // clip to entities
963         SV_ClipToLinks ( sv_areanodes, &clip );
964
965         return clip.trace;
966 }