3 #include <client/autocvars.qh>
4 #include <client/defs.qh>
5 #include <client/miscfunctions.qh>
6 #include <common/ent_cs.qh>
7 #include <common/mapinfo.qh>
8 #include <client/mapvoting.qh>
9 #include <client/resources.qh>
10 #include <client/teamradar.qh>
11 #include <common/mutators/mutator/waypoints/all.qh>
15 bool HUD_Radar_Clickable()
17 return hud_panel_radar_mouse && !hud_panel_radar_temp_hidden;
20 void HUD_Radar_Show_Maximized(bool doshow, bool clickable)
23 hud_panel_radar_maximized = doshow;
24 hud_panel_radar_temp_hidden = 0;
30 hud_panel_radar_mouse = 1;
32 // we must unset the player's buttons, as they aren't released elsewhere
40 else if ( hud_panel_radar_mouse )
42 hud_panel_radar_mouse = 0;
46 void HUD_Radar_Hide_Maximized()
48 HUD_Radar_Show_Maximized(false,false);
52 float HUD_Radar_InputEvent(int bInputType, float nPrimary, float nSecondary)
55 if(!hud_panel_radar_maximized || !hud_panel_radar_mouse ||
56 autocvar__hud_configure || mv_active)
61 mousepos_x = nPrimary;
62 mousepos_y = nSecondary;
66 if(nPrimary == K_MOUSE1)
68 if(bInputType == 0) // key pressed
69 mouseClicked |= S_MOUSE1;
70 else if(bInputType == 1) // key released
71 mouseClicked -= (mouseClicked & S_MOUSE1);
73 else if(nPrimary == K_MOUSE2)
75 if(bInputType == 0) // key pressed
76 mouseClicked |= S_MOUSE2;
77 else if(bInputType == 1) // key released
78 mouseClicked -= (mouseClicked & S_MOUSE2);
80 else if ( nPrimary == K_ESCAPE && bInputType == 0 )
82 HUD_Radar_Hide_Maximized();
86 // allow console/use binds to work without hiding the map
87 string con_keys = strcat(findkeysforcommand("toggleconsole", 0), " ", findkeysforcommand("+use", 0)) ;
88 int keys = tokenize(con_keys); // findkeysforcommand returns data for this
90 for (i = 0; i < keys; ++i)
92 if(nPrimary == stof(argv(i)))
96 if ( STAT(HEALTH) <= 0 )
101 con_keys = findkeysforcommand("+showscores", 0);
102 keys = tokenize(con_keys);
103 for (i = 0; i < keys; ++i)
105 if ( nPrimary == stof(argv(i)) )
107 hud_panel_radar_temp_hidden = bInputType == 0;
113 else if ( bInputType == 0 )
114 HUD_Radar_Hide_Maximized();
122 void HUD_Radar_Mouse()
124 if ( !hud_panel_radar_mouse ) return;
125 if(mv_active) return;
129 HUD_Radar_Hide_Maximized();
133 if(mouseClicked & S_MOUSE2)
135 HUD_Radar_Hide_Maximized();
139 panel = HUD_PANEL(RADAR);
140 HUD_Panel_LoadCvars();
143 panel_size = autocvar_hud_panel_radar_maximized_size;
144 panel_size_x = bound(0.2, panel_size_x, 1) * vid_conwidth;
145 panel_size_y = bound(0.2, panel_size_y, 1) * vid_conheight;
146 panel_pos_x = (vid_conwidth - panel_size_x) / 2;
147 panel_pos_y = (vid_conheight - panel_size_y) / 2;
149 if(mouseClicked & S_MOUSE1)
152 if ( mousepos_x < panel_pos_x || mousepos_x > panel_pos_x + panel_size_x ||
153 mousepos_y < panel_pos_y || mousepos_y > panel_pos_y + panel_size_y )
155 HUD_Radar_Hide_Maximized();
158 vector pos = teamradar_texcoord_to_3dcoord(teamradar_2dcoord_to_texcoord(mousepos),view_origin_z);
159 localcmd(sprintf("cmd ons_spawn %f %f %f",pos_x,pos_y,pos_z));
161 HUD_Radar_Hide_Maximized();
168 if (!autocvar__hud_configure)
170 if (hud_panel_radar_maximized)
172 if (!hud_draw_maximized) return;
176 if (autocvar_hud_panel_radar == 0) return;
177 if (autocvar_hud_panel_radar != 2 && !teamplay) return;
178 if(radar_panel_modified)
180 panel.update_time = time; // forces reload of panel attributes
181 radar_panel_modified = false;
186 if ( hud_panel_radar_temp_hidden )
189 HUD_Panel_LoadCvars();
193 if (hud_panel_radar_maximized && !autocvar__hud_configure)
195 panel_size = autocvar_hud_panel_radar_maximized_size;
196 panel_size.x = bound(0.2, panel_size.x, 1) * vid_conwidth;
197 panel_size.y = bound(0.2, panel_size.y, 1) * vid_conheight;
198 panel_pos.x = (vid_conwidth - panel_size.x) / 2;
199 panel_pos.y = (vid_conheight - panel_size.y) / 2;
202 panel_bg = strcat(hud_skin_path, "/border_default"); // always use the default border when maximized
203 if(precache_pic(panel_bg) == "")
204 panel_bg = "gfx/hud/default/border_default"; // fallback
205 if(!radar_panel_modified && panel_bg != panel.current_panel_bg)
206 radar_panel_modified = true;
207 strcpy(panel.current_panel_bg, panel_bg);
209 switch(hud_panel_radar_maximized_zoommode)
213 f = current_zoomfraction;
216 f = 1 - current_zoomfraction;
226 switch(hud_panel_radar_maximized_rotation)
229 teamradar_angle = view_angles.y - 90;
232 teamradar_angle = 90 * hud_panel_radar_maximized_rotation;
236 if (!hud_panel_radar_maximized && !autocvar__hud_configure)
238 switch(hud_panel_radar_zoommode)
242 f = current_zoomfraction;
245 f = 1 - current_zoomfraction;
255 switch(hud_panel_radar_rotation)
258 teamradar_angle = view_angles.y - 90;
261 teamradar_angle = 90 * hud_panel_radar_rotation;
270 if (autocvar_hud_panel_radar_dynamichud)
277 pos += '1 1 0' * panel_bg_padding;
278 mySize -= '2 2 0' * panel_bg_padding;
282 float scale2d, normalsize, bigsize;
284 teamradar_origin2d = HUD_Shift(pos + 0.5 * mySize);
285 teamradar_size2d = mySize;
287 if(minimapname == "")
290 teamradar_loadcvars();
292 scale2d = vlen_maxnorm2d(mi_picmax - mi_picmin);
293 teamradar_size2d = HUD_Scale(mySize);
295 teamradar_extraclip_mins = teamradar_extraclip_maxs = '0 0 0'; // we always center
297 // pixels per world qu to match the teamradar_size2d_x range in the longest dimension
298 if((hud_panel_radar_rotation == 0 && !hud_panel_radar_maximized) || (hud_panel_radar_maximized_rotation == 0 && hud_panel_radar_maximized))
300 // max-min distance must fit the radar in any rotation
301 bigsize = vlen_minnorm2d(teamradar_size2d) * scale2d / (1.05 * vlen(vec2(mi_scale)));
305 vector c0, c1, c2, c3, span;
306 c0 = Rotate(mi_min, teamradar_angle * DEG2RAD);
307 c1 = Rotate(mi_max, teamradar_angle * DEG2RAD);
308 c2 = Rotate('1 0 0' * mi_min.x + '0 1 0' * mi_max.y, teamradar_angle * DEG2RAD);
309 c3 = Rotate('1 0 0' * mi_max.x + '0 1 0' * mi_min.y, teamradar_angle * DEG2RAD);
311 span.x = max(c0_x, c1_x, c2_x, c3_x) - min(c0_x, c1_x, c2_x, c3_x);
312 span.y = max(c0_y, c1_y, c2_y, c3_y) - min(c0_y, c1_y, c2_y, c3_y);
314 // max-min distance must fit the radar in x=x, y=y
316 teamradar_size2d.x * scale2d / (1.05 * span.x),
317 teamradar_size2d.y * scale2d / (1.05 * span.y)
321 normalsize = vlen_maxnorm2d(teamradar_size2d) * scale2d / hud_panel_radar_scale;
322 if(bigsize > normalsize)
323 normalsize = bigsize;
327 + (1 - f) * normalsize;
328 teamradar_origin3d_in_texcoord = teamradar_3dcoord_to_texcoord(
330 + (1 - f) * view_origin);
339 draw_teamradar_background(hud_panel_radar_foreground_alpha);
341 IL_EACH(g_radarlinks, true, draw_teamradar_link(it.origin, it.velocity, it.team));
343 IL_EACH(g_radaricons, it.teamradar_icon, {
344 if ( hud_panel_radar_mouse )
345 if ( GetResourceAmount(it, RESOURCE_HEALTH) >= 0 )
346 if ( it.team == myteam + 1 || gametype == MAPINFO_TYPE_RACE || !teamplay )
348 vector coord = teamradar_texcoord_to_2dcoord(teamradar_3dcoord_to_texcoord(it.origin));
349 if(vdist((mousepos - coord), <, 8))
352 brightcolor_x = min(1,it.teamradar_color_x*1.5);
353 brightcolor_y = min(1,it.teamradar_color_y*1.5);
354 brightcolor_z = min(1,it.teamradar_color_z*1.5);
355 drawpic(coord - '8 8 0', "gfx/teamradar_icon_glow", '16 16 0', brightcolor, panel_fg_alpha, 0);
358 entity icon = RadarIcons_from(it.teamradar_icon);
359 draw_teamradar_icon(it.origin, icon, it, spritelookupcolor(it, icon.netname, it.teamradar_color), panel_fg_alpha);
361 AL_EACH(_entcs, e, it != NULL, {
362 if (!it.m_entcs_private) continue;
363 if (it.sv_entnum == current_player) continue;
364 color2 = entcs_GetTeam(it.sv_entnum);
365 draw_teamradar_player(it.origin, it.angles, Team_ColorRGB(color2));
367 draw_teamradar_player(entcs_receiver(current_player).origin, view_angles, '1 1 1');
371 if ( hud_panel_radar_mouse )
373 string message = "Click to select teleport destination";
375 if ( STAT(HEALTH) <= 0 )
377 message = "Click to select spawn location";
380 drawcolorcodedstring(pos + '0.5 0 0' * (mySize_x - stringwidth(message, true, hud_fontsize)) - '0 1 0' * hud_fontsize_y * 2,
381 message, hud_fontsize, hud_panel_radar_foreground_alpha, DRAWFLAG_NORMAL);
383 hud_panel_radar_bottom = pos_y + mySize_y + hud_fontsize_y;