[go: up one dir, main page]

Menu

[904618]: / src / r_main.c  Maximize  Restore  History

Download this file

1283 lines (1044 with data), 28.3 kB

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
// -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
// ----------------------------------------------------------------------------
// :oCCCCOCoc.
// .cCO8OOOOOOOOO8Oo:
// .oOO8OOOOOOOOOOOOOOOCc
// cO8888: .:oOOOOC. TM
// :888888: :CCCc .oOOOOC. ### ### #########
// C888888: .ooo: .C######## ##### ##### ###### ###### ##########
// O888888: .oO### ### ##### ##### ######## ######## #### ###
// C888888: :8O. .C########## ### #### ### ## ## ## ## #### ###
// :8@@@@8: :888c o### ### #### ### ######## ######## ##########
// :8@@@@C C@@@@ oo######## ### ## ### ###### ###### #########
// cO@@@@@@@@@@@@@@@@@Oc0
// :oO8@@@@@@@@@@Oo.
// .oCOOOOOCc. http://remood.org/
// ----------------------------------------------------------------------------
// Copyright (C) 1993-1996 by id Software, Inc.
// Copyright (C) 1998-2000 by DooM Legacy Team.
// Copyright (C) 2008-2013 GhostlyDeath <ghostlydeath@remood.org>
// <ghostlydeath@gmail.com>
// ----------------------------------------------------------------------------
// 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 3
// 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.
// ----------------------------------------------------------------------------
// DESCRIPTION:
// Rendering main loop and setup functions,
// utility functions (BSP, geometry, trigonometry).
// See tables.c, too.
#include "r_main.h"
#include "dstrings.h"
#include "console.h"
#include "d_netcmd.h"
#include "d_player.h"
#include "p_mobj.h"
#include "r_plane.h"
#include "g_state.h"
#include "p_demcmp.h"
#include "v_video.h"
#include "d_prof.h"
#include "r_segs.h"
#include "vhw_wrap.h"
#include "st_stuff.h"
#include "r_things.h"
#include "t_func.h" // for script_camera_on
#include "i_system.h" // for graphics_started
#include "g_game.h"
#include "r_draw.h"
#include "r_sky.h"
// Fineangles in the SCREENWIDTH wide window.
#define FIELDOFVIEW 2048
int viewangleoffset;
// increment every time a check is made
int validcount = 1;
lighttable_t* fixedcolormap;
int centerx;
int centery;
int centerypsp; //added:06-02-98:cf R_DrawPSprite
fixed_t centerxfrac;
fixed_t centeryfrac;
fixed_t projection;
//added:02-02-98:fixing the aspect ration stuff...
fixed_t projectiony;
int sscount;
int linecount;
int loopcount;
fixed_t viewx;
fixed_t viewy;
fixed_t viewz;
angle_t viewangle;
angle_t aimingangle;
fixed_t viewcos;
fixed_t viewsin;
player_t* viewplayer;
// 0 = high, 1 = low
int detailshift;
//
// precalculated math tables
//
angle_t clipangle;
// The viewangletox[viewangle + FINEANGLES/4] lookup
// maps the visible view angles to screen X coordinates,
// flattening the arc to a flat projection plane.
// There will be many angles mapped to the same X.
int viewangletox[FINEANGLES / 2];
// The xtoviewangleangle[] table maps a screen pixel
// to the lowest viewangle that maps back to x ranges
// from clipangle to -clipangle.
angle_t* xtoviewangle = NULL;
// UNUSED.
// The finetangentgent[angle+FINEANGLES/4] table
// holds the fixed_t tangent values for view angles,
// ranging from INT_MIN to 0 to INT_MAX.
// fixed_t finetangent[FINEANGLES/2];
// fixed_t finesine[5*FINEANGLES/4];
fixed_t* finecosine = &finesine[FINEANGLES / 4];
lighttable_t* scalelight[LIGHTLEVELS][MAXLIGHTSCALE];
lighttable_t* scalelightfixed[MAXLIGHTSCALE];
lighttable_t* zlight[LIGHTLEVELS][MAXLIGHTZ];
//SoM: 3/30/2000: Hack to support extra boom colormaps.
int num_extra_colormaps;
extracolormap_t extra_colormaps[MAXCOLORMAPS];
// bumped light from gun blasts
int extralight;
// r_fakesspal -- Fake split screen palette changes
CONL_StaticVar_t l_RFakeSSPal =
{
CLVT_INTEGER, c_CVPVBoolean, CLVF_SAVE,
"r_fakesspal", DSTR_CVHINT_RFAKESSPAL, CLVVT_STRING, "true",
NULL
};
// r_transparency -- Enables Transparency Effects
CONL_StaticVar_t l_RTransparency =
{
CLVT_INTEGER, c_CVPVBoolean, CLVF_SAVE,
"r_transparency", DSTR_CVHINT_RTRANSPARENCY, CLVVT_STRING, "true",
NULL
};
// g_CVPVViewSize -- View Size Limits
const CONL_VarPossibleValue_t c_CVPVViewSize[] =
{
// End
{3, "MINVAL"},
{12, "MAXVAL"},
{0, NULL},
};
// r_viewsize -- Size of view
CONL_StaticVar_t l_RViewSize =
{
CLVT_INTEGER, c_CVPVViewSize, CLVF_SAVE,
"r_viewsize", DSTR_CVHINT_RVIEWSIZE, CLVVT_STRING, "11",
NULL
};
// added 16-6-98:splitscreen
//
// R_PointOnSide
// Traverse BSP (sub) tree,
// check point against partition plane.
// Returns side 0 (front) or 1 (back).
//
int R_PointOnSide(fixed_t x, fixed_t y, node_t* node)
{
fixed_t dx;
fixed_t dy;
fixed_t left;
fixed_t right;
if (!node->dx)
{
if (x <= node->x)
return node->dy > 0;
return node->dy < 0;
}
if (!node->dy)
{
if (y <= node->y)
return node->dx < 0;
return node->dx > 0;
}
dx = (x - node->x);
dy = (y - node->y);
// Try to quickly decide by looking at sign bits.
if ((node->dy ^ node->dx ^ dx ^ dy) & 0x80000000)
{
if ((node->dy ^ dx) & 0x80000000)
{
// (left is negative)
return 1;
}
return 0;
}
left = FixedMul(node->dy >> FRACBITS, dx);
right = FixedMul(dy, node->dx >> FRACBITS);
if (right < left)
{
// front side
return 0;
}
// back side
return 1;
}
int R_PointOnSegSide(fixed_t x, fixed_t y, seg_t* line)
{
fixed_t lx;
fixed_t ly;
fixed_t ldx;
fixed_t ldy;
fixed_t dx;
fixed_t dy;
fixed_t left;
fixed_t right;
lx = line->v1->x;
ly = line->v1->y;
ldx = line->v2->x - lx;
ldy = line->v2->y - ly;
if (!ldx)
{
if (x <= lx)
return ldy > 0;
return ldy < 0;
}
if (!ldy)
{
if (y <= ly)
return ldx < 0;
return ldx > 0;
}
dx = (x - lx);
dy = (y - ly);
// Try to quickly decide by looking at sign bits.
if ((ldy ^ ldx ^ dx ^ dy) & 0x80000000)
{
if ((ldy ^ dx) & 0x80000000)
{
// (left is negative)
return 1;
}
return 0;
}
left = FixedMul(ldy >> FRACBITS, dx);
right = FixedMul(dy, ldx >> FRACBITS);
if (right < left)
{
// front side
return 0;
}
// back side
return 1;
}
//
// R_PointToAngle
// To get a global angle from cartesian coordinates,
// the coordinates are flipped until they are in
// the first octant of the coordinate system, then
// the y (<=x) is scaled and divided by x to get a
// tangent (slope) value which is looked up in the
// tantoangle[] table.
//
angle_t R_PointToAngle2(fixed_t x2, fixed_t y2, fixed_t x1, fixed_t y1)
{
x1 -= x2;
y1 -= y2;
if ((!x1) && (!y1))
return 0;
if (x1 >= 0)
{
// x >=0
if (y1 >= 0)
{
// y>= 0
if (x1 > y1)
{
// octant 0
return tantoangle[SlopeDiv(y1, x1)];
}
else
{
// octant 1
return ANG90 - 1 - tantoangle[SlopeDiv(x1, y1)];
}
}
else
{
// y<0
y1 = -y1;
if (x1 > y1)
{
// octant 8
return -tantoangle[SlopeDiv(y1, x1)];
}
else
{
// octant 7
return ANG270 + tantoangle[SlopeDiv(x1, y1)];
}
}
}
else
{
// x<0
x1 = -x1;
if (y1 >= 0)
{
// y>= 0
if (x1 > y1)
{
// octant 3
return ANG180 - 1 - tantoangle[SlopeDiv(y1, x1)];
}
else
{
// octant 2
return ANG90 + tantoangle[SlopeDiv(x1, y1)];
}
}
else
{
// y<0
y1 = -y1;
if (x1 > y1)
{
// octant 4
return ANG180 + tantoangle[SlopeDiv(y1, x1)];
}
else
{
// octant 5
return ANG270 - 1 - tantoangle[SlopeDiv(x1, y1)];
}
}
}
return 0;
}
angle_t R_PointToAngle(fixed_t x, fixed_t y)
{
return R_PointToAngle2(viewx, viewy, x, y);
}
fixed_t R_PointToDist2(fixed_t x2, fixed_t y2, fixed_t x1, fixed_t y1)
{
int angle;
fixed_t dx;
fixed_t dy;
fixed_t dist;
dx = abs(x1 - x2);
dy = abs(y1 - y2);
if (dy > dx)
{
fixed_t temp;
temp = dx;
dx = dy;
dy = temp;
}
if (dy == 0)
return dx;
angle = (tantoangle[FixedDiv(dy, dx) >> DBITS] + ANG90) >> ANGLETOFINESHIFT;
// use as cosine
dist = FixedDiv(dx, finesine[angle]);
return dist;
}
//SoM: 3/27/2000: Little extra utility. Works in the same way as
//R_PointToAngle2
fixed_t R_PointToDist(fixed_t x, fixed_t y)
{
return R_PointToDist2(viewx, viewy, x, y);
}
//
// R_InitPointToAngle
//
void R_InitPointToAngle(void)
{
// UNUSED - now getting from tables.c
#if 0
int i;
long t;
float f;
//
// slope (tangent) to angle lookup
//
for (i = 0; i <= SLOPERANGE; i++)
{
f = atan((float)i / SLOPERANGE) / (3.141592657 * 2);
t = 0xffffffff * f;
tantoangle[i] = t;
}
#endif
}
//
// R_ScaleFromGlobalAngle
// Returns the texture mapping scale
// for the current line (horizontal span)
// at the given angle.
// rw_distance must be calculated first.
//
//added:02-02-98:note: THIS IS USED ONLY FOR WALLS!
fixed_t R_ScaleFromGlobalAngle(angle_t visangle)
{
// UNUSED
#if 0
//added:02-02-98:note: I've tried this and it displays weird...
fixed_t scale;
fixed_t dist;
fixed_t z;
fixed_t sinv;
fixed_t cosv;
sinv = finesine[(visangle - rw_normalangle) >> ANGLETOFINESHIFT];
dist = FixedDiv(rw_distance, sinv);
cosv = finecosine[(viewangle - visangle) >> ANGLETOFINESHIFT];
z = abs(FixedMul(dist, cosv));
scale = FixedDiv(projection, z);
return scale;
#else
fixed_t scale;
int anglea;
int angleb;
int sinea;
int sineb;
fixed_t num;
int den;
anglea = ANG90 + (visangle - viewangle);
angleb = ANG90 + (visangle - rw_normalangle);
// both sines are allways positive
sinea = finesine[anglea >> ANGLETOFINESHIFT];
sineb = finesine[angleb >> ANGLETOFINESHIFT];
//added:02-02-98:now uses projectiony instead of projection for
// correct aspect ratio!
num = FixedMul(projectiony, sineb) << detailshift;
den = FixedMul(rw_distance, sinea);
if (den > num >> 16)
{
scale = FixedDiv(num, den);
if (scale > 64 * FRACUNIT)
scale = 64 * FRACUNIT;
else if (scale < 256)
scale = 256;
}
else
scale = 64 * FRACUNIT;
return scale;
#endif
}
//
// R_InitTables
//
void R_InitTables(void)
{
// UNUSED: now getting from tables.c
#if 0
int i;
float a;
float fv;
int t;
// viewangle tangent table
for (i = 0; i < FINEANGLES / 2; i++)
{
a = (i - FINEANGLES / 4 + 0.5) * PI * 2 / FINEANGLES;
fv = FRACUNIT * tan(a);
t = fv;
finetangent[i] = t;
}
// finesine table
for (i = 0; i < 5 * FINEANGLES / 4; i++)
{
// OPTIMIZE: mirror...
a = (i + 0.5) * PI * 2 / FINEANGLES;
t = FRACUNIT * sin(a);
finesine[i] = t;
}
#endif
}
//
// R_InitTextureMapping
//
void R_InitTextureMapping(void)
{
int i;
int x;
int t;
fixed_t focallength;
// Use tangent table to generate viewangletox:
// viewangletox will give the next greatest x
// after the view angle.
//
// Calc focallength
// so FIELDOFVIEW angles covers SCREENWIDTH.
focallength = FixedDiv(centerxfrac, finetangent[FINEANGLES / 4 +
/*cv_fov.value */
FIELDOFVIEW / 2]);
for (i = 0; i < FINEANGLES / 2; i++)
{
if (finetangent[i] > FRACUNIT * 2)
t = -1;
else if (finetangent[i] < -FRACUNIT * 2)
t = viewwidth + 1;
else
{
t = FixedMul(finetangent[i], focallength);
t = (centerxfrac - t + FRACUNIT - 1) >> FRACBITS;
if (t < -1)
t = -1;
else if (t > viewwidth + 1)
t = viewwidth + 1;
}
viewangletox[i] = t;
}
// Scan viewangletox[] to generate xtoviewangle[]:
// xtoviewangle will give the smallest view angle
// that maps to x.
for (x = 0; x <= viewwidth; x++)
{
i = 0;
while (viewangletox[i] > x)
i++;
xtoviewangle[x] = (i << ANGLETOFINESHIFT) - ANG90;
}
// Take out the fencepost cases from viewangletox.
for (i = 0; i < FINEANGLES / 2; i++)
{
t = FixedMul(finetangent[i], focallength);
t = centerx - t;
if (viewangletox[i] == -1)
viewangletox[i] = 0;
else if (viewangletox[i] == viewwidth + 1)
viewangletox[i] = viewwidth;
}
clipangle = xtoviewangle[0];
}
//
// R_InitLightTables
// Only inits the zlight table,
// because the scalelight table changes with view size.
//
#define DISTMAP 2
void R_InitLightTables(void)
{
int i;
int j;
int level;
int startmap;
int scale;
// Calculate the light levels to use
// for each level / distance combination.
for (i = 0; i < LIGHTLEVELS; i++)
{
startmap = ((LIGHTLEVELS - 1 - i) * 2) * NUMCOLORMAPS / LIGHTLEVELS;
for (j = 0; j < MAXLIGHTZ; j++)
{
//added:02-02-98:use BASEVIDWIDTH, vid.width is not set already,
// and it seems it needs to be calculated only once.
scale = FixedDiv((BASEVIDWIDTH / 2 * FRACUNIT), (j + 1) << LIGHTZSHIFT);
scale >>= LIGHTSCALESHIFT;
level = startmap - scale / DISTMAP;
if (level < 0)
level = 0;
if (level >= NUMCOLORMAPS)
level = NUMCOLORMAPS - 1;
zlight[i][j] = colormaps + level * 256;
}
}
}
//
// R_SetViewSize
// Do not really change anything here,
// because it might be in the middle of a refresh.
// The change will take effect next refresh.
//
bool_t setsizeneeded;
void R_SetViewSize(void)
{
setsizeneeded = true;
}
//
// R_ExecuteSetViewSize
//
// now uses screen variables cv_viewsize, cv_detaillevel
//
void R_ExecuteSetViewSize_DOOM(void)
{
fixed_t cosadj;
fixed_t dy;
int i;
int j;
int level;
int startmap;
int st_overlay;
int setdetail;
int aspectx; //added:02-02-98:for aspect ratio calc. below...
int yextra;
int32_t Junk;
// GhostlyDeath <April 25, 2008> -- Fix crash when using server subsystem for the client
if (!graphics_started)
return;
setsizeneeded = false;
// no reduced view in splitscreen mode
if (g_SplitScreen && l_RViewSize.Value->Int < 11)
CONL_VarSetInt(&l_RViewSize, 11);
setdetail = 0;
// status bar overlay at viewsize 11
st_overlay = (l_RViewSize.Value->Int == 11);
stbarheight = ST_HEIGHT;
if ((g_SplitScreen <= 0) && ST_ExSoloViewScaledSBar() || l_RViewSize.Value->Int >= 11)
stbarheight *= vid.fdupy;
//added 01-01-98: full screen view, without statusbar
if (g_SplitScreen || l_RViewSize.Value->Int > 10 || ST_ExSoloViewTransSBar())
{
scaledviewwidth = vid.width;
viewheight = vid.height;
}
else
{
//added 01-01-98: always a multiple of eight
scaledviewwidth = (l_RViewSize.Value->Int * vid.width / 10) & ~7;
//added:05-02-98: make viewheight multiple of 2 because sometimes
// a line is not refreshed by R_DrawViewBorder()
viewheight = (l_RViewSize.Value->Int * (vid.height - stbarheight) / 10) & ~1;
}
// added 16-6-98:splitscreen
if (g_SplitScreen >= 1)
viewheight >>= 1;
if (g_SplitScreen > 1)
scaledviewwidth >>= 1;
detailshift = setdetail;
viewwidth = scaledviewwidth >> detailshift;
centery = viewheight / 2;
centerx = viewwidth / 2;
centerxfrac = centerx << FRACBITS;
centeryfrac = centery << FRACBITS;
//added:01-02-98:aspect ratio is now correct, added an 'projectiony'
// since the scale is not always the same between horiz. & vert.
projection = centerxfrac;
projectiony = (((vid.height * centerx * BASEVIDWIDTH) / BASEVIDHEIGHT) / vid.width) << FRACBITS;
//
// no more low detail mode, it used to setup the right drawer routines
// for either detail mode here
//
// if (!detailshift) ... else ...
R_InitViewBuffer(scaledviewwidth, viewheight, yextra);
R_InitTextureMapping();
// psprite scales
centerypsp = viewheight / 2; //added:06-02-98:psprite pos for freelook
pspritescale = (viewwidth << FRACBITS) / BASEVIDWIDTH;
pspriteiscale = (BASEVIDWIDTH << FRACBITS) / viewwidth; // x axis scale
//added:02-02-98:now aspect ratio correct for psprites
pspriteyscale = (((vid.height * viewwidth) / vid.width) << FRACBITS) / BASEVIDHEIGHT;
// thing clipping
for (i = 0; i < viewwidth; i++)
screenheightarray[i] = viewheight;
// setup sky scaling for old/new skies (uses pspriteyscale)
R_SetSkyScale();
// planes
//added:02-02-98:now correct aspect ratio!
aspectx = (((vid.height * centerx * BASEVIDWIDTH) / BASEVIDHEIGHT) / vid.width);
// this is only used for planes rendering in software mode
j = viewheight * 4;
for (i = 0; i < j; i++)
{
//added:10-02-98:(i-centery) became (i-centery*2) and centery*2=viewheight
dy = ((i - viewheight * 2) << FRACBITS) + FRACUNIT / 2;
dy = abs(dy);
yslopetab[i] = FixedDiv(aspectx * FRACUNIT, dy);
}
for (i = 0; i < viewwidth; i++)
{
cosadj = abs(finecosine[xtoviewangle[i] >> ANGLETOFINESHIFT]);
distscale[i] = FixedDiv(FRACUNIT, cosadj);
}
// Calculate the light levels to use
// for each level / scale combination.
for (i = 0; i < LIGHTLEVELS; i++)
{
startmap = ((LIGHTLEVELS - 1 - i) * 2) * NUMCOLORMAPS / LIGHTLEVELS;
for (j = 0; j < MAXLIGHTSCALE; j++)
{
level = startmap - j * vid.width / (viewwidth << detailshift) / DISTMAP;
if (level < 0)
level = 0;
if (level >= NUMCOLORMAPS)
level = NUMCOLORMAPS - 1;
scalelight[i][j] = colormaps + level * 256;
}
}
st_recalc = true;
}
//
// R_Init
//
void R_Init(void)
{
if (g_DedicatedServer)
return;
//added:24-01-98: screensize independent
if (devparm)
CONL_PrintF("\nR_InitData");
R_InitData();
if (devparm)
CONL_PrintF("\nR_InitPointToAngle");
R_InitPointToAngle();
if (devparm)
CONL_PrintF("\nR_InitTables");
R_InitTables();
R_InitViewBorder();
R_SetViewSize(); // setsizeneeded is set true
if (devparm)
CONL_PrintF("\nR_InitPlanes");
R_InitPlanes();
//added:02-02-98: this is now done by SCR_Recalc() at the first mode set
if (devparm)
CONL_PrintF("\nR_InitLightTables");
R_InitLightTables();
if (devparm)
CONL_PrintF("\nR_InitSkyMap");
R_InitSkyMap();
if (devparm)
CONL_PrintF("\nR_InitTranslationsTables");
R_InitTranslationTables();
R_InitDrawNodes();
}
//
// R_PointInSubsector
//
subsector_t* R_PointInSubsector(fixed_t x, fixed_t y)
{
node_t* node;
int side;
int nodenum;
// single subsector is a special case
if (!numnodes)
return subsectors;
nodenum = numnodes - 1;
while (!(nodenum & NF_SUBSECTOR))
{
node = &nodes[nodenum];
side = R_PointOnSide(x, y, node);
nodenum = node->children[side];
}
return &subsectors[nodenum & ~NF_SUBSECTOR];
}
//
// R_IsPointInSubsector, same of above but return 0 if not in subsector
//
subsector_t* R_IsPointInSubsector(fixed_t x, fixed_t y)
{
node_t* node;
int side;
int nodenum, i;
subsector_t* ret;
// single subsector is a special case
if (!numnodes)
return subsectors;
nodenum = numnodes - 1;
while (!(nodenum & NF_SUBSECTOR))
{
node = &nodes[nodenum];
side = R_PointOnSide(x, y, node);
nodenum = node->children[side];
}
ret = &subsectors[nodenum & ~NF_SUBSECTOR];
for (i = 0; i < ret->numlines; i++)
{
if (R_PointOnSegSide(x, y, &segs[ret->firstline + i]))
return 0;
}
return ret;
}
//
// R_SetupFrame
//
mobj_t* viewmobj;
void P_ResetCamera(player_t* player);
// WARNING : a should be unsigned but to add with 2048, it isn't !
#define AIMINGTODY(a) ((finetangent[(2048+(((int)a)>>ANGLETOFINESHIFT)) & FINEMASK]*160)>>FRACBITS)
void R_SetupFrame(player_t* player)
{
int i;
int fixedcolormap_setup;
int dy = 0; //added:10-02-98:
extralight = player->extralight;
if (player->ChaseCam && !player->camera.chase)
{
P_ResetCamera(player);
player->camera.chase = true;
}
else if (!player->ChaseCam)
player->camera.chase = false;
if (script_camera_on)
{
viewmobj = script_camera.mo;
#ifdef PARANOIA
if (!viewmobj)
I_Error("no mobj for the camera");
#endif
viewz = viewmobj->z;
fixedcolormap_setup = player->camera.fixedcolormap;
aimingangle = script_camera.aiming;
viewangle = viewmobj->angle;
}
else
if (player->camera.chase)
// use outside cam view
{
viewmobj = player->camera.mo;
#ifdef PARANOIA
if (!viewmobj)
I_Error("no mobj for the camera");
#endif
viewz = viewmobj->z + (viewmobj->height >> 1);
fixedcolormap_setup = player->camera.fixedcolormap;
aimingangle = player->camera.aiming;
viewangle = viewmobj->angle;
}
else
// use the player's eyes view
{
viewz = player->viewz;
viewmobj = player->mo;
fixedcolormap_setup = player->fixedcolormap;
aimingangle = player->aiming;
viewangle = viewmobj->angle + viewangleoffset;
#if 1
if (!demoplayback && player->playerstate != PST_DEAD && P_XGSVal(PGS_COABSOLUTEANGLE))
for (i = 0; i < g_SplitScreen + 1; i++)
if (g_Splits[i].Active && playeringame[g_Splits[i].Console] && player == &players[g_Splits[i].Console] && g_Splits[i].Console == g_Splits[i].Display)
{
viewangle = localangle[i];
aimingangle = localaiming[i];
}
#endif
}
#ifdef PARANOIA
if (!viewmobj)
I_Error("R_Setupframe : viewmobj null (player %d)", player - players);
#endif
viewplayer = player;
viewx = viewmobj->x;
viewy = viewmobj->y;
viewsin = finesine[viewangle >> ANGLETOFINESHIFT];
viewcos = finecosine[viewangle >> ANGLETOFINESHIFT];
sscount = 0;
if (fixedcolormap_setup)
{
fixedcolormap = colormaps + fixedcolormap_setup * 256 * sizeof(lighttable_t);
walllights = scalelightfixed;
for (i = 0; i < MAXLIGHTSCALE; i++)
scalelightfixed[i] = fixedcolormap;
}
else
fixedcolormap = 0;
//added:06-02-98:recalc necessary stuff for mouseaiming
// slopes are already calculated for the full
// possible view (which is 4*viewheight).
// clip it in the case we are looking a hardware 90 full aiming
// (lmps, nework and use F12...)
G_ClipAimingPitch(&aimingangle);
if (g_SplitScreen != 1)
dy = AIMINGTODY(aimingangle) * viewheight / BASEVIDHEIGHT;
else
dy = AIMINGTODY(aimingangle) * viewheight * 2 / BASEVIDHEIGHT;
yslope = &yslopetab[(3 * viewheight / 2) - dy];
centery = (viewheight / 2) + dy;
centeryfrac = centery << FRACBITS;
validcount++;
}
// ================
// R_RenderView
// ================
// FAB NOTE FOR WIN32 PORT !! I'm not finished already,
// but I suspect network may have problems with the video buffer being locked
// for all duration of rendering, and being released only once at the end..
// I mean, there is a win16lock() or something that lasts all the rendering,
// so maybe we should release screen lock before each netupdate below..?
void R_DrawPlayerSprites(void);
void R_RenderPlayerViewEx_DOOM(player_t* player, int quarter)
{
register uint8_t* dest;
int x, y, a, b, c, d;
uint8_t* ExtraMap;
/* Check */
if (!player || (player && !player->mo))
return;
R_SetupFrame(player);
// Clear buffers.
R_ClearClipSegs();
R_ClearDrawSegs();
R_ClearPlanes(player); //needs player for waterheight in occupied sector
//R_ClearPortals ();
R_ClearSprites();
// GhostlyDeath <May 6, 2012> -- Network Update
//D_SyncNetUpdate();
// The head node is the last node output.
R_RenderBSPNode(numnodes - 1);
//D_SyncNetUpdate();
//R_DrawPortals ();
R_DrawPlanes();
// draw mid texture and sprite
// SoM: And now 3D floors/sides!
R_DrawMasked();
// draw the psprites on top of everything
// but does not draw on side views
if (!viewangleoffset && !player->camera.chase && (!player->ProfileEx || (player->ProfileEx && player->ProfileEx->DrawPSprites)) && !script_camera_on)
R_DrawPlayerSprites();
// GhostlyDeath -- warp the view
// ylookup is the row and columnofs is the column in the row
#if 0
if (((!cv_chasecam.value && player->mo && player->mo->eflags & MF_UNDERWATER) ||
(cv_chasecam.value && camera.mo && camera.mo->eflags & MF_UNDERWATER)) && (g_SplitScreen <= 0))
{
for (y = 0; y < viewheight; y++)
{
a = (gametic % 32) - 16;
if (a < 0)
c = 0;
else
c = 1;
if (c)
{
a += 2;
if (a > 16)
c = 0;
}
else
{
a -= 2;
if (a < -16)
c = 1;
}
for (x = 0; x < viewwidth; x++)
{
//a = ((gametic) % (viewwidth / 16)) - (viewheight / 32);// + (x % ((viewwidth / 8)) / 2);
b = a;
if (b < 0)
b += (gametic + (x >> 2)) % 16;
else
b -= (gametic + (x >> 2)) % 16;
if (b < -16)
b = -16;
else if (b > 16)
b = 16;
while (b + y < 0)
b++;
while (b + y > viewheight - (viewheight / 32))
b--;
if (ylookup[y + b])
{
if (b < 0)
*(ylookup[y + b] + columnofs[x]) = *(ylookup[y] + columnofs[x]);
else
*(ylookup[y] + columnofs[x]) = *(ylookup[y + b] + columnofs[x]);
}
}
}
}
#endif
// GhostlyDeath <May 6, 2012> -- Network Update
//D_SyncNetUpdate();
//player->mo->flags &= ~MF_NOSECTOR; // don't show self (uninit) clientprediction code
// GhostlyDeath <May 22, 2012> -- Fake palette hacking
if (g_SplitScreen > 0 && l_RFakeSSPal.Value[0].Int)
{
// Get the map
if (player->PalChoice > 0)
ExtraMap = V_GetPaletteMapped(player->PalChoice);
else
ExtraMap = NULL; // If non-default, don't waste time!
// If the map was obtained, apply it
if (ExtraMap)
V_DrawColorMapEx(VEX_NOSCALESTART | VEX_NOSCALESCREEN, ExtraMap, viewwindowx, viewwindowy, viewwindowx + viewwidth, viewwindowy + viewheight);
}
}
void R_RenderPlayerView_DOOM(player_t* player, const size_t a_Screen)
{
R_RenderPlayerViewEx_DOOM(player, 0);
}
// =========================================================================
// ENGINE COMMANDS & VARS
// =========================================================================
/* R_ExecuteSetViewSize_Nill() -- Does nothing to avoid crash */
static void R_ExecuteSetViewSize_Nill(void)
{
}
void (*R_ExecuteSetViewSize)(void) = R_ExecuteSetViewSize_Nill;
void (*R_RenderPlayerView)(player_t* player, const size_t a_Screen) = NULL;
// c_CVPVRRenderer -- Renderer to use
static const CONL_VarPossibleValue_t c_CVPVRRenderer[] =
{
{0, "Legacy"},
{1, "ReMooD"},
{2, "Heretic"},
{3, "Snow"},
// End
{0, NULL},
};
/* RS_RRendererChange() -- Renderer Value Changed */
static bool_t RS_RRendererChange(CONL_ConVariable_t* const a_Var, CONL_StaticVar_t* const a_StaticVar)
{
bool_t ForceReMooD;
/* Force ReMooD Renderer? */
ForceReMooD = false;
if (VHW_GetMode() != VHWMODE_IDXSOFT)
ForceReMooD = true;
/* Notice */
CONL_PrintF("Selecting Renderer ");
/* Legacy? */
/*if (!ForceReMooD && a_StaticVar->Value[0].Int == 0)*/
{
CONL_PrintF("Legacy");
R_ExecuteSetViewSize = R_ExecuteSetViewSize_DOOM;
R_RenderPlayerView = R_RenderPlayerView_DOOM;
}
#if 0
/* ReMooD? */
else if (ForceReMooD || a_StaticVar->Value[0].Int == 1)
{
CONL_PrintF("ReMooD");
R_ExecuteSetViewSize = R_ExecuteSetViewSize_REMOOD;
R_RenderPlayerView = R_RenderPlayerView_REMOOD;
}
/* Heretic? */
else if (!ForceReMooD && a_StaticVar->Value[0].Int == 2)
{
CONL_PrintF("Heretic");
R_ExecuteSetViewSize = R_ExecuteSetViewSize_HERETIC;
R_RenderPlayerView = R_RenderPlayerView_HERETIC;
}
/* Snow? */
else if (!ForceReMooD && a_StaticVar->Value[0].Int == 3)
{
CONL_PrintF("Snow");
R_ExecuteSetViewSize = SN_ViewResize;
R_RenderPlayerView = SN_RenderView;
}
#endif
/* Notice */
CONL_PrintF("\n");
/* Success! */
return true;
}
// r_renderer -- Which renderer to use
CONL_StaticVar_t l_RRenderer =
{
CLVT_INTEGER, c_CVPVRRenderer, CLVF_SAVE | CLVF_NOISY,
"r_renderer", DSTR_CVHINT_RRENDERER, CLVVT_STRING, "Legacy",
RS_RRendererChange
};
extern CONL_StaticVar_t l_RDrawSplats;
extern CONL_StaticVar_t l_RMaxSplats;
/* R_RegisterEngineStuff() -- Registers rendering stuff */
void R_RegisterEngineStuff(void)
{
/* Base Render Init */
R_ExecuteSetViewSize = R_ExecuteSetViewSize_DOOM;
R_RenderPlayerView = R_RenderPlayerView_DOOM;
/********************/
// GhostlyDeath <May 22, 2012> -- Fake split screen palettes
CONL_VarRegister(&l_RFakeSSPal);
CONL_VarRegister(&l_RRenderer);
CONL_VarRegister(&l_RViewSize);
CONL_VarRegister(&l_RDrawSplats);
CONL_VarRegister(&l_RMaxSplats);
CONL_VarRegister(&l_RTransparency);
}