]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud/panel/racetimer.qc
Merge branch 'master' into martin-t/dmgtext
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / hud / panel / racetimer.qc
1 #include "racetimer.qh"
2
3 #include <client/autocvars.qh>
4 #include <client/defs.qh>
5 #include <client/miscfunctions.qh>
6 #include <common/mapinfo.qh>
7
8 // Race timer (#6)
9
10 // return the string of the onscreen race timer
11 string MakeRaceString(int cp, float mytime, float theirtime, float othertime, float lapdelta, string theirname)
12 {
13         TC(int, cp);
14         string cpname, lapstr = "", timestr = "", col = "^7", othercol = "^7", othertimestr = "";
15         if(theirname == "" || !autocvar_cl_race_cptimes_showself)
16                 othertime = 0; // don't count personal time
17
18         if(theirtime == 0) // goal hit
19         {
20                 if(mytime > 0)
21                 {
22                         timestr = strcat("+", ftos_decimals(+mytime, TIME_DECIMALS));
23                         col = "^1";
24                 }
25                 else if(mytime == 0)
26                 {
27                         timestr = "+0.0";
28                         col = "^3";
29                 }
30                 else
31                 {
32                         timestr = strcat("-", ftos_decimals(-mytime, TIME_DECIMALS));
33                         col = "^2";
34                 }
35
36                 if(othertime > 0)
37                 {
38                         othertimestr = strcat("+", ftos_decimals(+othertime, TIME_DECIMALS));
39                         othercol = "^1";
40                 }
41                 else if(othertime == 0)
42                 {
43                         othertimestr = "+0.0";
44                         othercol = "^3";
45                 }
46                 else
47                 {
48                         othertimestr = strcat("-", ftos_decimals(-othertime, TIME_DECIMALS));
49                         othercol = "^2";
50                 }
51
52                 if(lapdelta > 0)
53                 {
54                         lapstr = sprintf(_(" (-%dL)"), lapdelta);
55                         col = "^2";
56                 }
57                 else if(lapdelta < 0)
58                 {
59                         lapstr = sprintf(_(" (+%dL)"), -lapdelta);
60                         col = "^1";
61                 }
62         }
63         else if(theirtime > 0) // anticipation
64         {
65                 if(mytime >= theirtime)
66                         timestr = strcat("+", ftos_decimals(mytime - theirtime, TIME_DECIMALS));
67                 else
68                         timestr = TIME_ENCODED_TOSTRING(TIME_ENCODE(theirtime));
69                 col = "^3";
70                 if(mytime >= othertime)
71                         othertimestr = strcat("+", ftos_decimals(mytime - othertime, TIME_DECIMALS));
72                 else
73                         othertimestr = TIME_ENCODED_TOSTRING(TIME_ENCODE(othertime));
74                 othercol = "^7";
75         }
76
77         if(cp == 254)
78                 cpname = _("Start line");
79         else if(cp == 255)
80                 cpname = _("Finish line");
81         else if(cp)
82                 cpname = sprintf(_("Intermediate %d"), cp);
83         else
84                 cpname = _("Finish line");
85
86         if(theirtime < 0)
87                 return strcat(col, cpname);
88         else if(theirname == "")
89                 return strcat(col, sprintf("%s (%s)", cpname, timestr));
90         else if(othertime)
91                 return strcat(col, sprintf("%s %s(%s)%s (%s %s)", cpname, othercol, othertimestr, col, timestr, strcat(ColorTranslateRGB(theirname), col, lapstr)));
92         else
93                 return strcat(col, sprintf("%s (%s %s)", cpname, timestr, strcat(ColorTranslateRGB(theirname), col, lapstr)));
94 }
95
96 void HUD_RaceTimer ()
97 {
98         if(!autocvar__hud_configure)
99         {
100                 if(!autocvar_hud_panel_racetimer) return;
101                 if(!(ISGAMETYPE(RACE) || ISGAMETYPE(CTS))) return;
102                 if(spectatee_status == -1) return;
103         }
104
105         HUD_Panel_LoadCvars();
106
107         vector pos, mySize;
108         pos = panel_pos;
109         mySize = panel_size;
110
111         if (autocvar_hud_panel_racetimer_dynamichud)
112                 HUD_Scale_Enable();
113         else
114                 HUD_Scale_Disable();
115         HUD_Panel_DrawBg();
116         if(panel_bg_padding)
117         {
118                 pos += '1 1 0' * panel_bg_padding;
119                 mySize -= '2 2 0' * panel_bg_padding;
120         }
121
122         // always force 4:1 aspect
123         vector newSize = '0 0 0';
124         if(mySize.x/mySize.y > 4)
125         {
126                 newSize.x = 4 * mySize.y;
127                 newSize.y = mySize.y;
128
129                 pos.x = pos.x + (mySize.x - newSize.x) / 2;
130         }
131         else
132         {
133                 newSize.y = 1/4 * mySize.x;
134                 newSize.x = mySize.x;
135
136                 pos.y = pos.y + (mySize.y - newSize.y) / 2;
137         }
138         mySize = newSize;
139
140         float a, t;
141         string s, forcetime;
142         vector str_pos;
143
144         if(autocvar__hud_configure)
145         {
146                 s = "0:13:37";
147                 draw_beginBoldFont();
148                 str_pos = pos + eX * 0.5 * (mySize.x - stringwidth(s, false, '1 1 0' * 0.6 * mySize.y));
149                 drawstring(str_pos, s, '1 1 0' * 0.6 * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
150                 draw_endBoldFont();
151                 s = _("^1Intermediate 1 (+15.42)");
152                 str_pos = pos + vec2(0.5 * (mySize.x - stringwidth(s, true, '1 1 0' * 0.2 * mySize.y)), 0.6 * mySize.y);
153                 drawcolorcodedstring(str_pos, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha, DRAWFLAG_NORMAL);
154                 s = sprintf(_("^1PENALTY: %.1f (%s)"), 2, "missing a checkpoint");
155                 str_pos = pos + vec2(0.5 * (mySize.x - stringwidth(s, true, '1 1 0' * 0.2 * mySize.y)), 0.8 * mySize.y);
156                 drawcolorcodedstring(str_pos, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha, DRAWFLAG_NORMAL);
157         }
158         else if(race_checkpointtime)
159         {
160                 a = bound(0, 2 - (time - race_checkpointtime), 1);
161                 s = "";
162                 forcetime = "";
163                 if(a > 0) // just hit a checkpoint?
164                 {
165                         if(race_checkpoint != 254)
166                         {
167                                 if(race_time && race_previousbesttime)
168                                         s = MakeRaceString(race_checkpoint, TIME_DECODE(race_time) - TIME_DECODE(race_previousbesttime), 0, ((race_mypreviousbesttime) ? TIME_DECODE(race_time) - TIME_DECODE(race_mypreviousbesttime) : 0), 0, race_previousbestname);
169                                 else
170                                         s = MakeRaceString(race_checkpoint, 0, -1, 0, 0, race_previousbestname);
171                                 if(race_time)
172                                         forcetime = TIME_ENCODED_TOSTRING(race_time);
173                         }
174                 }
175                 else
176                 {
177                         if(race_laptime && race_nextcheckpoint != 254)
178                         {
179                                 if(race_nextbesttime)
180                                 {
181                                         a = bound(0, 2 - ((race_laptime + TIME_DECODE(race_nextbesttime)) - (time + TIME_DECODE(race_penaltyaccumulator))), 1);
182                                         float a2 = ((race_mybesttime) ? bound(0, 2 - ((race_laptime + TIME_DECODE(race_mybesttime)) - (time + TIME_DECODE(race_penaltyaccumulator))), 1) : 0);
183                                         if(a > 0) // next one?
184                                                 s = MakeRaceString(race_nextcheckpoint, (time + TIME_DECODE(race_penaltyaccumulator)) - race_laptime, TIME_DECODE(race_nextbesttime), ((a2 > 0) ? TIME_DECODE(race_mybesttime) : 0), 0, race_nextbestname);
185                                 }
186                         }
187                 }
188
189                 if(s != "" && a > 0)
190                 {
191                         str_pos = pos + vec2(0.5 * (mySize.x - stringwidth(s, true, '1 1 0' * 0.2 * mySize.y)), 0.6 * mySize.y);
192                         drawcolorcodedstring(str_pos, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
193                 }
194
195                 if(race_penaltytime)
196                 {
197                         a = bound(0, 2 - (time - race_penaltyeventtime), 1);
198                         if(a > 0)
199                         {
200                                 s = sprintf(_("^1PENALTY: %.1f (%s)"), race_penaltytime * 0.1, race_penaltyreason);
201                                 str_pos = pos + vec2(0.5 * (mySize.x - stringwidth(s, true, '1 1 0' * 0.2 * mySize.y)), 0.8 * mySize.y);
202                                 drawcolorcodedstring(str_pos, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
203                         }
204                 }
205
206                 draw_beginBoldFont();
207
208                 if(forcetime != "")
209                 {
210                         a = bound(0, (time - race_checkpointtime) / 0.5, 1);
211                         str_pos = pos + eX * 0.5 * (mySize.x - stringwidth(forcetime, false, '1 1 0' * 0.6 * mySize.y));
212                         drawstring_expanding(str_pos, forcetime, '1 1 0' * 0.6 * mySize.y, '1 1 1', panel_fg_alpha, 0, a);
213                 }
214                 else
215                         a = 1;
216
217                 if(race_laptime && race_checkpoint != 255)
218                 {
219                         s = TIME_ENCODED_TOSTRING(TIME_ENCODE(time + TIME_DECODE(race_penaltyaccumulator) - race_laptime));
220                         str_pos = pos + eX * 0.5 * (mySize.x - stringwidth(s, false, '0.6 0.6 0' * mySize.y));
221                         drawstring(str_pos, s, '0.6 0.6 0' * mySize.y, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
222                 }
223
224                 draw_endBoldFont();
225         }
226         else
227         {
228                 if(race_mycheckpointtime)
229                 {
230                         a = bound(0, 2 - (time - race_mycheckpointtime), 1);
231                         s = MakeRaceString(race_mycheckpoint, TIME_DECODE(race_mycheckpointdelta), -(race_mycheckpointenemy == ""), 0, race_mycheckpointlapsdelta, race_mycheckpointenemy);
232                         str_pos = pos + vec2(0.5 * (mySize.x - stringwidth(s, true, '1 1 0' * 0.2 * mySize.y)), 0.6 * mySize.y);
233                         drawcolorcodedstring(str_pos, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
234                 }
235                 if(race_othercheckpointtime && race_othercheckpointenemy != "")
236                 {
237                         a = bound(0, 2 - (time - race_othercheckpointtime), 1);
238                         s = MakeRaceString(race_othercheckpoint, -TIME_DECODE(race_othercheckpointdelta), -(race_othercheckpointenemy == ""), 0, race_othercheckpointlapsdelta, race_othercheckpointenemy);
239                         str_pos = pos + vec2(0.5 * (mySize.x - stringwidth(s, true, '1 1 0' * 0.2 * mySize.y)), 0.6 * mySize.y);
240                         drawcolorcodedstring(str_pos, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
241                 }
242
243                 if(race_penaltytime && !race_penaltyaccumulator)
244                 {
245                         t = race_penaltytime * 0.1 + race_penaltyeventtime;
246                         a = bound(0, (1 + t - time), 1);
247                         if(a > 0)
248                         {
249                                 if(time < t)
250                                         s = sprintf(_("^1PENALTY: %.1f (%s)"), (t - time) * 0.1, race_penaltyreason);
251                                 else
252                                         s = sprintf(_("^2PENALTY: %.1f (%s)"), 0, race_penaltyreason);
253                                 str_pos = pos + vec2(0.5 * (mySize.x - stringwidth(s, true, '1 1 0' * 0.2 * mySize.y)), 0.6 * mySize.y);
254                                 drawcolorcodedstring(str_pos, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
255                         }
256                 }
257         }
258 }