forked from QW-Group/ezquake-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl_view.c
1115 lines (911 loc) · 31.2 KB
/
cl_view.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright (C) 1996-1997 Id Software, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "quakedef.h"
#include "vx_stuff.h"
#include "gl_model.h"
#include "gl_local.h"
#include "teamplay.h"
#include "rulesets.h"
#include "utils.h"
#include "hud.h"
#include "hud_common.h"
#ifdef X11_GAMMA_WORKAROUND
#include "tr_types.h"
#endif
/*
The view is allowed to move slightly from its true position for bobbing,
but if it exceeds 8 pixels linear distance (spherical, not box), the list of
entities sent from the server may not include everything in the pvs, especially
when crossing a water boudnary.
*/
cvar_t cl_rollspeed = {"cl_rollspeed", "200"};
cvar_t cl_rollangle = {"cl_rollangle", "0"};
cvar_t cl_rollalpha = {"cl_rollalpha", "20"};
cvar_t cl_bob = {"cl_bob", "0"};
cvar_t cl_bobcycle = {"cl_bobcycle", "0.0"};
cvar_t cl_bobup = {"cl_bobup", "0.0"};
cvar_t v_kicktime = {"v_kicktime", "0.0"};
cvar_t v_kickroll = {"v_kickroll", "0.0"};
cvar_t v_kickpitch = {"v_kickpitch", "0.0"};
cvar_t v_gunkick = {"v_gunkick", "0"};
cvar_t v_viewheight = {"v_viewheight", "0"};
cvar_t cl_drawgun = {"r_drawviewmodel", "1"};
cvar_t r_nearclip = {"r_nearclip", "1", CVAR_RULESET_MAX | CVAR_RULESET_MIN, NULL, 1.f, 4.f, 0.1f};
cvar_t r_viewmodelsize = {"r_viewmodelSize", "1"};
cvar_t r_viewmodeloffset = {"r_viewmodeloffset", ""};
cvar_t r_viewpreselgun = {"r_viewpreselgun", "0"};
cvar_t r_viewlastfired = {"r_viewmodellastfired", "0"};
void Change_v_idle (cvar_t *var, char *value, qbool *cancel);
cvar_t v_iyaw_cycle = {"v_iyaw_cycle", "2", 0, Change_v_idle};
cvar_t v_iroll_cycle = {"v_iroll_cycle", "0.5", 0, Change_v_idle};
cvar_t v_ipitch_cycle = {"v_ipitch_cycle", "1", 0, Change_v_idle};
cvar_t v_iyaw_level = {"v_iyaw_level", "0.3", 0, Change_v_idle};
cvar_t v_iroll_level = {"v_iroll_level", "0.1", 0, Change_v_idle};
cvar_t v_ipitch_level = {"v_ipitch_level", "0.3", 0, Change_v_idle};
cvar_t v_idlescale = {"v_idlescale", "0", 0, Change_v_idle};
cvar_t crosshair = {"crosshair", "4",};
cvar_t crosshaircolor = {"crosshaircolor", "255 0 0", CVAR_COLOR};
cvar_t crosshairsize = {"crosshairsize", "1"};
cvar_t cl_crossx = {"cl_crossx", "0"};
cvar_t cl_crossy = {"cl_crossy", "0"};
// QW262: less flash grenade effect in demos
cvar_t cl_demoplay_flash = {"cl_demoplay_flash", ".33"};
cvar_t v_contentblend = {"v_contentblend", "0.2"};
cvar_t v_damagecshift = {"v_damagecshift", "0.2"};
cvar_t v_quadcshift = {"v_quadcshift", "0.5"};
cvar_t v_suitcshift = {"v_suitcshift", "0.5"};
cvar_t v_ringcshift = {"v_ringcshift", "0.5"};
cvar_t v_pentcshift = {"v_pentcshift", "0.5"};
cvar_t v_dlightcshift = {"v_dlightcshift", "1"};
cvar_t v_bonusflash = {"cl_bonusflash", "0"};
float v_dmg_time, v_dmg_roll, v_dmg_pitch;
frame_t *view_frame;
player_state_t view_message;
void Change_v_idle (cvar_t *var, char *value, qbool *cancel) {
// Don't allow cheating in TF
*cancel = (cl.teamfortress && cls.state >= ca_connected && cbuf_current != &cbuf_svc);
}
float V_CalcRoll (vec3_t angles, vec3_t velocity) {
vec3_t right;
float sign, side;
AngleVectors (angles, NULL, right, NULL);
side = DotProduct (velocity, right);
sign = side < 0 ? -1 : 1;
side = fabs(side);
side = (side < cl_rollspeed.value) ? side * cl_rollangle.value / cl_rollspeed.value : cl_rollangle.value;
if (side > 45)
side = 45;
return side * sign;
}
float V_CalcBob (void) {
static double bobtime;
static float bob;
float cycle;
if (cl.spectator)
return 0;
if (!cl.onground)
return bob; // just use old value
if (cl_bobcycle.value <= 0)
return 0;
bobtime += cls.frametime;
cycle = bobtime - (int) (bobtime / cl_bobcycle.value) * cl_bobcycle.value;
cycle /= cl_bobcycle.value;
if (cycle < cl_bobup.value)
cycle = M_PI * cycle / cl_bobup.value;
else
cycle = M_PI + M_PI * (cycle - cl_bobup.value) / (1.0 - cl_bobup.value);
// bob is proportional to simulated velocity in the xy plane
// (don't count Z, or jumping messes it up)
bob = sqrt(cl.simvel[0] * cl.simvel[0] + cl.simvel[1] * cl.simvel[1]) * cl_bob.value;
bob = bob * 0.3 + bob * 0.7 * sin(cycle);
bob = bound (-7, bob, 4);
return bob;
}
//=============================================================================
cvar_t v_centermove = {"v_centermove", "0.15"};
cvar_t v_centerspeed = {"v_centerspeed","500"};
void Force_Centerview_f (void)
{
if (concussioned)
return;
cl.viewangles[PITCH] = 0;
}
void V_StartPitchDrift (void) {
if (cl.laststop == cl.time)
return; // something else is keeping it from drifting
if (cl.nodrift || !cl.pitchvel) {
cl.pitchvel = v_centerspeed.value;
cl.nodrift = false;
cl.driftmove = 0;
}
}
void V_StopPitchDrift (void) {
cl.laststop = cl.time;
cl.nodrift = true;
cl.pitchvel = 0;
}
/*
Moves the client pitch angle towards cl.idealpitch sent by the server.
If the user is adjusting pitch manually, either with lookup/lookdown,
mlook and mouse, or klook and keyboard, pitch drifting is constantly stopped.
Drifting is enabled when the center view key is hit, mlook is released and
lookspring is non 0, or when
*/
void V_DriftPitch (void) {
float delta, move;
if (!cl.onground || cls.demoplayback ) {
cl.driftmove = cl.pitchvel = 0;
return;
}
// don't count small mouse motion
if (cl.nodrift) {
if ( fabs(cl.frames[(cls.netchan.outgoing_sequence-1)&UPDATE_MASK].cmd.forwardmove) < 200)
cl.driftmove = 0;
else
cl.driftmove += cls.frametime;
if ( cl.driftmove > v_centermove.value)
V_StartPitchDrift ();
return;
}
delta = 0 - cl.viewangles[PITCH];
if (!delta) {
cl.pitchvel = 0;
return;
}
move = cls.frametime * cl.pitchvel;
cl.pitchvel += cls.frametime * v_centerspeed.value;
if (delta > 0) {
if (move > delta) {
cl.pitchvel = 0;
move = delta;
}
cl.viewangles[PITCH] += move;
} else if (delta < 0) {
if (move > -delta) {
cl.pitchvel = 0;
move = -delta;
}
cl.viewangles[PITCH] -= move;
}
}
/*
==============================================================================
PALETTE FLASHES
==============================================================================
*/
cshift_t cshift_empty = { {130,80,50}, 0 };
cshift_t cshift_water = { {130,80,50}, 128 };
cshift_t cshift_slime = { {0,25,5}, 150 };
cshift_t cshift_lava = { {255,80,0}, 150 };
cvar_t gl_cshiftpercent = {"gl_cshiftpercent", "100"};
cvar_t gl_hwblend = {"gl_hwblend", "1"};
float v_blend[4]; // rgba 0.0 - 1.0
#ifdef NDEBUG
cvar_t v_gamma = {"gl_gamma", "0.8"};
cvar_t v_contrast = {"gl_contrast", "1.3"};
#else
cvar_t v_gamma = {"gl_gamma", "1.0"};
cvar_t v_contrast = {"gl_contrast", "1.0"};
#endif
#ifdef X11_GAMMA_WORKAROUND
unsigned short ramps[3][4096];
#else
unsigned short ramps[3][256];
#endif
void V_ParseDamage (void)
{
int armor, blood, i;
vec3_t from, forward, right;
float side, count, fraction;
armor = MSG_ReadByte ();
blood = MSG_ReadByte ();
for (i = 0; i < 3; i++)
from[i] = MSG_ReadCoord ();
if (cls.mvdplayback && cls.lastto >= 0 && cls.lastto < MAX_CLIENTS) {
cl.players[cls.lastto].max_health_last_set = cls.demotime;
}
if (CL_Demo_SkipMessage(true))
return;
count = blood * 0.5 + armor * 0.5;
if (count < 10)
count = 10;
cl.faceanimtime = cl.time + 0.2; // put sbar face into pain frame
cl.hurtblur = cl.time + count / 24; // use hurt motion blur.
cl.cshifts[CSHIFT_DAMAGE].percent += 3*count;
if (cl.cshifts[CSHIFT_DAMAGE].percent < 0)
cl.cshifts[CSHIFT_DAMAGE].percent = 0;
if (cl.cshifts[CSHIFT_DAMAGE].percent > 150)
cl.cshifts[CSHIFT_DAMAGE].percent = 150;
fraction = v_damagecshift.value;
if (fraction < 0) fraction = 0;
if (fraction > 1) fraction = 1;
cl.cshifts[CSHIFT_DAMAGE].percent *= fraction;
if (armor > blood) {
cl.cshifts[CSHIFT_DAMAGE].destcolor[0] = 200;
cl.cshifts[CSHIFT_DAMAGE].destcolor[1] = cl.cshifts[CSHIFT_DAMAGE].destcolor[2] = 100;
} else if (armor) {
cl.cshifts[CSHIFT_DAMAGE].destcolor[0] = 220;
cl.cshifts[CSHIFT_DAMAGE].destcolor[1] = cl.cshifts[CSHIFT_DAMAGE].destcolor[2] = 50;
} else {
cl.cshifts[CSHIFT_DAMAGE].destcolor[0] = 255;
cl.cshifts[CSHIFT_DAMAGE].destcolor[1] = cl.cshifts[CSHIFT_DAMAGE].destcolor[2] = 0;
}
// calculate view angle kicks
VectorSubtract (from, cl.simorg, from);
VectorNormalizeFast (from);
AngleVectors (cl.simangles, forward, right, NULL);
side = DotProduct (from, right);
v_dmg_roll = count * side * v_kickroll.value;
side = DotProduct (from, forward);
v_dmg_pitch = count * side * v_kickpitch.value;
v_dmg_time = v_kicktime.value;
}
// disconnect -->
qbool flashed = false; // it should be used for f_flashout tirgger
extern cvar_t v_gamma, v_contrast;
#define flash_gamma 0.55
#define flash_contrast 1.0
void V_TF_FlashSettings (qbool flashed)
{
static float old_gamma, old_contrast;
// remove read only flag if it was set
if (Cvar_GetFlags(&v_gamma) & CVAR_ROM)
Cvar_SetFlags(&v_gamma, Cvar_GetFlags(&v_gamma) & ~CVAR_ROM);
if (Cvar_GetFlags(&v_contrast) & CVAR_ROM)
Cvar_SetFlags(&v_contrast, Cvar_GetFlags(&v_contrast) & ~CVAR_ROM);
if (flashed) {
// store normal settings
old_gamma = v_gamma.value;
old_contrast = v_contrast.value;
// set MTFL flash settings
Cvar_SetValue (&v_gamma, flash_gamma);
Cvar_SetValue (&v_contrast, flash_contrast);
// made gamma&contrast read only
Cvar_SetFlags(&v_gamma, Cvar_GetFlags(&v_gamma) | CVAR_ROM);
Cvar_SetFlags(&v_contrast, Cvar_GetFlags(&v_contrast) | CVAR_ROM);
} else {
// restore old settings
Cvar_SetValue (&v_gamma, old_gamma);
Cvar_SetValue (&v_contrast, old_contrast);
}
return;
}
void V_TF_FlashStuff (void)
{
static float last_own_flash_time;
static float last_other_flash_time;
float blocktime;
// 240 = Normal TF || 255 = Angel TF
if (cshift_empty.percent == 240 || cshift_empty.percent == 255 ) {
TP_ExecTrigger ("f_flash");
if (!flashed && (!strncasecmp(Rulesets_Ruleset(), "MTFL", 4)))
V_TF_FlashSettings (true);
flashed = true;
last_other_flash_time = cls.realtime;
}
if (cshift_empty.percent == 160) { // flashed by your own flash
if (!flashed && (!strncasecmp(Rulesets_Ruleset(), "MTFL", 4)))
V_TF_FlashSettings (true);
flashed = true;
last_own_flash_time = cls.realtime;
}
blocktime = (last_other_flash_time > last_own_flash_time) ? 20.0 : 10.0;
// turn gamma and contrast back if
if ((!(cls.realtime - max (last_own_flash_time, last_other_flash_time) < blocktime)) || // flashed for last 10 seconds or
(cshift_empty.percent == 0 && (cbuf_current = &cbuf_svc))) { // death while flashed
if (flashed && (!strncasecmp(Rulesets_Ruleset(), "MTFL", 4))) {
V_TF_FlashSettings (false);
flashed = false;
}
}
if (cls.demoplayback && cshift_empty.destcolor[0] == cshift_empty.destcolor[1])
cshift_empty.percent *= cl_demoplay_flash.value/1.0f;
}
// <-- disconnect
void V_cshift_f (void) {
// don't allow cheating in TF
if (cls.state >= ca_connected && cl.teamfortress && cbuf_current != &cbuf_svc)
return;
cshift_empty.destcolor[0] = atoi(Cmd_Argv(1));
cshift_empty.destcolor[1] = atoi(Cmd_Argv(2));
cshift_empty.destcolor[2] = atoi(Cmd_Argv(3));
cshift_empty.percent = atoi(Cmd_Argv(4));
// TF flash grenades stuff
if (cl.teamfortress)
V_TF_FlashStuff ();
}
//When you run over an item, the server sends this command
void V_BonusFlash_f (void) {
static double last_bonusflashtrigger = 0;
if (cls.realtime != last_bonusflashtrigger) { // do not trigger twice a frame
TP_ExecTrigger ("f_bonusflash");
last_bonusflashtrigger = cls.realtime;
}
if (!v_bonusflash.value && cbuf_current == &cbuf_svc)
return;
cl.cshifts[CSHIFT_BONUS].destcolor[0] = 215;
cl.cshifts[CSHIFT_BONUS].destcolor[1] = 186;
cl.cshifts[CSHIFT_BONUS].destcolor[2] = 69;
cl.cshifts[CSHIFT_BONUS].percent = 50;
}
//Underwater, lava, etc each has a color shift
void V_SetContentsColor (int contents) {
if (!v_contentblend.value) {
cl.cshifts[CSHIFT_CONTENTS] = cshift_empty;
cl.cshifts[CSHIFT_CONTENTS].percent *= 100;
return;
}
switch (contents) {
case CONTENTS_EMPTY:
cl.cshifts[CSHIFT_CONTENTS] = cshift_empty;
break;
case CONTENTS_LAVA:
cl.cshifts[CSHIFT_CONTENTS] = cshift_lava;
break;
case CONTENTS_SOLID:
case CONTENTS_SLIME:
cl.cshifts[CSHIFT_CONTENTS] = cshift_slime;
break;
default:
cl.cshifts[CSHIFT_CONTENTS] = cshift_water;
break;
}
if (v_contentblend.value > 0 && v_contentblend.value < 1 && contents != CONTENTS_EMPTY)
cl.cshifts[CSHIFT_CONTENTS].percent *= v_contentblend.value;
if (!gl_polyblend.value && !cl.teamfortress) {
cl.cshifts[CSHIFT_CONTENTS].percent = 0;
} else {
// ignore gl_cshiftpercent on custom cshifts (set with v_cshift
// command) to avoid cheating in TF
if (contents != CONTENTS_EMPTY) {
if (!gl_polyblend.value)
cl.cshifts[CSHIFT_CONTENTS].percent = 0;
else
cl.cshifts[CSHIFT_CONTENTS].percent *= gl_cshiftpercent.value;
}
else {
cl.cshifts[CSHIFT_CONTENTS].percent *= 100;
}
}
}
void V_AddWaterfog (int contents) {
extern cvar_t gl_waterfog_color_water;
extern cvar_t gl_waterfog_color_lava;
extern cvar_t gl_waterfog_color_slime;
float colors[4];
if (!gl_waterfog.value || COM_CheckParm ("-nomtex") || contents == CONTENTS_EMPTY || contents == CONTENTS_SOLID) {
glDisable(GL_FOG);
return;
}
switch (contents) {
case CONTENTS_LAVA:
colors[0] = (float) gl_waterfog_color_lava.color[0] / 255.0;
colors[1] = (float) gl_waterfog_color_lava.color[1] / 255.0;
colors[2] = (float) gl_waterfog_color_lava.color[2] / 255.0;
colors[3] = (float) gl_waterfog_color_lava.color[3] / 255.0;
break;
case CONTENTS_SLIME:
colors[0] = (float) gl_waterfog_color_slime.color[0] / 255.0;
colors[1] = (float) gl_waterfog_color_slime.color[1] / 255.0;
colors[2] = (float) gl_waterfog_color_slime.color[2] / 255.0;
colors[3] = (float) gl_waterfog_color_slime.color[3] / 255.0;
break;
default:
colors[0] = (float) gl_waterfog_color_water.color[0] / 255.0;
colors[1] = (float) gl_waterfog_color_water.color[1] / 255.0;
colors[2] = (float) gl_waterfog_color_water.color[2] / 255.0;
colors[3] = (float) gl_waterfog_color_water.color[3] / 255.0;
break;
}
glFogfv(GL_FOG_COLOR, colors);
if (( (int) gl_waterfog.value ) == 2) {
glFogf(GL_FOG_DENSITY, 0.0002 + (0.0009 - 0.0002) * bound(0, gl_waterfog_density.value, 1));
glFogi(GL_FOG_MODE, GL_EXP);
} else {
glFogi(GL_FOG_MODE, GL_LINEAR);
glFogf(GL_FOG_START, 150.0f);
glFogf(GL_FOG_END, 4250.0f - (4250.0f - 1536.0f) * bound (0, gl_waterfog_density.value, 1));
}
glEnable(GL_FOG);
}
void V_CalcPowerupCshift (void) {
float fraction;
if (cl.stats[STAT_ITEMS] & IT_QUAD) {
cl.cshifts[CSHIFT_POWERUP].destcolor[0] = 0;
cl.cshifts[CSHIFT_POWERUP].destcolor[1] = 0;
cl.cshifts[CSHIFT_POWERUP].destcolor[2] = 255;
fraction = bound (0, v_quadcshift.value, 1);
cl.cshifts[CSHIFT_POWERUP].percent = 30 * fraction;
} else if (cl.stats[STAT_ITEMS] & IT_SUIT) {
cl.cshifts[CSHIFT_POWERUP].destcolor[0] = 0;
cl.cshifts[CSHIFT_POWERUP].destcolor[1] = 255;
cl.cshifts[CSHIFT_POWERUP].destcolor[2] = 0;
fraction = bound (0, v_suitcshift.value, 1);
cl.cshifts[CSHIFT_POWERUP].percent = 20 * fraction;
} else if (cl.stats[STAT_ITEMS] & IT_INVISIBILITY) {
cl.cshifts[CSHIFT_POWERUP].destcolor[0] = 100;
cl.cshifts[CSHIFT_POWERUP].destcolor[1] = 100;
cl.cshifts[CSHIFT_POWERUP].destcolor[2] = 100;
fraction = bound (0, v_ringcshift.value, 1);
cl.cshifts[CSHIFT_POWERUP].percent = 100 * fraction;
} else if (cl.stats[STAT_ITEMS] & IT_INVULNERABILITY) {
cl.cshifts[CSHIFT_POWERUP].destcolor[0] = 255;
cl.cshifts[CSHIFT_POWERUP].destcolor[1] = 255;
cl.cshifts[CSHIFT_POWERUP].destcolor[2] = 0;
fraction = bound (0, v_pentcshift.value, 1);
cl.cshifts[CSHIFT_POWERUP].percent = 30 * fraction;
} else {
cl.cshifts[CSHIFT_POWERUP].percent = 0;
}
}
void V_CalcBlend (void) {
float r, g, b, a, a2;
int j;
r = g = b = a= 0;
if (cls.state != ca_active) {
cl.cshifts[CSHIFT_CONTENTS] = cshift_empty;
cl.cshifts[CSHIFT_POWERUP].percent = 0;
} else {
V_CalcPowerupCshift ();
}
// drop the damage value
cl.cshifts[CSHIFT_DAMAGE].percent -= cls.frametime * 150;
if (cl.cshifts[CSHIFT_DAMAGE].percent <= 0)
cl.cshifts[CSHIFT_DAMAGE].percent = 0;
// drop the bonus value
cl.cshifts[CSHIFT_BONUS].percent -= cls.frametime * 100;
if (cl.cshifts[CSHIFT_BONUS].percent <= 0)
cl.cshifts[CSHIFT_BONUS].percent = 0;
for (j = 0; j < NUM_CSHIFTS; j++) {
if ((!gl_cshiftpercent.value || !gl_polyblend.value) && j != CSHIFT_CONTENTS)
continue;
if (j == CSHIFT_CONTENTS)
a2 = cl.cshifts[j].percent / 100.0 / 255.0;
else
a2 = ((cl.cshifts[j].percent * gl_cshiftpercent.value) / 100.0) / 255.0;
if (!a2)
continue;
a = a + a2 * (1-a);
a2 = a2 / a;
r = r * (1 - a2) + cl.cshifts[j].destcolor[0] * a2;
g = g * (1 - a2) + cl.cshifts[j].destcolor[1] * a2;
b = b * (1 - a2) + cl.cshifts[j].destcolor[2 ]* a2;
}
v_blend[0] = r / 255.0;
v_blend[1] = g / 255.0;
v_blend[2] = b / 255.0;
v_blend[3] = a;
v_blend[3] = bound(0, v_blend[3], 1);
}
void V_AddLightBlend (float r, float g, float b, float a2) {
float a;
if (!gl_polyblend.value || !gl_cshiftpercent.value || !v_dlightcshift.value)
return;
a2 = a2 * bound(0, v_dlightcshift.value, 1) * gl_cshiftpercent.value / 100.0;
v_blend[3] = a = v_blend[3] + a2 * (1 - v_blend[3]);
if (!a)
return;
a2 = a2 / a;
v_blend[0] = v_blend[0] * (1 - a2) + r * a2;
v_blend[1] = v_blend[1] * (1 - a2) + g * a2;
v_blend[2] = v_blend[2] * (1 - a2) + b * a2;
}
void V_UpdatePalette (void) {
int i, j, c;
qbool new;
float current_gamma, current_contrast, a, rgb[3];
static float prev_blend[4];
static float old_gamma, old_contrast, old_hwblend;
extern float vid_gamma;
new = false;
for (i = 0; i < 4; i++) {
if (v_blend[i] != prev_blend[i]) {
new = true;
prev_blend[i] = v_blend[i];
}
}
current_gamma = bound (0.3, v_gamma.value, 3);
if (current_gamma != old_gamma || v_gamma.modified) {
v_gamma.modified = false;
old_gamma = current_gamma;
new = true;
}
current_contrast = bound (1, v_contrast.value, 3);
if (current_contrast != old_contrast) {
old_contrast = current_contrast;
new = true;
}
if (gl_hwblend.value != old_hwblend) {
new = true;
old_hwblend = gl_hwblend.value;
}
if (!new)
return;
a = v_blend[3];
if (!vid_hwgamma_enabled || !gl_hwblend.value || cl.teamfortress)
a = 0;
rgb[0] = 255 * v_blend[0] * a;
rgb[1] = 255 * v_blend[1] * a;
rgb[2] = 255 * v_blend[2] * a;
a = 1 - a;
if (vid_gamma != 1.0) {
current_contrast = pow (current_contrast, vid_gamma);
current_gamma = current_gamma/vid_gamma;
}
#ifdef X11_GAMMA_WORKAROUND
a *= 256.0/glConfig.gammacrap.size;
for (i = 0; i < glConfig.gammacrap.size; i++) {
#else
for (i = 0; i < 256; i++) {
#endif
for (j = 0; j < 3; j++) {
// apply blend and contrast
c = (i * a + rgb[j]) * current_contrast;
if (c > 255)
c = 255;
// apply gamma
c = 255 * pow(c / 255.5, current_gamma) + 0.5;
c = bound (0, c, 255);
ramps[j][i] = c << 8;
}
}
VID_SetDeviceGammaRamp ((unsigned short *) ramps);
}
// BorisU -->
void V_TF_ClearGrenadeEffects (void)
{
cbuf_t *cbuf_tmp;
extern cvar_t scr_fov, default_fov;
cbuf_tmp = cbuf_current;
cbuf_current = &cbuf_svc;
// Concussion effect off
concussioned = false;
Cvar_SetValue (&scr_fov, default_fov.value);
Cvar_SetValue (&v_idlescale, 0.0f);
// Flash effect off
if (flashed && (!strncasecmp(Rulesets_Ruleset(), "MTFL", 4))) {
V_TF_FlashSettings (false);
flashed = false;
}
cshift_empty.destcolor[0] = 0;
cshift_empty.destcolor[1] = 0;
cshift_empty.destcolor[2] = 0;
cshift_empty.percent = 0;
cbuf_current = cbuf_tmp;
}
// <-- BorisU
/*
==============================================================================
VIEW RENDERING
==============================================================================
*/
float angledelta (float a) {
a = anglemod(a);
if (a > 180)
a -= 360;
return a;
}
void V_BoundOffsets (void) {
// absolutely bound refresh relative to entity clipping hull
// so the view can never be inside a solid wall
if (r_refdef.vieworg[0] < cl.simorg[0] - 14)
r_refdef.vieworg[0] = cl.simorg[0] - 14;
else if (r_refdef.vieworg[0] > cl.simorg[0] + 14)
r_refdef.vieworg[0] = cl.simorg[0] + 14;
if (r_refdef.vieworg[1] < cl.simorg[1] - 14)
r_refdef.vieworg[1] = cl.simorg[1] - 14;
else if (r_refdef.vieworg[1] > cl.simorg[1] + 14)
r_refdef.vieworg[1] = cl.simorg[1] + 14;
if (r_refdef.vieworg[2] < cl.simorg[2] - 22)
r_refdef.vieworg[2] = cl.simorg[2] - 22;
else if (r_refdef.vieworg[2] > cl.simorg[2] + 30)
r_refdef.vieworg[2] = cl.simorg[2] + 30;
}
//Idle swaying
void V_AddIdle (void) {
r_refdef.viewangles[ROLL] += v_idlescale.value * sin(cl.time * v_iroll_cycle.value) * v_iroll_level.value;
r_refdef.viewangles[PITCH] += v_idlescale.value * sin(cl.time * v_ipitch_cycle.value) * v_ipitch_level.value;
r_refdef.viewangles[YAW] += v_idlescale.value * sin(cl.time * v_iyaw_cycle.value) * v_iyaw_level.value;
}
//Roll is induced by movement and damage
void V_CalcViewRoll (void) {
float side, adjspeed;
side = V_CalcRoll (cl.simangles, cl.simvel);
adjspeed = cl_rollalpha.value * bound (2, fabs(cl_rollangle.value), 45);
if (side > cl.rollangle) {
cl.rollangle += cls.frametime * adjspeed;
if (cl.rollangle > side)
cl.rollangle = side;
} else if (side < cl.rollangle) {
cl.rollangle -= cls.frametime * adjspeed;
if (cl.rollangle < side)
cl.rollangle = side;
}
r_refdef.viewangles[ROLL] += cl.rollangle;
if (v_dmg_time > 0) {
r_refdef.viewangles[ROLL] += v_dmg_time/v_kicktime.value*v_dmg_roll;
r_refdef.viewangles[PITCH] += v_dmg_time/v_kicktime.value*v_dmg_pitch;
v_dmg_time -= cls.frametime;
}
}
// tells the model number of the current carried/selected/preselected weapon
// if user wish so, weapon pre-selection is also taken in account
// todo: if user selects different weapon while the current one is still
// firing, wait until the animation is finished
static int V_CurrentWeaponModel(void) {
extern int IN_BestWeaponReal(void);
extern cvar_t cl_weaponpreselect;
int bestgun;
static int lastfired = 0;
static int lastviewplayernum = 0;
int realw = cl.stats[STAT_WEAPON];
if (cls.demoplayback && r_viewlastfired.integer) {
if (view_message.weaponframe) {
lastfired = realw;
lastviewplayernum = cl.viewplayernum;
return realw;
}
else if (lastfired) {
if (lastviewplayernum == cl.viewplayernum) {
return lastfired;
}
else {
lastfired = realw;
lastviewplayernum = cl.viewplayernum;
return realw;
}
}
else {
return realw;
}
}
else {
if (ShowPreselectedWeap() && r_viewpreselgun.value)
{
bestgun = IN_BestWeaponReal();
if (bestgun == 1) return cl_modelindices[mi_vaxe];
if (bestgun > 1 && bestgun <= 8)
return cl_modelindices[mi_weapon1 - 1 + bestgun];
}
return cl.stats[STAT_WEAPON];
}
}
extern void TP_ParseWeaponModel(model_t *model);
void V_AddViewWeapon (float bob) {
vec3_t forward, right, up;
centity_t *cent;
int gunmodel = V_CurrentWeaponModel();
extern cvar_t scr_fov, scr_fovmode, scr_newHud;
cent = &cl.viewent;
TP_ParseWeaponModel(cl.model_precache[gunmodel]);
if (!cl_drawgun.value || (cl_drawgun.value == 2 && scr_fov.value > 90)
|| ((view_message.flags & (PF_GIB|PF_DEAD)))
|| cl.stats[STAT_ITEMS] & IT_INVISIBILITY || cl.stats[STAT_HEALTH] <= 0 || !Cam_DrawViewModel())
{
cent->current.modelindex = 0; //no model
return;
}
//angles
cent->current.angles[YAW] = r_refdef.viewangles[YAW];
cent->current.angles[PITCH] = -r_refdef.viewangles[PITCH];
cent->current.angles[ROLL] = r_refdef.viewangles[ROLL];
//origin
AngleVectors (r_refdef.viewangles, forward, right, up);
VectorCopy (r_refdef.vieworg, cent->current.origin);
VectorMA (cent->current.origin, bob * 0.4, forward, cent->current.origin);
if (r_viewmodeloffset.string[0]) {
float offset[3];
int size = sizeof(offset)/sizeof(offset[0]);
ParseFloats(r_viewmodeloffset.string, offset, &size);
VectorMA (cent->current.origin, offset[0], right, cent->current.origin);
VectorMA (cent->current.origin, -offset[1], up, cent->current.origin);
VectorMA (cent->current.origin, offset[2], forward, cent->current.origin);
}
// fudge position around to keep amount of weapon visible roughly equal with different FOV
if (!scr_fovmode.value) {
if (cl_sbar.value && scr_newHud.value == 0 && scr_viewsize.value == 110)
cent->current.origin[2] += 1;
else if (cl_sbar.value && scr_newHud.value == 0 && scr_viewsize.value == 100)
cent->current.origin[2] += 2;
else if (scr_viewsize.value == 90)
cent->current.origin[2] += 1;
else if (scr_viewsize.value == 80)
cent->current.origin[2] += 0.5;
}
if (cent->current.modelindex != gunmodel) {
cl.viewent.frametime = -1;
} else {
if (cent->current.frame != view_message.weaponframe) {
cent->frametime = cl.time;
cent->oldframe = cent->current.frame;
}
}
cent->current.modelindex = gunmodel;
cent->current.frame = view_message.weaponframe;
}
void V_CalcIntermissionRefdef (void) {
float old;
VectorCopy (cl.simorg, r_refdef.vieworg);
VectorCopy (cl.simangles, r_refdef.viewangles);
// we don't draw weapon in intermission
cl.viewent.current.modelindex = 0;
// always idle in intermission
old = v_idlescale.value;
v_idlescale.value = 1;
V_AddIdle ();
v_idlescale.value = old;
}
void V_CalcRefdef (void) {
vec3_t forward;
float bob;
float height_adjustment;
V_DriftPitch ();
bob = V_CalcBob ();
height_adjustment = v_viewheight.value ? bound (-7, v_viewheight.value, 4) : V_CalcBob ();
// set up the refresh position
VectorCopy (cl.simorg, r_refdef.vieworg);
// never let it sit exactly on a node line, because a water plane can
// dissapear when viewed with the eye exactly on it.
// the server protocol only specifies to 1/8 pixel, so add 1/16 in each axis
r_refdef.vieworg[0] += 1.0/16;
r_refdef.vieworg[1] += 1.0/16;
r_refdef.vieworg[2] += 1.0/16;
// add view height
if (view_message.flags & PF_GIB) {
r_refdef.vieworg[2] += 8; // gib view height
} else if (view_message.flags & PF_DEAD && (cl.stats[STAT_HEALTH] <= 0)) {
r_refdef.vieworg[2] -= 16; // corpse view height
} else {
// normal view height
// Use STAT_VIEWHEIGHT in case of server support it or NQ demoplayback, if not then use default viewheight.
r_refdef.vieworg[2] += ((cl.z_ext & Z_EXT_VIEWHEIGHT) || cls.nqdemoplayback) ? cl.stats[STAT_VIEWHEIGHT] : DEFAULT_VIEWHEIGHT;
r_refdef.vieworg[2] += height_adjustment;
r_refdef.vieworg[2] += bob;
// smooth out stair step ups
r_refdef.vieworg[2] += cl.crouch;
}
// set up refresh view angles
VectorCopy (cl.simangles, r_refdef.viewangles);
V_CalcViewRoll ();
V_AddIdle ();
if (v_gunkick.value) {
// add weapon kick offset
AngleVectors (r_refdef.viewangles, forward, NULL, NULL);
VectorMA (r_refdef.vieworg, cl.punchangle, forward, r_refdef.vieworg);
// add weapon kick angle
r_refdef.viewangles[PITCH] += cl.punchangle * 0.5;
}
if (view_message.flags & PF_DEAD && (cl.stats[STAT_HEALTH] <= 0))
r_refdef.viewangles[ROLL] = 80; // dead view angle
//VULT CAMERAS
CameraUpdate(view_message.flags & PF_DEAD);
V_AddViewWeapon (height_adjustment);
}
void DropPunchAngle (void) {
if (cl.ideal_punchangle < cl.punchangle) {
if (cl.ideal_punchangle == -2) // small kick
cl.punchangle -= 20 * cls.frametime;
else // big kick
cl.punchangle -= 40 * cls.frametime;
if (cl.punchangle < cl.ideal_punchangle) {
cl.punchangle = cl.ideal_punchangle;
cl.ideal_punchangle = 0;
}
}else {
cl.punchangle += 20 * cls.frametime;
if (cl.punchangle > 0)
cl.punchangle = 0;
}
}
//The player's clipping box goes from (-16 -16 -24) to (16 16 32) from
//the entity origin, so any view position inside that will be valid
extern vrect_t scr_vrect;
void V_RenderView (void) {
char *p;
cl.simangles[ROLL] = 0; // FIXME @@@
if (cls.state != ca_active) {
V_CalcBlend ();
return;