]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/client/teamradar.qc
cl_teamradar_scale
[divverent/nexuiz.git] / data / qcsrc / client / teamradar.qc
1 float teamradar_angle; // player yaw angle
2 vector teamradar_origin3d_in_texcoord; // player origin
3 vector teamradar_origin2d; // 2D origin
4 vector teamradar_size2d; // 2D size
5 float teamradar_size; // 2D scale factor
6 float teamradar_scale; // window size = ...qu
7
8 vector teamradar_3dcoord_to_texcoord(vector in)
9 {
10         vector out;
11         out_x = (in_x - mi_picmin_x) / (mi_picmax_x - mi_picmin_x);
12         out_y = (in_y - mi_picmin_y) / (mi_picmax_y - mi_picmin_y);
13         out_z = 0;
14         return out;
15 }
16
17 vector teamradar_texcoord_to_2dcoord(vector in)
18 {
19         vector out;
20         in -= teamradar_origin3d_in_texcoord;
21
22         out = rotate(in, teamradar_angle * DEG2RAD);
23         out_y = - out_y; // screen space is reversed
24
25         out = out * teamradar_size;
26         out += teamradar_origin2d;
27         return out;
28 }
29
30 vector yinvert(vector v)
31 {
32         v_y = -v_y;
33         return v;
34 }
35
36 void draw_teamradar_background(float a)
37 {
38         if(a <= 0)
39                 return;
40
41         R_BeginPolygon(minimapname, 0);
42         R_PolygonVertex('1 0 0' * (teamradar_origin2d_x - teamradar_size2d_x * 0.5) + '0 1 0' * (teamradar_origin2d_y - teamradar_size2d_y * 0.5), '0 0 0', '0 0 0', a);
43         R_PolygonVertex('1 0 0' * (teamradar_origin2d_x + teamradar_size2d_x * 0.5) + '0 1 0' * (teamradar_origin2d_y - teamradar_size2d_y * 0.5), '0 0 0', '0 0 0', a);
44         R_PolygonVertex('1 0 0' * (teamradar_origin2d_x + teamradar_size2d_x * 0.5) + '0 1 0' * (teamradar_origin2d_y + teamradar_size2d_y * 0.5), '0 0 0', '0 0 0', a);
45         R_PolygonVertex('1 0 0' * (teamradar_origin2d_x - teamradar_size2d_x * 0.5) + '0 1 0' * (teamradar_origin2d_y + teamradar_size2d_y * 0.5), '0 0 0', '0 0 0', a);
46         R_EndPolygon();
47         R_BeginPolygon(minimapname, DRAWFLAG_ADDITIVE);
48         R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord0), yinvert(mi_pictexcoord0), '1 1 1', 1);
49         R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord1), yinvert(mi_pictexcoord1), '1 1 1', 1);
50         R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord2), yinvert(mi_pictexcoord2), '1 1 1', 1);
51         R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord3), yinvert(mi_pictexcoord3), '1 1 1', 1);
52         R_EndPolygon();
53 }
54
55 void(vector coord3d, vector pangles, vector rgb) draw_teamradar_player =
56 {
57         vector coord, rgb2;
58
59         coord = teamradar_texcoord_to_2dcoord(teamradar_3dcoord_to_texcoord(coord3d));
60
61         makevectors(pangles - '0 1 0' * teamradar_angle);
62         v_forward_z = 0;
63         v_forward = normalize(v_forward);
64         v_forward_y *= -1.0;
65         v_right_x = -v_forward_y;
66         v_right_y = v_forward_x;
67
68         if(rgb != '1 1 1')
69         {
70                 rgb2 = '1 1 1';
71                 R_BeginPolygon("", 0);
72                 R_PolygonVertex(coord+v_forward*3, '0 0 0', rgb2, 1);
73                 R_PolygonVertex(coord+v_right*4-v_forward*2.5, '0 1 0', rgb2, 1);
74                 R_PolygonVertex(coord-v_forward*2, '1 0 0', rgb2, 1);
75                 R_PolygonVertex(coord-v_right*4-v_forward*2.5, '1 1 0', rgb2, 1);
76                 R_EndPolygon();
77         }
78
79         R_BeginPolygon("", 0);
80         R_PolygonVertex(coord+v_forward*2, '0 0 0', rgb, 1);
81         R_PolygonVertex(coord+v_right*3-v_forward*2, '0 1 0', rgb, 1);
82         R_PolygonVertex(coord-v_forward, '1 0 0', rgb, 1);
83         R_PolygonVertex(coord-v_right*3-v_forward*2, '1 1 0', rgb, 1);
84         R_EndPolygon();
85 };
86
87 void draw_teamradar_icon(vector coord, float icon, float pingtime, vector rgb, float a)
88 {
89         float dt;
90         vector v;
91
92         coord = teamradar_texcoord_to_2dcoord(teamradar_3dcoord_to_texcoord(coord));
93         drawpic(coord - '4 4 0', strcat("gfx/teamradar_icon_", ftos(icon)), '8 8 0', rgb, a, 0);
94         if(pingtime != 0)
95         {
96                 dt = time - pingtime;
97                 if(dt > 1)
98                         return;
99                 v = '2 2 0' * teamradar_size * dt;
100                 drawpic(coord - 0.5 * v, "gfx/teamradar_ping", v, '1 1 1', 1 - dt, DRAWFLAG_ADDITIVE);
101         }
102 }
103
104 void() teamradar_view =
105 {
106         local float color;
107         local vector coord, rgb;
108         local entity tm;
109         float scale2d, normalsize, bigsize;
110         float a;
111
112         if(!cvar("cl_teamradar"))
113                 return;
114
115         color = GetPlayerColor(player_localentnum-1);
116         rgb = GetTeamRGB(color);
117
118         scale2d = max(
119                 mi_picmax_x - mi_picmin_x,
120                 mi_picmax_y - mi_picmin_y
121         );
122
123         teamradar_scale = cvar("cl_teamradar_scale");
124         a = cvar("cl_teamradar_background_alpha");
125         teamradar_angle = cvar("cl_teamradar_rotation") * 90;
126
127         // fix undefined cvars first
128         if(!teamradar_scale)
129                 teamradar_scale = 2048;
130         if(!a)
131                 a = 0.75;
132
133         if(!teamradar_angle)
134                 teamradar_angle = input_angles_y - 90;
135         teamradar_origin2d = '64 64 0';
136         teamradar_size2d = '128 128 0';
137
138         normalsize = teamradar_size2d_x * scale2d / teamradar_scale;
139         bigsize = teamradar_size2d_x * scale2d / vlen(mi_min - mi_max);
140         if(bigsize > normalsize)
141                 normalsize = bigsize;
142         teamradar_size =
143                   current_zoomfraction * bigsize
144                 + (1 - current_zoomfraction) * normalsize;
145         teamradar_origin3d_in_texcoord = teamradar_3dcoord_to_texcoord(
146                   current_zoomfraction * (mi_min + mi_max) * 0.5
147                 + (1 - current_zoomfraction) * pmove_org);
148
149         drawsetcliparea(
150                 teamradar_origin2d_x - teamradar_size2d_x * 0.5,
151                 teamradar_origin2d_y - teamradar_size2d_y * 0.5,
152                 teamradar_size2d_x,
153                 teamradar_size2d_y
154         );
155
156         draw_teamradar_background(a);
157         for(tm = world; (tm = findflags(tm, teamradar_icon, 0xFFFFFF)); )
158                 draw_teamradar_icon(tm.origin, tm.teamradar_icon, tm.teamradar_time, tm.teamradar_color, tm.alpha);
159         for(tm = gps_start; tm != world; tm = tm.chain)
160                 draw_teamradar_player(tm.origin, tm.angles, rgb);
161         draw_teamradar_player(pmove_org, input_angles, '1 1 1');
162
163         drawresetcliparea();
164 };