]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/client/View.qc
do not draw porto line when dead
[divverent/nexuiz.git] / data / qcsrc / client / View.qc
1 entity porto;\r
2 vector polyline[16];\r
3 float trace_dphitcontents;\r
4 float Q3SURFACEFLAG_SLICK = 2; // low friction surface\r
5 float DPCONTENTS_SOLID = 1; // blocks player movement\r
6 float DPCONTENTS_BODY = 32; // blocks player movement\r
7 float DPCONTENTS_CORPSE = 64; // blocks player movement\r
8 float DPCONTENTS_PLAYERCLIP = 256; // blocks player movement\r
9 void Porto_Draw()\r
10 {\r
11         vector p, dir, ang, q, nextdir;\r
12         float idx, portal_number, portal1_idx;\r
13 \r
14         if(activeweapon != WEP_PORTO || spectatee_status)\r
15                 return;\r
16         if(intermission == 1)\r
17                 return;\r
18         if(intermission == 2)\r
19                 return;\r
20         if (getstati(STAT_HEALTH) <= 0)\r
21                 return;\r
22 \r
23         dir = view_forward;\r
24 \r
25         if(angles_held_status)\r
26         {\r
27                 makevectors(angles_held);\r
28                 dir = v_forward;\r
29         }\r
30 \r
31         p = view_origin;\r
32 \r
33         polyline[0] = p;\r
34         idx = 1;\r
35         portal_number = 0;\r
36         nextdir = dir;\r
37 \r
38         for(;;)\r
39         {\r
40                 dir = nextdir;\r
41                 traceline(p, p + 65536 * dir, TRUE, porto);\r
42                 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)\r
43                         return;\r
44                 nextdir = dir - 2 * (dir * trace_plane_normal) * trace_plane_normal; // mirror dir at trace_plane_normal\r
45                 p = trace_endpos;\r
46                 polyline[idx] = p;\r
47                 ++idx;\r
48                 if(idx >= 16)\r
49                         return;\r
50                 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_SLICK || trace_dphitcontents & DPCONTENTS_PLAYERCLIP)\r
51                         continue;\r
52                 ++portal_number;\r
53                 ang = vectoangles2(trace_plane_normal, dir);\r
54                 ang_x = -ang_x;\r
55                 makevectors(ang);\r
56                 if(!CheckWireframeBox(porto, p - 48 * v_right - 48 * v_up + 16 * v_forward, 96 * v_right, 96 * v_up, 96 * v_forward))\r
57                         return;\r
58                 if(portal_number == 1)\r
59                         portal1_idx = idx;\r
60                 if(portal_number >= 2)\r
61                         break;\r
62         }\r
63 \r
64         while(idx >= 2)\r
65         {\r
66                 p = polyline[idx-2];\r
67                 q = polyline[idx-1];\r
68                 if(idx == 2)\r
69                         p = p - view_up * 16;\r
70                 if(idx-1 >= portal1_idx)\r
71                 {\r
72                         Draw_CylindricLine(p, q, 4, "", 1, 0, '0 0 1', 0.5, DRAWFLAG_NORMAL);\r
73                 }\r
74                 else\r
75                 {\r
76                         Draw_CylindricLine(p, q, 4, "", 1, 0, '1 0 0', 0.5, DRAWFLAG_NORMAL);\r
77                 }\r
78                 --idx;\r
79         }\r
80 }\r
81 \r
82 /**\r
83  * Checks whether the server initiated a map restart (stat_game_starttime changed)\r
84  *\r
85  * TODO: Use a better solution where a common shared entitiy is used that contains\r
86  * timelimit, fraglimit and game_starttime! Requires engine changes (remove STAT_TIMELIMIT\r
87  * and STAT_FRAGLIMIT to be auto-sent)\r
88  */\r
89 void CheckForGamestartChange() {\r
90         float startTime;\r
91         startTime = getstatf(STAT_GAMESTARTTIME);\r
92         if (previous_game_starttime != startTime) {\r
93                 if ((time + 5.0) < startTime) {\r
94                         //if connecting to server while restart was active don't always play prepareforbattle\r
95                         sound(self, CHAN_VOICE, "announcer/robotic/prepareforbattle.wav", VOL_BASEVOICE, ATTN_NONE);\r
96                 }\r
97                 if (time < startTime) {\r
98                         restartAnnouncer = spawn();\r
99                         restartAnnouncer.think = restartAnnouncer_Think;\r
100                         restartAnnouncer.nextthink = startTime - floor(startTime - time); //synchronize nextthink to startTime\r
101                 }\r
102         }\r
103         previous_game_starttime = startTime;\r
104 }\r
105 \r
106 void Porto_Init()\r
107 {\r
108         porto = spawn();\r
109         porto.classname = "porto";\r
110         porto.draw = Porto_Draw;\r
111         porto.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_PLAYERCLIP;\r
112 }\r
113 \r
114 float drawtime;\r
115 \r
116 float tan(float x)\r
117 {\r
118         return sin(x) / cos(x);\r
119 }\r
120 float atan2(float y, float x)\r
121 {\r
122         vector v;\r
123         v = '1 0 0' * x + '0 1 0' * y;\r
124         v = vectoangles(v);\r
125         return v_y * 0.01745329251994329576;\r
126 }\r
127 \r
128 vector GetCurrentFov(float fov)\r
129 {\r
130         float zoomsensitivity, zoomspeed, zoomfactor, zoomdir;\r
131 \r
132         zoomsensitivity = cvar("cl_zoomsensitivity");\r
133         zoomfactor = cvar("cl_zoomfactor");\r
134         if(zoomfactor < 1 || zoomfactor > 16)\r
135                 zoomfactor = 2.5;\r
136         zoomspeed = cvar("cl_zoomspeed");\r
137         if(zoomspeed >= 0)\r
138                 if(zoomspeed < 0.5 || zoomspeed > 16)\r
139                         zoomspeed = 3.5;\r
140 \r
141         zoomdir = button_zoom;\r
142         if(getstati(STAT_ACTIVEWEAPON) == WEP_NEX) // do NOT use switchweapon here\r
143                 zoomdir += button_attack2;\r
144         if(spectatee_status > 0 || isdemo())\r
145         {\r
146                 if(spectatorbutton_zoom)\r
147                         zoomdir = 0 + !zoomdir;\r
148                         // do not even THINK about removing this 0\r
149                         // _I_ know what I am doing\r
150                         // fteqcc does not\r
151         }\r
152 \r
153         if(zoomdir)\r
154                 zoomin_effect = 0;\r
155 \r
156         if(zoomin_effect || camera_active)\r
157         {\r
158                 current_viewzoom = min(1, current_viewzoom + drawframetime);\r
159         }\r
160         else\r
161         {\r
162                 if(zoomspeed < 0) // instant zoom\r
163                 {\r
164                         if(zoomdir)\r
165                                 current_viewzoom = 1 / zoomfactor;\r
166                         else\r
167                                 current_viewzoom = 1;\r
168                 }\r
169                 else\r
170                 {\r
171                         if(zoomdir)\r
172                                 current_viewzoom = 1 / bound(1, 1 / current_viewzoom + drawframetime * zoomspeed * (zoomfactor - 1), zoomfactor);\r
173                         else\r
174                                 current_viewzoom = bound(1 / zoomfactor, current_viewzoom + drawframetime * zoomspeed * (1 - 1 / zoomfactor), 1);\r
175                 }\r
176         }\r
177 \r
178         if(almost_equals(current_viewzoom, 1))\r
179                 current_zoomfraction = 0;\r
180         else if(almost_equals(current_viewzoom, 1/zoomfactor))\r
181                 current_zoomfraction = 1;\r
182         else\r
183                 current_zoomfraction = (current_viewzoom - 1) / (1/zoomfactor - 1);\r
184 \r
185         if(zoomsensitivity < 1)\r
186                 setsensitivityscale(pow(current_viewzoom, 1 - zoomsensitivity));\r
187         else\r
188                 setsensitivityscale(1);\r
189 \r
190         float frustumx, frustumy, fovx, fovy;\r
191         frustumy = tan(fov * 0.00872664625997164788) * 0.75 * current_viewzoom;\r
192         frustumx = frustumy * vid_width / vid_height / vid_pixelheight;\r
193         fovx = atan2(frustumx, 1) / 0.00872664625997164788;\r
194         fovy = atan2(frustumy, 1) / 0.00872664625997164788;\r
195 \r
196         return '1 0 0' * fovx + '0 1 0' * fovy;\r
197 }\r
198 \r
199 // this function must match W_SetupShot!\r
200 float zoomscript_caught;\r
201 entity trueaim;\r
202 void TrueAim_Init()\r
203 {\r
204         trueaim = spawn();\r
205         trueaim.classname = "trueaim";\r
206         trueaim.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE;\r
207 }\r
208 \r
209 float TrueAimCheck()\r
210 {\r
211         float nudge = 1; // added to traceline target and subtracted from result\r
212         vector vecs, trueaimpoint, w_shotorg;\r
213         vector mi, ma;\r
214 \r
215         mi = ma = '0 0 0';\r
216 \r
217         switch(activeweapon)\r
218         {\r
219                 case WEP_PORTO: // shoots from eye\r
220                 case WEP_HOOK: // no trueaim\r
221                 case WEP_GRENADE_LAUNCHER: // toss curve\r
222                         return 1;\r
223                 case WEP_CAMPINGRIFLE:\r
224                         if(zoomscript_caught)\r
225                                 return 1; // shoots from eye when zoomed\r
226                 case WEP_ROCKET_LAUNCHER: // projectile has a size!\r
227                         mi = '-3 -3 -3';\r
228                         ma = '3 3 3';\r
229                         break;\r
230                 case WEP_SEEKER: // projectile has a size!\r
231                         mi = '-2 -2 -2';\r
232                         ma = '2 2 2';\r
233                         break;\r
234         }\r
235 \r
236         vecs = decompressShotOrigin(getstati(STAT_SHOTORG));\r
237 \r
238         traceline(view_origin, view_origin + view_forward * MAX_SHOT_DISTANCE, MOVE_NOMONSTERS, trueaim);\r
239         trueaimpoint = trace_endpos;\r
240 \r
241         if(vecs_x > 0)\r
242                 vecs_y = -vecs_y;\r
243         else\r
244                 vecs = '0 0 0';\r
245 \r
246         w_shotorg = view_origin + view_right * vecs_y + view_up * vecs_z;\r
247 \r
248         // now move the vecs forward as much as requested if possible\r
249         traceline(w_shotorg, w_shotorg + view_forward * (vecs_x + nudge), MOVE_NORMAL, trueaim); // FIXME this MOVE_NORMAL part will misbehave a little in csqc\r
250         w_shotorg = trace_endpos - view_forward * nudge;\r
251 \r
252         // now test whether we will actually hit the trueaimpoint...\r
253         tracebox(w_shotorg, mi, ma, trueaimpoint, MOVE_NOMONSTERS, trueaim);\r
254         return vlen(trace_endpos - trueaimpoint) <= vlen(ma - mi) + 1;\r
255                 // yes, this is an ugly hack... but it seems good enough to find out whether the test hits the same place as the initial trace\r
256 }\r
257 \r
258 void CSQC_common_hud(void);\r
259 \r
260 void CSQC_kh_hud(void);\r
261 void CSQC_ctf_hud(void);\r
262 void PostInit(void);\r
263 void CSQC_Demo_Camera();\r
264 float Sbar_WouldDrawScoreboard ();\r
265 float view_set;\r
266 float camera_mode;\r
267 string NextFrameCommand;\r
268 void CSQC_UpdateView(float w, float h)\r
269 {\r
270         entity e;\r
271         float fov;\r
272         float f, i, j;\r
273 \r
274         dprint_load();\r
275         WaypointSprite_Load();\r
276 \r
277         ticrate = getstatf(STAT_SYS_TICRATE) * getstatf(STAT_MOVEVARS_TIMESCALE);\r
278 \r
279         // Render the Scene\r
280         if(!intermission || !view_set)\r
281         {\r
282                 view_origin = pmove_org + '0 0 1' * getstati(STAT_VIEWHEIGHT);\r
283                 view_angles = input_angles;\r
284                 makevectors(view_angles);\r
285                 view_forward = v_forward;\r
286                 view_right = v_right;\r
287                 view_up = v_up;\r
288                 view_set = 1;\r
289         }\r
290 \r
291         vid_width = w;\r
292         vid_height = h;\r
293 \r
294 #ifdef BLURTEST\r
295         if(time > blurtest_time0 && time < blurtest_time1)\r
296         {\r
297                 float r, t;\r
298 \r
299                 t = (time - blurtest_time0) / (blurtest_time1 - blurtest_time0);\r
300                 r = t * blurtest_radius;\r
301                 f = 1 / pow(t, blurtest_power) - 1;\r
302 \r
303                 cvar_set("r_glsl_postprocess", "1");\r
304                 cvar_set("r_glsl_postprocess_uservec1", strcat(ftos(r), " ", ftos(f), " 0 0"));\r
305         }\r
306         else\r
307         {\r
308                 cvar_set("r_glsl_postprocess", "0");\r
309                 cvar_set("r_glsl_postprocess_uservec1", "0 0 0 0");\r
310         }\r
311 #endif\r
312 \r
313         Fog_Force();\r
314 \r
315         drawframetime = max(0.000001, time - drawtime);\r
316         drawtime = time;\r
317 \r
318         // watch for gametype changes here...\r
319         // in ParseStuffCMD the cmd isn't executed yet :/\r
320         // might even be better to add the gametype to TE_CSQC_INIT...?\r
321         if(!postinit)\r
322                 PostInit();\r
323 \r
324         CheckForGamestartChange();\r
325         maptimeAnnouncer();\r
326 \r
327         fov = cvar("fov");\r
328         if(button_zoom || fov <= 59.5)\r
329         {\r
330                 if(!zoomscript_caught)\r
331                 {\r
332                         localcmd("+button4\n");\r
333                         zoomscript_caught = 1;\r
334                         ignore_plus_zoom += 1;\r
335                 }\r
336         }\r
337         else\r
338         {\r
339                 if(zoomscript_caught)\r
340                 {\r
341                         localcmd("-button4\n");\r
342                         zoomscript_caught = 0;\r
343                         ignore_minus_zoom += 1;\r
344                 }\r
345         }\r
346 \r
347         sbar_alpha_fg = cvar("sbar_alpha_fg" );\r
348         sbar_hudselector = cvar("sbar_hudselector");\r
349         ColorTranslateMode = cvar("cl_stripcolorcodes");\r
350         activeweapon = getstati(STAT_SWITCHWEAPON);\r
351         f = cvar("teamplay");\r
352         if(f != teamplay)\r
353         {\r
354                 teamplay = f;\r
355                 Sbar_InitScores();\r
356         }\r
357 \r
358         if(last_weapon != activeweapon) {\r
359                 weapontime = time;\r
360                 last_weapon = activeweapon;\r
361         }\r
362 \r
363         // ALWAYS Clear Current Scene First\r
364         R_ClearScene();\r
365 \r
366         // Assign Standard Viewflags\r
367         // Draw the World (and sky)\r
368         R_SetView(VF_DRAWWORLD, 1);\r
369 \r
370         // Set the console size vars\r
371         vid_conwidth = cvar("vid_conwidth");\r
372         vid_conheight = cvar("vid_conheight");\r
373         vid_pixelheight = cvar("vid_pixelheight");\r
374 \r
375         R_SetView(VF_FOV, GetCurrentFov(fov));\r
376 \r
377         // Camera for demo playback\r
378         if(camera_active)\r
379         {\r
380                 if(cvar("camera_enable"))\r
381                         CSQC_Demo_Camera();\r
382                 else\r
383                 {\r
384                         cvar_set("chase_active", ftos(chase_active_backup));\r
385                         cvar_set("cl_demo_mousegrab", "0");\r
386                         camera_active = FALSE;\r
387                 }\r
388         }\r
389 #ifdef CAMERATEST\r
390         else if(cvar("camera_enable"))\r
391 #else\r
392         else if(cvar("camera_enable") && isdemo())\r
393 #endif\r
394         {\r
395                 // Enable required Darkplaces cvars\r
396                 chase_active_backup = cvar("chase_active");\r
397                 cvar_set("chase_active", "2");\r
398                 cvar_set("cl_demo_mousegrab", "1");\r
399                 camera_active = TRUE;\r
400                 camera_mode = FALSE;\r
401         }\r
402 \r
403         // Draw the Crosshair\r
404         float scoreboard_active;\r
405         scoreboard_active = Sbar_WouldDrawScoreboard();\r
406         R_SetView(VF_DRAWCROSSHAIR, 0); //Make sure engine crosshairs are always hidden\r
407 \r
408         // Draw the Engine Status Bar (the default Quake HUD)\r
409         R_SetView(VF_DRAWENGINESBAR, 0);\r
410 \r
411         // fetch this one only once per frame\r
412         sbar_showbinds = cvar("sbar_showbinds");\r
413         sbar_showbinds_limit = cvar("sbar_showbinds_limit");\r
414 \r
415         // Update the mouse position\r
416         /*\r
417         mousepos_x = vid_conwidth;\r
418         mousepos_y = vid_conheight;\r
419         mousepos = mousepos*0.5 + getmousepos();\r
420         */\r
421 \r
422         R_AddEntities(MASK_NORMAL | MASK_ENGINE | MASK_ENGINEVIEWMODELS);\r
423 \r
424         e = self;\r
425         for(self = world; (self = nextent(self)); )\r
426                 if(self.draw)\r
427                         self.draw();\r
428         self = e;\r
429         R_RenderScene();\r
430 \r
431         // now switch to 2D drawing mode by calling a 2D drawing function\r
432         // then polygon drawing will draw as 2D stuff, and NOT get queued until the\r
433         // next R_RenderScene call\r
434         drawstring('0 0 0', "", '1 1 0', '1 1 1', 0, 0);\r
435 \r
436         // Draw the mouse cursor\r
437         // NOTE: drawpic must happen after R_RenderScene for some reason\r
438         //drawpic(getmousepos(), "gfx/cursor.tga", '11 14 0', '1 1 1', 1, 0);\r
439         //drawstring('50 50', ftos(game), '10 10 0', '1 1 1', 1, 0);\r
440         //self = edict_num(player_localnum);\r
441         //drawstring('0 0', vtos(pmove_org), '8 8 0', '1 1 1', 1, 0);\r
442         //drawstring('0 8', strcat("ORG: ", vtos(self.origin), " state: ", ftos(self.ctf_state), " HP: ", ftos(self.health)), '8 8 0', '1 1 1', 1, 0);\r
443         // as long as the ctf part isn't in, this is useless\r
444         if(menu_visible)\r
445                 menu_show();\r
446 \r
447         /*if(gametype == GAME_CTF)\r
448         {\r
449                 ctf_view();\r
450         } else */\r
451 \r
452         // draw 2D entities\r
453         e = self;\r
454         for(self = world; (self = nextent(self)); )\r
455                 if(self.draw2d)\r
456                         self.draw2d();\r
457         self = e;\r
458 \r
459         // draw radar\r
460         if(\r
461                 ons_showmap\r
462                 ||\r
463                 (\r
464                         !scoreboard_active\r
465                         &&\r
466                         cvar_string("cl_teamradar") != "0"\r
467                         &&\r
468                         (\r
469                                 cvar("cl_teamradar") == 2\r
470                                 ||\r
471                                 teamplay\r
472                         )\r
473                 )\r
474         )\r
475                 teamradar_view();\r
476 \r
477         if (cvar("cl_showpressedkeys")) // draw pressed keys when spectating and playing\r
478         {\r
479                 if(spectatee_status > 0 || cvar("cl_showpressedkeys") >= 2)\r
480                         Sbar_DrawPressedKeys();\r
481         }\r
482 \r
483         // draw sbar\r
484         if(cvar("r_letterbox") == 0)\r
485         if(cvar("viewsize") < 120)\r
486                 CSQC_common_hud();\r
487 \r
488         // crosshair goes VERY LAST\r
489         if(!scoreboard_active && !ons_showmap && !camera_active) {\r
490                 // TrueAim check\r
491                 float goodshot;\r
492 \r
493                 goodshot = TrueAimCheck();\r
494 \r
495                 string wcross_style;\r
496                 wcross_style = cvar_string("crosshair");\r
497 \r
498                 if (wcross_style != "0") {\r
499                         vector wcross_color, wcross_size;\r
500                         string wcross_wep, wcross_name;\r
501                         float wcross_alpha, wcross_sizefloat;\r
502 \r
503                         wcross_color_x = cvar("crosshair_color_red");\r
504                         wcross_color_y = cvar("crosshair_color_green");\r
505                         wcross_color_z = cvar("crosshair_color_blue");\r
506                         wcross_alpha = cvar("crosshair_color_alpha");\r
507                         wcross_sizefloat = cvar("crosshair_size");\r
508                         if (cvar("crosshair_per_weapon")) {\r
509                                 e = get_weaponinfo(activeweapon);\r
510                                 if (e && e.netname != "")\r
511                                 {\r
512                                         wcross_wep = e.netname;\r
513                                         wcross_style = cvar_string(strcat("crosshair_", wcross_wep));\r
514                                         if(wcross_style == "")\r
515                                                 wcross_style = e.netname;\r
516 \r
517                                         if(!cvar("crosshair_color_override"))\r
518                                         {\r
519                                                 wcross_color_x = cvar(strcat("crosshair_", wcross_wep, "_color_red"));\r
520                                                 wcross_color_y = cvar(strcat("crosshair_", wcross_wep, "_color_green"));\r
521                                                 wcross_color_z = cvar(strcat("crosshair_", wcross_wep, "_color_blue"));\r
522                                         }\r
523 \r
524                                         wcross_alpha *= cvar(strcat("crosshair_", wcross_wep, "_color_alpha"));\r
525                                         wcross_sizefloat *= cvar(strcat("crosshair_", wcross_wep, "_size"));\r
526                                 }\r
527                         }\r
528 \r
529                         wcross_name = strcat("gfx/crosshair", wcross_style);\r
530 \r
531                         wcross_size = drawgetimagesize(wcross_name);\r
532                         wcross_size_x *= wcross_sizefloat;\r
533                         wcross_size_y *= wcross_sizefloat;\r
534 \r
535                         if(goodshot || !cvar("crosshair_hittest"))\r
536                         {\r
537                                 drawpic('0.5 0 0' * (vid_conwidth - wcross_size_x) + '0 0.5 0' * (vid_conheight - wcross_size_y), wcross_name, wcross_size, wcross_color, wcross_alpha, DRAWFLAG_NORMAL);\r
538                         }\r
539                         else\r
540                         {\r
541                                 wcross_alpha *= 0.04 * 0.75;\r
542                                 for(i = -2; i <= 2; ++i)\r
543                                         for(j = -2; j <= 2; ++j)\r
544                                                 drawpic('0.5 0 0' * (vid_conwidth - wcross_size_x + i) + '0 0.5 0' * (vid_conheight - wcross_size_y + j), wcross_name, wcross_size, wcross_color, wcross_alpha, DRAWFLAG_NORMAL);\r
545                         }\r
546                 }\r
547         }\r
548 \r
549         if(NextFrameCommand)\r
550         {\r
551                 localcmd("\n", NextFrameCommand, "\n");\r
552                 NextFrameCommand = string_null;\r
553         }\r
554 }\r
555 \r
556 void Sbar_Draw();\r
557 void CSQC_common_hud(void)\r
558 {\r
559         // Sbar_SortFrags(); done in Sbar_Draw\r
560         Sbar_Draw();\r
561 }\r
562 \r
563 // KeyHunt HUD by victim\r
564 void CSQC_kh_hud(void)\r
565 {\r
566         // HUD 0 has the weapons on the right hand side - temporarily shown when needed\r
567         // HUD 1 has the weapons on the bottom - permanently\r
568 \r
569         // use the following two binds to check the icons move correctly\r
570         // bind g "toggle sbar_flagstatus_right; echo Menu right $sbar_flagstatus_right"  // move the icons\r
571         // bind h "toggle sbar_hudselector; echo HUD $sbar_hudselector"  // change the HUD\r
572 \r
573         float kh_keys, kh_keys_status, kh_teams_set;\r
574         float kh_margin_x, kh_margin_y, kh_key_box;\r
575         string kh_carrying, kh_outline;\r
576         vector red_pos, blue_pos, yellow_pos, pink_pos, kh_size;\r
577         vector red, blue, yellow, pink;\r
578 \r
579         kh_keys = getstati(STAT_KH_KEYS);\r
580         kh_keys_status = kh_keys / 256;\r
581         kh_teams_set = cvar("_teams_available");  // set in keyhunt.qc\r
582 \r
583         kh_margin_y = 8;\r
584         kh_margin_x = (cvar("sbar_flagstatus_right") * sbar_hudselector * (vid_conwidth - 67)) + 10;\r
585 //      sbar_flagstatus_right 0/1; sbar_hudselector 0/1; screen width - key width + margin\r
586 \r
587         red_pos_x = blue_pos_x = yellow_pos_x = pink_pos_x = kh_margin_x;\r
588 \r
589         kh_key_box = 120;\r
590 \r
591         pink_pos_y = kh_margin_y + 0;  // top\r
592         yellow_pos_y = kh_margin_y + kh_key_box;\r
593         blue_pos_y = kh_margin_y + kh_key_box * 2;\r
594         red_pos_y = kh_margin_y + kh_key_box * 3;  //bottom\r
595 \r
596         red = '1 0 0';\r
597         blue = '0 0 1';\r
598         yellow = '1 1 0';\r
599         pink = '1 0 1';\r
600 \r
601         kh_size = '0 0 0';  // don't resize the image\r
602 \r
603         kh_carrying = "gfx/sb_kh_full";\r
604         kh_outline = "gfx/sb_kh_outline";\r
605 \r
606 //      drawpic(vector position, string pic, vector size, vector rgb, float alpha, float flag)\r
607 //      vector position = '0 0';  // 'x y' 0 0 (the origin) is the top left. X 0 - 799, Y 0 - 599\r
608 \r
609 //      vector size = '0 0';  // 'x y' changes the x & y dimensions. '0 0' gives the default pic size\r
610 //      vector rgb = '0 0 0';  // 'r g b' range 0 - 1\r
611 \r
612         if (kh_keys_status & 1)  // red\r
613                 drawpic (red_pos, kh_carrying, kh_size, red, 0.2, 0);  // show 20% alpha key\r
614         else\r
615                 drawpic (red_pos, kh_outline, kh_size, red, 0.4, 0);  // show key outline 40% alpha\r
616 \r
617         if (kh_keys & 1)\r
618                 drawpic (red_pos, kh_carrying, kh_size, red, 1.0, 0);  // show solid key 100% alpha\r
619 \r
620 \r
621         if (kh_keys_status & 2)  // blue\r
622                 drawpic (blue_pos, kh_carrying, kh_size, blue, 0.2, 0);\r
623         else\r
624                 drawpic (blue_pos, kh_outline, kh_size, blue, 0.4, 0);\r
625 \r
626         if (kh_keys & 2)\r
627                 drawpic (blue_pos, kh_carrying, kh_size, blue, 1.0, 0);\r
628 \r
629 \r
630         if (kh_teams_set & 4)  // yellow\r
631         {\r
632                 if (kh_keys_status & 4)\r
633                         drawpic (yellow_pos, kh_carrying, kh_size, yellow, 0.2, 0);\r
634                 else\r
635                         drawpic (yellow_pos, kh_outline, kh_size, yellow, 0.4, 0);\r
636 \r
637                 if (kh_keys & 4)\r
638                         drawpic (yellow_pos, kh_carrying, kh_size, yellow, 1.0, 0);\r
639         }\r
640 \r
641 \r
642         if (kh_teams_set & 8)  // pink\r
643         {\r
644                 if (kh_keys_status & 8)\r
645                         drawpic (pink_pos, kh_carrying, kh_size, pink, 0.2, 0);\r
646                 else\r
647                         drawpic (pink_pos, kh_outline, kh_size, pink, 0.4, 0);\r
648 \r
649                 if (kh_keys & 8)\r
650                         drawpic (pink_pos, kh_carrying, kh_size, pink, 1.0, 0);\r
651         }\r
652 \r
653 }\r
654 \r
655 // following vectors must be global to allow seamless switching between camera modes\r
656 vector camera_offset, current_camera_offset, mouse_angles, current_angles, current_origin, current_position;\r
657 void CSQC_Demo_Camera()\r
658 {\r
659         float speed, attenuation, dimensions;\r
660         vector tmp, delta;\r
661 \r
662         if( cvar("camera_reset") || !camera_mode )\r
663         {\r
664                 camera_offset = '0 0 0';\r
665                 current_angles = '0 0 0';\r
666                 camera_direction = '0 0 0';\r
667                 camera_offset_z += 30;\r
668                 camera_offset_x += 30 * -cos(current_angles_y * DEG2RAD);\r
669                 camera_offset_y += 30 * -sin(current_angles_y * DEG2RAD);\r
670                 current_origin = view_origin;\r
671                 current_camera_offset  = camera_offset;\r
672                 cvar_set("camera_reset", "0");\r
673                 camera_mode = CAMERA_CHASE;\r
674         }\r
675 \r
676         // Camera angles\r
677         if( camera_roll )\r
678                 mouse_angles_z += camera_roll * cvar("camera_speed_roll");\r
679 \r
680         if(cvar("camera_look_player"))\r
681         {\r
682                 local vector dir;\r
683                 local float n;\r
684 \r
685                 dir = normalize(view_origin - current_position);\r
686                 n = mouse_angles_z;\r
687                 mouse_angles = vectoangles(dir);\r
688                 mouse_angles_x = mouse_angles_x * -1;\r
689                 mouse_angles_z = n;\r
690         }\r
691         else\r
692         {\r
693                 tmp = getmousepos() * 0.1;\r
694                 if(vlen(tmp)>cvar("camera_mouse_treshold"))\r
695                 {\r
696                         mouse_angles_x += tmp_y * cos(mouse_angles_z * DEG2RAD) + (tmp_x * sin(mouse_angles_z * DEG2RAD));\r
697                         mouse_angles_y -= tmp_x * cos(mouse_angles_z * DEG2RAD) + (tmp_y * -sin(mouse_angles_z * DEG2RAD));\r
698                 }\r
699         }\r
700 \r
701         while (mouse_angles_x < -180) mouse_angles_x = mouse_angles_x + 360;\r
702         while (mouse_angles_x > 180) mouse_angles_x = mouse_angles_x - 360;\r
703         while (mouse_angles_y < -180) mouse_angles_y = mouse_angles_y + 360;\r
704         while (mouse_angles_y > 180) mouse_angles_y = mouse_angles_y - 360;\r
705 \r
706         // Fix difference when angles don't have the same sign\r
707         delta = '0 0 0';\r
708         if(mouse_angles_y < -60 && current_angles_y > 60)\r
709                 delta = '0 360 0';\r
710         if(mouse_angles_y > 60 && current_angles_y < -60)\r
711                 delta = '0 -360 0';\r
712 \r
713         if(cvar("camera_look_player"))\r
714                 attenuation = cvar("camera_look_attenuation");\r
715         else\r
716                 attenuation = cvar("camera_speed_attenuation");\r
717 \r
718         attenuation = 1 / max(1, attenuation);\r
719         current_angles += (mouse_angles - current_angles + delta) * attenuation;\r
720 \r
721         while (current_angles_x < -180) current_angles_x = current_angles_x + 360;\r
722         while (current_angles_x > 180) current_angles_x = current_angles_x - 360;\r
723         while (current_angles_y < -180) current_angles_y = current_angles_y + 360;\r
724         while (current_angles_y > 180) current_angles_y = current_angles_y - 360;\r
725 \r
726         // Camera position\r
727         tmp = '0 0 0';\r
728         dimensions = 0;\r
729 \r
730         if( camera_direction_x )\r
731         {\r
732                 tmp_x = camera_direction_x * cos(current_angles_y * DEG2RAD);\r
733                 tmp_y = camera_direction_x * sin(current_angles_y * DEG2RAD);\r
734                 if( cvar("camera_forward_follows") && !cvar("camera_look_player") )\r
735                         tmp_z = camera_direction_x * -sin(current_angles_x * DEG2RAD);\r
736                 ++dimensions;\r
737         }\r
738 \r
739         if( camera_direction_y )\r
740         {\r
741                 tmp_x += camera_direction_y * -sin(current_angles_y * DEG2RAD);\r
742                 tmp_y += camera_direction_y * cos(current_angles_y * DEG2RAD) * cos(current_angles_z * DEG2RAD);\r
743                 tmp_z += camera_direction_y * sin(current_angles_z * DEG2RAD);\r
744                 ++dimensions;\r
745         }\r
746 \r
747         if( camera_direction_z )\r
748         {\r
749                 tmp_z += camera_direction_z * cos(current_angles_z * DEG2RAD);\r
750                 ++dimensions;\r
751         }\r
752 \r
753         if(cvar("camera_free"))\r
754                 speed = cvar("camera_speed_free");\r
755         else\r
756                 speed = cvar("camera_speed_chase");\r
757 \r
758         if(dimensions)\r
759         {\r
760                 speed = speed * sqrt(1 / dimensions);\r
761                 camera_offset += tmp * speed;\r
762         }\r
763 \r
764         current_camera_offset += (camera_offset - current_camera_offset) * attenuation;\r
765 \r
766         // Camera modes\r
767         if( cvar("camera_free") )\r
768         {\r
769                 if ( camera_mode == CAMERA_CHASE )\r
770                 {\r
771                         current_camera_offset = current_origin + current_camera_offset;\r
772                         camera_offset = current_origin + camera_offset;\r
773                 }\r
774 \r
775                 camera_mode = CAMERA_FREE;\r
776                 current_position = current_camera_offset;\r
777         }\r
778         else\r
779         {\r
780                 if ( camera_mode == CAMERA_FREE )\r
781                 {\r
782                         current_origin = view_origin;\r
783                         camera_offset = camera_offset - current_origin;\r
784                         current_camera_offset = current_camera_offset - current_origin;\r
785                 }\r
786 \r
787                 camera_mode = CAMERA_CHASE;\r
788 \r
789                 if(cvar("camera_chase_smoothly"))\r
790                         current_origin += (view_origin - current_origin) * attenuation;\r
791                 else\r
792                         current_origin = view_origin;\r
793 \r
794                 current_position = current_origin + current_camera_offset;\r
795         }\r
796 \r
797         R_SetView(VF_ANGLES, current_angles);\r
798         R_SetView(VF_ORIGIN, current_position);\r
799 }\r