1 // self.isactive = player is in range and coordinates/status (health and armor) are up to date
2 // self.origin = player origin TODO: should maybe move this so it's the origin of the shownames tag already in SSQC for culling?
5 // self.sameteam = player is on same team as local client
6 // self.fadedelay = time to wait before name tag starts fading in for enemies
7 // self.pointtime = last time you pointed at this player
9 const float SHOWNAMES_FADESPEED = 4;
10 const float SHOWNAMES_FADEDELAY = 0.4;
11 void Draw_ShowNames(entity ent)
13 if(!autocvar_hud_shownames)
16 if((ent.sv_entnum == player_localentnum) || (ent.sv_entnum == spectatee_status)) // ent is me or person i'm spectating
17 if not (autocvar_hud_shownames_self && autocvar_chase_active)
20 makevectors(view_angles);
22 if(ent.sameteam || (!ent.sameteam && autocvar_hud_shownames_enemies))
24 ent.origin_z += autocvar_hud_shownames_offset;
27 if(ent.sameteam && !autocvar_hud_shownames_crosshairdistance)
33 traceline(view_origin, ent.origin, MOVE_NORMAL, ent);
34 if(trace_fraction < 1 && trace_networkentity != ent.sv_entnum)
41 float overlap, onscreen, crosshairdistance;
44 o = project_3d_to_2d(ent.origin);
46 if(autocvar_hud_shownames_antioverlap)
48 // fade tag out if another tag that is closer to you overlaps
50 for(e = world; (e = find(e, classname, "shownames_tag")); )
54 eo = project_3d_to_2d(e.origin);
55 if not(eo_z < 0 || eo_x < 0 || eo_y < 0 || eo_x > vid_conwidth || eo_y > vid_conheight)
58 if(vlen((eX * o_x + eY * o_y) - eo) < autocvar_hud_shownames_antioverlap_distance && vlen(ent.origin - view_origin) > vlen(e.origin - view_origin))
67 onscreen = (o_z >= 0 && o_x >= 0 && o_y >= 0 && o_x <= vid_conwidth && o_y <= vid_conheight);
68 crosshairdistance = sqrt( pow(o_x - vid_conwidth/2, 2) + pow(o_y - vid_conheight/2, 2) );
70 if(autocvar_hud_shownames_crosshairdistance)
72 if(autocvar_hud_shownames_crosshairdistance > crosshairdistance)
75 if not(ent.pointtime + autocvar_hud_shownames_crosshairdistance_time > time)
78 overlap = (autocvar_hud_shownames_crosshairdistance_antioverlap ? overlap : FALSE); // override what antioverlap says unless allowed by cvar.
82 ent.fadedelay = time + SHOWNAMES_FADEDELAY;
84 if(!ent.sameteam && (!onscreen || !hit)) // out of view, fade out
86 ent.alpha = max(0, ent.alpha - SHOWNAMES_FADESPEED * frametime);
87 ent.fadedelay = 0; // reset fade in delay, enemy has left the view
89 else if(ent.healthvalue < 1) // dead player, fade out slowly
90 ent.alpha = max(0, ent.alpha - SHOWNAMES_FADESPEED * 0.25 * frametime);
91 else if(overlap) // tag overlap detected, fade out
92 ent.alpha = max(0, ent.alpha - SHOWNAMES_FADESPEED * frametime);
93 else if(ent.sameteam) // fade in for team mates
94 ent.alpha = min(1, ent.alpha + SHOWNAMES_FADESPEED * frametime);
95 else if(time > ent.fadedelay) // fade in for enemies
96 ent.alpha = min(1, ent.alpha + SHOWNAMES_FADESPEED * frametime);
102 dist = vlen(ent.origin - view_origin);
105 a = autocvar_hud_shownames_alpha;
107 if(autocvar_hud_shownames_maxdistance)
109 if(dist >= autocvar_hud_shownames_maxdistance)
111 a *= ((autocvar_hud_shownames_maxdistance - autocvar_hud_shownames_mindistance) - max(0, dist - autocvar_hud_shownames_mindistance)) / (autocvar_hud_shownames_maxdistance - autocvar_hud_shownames_mindistance);
119 if(autocvar_hud_shownames_resize) // limit resize so its never smaller than 0.5... gets unreadable
120 resize = 0.5 + 0.5 * ((autocvar_hud_shownames_maxdistance - autocvar_hud_shownames_mindistance) - max(0, dist - autocvar_hud_shownames_mindistance)) / (autocvar_hud_shownames_maxdistance - autocvar_hud_shownames_mindistance);
122 // draw the sprite image
127 vector myPos, mySize;
128 mySize = (eX * autocvar_hud_shownames_aspect + eY) * autocvar_hud_shownames_fontsize;
129 myPos = o - '0.5 0 0' * mySize_x - '0 1 0' * mySize_y;
135 myPos_x += 0.5 * (mySize_x / resize - mySize_x);
136 myPos_y += (mySize_y / resize - mySize_y);
138 vector namepos; // this is where the origin of the string
142 namewidth = mySize_x;
144 if(autocvar_hud_shownames_status && teamplay)
148 if(ent.healthvalue > 0)
150 HUD_Panel_DrawProgressBar(namepos + '0 1 0' * autocvar_hud_shownames_fontsize * resize, eX * 0.5 * mySize_x + eY * resize * autocvar_hud_shownames_statusbar_height, "nametag_statusbar", ent.healthvalue/autocvar_hud_panel_healtharmor_maxhealth, 0, 1, '1 0 0', a, DRAWFLAG_NORMAL);
152 if(ent.armorvalue > 0)
153 HUD_Panel_DrawProgressBar(namepos + '0 1 0' * autocvar_hud_shownames_fontsize * resize + eX * 0.5 * mySize_x, eX * 0.5 * mySize_x + eY * resize * autocvar_hud_shownames_statusbar_height, "nametag_statusbar", ent.armorvalue/autocvar_hud_panel_healtharmor_maxarmor, 0, 0, '0 1 0', a, DRAWFLAG_NORMAL);
159 s = GetPlayerName(ent.sv_entnum-1);
160 if((autocvar_hud_shownames_decolorize == 1 && teamplay) || autocvar_hud_shownames_decolorize == 2)
161 s = playername(s, GetPlayerColor(ent.sv_entnum-1));
163 drawfontscale = '1 1 0' * resize;
164 s = textShortenToWidth(s, namewidth, '1 1 0' * autocvar_hud_shownames_fontsize, stringwidth_colors);
167 width = stringwidth(s, TRUE, '1 1 0' * autocvar_hud_shownames_fontsize);
169 if (width != namewidth)
170 namepos_x += (namewidth - width) / 2;
171 drawcolorcodedstring(namepos, s, '1 1 0' * autocvar_hud_shownames_fontsize, a, DRAWFLAG_NORMAL);
172 drawfontscale = '1 1 0';
177 entity shownames_ent[255];
178 void Draw_ShowNames_All()
181 for(i = 0; i < maxclients; ++i)
184 t = GetPlayerColor(i);
185 if(t == COLOR_SPECTATOR)
189 e = shownames_ent[i];
193 e.classname = "shownames_tag";
195 shownames_ent[i] = e;
199 entcs = entcs_receiver[i];
202 e.healthvalue = entcs.healthvalue;
203 e.armorvalue = entcs.armorvalue;
204 e.sameteam = 1; /* (teamplay && (t == myteam)); */
208 e.healthvalue = 2342;
213 e.origin = getplayerorigin(i);
214 if(e.origin == GETPLAYERORIGIN_ERROR)