1 #include "teamradar.qh"
3 #include <client/autocvars.qh>
4 #include <client/hud/_mod.qh>
5 #include <common/mutators/mutator/waypoints/all.qh>
6 #include <lib/csqcmodel/interpolate.qh>
8 vector teamradar_3dcoord_to_texcoord(vector in)
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);
17 vector teamradar_texcoord_to_2dcoord(vector in)
20 in -= teamradar_origin3d_in_texcoord;
22 out = Rotate(in, teamradar_angle * DEG2RAD);
23 out.y = - out.y; // screen space is reversed
25 out = out * teamradar_size;
28 out += teamradar_origin2d;
33 vector teamradar_2dcoord_to_texcoord(vector in)
38 out -= teamradar_origin2d;
41 out = out / teamradar_size;
43 out_y = - out_y; // screen space is reversed
44 out = Rotate(out, -teamradar_angle * DEG2RAD);
46 out += teamradar_origin3d_in_texcoord;
51 vector teamradar_texcoord_to_3dcoord(vector in,float oz)
54 out_x = in_x * (mi_picmax_x - mi_picmin_x) + mi_picmin_x;
55 out_y = in_y * (mi_picmax_y - mi_picmin_y) + mi_picmin_y;
60 void draw_teamradar_background(float fg)
65 if(fg > 0 && minimapname != "")
69 R_BeginPolygon(minimapname, DRAWFLAG_SCREEN | DRAWFLAG_MIPMAP, true);
72 R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord3), yinvert(mi_pictexcoord3), fgc, fga);
73 R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord2), yinvert(mi_pictexcoord2), fgc, fga);
74 R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord1), yinvert(mi_pictexcoord1), fgc, fga);
75 R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord0), yinvert(mi_pictexcoord0), fgc, fga);
79 R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord0), yinvert(mi_pictexcoord0), fgc, fga);
80 R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord1), yinvert(mi_pictexcoord1), fgc, fga);
81 R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord2), yinvert(mi_pictexcoord2), fgc, fga);
82 R_PolygonVertex(teamradar_texcoord_to_2dcoord(mi_pictexcoord3), yinvert(mi_pictexcoord3), fgc, fga);
88 void draw_teamradar_player(vector coord3d, vector pangles, vector rgb)
92 coord = teamradar_texcoord_to_2dcoord(teamradar_3dcoord_to_texcoord(coord3d));
94 vector forward, right, up;
95 MAKE_VECTORS(pangles - '0 1 0' * teamradar_angle, forward, right, up);
98 forward.x = -forward.x;
100 up.x = -up.x; // TODO: unused!
103 forward = normalize(forward);
105 right.x = -forward.y;
113 R_BeginPolygon("", 0, true);
114 R_PolygonVertex(coord+forward*3, '0 0 0', rgb2, panel_fg_alpha);
115 R_PolygonVertex(coord+right*4-forward*2.5, '0 1 0', rgb2, panel_fg_alpha);
116 R_PolygonVertex(coord-forward*2, '1 0 0', rgb2, panel_fg_alpha);
117 R_PolygonVertex(coord-right*4-forward*2.5, '1 1 0', rgb2, panel_fg_alpha);
120 R_BeginPolygon("", 0, true);
121 R_PolygonVertex(coord+forward*2, '0 0 0', rgb, panel_fg_alpha);
122 R_PolygonVertex(coord+right*3-forward*2, '0 1 0', rgb, panel_fg_alpha);
123 R_PolygonVertex(coord-forward, '1 0 0', rgb, panel_fg_alpha);
124 R_PolygonVertex(coord-right*3-forward*2, '1 1 0', rgb, panel_fg_alpha);
128 void draw_teamradar_icon(vector coord, entity icon, entity pingdata, vector rgb, float a)
130 coord = teamradar_texcoord_to_2dcoord(teamradar_3dcoord_to_texcoord(coord));
131 drawpic_builtin(coord - '4 4 0', strcat("gfx/teamradar_icon_", ftos(icon.m_radaricon)), '8 8 0', rgb, a, 0);
135 for(int i = 0; i < MAX_TEAMRADAR_TIMES; ++i)
137 float dt = pingdata.(teamradar_times[i]);
141 if(dt >= 1 || dt <= 0)
143 vector v = '2 2 0' * teamradar_size * dt;
144 drawpic_builtin(coord - 0.5 * v, "gfx/teamradar_ping", v, '1 1 1', (1 - dt) * a, DRAWFLAG_ADDITIVE);
149 void draw_teamradar_link(vector start, vector end, int colors)
154 start = teamradar_texcoord_to_2dcoord(teamradar_3dcoord_to_texcoord(start));
155 end = teamradar_texcoord_to_2dcoord(teamradar_3dcoord_to_texcoord(end));
156 norm = normalize(start - end);
162 c0 = colormapPaletteColor(colors & 0x0F, false);
163 c1 = colormapPaletteColor((colors & 0xF0) / 0x10, false);
165 R_BeginPolygon("", 0, true);
166 R_PolygonVertex(start - norm, '0 0 0', c0, panel_fg_alpha);
167 R_PolygonVertex(start + norm, '0 1 0', c0, panel_fg_alpha);
168 R_PolygonVertex(end + norm, '1 1 0', c1, panel_fg_alpha);
169 R_PolygonVertex(end - norm, '1 0 0', c1, panel_fg_alpha);
173 void teamradar_loadcvars()
175 v_flipped = autocvar_v_flipped;
176 hud_panel_radar_scale = autocvar_hud_panel_radar_scale;
177 if (hud_panel_radar_maximized && !autocvar__hud_configure)
179 if (autocvar_hud_panel_radar_maximized_scale > 0)
180 hud_panel_radar_scale = autocvar_hud_panel_radar_maximized_scale;
182 hud_panel_radar_foreground_alpha = autocvar_hud_panel_radar_foreground_alpha * panel_fg_alpha;
183 hud_panel_radar_rotation = autocvar_hud_panel_radar_rotation;
184 hud_panel_radar_zoommode = autocvar_hud_panel_radar_zoommode;
185 hud_panel_radar_maximized_rotation = autocvar_hud_panel_radar_maximized_rotation;
186 hud_panel_radar_maximized_zoommode = autocvar_hud_panel_radar_maximized_zoommode;
188 // others default to 0
189 // match this to default hud cfg file!
190 if(!hud_panel_radar_scale) hud_panel_radar_scale = 4096;
191 if(!hud_panel_radar_foreground_alpha) hud_panel_radar_foreground_alpha = 0.8 * panel_fg_alpha;
192 if(!hud_panel_radar_size.x) hud_panel_radar_size.x = 128;
193 if(!hud_panel_radar_size.y) hud_panel_radar_size.y = hud_panel_radar_size.x;
198 NET_HANDLE(ENT_CLIENT_RADARLINK, bool isnew)
200 int sendflags = ReadByte();
202 InterpolateOrigin_Undo(this);
204 this.iflags = IFLAG_VELOCITY | IFLAG_ORIGIN;
205 if (isnew) IL_PUSH(g_radarlinks, this);
209 this.origin = ReadVector();
210 setorigin(this, this.origin);
215 this.velocity = ReadVector();
220 this.team = ReadByte();
225 InterpolateOrigin_Note(this);