-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathchase.pas
More file actions
112 lines (88 loc) · 2.76 KB
/
chase.pas
File metadata and controls
112 lines (88 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// ------------------------------------------------------------------------------
// DelphiQuake, Copyright (C) 2005-2011 by Jim Valavanis
// E-Mail: jimmyvalavanis@yahoo.gr
//
// Copyright (C) 1996-1997 Id Software, Inc.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
// See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// ------------------------------------------------------------------------------
{$I dquake.inc}
unit chase;
interface
uses
cvar;
procedure Chase_Init;
procedure Chase_Reset;
procedure Chase_Update;
var
chase_back: cvar_t = (name: 'chase_back'; text: '100');
chase_up: cvar_t = (name: 'chase_up'; text: '16');
chase_right: cvar_t = (name: 'chase_right'; text: '0');
chase_active: cvar_t = (name: 'chase_active'; text: '0');
implementation
uses
q_delphi,
q_vector,
mathlib,
world,
cl_main_h,
gl_rmain,
quakedef;
var
chase_dest: TVector3f;
procedure Chase_Init;
begin
Cvar_RegisterVariable(@chase_back);
Cvar_RegisterVariable(@chase_up);
Cvar_RegisterVariable(@chase_right);
Cvar_RegisterVariable(@chase_active);
end;
procedure Chase_Reset;
begin
{ for respawning and teleporting start position 12 units behind head }
end;
procedure TraceLine(start: PVector3f; _end: PVector3f; impact: PVector3f);
var
trace: trace_t;
begin
ZeroMemory(@trace, SizeOf(trace));
SV_RecursiveHullCheck(@cl.worldmodel.hulls, 0, 0, 1, start, _end, @trace);
VectorCopy(@trace.endpos, impact);
end;
procedure Chase_Update;
var
i: integer;
dist: single;
_forward, up, right: TVector3f;
dest, stop: TVector3f;
begin
AngleVectors(@cl.viewangles, @_forward, @right, @up);
for i := 0 to 2 do
chase_dest[i] := r_refdef.vieworg[i] -
_forward[i] * chase_back.value -
right[i] * chase_right.value;
chase_dest[2] := r_refdef.vieworg[2] + chase_up.value;
VectorMA(@r_refdef.vieworg, 4096, @_forward, @dest);
TraceLine(@r_refdef.vieworg, @dest, @stop);
VectorSubtract(@stop, @r_refdef.vieworg, @stop);
dist := VectorDotProduct(@stop, @_forward);
if dist < 1 then
dist := 1;
r_refdef.viewangles[PITCH] := -fatan(stop[2] / dist) / M_PI * 180;
VectorCopy(@chase_dest, @r_refdef.vieworg);
end;
end.