]> icculus.org git repositories - divverent/darkplaces.git/blob - chase.c
rewrote RecursiveHullCheck, no longer gets stuck on angle changes, and is generally...
[divverent/darkplaces.git] / chase.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 // chase.c -- chase camera code
21
22 #include "quakedef.h"
23
24 cvar_t  chase_back = {CVAR_SAVE, "chase_back", "48"};
25 cvar_t  chase_up = {CVAR_SAVE, "chase_up", "48"};
26 cvar_t  chase_active = {CVAR_SAVE, "chase_active", "0"};
27
28 void Chase_Init (void)
29 {
30         Cvar_RegisterVariable (&chase_back);
31         Cvar_RegisterVariable (&chase_up);
32         Cvar_RegisterVariable (&chase_active);
33 }
34
35 void Chase_Reset (void)
36 {
37         // for respawning and teleporting
38 //      start position 12 units behind head
39 }
40
41 int traceline_endcontents;
42
43 float TraceLine (vec3_t start, vec3_t end, vec3_t impact, vec3_t normal, int contents)
44 {
45         trace_t trace;
46
47         memset (&trace, 0, sizeof(trace));
48         VectorCopy (end, trace.endpos);
49         trace.fraction = 1;
50         trace.startcontents = contents;
51         VectorCopy(start, RecursiveHullCheckInfo.start);
52         VectorSubtract(end, start, RecursiveHullCheckInfo.dist);
53         RecursiveHullCheckInfo.hull = cl.worldmodel->hulls;
54         RecursiveHullCheckInfo.trace = &trace;
55         SV_RecursiveHullCheck (0, 0, 1, start, end);
56         if (impact)
57                 VectorCopy (trace.endpos, impact);
58         if (normal)
59                 VectorCopy (trace.plane.normal, normal);
60         traceline_endcontents = trace.endcontents;
61         return trace.fraction;
62 }
63
64 void Chase_Update (void)
65 {
66         vec3_t  forward, stop, chase_dest, normal;
67         float   dist;
68
69         chase_back.value = bound(0, chase_back.value, 128);
70         chase_up.value = bound(-48, chase_up.value, 96);
71
72         AngleVectors (cl.viewangles, forward, NULL, NULL);
73
74         dist = -chase_back.value - 8;
75         chase_dest[0] = r_refdef.vieworg[0] + forward[0] * dist;
76         chase_dest[1] = r_refdef.vieworg[1] + forward[1] * dist;
77         chase_dest[2] = r_refdef.vieworg[2] + forward[2] * dist + chase_up.value;
78
79         TraceLine (r_refdef.vieworg, chase_dest, stop, normal, 0);
80         chase_dest[0] = stop[0] + forward[0] * 8 + normal[0] * 4;
81         chase_dest[1] = stop[1] + forward[1] * 8 + normal[1] * 4;
82         chase_dest[2] = stop[2] + forward[2] * 8 + normal[2] * 4;
83
84         VectorCopy (chase_dest, r_refdef.vieworg);
85 }
86