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 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
|
/*
===========================================================================
Return to Castle Wolfenstein multiplayer GPL Source Code
Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
This file is part of the Return to Castle Wolfenstein multiplayer GPL Source Code (“RTCW MP Source Code”).
RTCW MP Source Code 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.
RTCW MP Source Code 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 RTCW MP Source Code. If not, see <http://www.gnu.org/licenses/>.
In addition, the RTCW MP Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the RTCW MP Source Code. If not, please request a copy in writing from id Software at the address below.
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
===========================================================================
*/
/*
* name: bg_public.h
*
* desc: definitions shared by both the server game and client game modules
*
*/
// because games can change separately from the main system version, we need a
// second version that must match between game and cgame
#define GAME_VERSION "RTCW-MP"
#define DEFAULT_GRAVITY 800
#define FORCE_LIMBO_HEALTH -150 // JPW NERVE
#define GIB_HEALTH -175 // JPW NERVE
#define ARMOR_PROTECTION 0.66
#define MAX_ITEMS 256
#define RANK_TIED_FLAG 0x4000
#define DEFAULT_SHOTGUN_SPREAD 700
#define DEFAULT_SHOTGUN_COUNT 11
//#define ITEM_RADIUS 15 // item sizes are needed for client side pickup detection
#define ITEM_RADIUS 10 // Rafael changed the radius so that the items would fit in the 3 new containers
// RF, zombie getup
#define TIMER_RESPAWN ( 38 * ( 1000 / 15 ) + 100 )
#define LIGHTNING_RANGE 600
#define TESLA_RANGE 800
#define FLAMETHROWER_RANGE 2500 // DHM - Nerve :: multiplayer range, was 850 in SP
#define ZOMBIE_FLAME_RADIUS 300
// RF, AI effects
#define PORTAL_ZOMBIE_SPAWNTIME 3000
#define PORTAL_FEMZOMBIE_SPAWNTIME 3000
#define SCORE_NOT_PRESENT -9999 // for the CS_SCORES[12] when only one player is present
#define VOTE_TIME 30000 // 30 seconds before vote times out
// Ridah, disabled these
#define MINS_Z -24
//#define DEFAULT_VIEWHEIGHT 26
//#define CROUCH_VIEWHEIGHT 12
// done.
// Rafael
// note to self: Corky test
//#define DEFAULT_VIEWHEIGHT 26
//#define CROUCH_VIEWHEIGHT 12
#define DEFAULT_VIEWHEIGHT 40
#define CROUCH_VIEWHEIGHT 16
#define DEAD_VIEWHEIGHT -16
#define DEFAULT_MODEL "multi"
#define DEFAULT_HEAD "default" // technically the default head skin. this means "head_default.skin" for the head
// RF, on fire effects
#define FIRE_FLASH_TIME 2000
#define FIRE_FLASH_FADEIN_TIME 1000
#define LIGHTNING_FLASH_TIME 150
#define MG42_SPREAD_MP 100
#define MG42_RATE_OF_FIRE 100 // DHM - Nerve :: delay between firings // JPW NERVE was 150
#define MG42_YAWSPEED 300.f // degrees per second
// RF, client damage identifiers
typedef enum {
CLDMG_SPIRIT,
CLDMG_FLAMETHROWER,
CLDMG_TESLA,
CLDMG_BOSS1LIGHTNING,
CLDMG_MAX
} clientDamage_t;
// RF
#define MAX_TAGCONNECTS 32
// (SA) zoom sway values
#define ZOOM_PITCH_AMPLITUDE 0.13f
#define ZOOM_PITCH_FREQUENCY 0.24f
#define ZOOM_PITCH_MIN_AMPLITUDE 0.1f // minimum amount of sway even if completely settled on target
#define ZOOM_YAW_AMPLITUDE 0.7f
#define ZOOM_YAW_FREQUENCY 0.12f
#define ZOOM_YAW_MIN_AMPLITUDE 0.2f
// DHM - Nerve
#define MAX_OBJECTIVES 6
#define MAX_OID_TRIGGERS 16
// dhm
//
// config strings are a general means of communicating variable length strings
// from the server to all connected clients.
//
// CS_SERVERINFO and CS_SYSTEMINFO are defined in q_shared.h
#define CS_MUSIC 2
#define CS_MESSAGE 3 // from the map worldspawn's message field
#define CS_MOTD 4 // g_motd string for server message of the day
#define CS_WARMUP 5 // server time when the match will be restarted
#define CS_SCORES1 6
#define CS_SCORES2 7
#define CS_VOTE_TIME 8
#define CS_VOTE_STRING 9
#define CS_VOTE_YES 10
#define CS_VOTE_NO 11
#define CS_GAME_VERSION 12
#define CS_LEVEL_START_TIME 13 // so the timer only shows the current level
#define CS_INTERMISSION 14 // when 1, intermission will start in a second or two
// DHM - Nerve :: Wolf Multiplayer information
#define CS_MULTI_INFO 15
#define CS_MULTI_MAPWINNER 16
#define CS_MULTI_MAPDESC 17
#define CS_MULTI_OBJECTIVE1 18
#define CS_MULTI_OBJECTIVE2 19
#define CS_MULTI_OBJECTIVE3 20
#define CS_MULTI_OBJECTIVE4 21
#define CS_MULTI_OBJECTIVE5 22
#define CS_MULTI_OBJECTIVE6 23
#define CS_MULTI_OBJ1_STATUS 24
#define CS_MULTI_OBJ2_STATUS 25
#define CS_MULTI_OBJ3_STATUS 26
#define CS_MULTI_OBJ4_STATUS 27
#define CS_MULTI_OBJ5_STATUS 28
#define CS_MULTI_OBJ6_STATUS 29
// dhm
#define CS_SHADERSTATE 30
#define CS_ITEMS 31 // string of 0's and 1's that tell which items are present
#define CS_SCREENFADE 32 // Ridah, used to tell clients to fade their screen to black/normal
#define CS_FOGVARS 33 //----(SA) used for saving the current state/settings of the fog
#define CS_SKYBOXORG 34 // this is where we should view the skybox from
#define CS_TARGETEFFECT 35 //----(SA)
#define CS_WOLFINFO 36 // NERVE - SMF
#define CS_MODELS 64
#define CS_SOUNDS ( CS_MODELS + MAX_MODELS )
#define CS_PLAYERS ( CS_SOUNDS + MAX_SOUNDS )
#define CS_LOCATIONS ( CS_PLAYERS + MAX_CLIENTS )
#define CS_PARTICLES ( CS_LOCATIONS + MAX_LOCATIONS )
// JPW NERVE -- for spawnpoint selection
#define CS_MULTI_SPAWNTARGETS ( CS_PARTICLES + MAX_PARTICLES_AREAS )
#define CS_OID_TRIGGERS ( CS_MULTI_SPAWNTARGETS + MAX_MULTI_SPAWNTARGETS )
// jpw
#define CS_DLIGHTS ( CS_OID_TRIGGERS + MAX_OID_TRIGGERS )
#define CS_CLIPBOARDS ( CS_DLIGHTS + MAX_DLIGHT_CONFIGSTRINGS )
#define CS_SPLINES ( CS_CLIPBOARDS + MAX_CLIPBOARD_CONFIGSTRINGS )
#define CS_TAGCONNECTS ( CS_SPLINES + MAX_SPLINE_CONFIGSTRINGS )
#define CS_MAX ( CS_TAGCONNECTS + MAX_TAGCONNECTS )
#if ( CS_MAX ) > MAX_CONFIGSTRINGS
#error overflow: (CS_MAX) > MAX_CONFIGSTRINGS
#endif
typedef enum {
GT_FFA, // free for all
GT_TOURNAMENT, // one on one tournament
GT_SINGLE_PLAYER, // single player tournament
//-- team games go after this --
GT_TEAM, // team deathmatch
GT_CTF, // capture the flag
GT_WOLF, // DHM - Nerve :: Wolfenstein Multiplayer
GT_WOLF_STOPWATCH, // NERVE - SMF - stopwatch gametype
GT_WOLF_CP, // NERVE - SMF - checkpoint gametype
GT_WOLF_CPH, // JPW NERVE - Capture & Hold gametype
GT_MAX_GAME_TYPE
} gametype_t;
// Rafael gameskill
typedef enum {
GSKILL_EASY = 1,
GSKILL_MEDIUM,
GSKILL_MEDIUMHARD, // normal default level
GSKILL_HARD,
GSKILL_VERYHARD,
GSKILL_MAX // must always be last
} gameskill_t;
typedef enum { GENDER_MALE, GENDER_FEMALE, GENDER_NEUTER } gender_t;
/*
===================================================================================
PMOVE MODULE
The pmove code takes a player_state_t and a usercmd_t and generates a new player_state_t
and some other output data. Used for local prediction on the client game and true
movement on the server game.
===================================================================================
*/
typedef enum {
PM_NORMAL, // can accelerate and turn
PM_NOCLIP, // noclip movement
PM_SPECTATOR, // still run into walls
PM_DEAD, // no acceleration or turning, but free falling
PM_FREEZE, // stuck in place with no control
PM_INTERMISSION // no movement or status bar
} pmtype_t;
typedef enum {
WEAPON_READY,
WEAPON_RAISING,
WEAPON_DROPPING,
WEAPON_READYING, // getting from 'ready' to 'firing'
WEAPON_RELAXING, // weapon is ready, but since not firing, it's on it's way to a "relaxed" stance
WEAPON_VENOM_REST,
WEAPON_FIRING,
WEAPON_FIRINGALT,
WEAPON_RELOADING //----(SA) added
} weaponstate_t;
// pmove->pm_flags (sent as max 16 bits in msg.c)
#define PMF_DUCKED 1
#define PMF_JUMP_HELD 2
#define PMF_LADDER 4 // player is on a ladder
#define PMF_BACKWARDS_JUMP 8 // go into backwards land
#define PMF_BACKWARDS_RUN 16 // coast down to backwards run
#define PMF_TIME_LAND 32 // pm_time is time before rejump
#define PMF_TIME_KNOCKBACK 64 // pm_time is an air-accelerate only time
#define PMF_TIME_WATERJUMP 256 // pm_time is waterjump
#define PMF_RESPAWNED 512 // clear after attack and jump buttons come up
#define PMF_USE_ITEM_HELD 1024
#define PMF_GRAPPLE_PULL 2048 // pull towards grapple location
#define PMF_FOLLOW 4096 // spectate following another player
#define PMF_SCOREBOARD 8192 // spectate as a scoreboard
#define PMF_LIMBO 16384 // JPW NERVE limbo state, pm_time is time until reinforce
#define PMF_TIME_LOCKPLAYER 32768 // DHM - Nerve :: Lock all movement and view changes
#define PMF_ALL_TIMES ( PMF_TIME_WATERJUMP | PMF_TIME_LAND | PMF_TIME_KNOCKBACK | PMF_TIME_LOCKPLAYER )
typedef struct {
qboolean bAutoReload; // do we predict autoreload of weapons
int blockCenterViewTime; // don't let centerview happen for a little while
// Arnout: MG42 aiming
float varc, harc;
vec3_t centerangles;
} pmoveExt_t; // data used both in client and server - store it here
// generally useful for data you want to manipulate in bg_* and cgame, or bg_* and game
// instead of playerstate to prevent different engine versions of playerstate between XP and MP
#define MAXTOUCH 32
typedef struct {
// state (in / out)
playerState_t *ps;
pmoveExt_t *pmext;
// command (in)
usercmd_t cmd, oldcmd;
int tracemask; // collide against these types of surfaces
int debugLevel; // if set, diagnostic output will be printed
qboolean noFootsteps; // if the game is setup for no footsteps by the server
qboolean noWeapClips; // if the game is setup for no weapon clips by the server
qboolean gauntletHit; // true if a gauntlet attack would actually hit something
// NERVE - SMF (in)
int gametype;
int ltChargeTime;
int soldierChargeTime;
int engineerChargeTime;
int medicChargeTime;
// -NERVE - SMF
// results (out)
int numtouch;
int touchents[MAXTOUCH];
vec3_t mins, maxs; // bounding box size
int watertype;
int waterlevel;
float xyspeed;
// for fixed msec Pmove
int pmove_fixed;
int pmove_msec;
// callbacks to test the world
// these will be different functions during game and cgame
void ( *trace )( trace_t *results, const vec3_t start, const vec3_t mins, const vec3_t maxs, const vec3_t end, int passEntityNum, int contentMask );
int ( *pointcontents )( const vec3_t point, int passEntityNum );
} pmove_t;
// if a full pmove isn't done on the client, you can just update the angles
void PM_UpdateViewAngles( playerState_t * ps, usercmd_t * cmd, void( trace ) ( trace_t * results, const vec3_t start, const vec3_t mins, const vec3_t maxs, const vec3_t end, int passEntityNum, int contentMask ) );
int Pmove( pmove_t *pmove );
//===================================================================================
// JPW NERVE
#define PC_SOLDIER 0 // shoot stuff
#define PC_MEDIC 1 // heal stuff
#define PC_ENGINEER 2 // build stuff
#define PC_LT 3 // bomb stuff
#define PC_MEDIC_CHARGETIME 30000 // FIXME just for testing, this will change to server cvars for each class
// jpw
// player_state->stats[] indexes
typedef enum {
STAT_HEALTH,
STAT_HOLDABLE_ITEM,
// STAT_WEAPONS, // 16 bit fields
STAT_ARMOR,
//----(SA) Keys for Wolf
STAT_KEYS, // 16 bit fields
//----(SA) end
STAT_DEAD_YAW, // look this direction when dead (FIXME: get rid of?)
STAT_CLIENTS_READY, // bit mask of clients wishing to exit the intermission (FIXME: configstring?)
STAT_MAX_HEALTH, // health / armor limit, changable by handicap
STAT_PLAYER_CLASS, // DHM - Nerve :: player class in multiplayer
STAT_CAPTUREHOLD_RED, // JPW NERVE - red team score
STAT_CAPTUREHOLD_BLUE // JPW NERVE - blue team score
} statIndex_t;
// player_state->persistant[] indexes
// these fields are the only part of player_state that isn't
// cleared on respawn
typedef enum {
PERS_SCORE, // !!! MUST NOT CHANGE, SERVER AND GAME BOTH REFERENCE !!!
PERS_HITS, // total points damage inflicted so damage beeps can sound on change
PERS_RANK,
PERS_TEAM,
PERS_SPAWN_COUNT, // incremented every respawn
PERS_REWARD_COUNT, // incremented for each reward sound
PERS_REWARD, // a reward_t
PERS_ATTACKER, // clientnum of last damage inflicter
PERS_KILLED, // count of the number of times you died
// these were added for single player awards tracking
PERS_RESPAWNS_LEFT, // DHM - Nerve :: number of remaining respawns
PERS_ACCURACY_SHOTS,
PERS_ACCURACY_HITS,
// Rafael - mg42 // (SA) I don't understand these here. can someone explain?
PERS_HWEAPON_USE,
// Rafael wolfkick
PERS_WOLFKICK
} persEnum_t;
// entityState_t->eFlags
#define EF_DEAD 0x00000001 // don't draw a foe marker over players with EF_DEAD
#define EF_NONSOLID_BMODEL 0x00000002 // bmodel is visible, but not solid
#define EF_TELEPORT_BIT 0x00000004 // toggled every time the origin abruptly changes
#define EF_MONSTER_EFFECT 0x00000008 // draw an aiChar dependant effect for this character
#define EF_CAPSULE 0x00000010 // use capsule for collisions
#define EF_CROUCHING 0x00000020 // player is crouching
#define EF_MG42_ACTIVE 0x00000040 // currently using an MG42
#define EF_NODRAW 0x00000080 // may have an event, but no model (unspawned items)
#define EF_FIRING 0x00000100 // for lightning gun
#define EF_INHERITSHADER EF_FIRING // some ents will never use EF_FIRING, hijack it for "USESHADER"
#define EF_BOUNCE_HEAVY 0x00000200 // more realistic bounce. not as rubbery as above (currently for c4)
#define EF_SPINNING 0x00000400 // (SA) added for level editor control of spinning pickup items
#define EF_BREATH EF_SPINNING // Characters will not have EF_SPINNING set, hijack for drawing character breath
#define EF_MELEE_ACTIVE 0x00000800 // (SA) added for client knowledge of melee items held (chair/etc.)
#define EF_TALK 0x00001000 // draw a talk balloon
#define EF_SMOKING EF_MONSTER_EFFECT3 // DHM - Nerve :: ET_GENERAL ents will emit smoke if set // JPW switched to this after my code change
#define EF_CONNECTION 0x00002000 // draw a connection trouble sprite
#define EF_MONSTER_EFFECT2 0x00004000 // show the secondary special effect for this character
#define EF_SMOKINGBLACK EF_MONSTER_EFFECT2 // JPW NERVE -- like EF_SMOKING only darker & bigger
#define EF_HEADSHOT 0x00008000 // last hit to player was head shot
#define EF_MONSTER_EFFECT3 0x00010000 // show the third special effect for this character
#define EF_HEADLOOK 0x00020000 // make the head look around
#define EF_VOTED EF_HEADLOOK // already cast a vote
#define EF_STAND_IDLE2 0x00040000 // when standing, play idle2 instead of the default
#define EF_VIEWING_CAMERA EF_STAND_IDLE2 // NOTE: REMOVE STAND_IDLE2 !!
#define EF_TAGCONNECT 0x00080000 // connected to another entity via tag
#define EF_MOVER_BLOCKED 0x00100000 // mover was blocked dont lerp on the client
#define EF_FORCED_ANGLES 0x00200000 // enforce all body parts to use these angles
#define EF_ZOOMING 0x00400000 // client is zooming
#define EF_NOSWINGANGLES 0x00800000 // try and keep all parts facing same direction
// !! NOTE: only place flags that don't need to go to the client beyond 0x00800000
#define EF_DUMMY_PMOVE 0x01000000
#define EF_BOUNCE 0x04000000 // for missiles
#define EF_BOUNCE_HALF 0x08000000 // for missiles
#define EF_MOVER_STOP 0x10000000 // will push otherwise // (SA) moved down to make space for one more client flag
typedef enum {
PW_NONE,
PW_QUAD,
PW_BATTLESUIT,
PW_HASTE,
PW_INVIS,
PW_REGEN,
PW_FLIGHT,
// (SA) for Wolf
PW_INVULNERABLE,
PW_FIRE, //----(SA)
PW_ELECTRIC, //----(SA)
PW_BREATHER, //----(SA)
PW_NOFATIGUE, //----(SA)
PW_REDFLAG,
PW_BLUEFLAG,
PW_BALL,
PW_NUM_POWERUPS
} powerup_t;
typedef enum {
//----(SA) These will probably all change to INV_n to get the word 'key' out of the game.
// id and DM don't want references to 'keys' in the game.
// I'll change to 'INV' as the item becomes 'permanent' and not a test item.
KEY_NONE,
KEY_1, // skull
KEY_2, // chalice
KEY_3, // eye
KEY_4, // field radio
KEY_5, // satchel charge
INV_BINOCS, // binoculars
KEY_7,
KEY_8,
KEY_9,
KEY_10,
KEY_11,
KEY_12,
KEY_13,
KEY_14,
KEY_15,
KEY_16,
KEY_NUM_KEYS
} wkey_t; // conflicts with types.h
typedef enum {
HI_NONE,
// HI_TELEPORTER,
HI_MEDKIT,
// new for Wolf
HI_WINE,
HI_SKULL,
HI_WATER,
HI_ELECTRIC,
HI_FIRE,
HI_STAMINA,
HI_BOOK1, //----(SA) added
HI_BOOK2, //----(SA) added
HI_BOOK3, //----(SA) added
HI_11,
HI_12,
HI_13,
HI_14,
// HI_15, // ?
HI_NUM_HOLDABLE
} holdable_t;
// Ridah
//
// character presets
typedef enum
{
AICHAR_NONE,
AICHAR_SOLDIER,
AICHAR_AMERICAN,
AICHAR_ZOMBIE,
AICHAR_WARZOMBIE,
AICHAR_FEMZOMBIE,
AICHAR_UNDEAD,
AICHAR_VENOM,
AICHAR_LOPER,
AICHAR_SEALOPER,
AICHAR_ELITEGUARD,
AICHAR_STIMSOLDIER1, // dual machineguns
AICHAR_STIMSOLDIER2, // rocket in left hand
AICHAR_STIMSOLDIER3, // tesla in left hand
AICHAR_SUPERSOLDIER,
AICHAR_BLACKGUARD,
AICHAR_PROTOSOLDIER,
AICHAR_REJECTX,
AICHAR_FROGMAN,
AICHAR_HELGA,
AICHAR_HEINRICH, //----(SA) added
AICHAR_PARTISAN,
AICHAR_CIVILIAN,
AICHAR_CHIMP,
NUM_CHARACTERS
} AICharacters_t;
// done.
// NOTE: we can only use up to 15 in the client-server stream
// SA NOTE: should be 31 now (I added 1 bit in msg.c)
typedef enum {
WP_NONE, // 0
WP_KNIFE, // 1
// German weapons
WP_LUGER, // 2
WP_MP40, // 3
WP_MAUSER, // 4
WP_FG42, // 5
WP_GRENADE_LAUNCHER, // 6
WP_PANZERFAUST, // 7
WP_VENOM, // 8
WP_FLAMETHROWER, // 9
WP_TESLA, // 10
WP_SPEARGUN, // 11
// weapon keys only go 1-0, so put the alternates above that (since selection will be a double click on the german weapon key)
// American equivalents
WP_KNIFE2, // 12
WP_COLT, // 13 equivalent american weapon to german luger
WP_THOMPSON, // 14 equivalent american weapon to german mp40
WP_GARAND, // 15 equivalent american weapon to german mauser
WP_BAR, // 16 equivalent american weapon to german fg42
WP_GRENADE_PINEAPPLE, // 17
WP_ROCKET_LAUNCHER, // 18 equivalent american weapon to german panzerfaust
// secondary fire weapons
WP_SNIPERRIFLE, // 19
WP_SNOOPERSCOPE, // 20
WP_VENOM_FULL, // 21
WP_SPEARGUN_CO2, // 22
WP_FG42SCOPE, // 23 fg42 alt fire
WP_BAR2, // 24
// more weapons
WP_STEN, // 25 silenced sten sub-machinegun
WP_MEDIC_SYRINGE, // 26 // JPW NERVE -- broken out from CLASS_SPECIAL per Id request
WP_AMMO, // 27 // JPW NERVE likewise
WP_ARTY, // 28
WP_SILENCER, // 29 // used to be sp5
WP_AKIMBO, // 30 //----(SA) added
// jpw
WP_CROSS, // 31
WP_DYNAMITE, // 32
WP_DYNAMITE2, // 33
WP_PROX, // 34
WP_MONSTER_ATTACK1, // 35 // generic monster attack, slot 1
WP_MONSTER_ATTACK2, // 36 // generic monster attack, slot 2
WP_MONSTER_ATTACK3, // 37 // generic monster attack, slot 2
WP_SMOKETRAIL, // 38
WP_GAUNTLET, // 39
WP_SNIPER, // 40
WP_MORTAR, // 41
VERYBIGEXPLOSION, // 42 // explosion effect for airplanes
// NERVE - SMF - special weapons are here now
WP_MEDKIT, // 43
WP_PLIERS, // 44
WP_SMOKE_GRENADE, // 45
// -NERVE - SMF
WP_BINOCULARS, // 46
WP_NUM_WEAPONS // 47 NOTE: this cannot be larger than 64 for AI/player weapons!
} weapon_t;
// JPW NERVE moved from cg_weapons (now used in g_active) for drop command, actual array in bg_misc.c
extern int weapBanksMultiPlayer[MAX_WEAP_BANKS_MP][MAX_WEAPS_IN_BANK_MP];
// jpw
typedef struct ammotable_s {
int maxammo; //
int uses; //
int maxclip; //
int reloadTime; //
int fireDelayTime; //
int nextShotTime; //
//----(SA) added
int maxHeat; // max active firing time before weapon 'overheats' (at which point the weapon will fail)
int coolRate; // how fast the weapon cools down. (per second)
//----(SA) end
int mod; // means of death
} ammotable_t;
extern ammotable_t ammoTable[]; // defined in bg_misc.c
extern int weapAlts[]; // defined in bg_misc.c
//----(SA)
// for routines that need to check if a WP_ is </=/> a given set of weapons
#define WP_FIRST WP_KNIFE
#define WP_BEGINGERMAN WP_KNIFE
#define WP_LASTGERMAN WP_SPEARGUN
#define WP_BEGINAMERICAN WP_KNIFE2
#define WP_LASTAMERICAN WP_GRENADE_PINEAPPLE
#define WP_BEGINSECONDARY WP_SNIPERRIFLE
#define WP_LASTSECONDARY WP_SPEARGUN_CO2
#define WEAPS_ONE_HANDED ( ( 1 << WP_KNIFE ) | ( 1 << WP_KNIFE2 ) | ( 1 << WP_LUGER ) | ( 1 << WP_COLT ) | ( 1 << WP_SILENCER ) | ( 1 << WP_GRENADE_LAUNCHER ) | ( 1 << WP_GRENADE_PINEAPPLE ) )
// TTimo
// NOTE: what about WP_MAUSER WP_GARAND WP_VENOM
#define IS_AUTORELOAD_WEAPON( weapon ) ( ( weapon ) == WP_LUGER || ( weapon ) == WP_COLT || ( weapon ) == WP_MP40 \
|| ( weapon ) == WP_THOMPSON || ( weapon ) == WP_STEN )
//----(SA) end
typedef enum {
WPOS_HIGH,
WPOS_LOW,
WPOS_KNIFE,
WPOS_PISTOL,
WPOS_SHOULDER,
WPOS_THROW,
WPOS_NUM_POSITIONS
} pose_t;
// reward sounds
typedef enum {
REWARD_BAD,
REWARD_IMPRESSIVE,
REWARD_EXCELLENT,
REWARD_DENIED,
REWARD_GAUNTLET
} reward_t;
// entityState_t->event values
// entity events are for effects that take place relative
// to an existing entities origin. Very network efficient.
// two bits at the top of the entityState->event field
// will be incremented with each change in the event so
// that an identical event started twice in a row can
// be distinguished. And off the value with ~EV_EVENT_BITS
// to retrieve the actual event number
#define EV_EVENT_BIT1 0x00000100
#define EV_EVENT_BIT2 0x00000200
#define EV_EVENT_BITS ( EV_EVENT_BIT1 | EV_EVENT_BIT2 )
typedef enum {
EV_NONE,
EV_FOOTSTEP,
EV_FOOTSTEP_METAL,
EV_FOOTSTEP_WOOD,
EV_FOOTSTEP_GRASS,
EV_FOOTSTEP_GRAVEL,
EV_FOOTSTEP_ROOF,
EV_FOOTSTEP_SNOW,
EV_FOOTSTEP_CARPET,
EV_FOOTSPLASH,
EV_FOOTWADE,
EV_SWIM,
EV_STEP_4,
EV_STEP_8,
EV_STEP_12,
EV_STEP_16,
EV_FALL_SHORT,
EV_FALL_MEDIUM,
EV_FALL_FAR,
EV_FALL_NDIE,
EV_FALL_DMG_10,
EV_FALL_DMG_15,
EV_FALL_DMG_25,
EV_FALL_DMG_50,
EV_JUMP_PAD, // boing sound at origin, jump sound on player
EV_JUMP,
EV_WATER_TOUCH, // foot touches
EV_WATER_LEAVE, // foot leaves
EV_WATER_UNDER, // head touches
EV_WATER_CLEAR, // head leaves
EV_ITEM_PICKUP, // normal item pickups are predictable
EV_ITEM_PICKUP_QUIET, // (SA) same, but don't play the default pickup sound as it was specified in the ent
EV_GLOBAL_ITEM_PICKUP, // powerup / team sounds are broadcast to everyone
EV_NOITEM,
EV_NOAMMO,
EV_EMPTYCLIP,
EV_FILL_CLIP,
EV_MG42_FIXED, // JPW NERVE
EV_WEAP_OVERHEAT,
EV_CHANGE_WEAPON,
EV_FIRE_WEAPON,
EV_FIRE_WEAPONB,
EV_FIRE_WEAPON_LASTSHOT,
EV_FIRE_QUICKGREN, // "Quickgrenade"
EV_NOFIRE_UNDERWATER,
EV_FIRE_WEAPON_MG42,
EV_USE_ITEM0,
EV_USE_ITEM1,
EV_USE_ITEM2,
EV_USE_ITEM3,
EV_USE_ITEM4,
EV_USE_ITEM5,
EV_USE_ITEM6,
EV_USE_ITEM7,
EV_USE_ITEM8,
EV_USE_ITEM9,
EV_USE_ITEM10,
EV_USE_ITEM11,
EV_USE_ITEM12,
EV_USE_ITEM13,
EV_USE_ITEM14,
EV_USE_ITEM15,
EV_ITEM_RESPAWN,
EV_ITEM_POP,
EV_PLAYER_TELEPORT_IN,
EV_PLAYER_TELEPORT_OUT,
EV_GRENADE_BOUNCE, // eventParm will be the soundindex
EV_GENERAL_SOUND,
EV_GLOBAL_SOUND, // no attenuation
EV_GLOBAL_CLIENT_SOUND, // DHM - Nerve :: no attenuation, only plays for specified client
EV_BULLET_HIT_FLESH,
EV_BULLET_HIT_WALL,
EV_MISSILE_HIT,
EV_MISSILE_MISS,
EV_RAILTRAIL,
EV_VENOM,
EV_VENOMFULL,
EV_BULLET, // otherEntity is the shooter
EV_LOSE_HAT, //----(SA)
EV_GIB_HEAD, // only blow off the head
EV_PAIN,
EV_CROUCH_PAIN,
EV_DEATH1,
EV_DEATH2,
EV_DEATH3,
EV_OBITUARY,
EV_STOPSTREAMINGSOUND, // JPW NERVE swiped from sherman
EV_POWERUP_QUAD,
EV_POWERUP_BATTLESUIT,
EV_POWERUP_REGEN,
EV_GIB_PLAYER, // gib a previously living player
EV_DEBUG_LINE,
EV_STOPLOOPINGSOUND,
EV_TAUNT,
EV_SMOKE,
EV_SPARKS,
EV_SPARKS_ELECTRIC,
EV_BATS,
EV_BATS_UPDATEPOSITION,
EV_BATS_DEATH,
EV_EXPLODE, // func_explosive
EV_EFFECT, // target_effect
EV_MORTAREFX, // mortar firing
// JPW NERVE
EV_SPINUP, // JPW NERVE panzerfaust preamble
EV_TESTID1, // new particle test
EV_TESTID2,
EV_ENDTEST,
// jpw
EV_SNOW_ON,
EV_SNOW_OFF,
EV_MISSILE_MISS_SMALL,
EV_MISSILE_MISS_LARGE,
EV_WOLFKICK_HIT_FLESH,
EV_WOLFKICK_HIT_WALL,
EV_WOLFKICK_MISS,
EV_SPIT_HIT,
EV_SPIT_MISS,
EV_SHARD,
EV_JUNK,
EV_EMITTER, //----(SA) added // generic particle emitter that uses client-side particle scripts
EV_OILPARTICLES,
EV_OILSLICK,
EV_OILSLICKREMOVE,
EV_MG42EFX,
EV_FLAMEBARREL_BOUNCE,
EV_FLAKGUN1,
EV_FLAKGUN2,
EV_FLAKGUN3,
EV_FLAKGUN4,
EV_EXERT1,
EV_EXERT2,
EV_EXERT3,
EV_SNOWFLURRY,
EV_CONCUSSIVE,
EV_DUST,
EV_RUMBLE_EFX,
EV_GUNSPARKS,
EV_FLAMETHROWER_EFFECT,
EV_SNIPER_SOUND,
EV_POPUP,
EV_POPUPBOOK,
EV_GIVEPAGE, //----(SA) added
EV_MG42BULLET_HIT_FLESH, // Arnout: these two send the seed as well
EV_MG42BULLET_HIT_WALL,
EV_MAX_EVENTS // just added as an 'endcap'
} entity_event_t;
// NOTE: this must be synched with the text list below
// new (10/18/00)
typedef enum {
BOTH_DEATH1,
BOTH_DEAD1,
BOTH_DEAD1_WATER,
BOTH_DEATH2,
BOTH_DEAD2,
BOTH_DEAD2_WATER,
BOTH_DEATH3,
BOTH_DEAD3,
BOTH_DEAD3_WATER,
BOTH_CLIMB,
/*10*/ BOTH_CLIMB_DOWN,
BOTH_CLIMB_DISMOUNT,
BOTH_SALUTE,
BOTH_PAIN1, // head
BOTH_PAIN2, // chest
BOTH_PAIN3, // groin
BOTH_PAIN4, // right shoulder
BOTH_PAIN5, // left shoulder
BOTH_PAIN6, // right knee
BOTH_PAIN7, // left knee
/*20*/ BOTH_PAIN8, // dazed
BOTH_GRAB_GRENADE,
BOTH_ATTACK1,
BOTH_ATTACK2,
BOTH_ATTACK3,
BOTH_ATTACK4,
BOTH_ATTACK5,
BOTH_EXTRA1,
BOTH_EXTRA2,
BOTH_EXTRA3,
/*30*/ BOTH_EXTRA4,
BOTH_EXTRA5,
BOTH_EXTRA6,
BOTH_EXTRA7,
BOTH_EXTRA8,
BOTH_EXTRA9,
BOTH_EXTRA10,
BOTH_EXTRA11,
BOTH_EXTRA12,
BOTH_EXTRA13,
/*40*/ BOTH_EXTRA14,
BOTH_EXTRA15,
BOTH_EXTRA16,
BOTH_EXTRA17,
BOTH_EXTRA18,
BOTH_EXTRA19,
BOTH_EXTRA20,
TORSO_GESTURE,
TORSO_GESTURE2,
TORSO_GESTURE3,
/*50*/ TORSO_GESTURE4,
TORSO_DROP,
TORSO_RAISE, // (low)
TORSO_ATTACK,
TORSO_STAND,
TORSO_STAND_ALT1,
TORSO_STAND_ALT2,
TORSO_READY,
TORSO_RELAX,
TORSO_RAISE2, // (high)
/*60*/ TORSO_ATTACK2,
TORSO_STAND2,
TORSO_STAND2_ALT1,
TORSO_STAND2_ALT2,
TORSO_READY2,
TORSO_RELAX2,
TORSO_RAISE3, // (pistol)
TORSO_ATTACK3,
TORSO_STAND3,
TORSO_STAND3_ALT1,
/*70*/ TORSO_STAND3_ALT2,
TORSO_READY3,
TORSO_RELAX3,
TORSO_RAISE4, // (shoulder)
TORSO_ATTACK4,
TORSO_STAND4,
TORSO_STAND4_ALT1,
TORSO_STAND4_ALT2,
TORSO_READY4,
TORSO_RELAX4,
/*80*/ TORSO_RAISE5, // (throw)
TORSO_ATTACK5,
TORSO_ATTACK5B,
TORSO_STAND5,
TORSO_STAND5_ALT1,
TORSO_STAND5_ALT2,
TORSO_READY5,
TORSO_RELAX5,
TORSO_RELOAD1, // (low)
TORSO_RELOAD2, // (high)
/*90*/ TORSO_RELOAD3, // (pistol)
TORSO_RELOAD4, // (shoulder)
TORSO_MG42, // firing tripod mounted weapon animation
TORSO_MOVE, // torso anim to play while moving and not firing (swinging arms type thing)
TORSO_MOVE_ALT,
TORSO_EXTRA,
TORSO_EXTRA2,
TORSO_EXTRA3,
TORSO_EXTRA4,
TORSO_EXTRA5,
/*100*/ TORSO_EXTRA6,
TORSO_EXTRA7,
TORSO_EXTRA8,
TORSO_EXTRA9,
TORSO_EXTRA10,
LEGS_WALKCR,
LEGS_WALKCR_BACK,
LEGS_WALK,
LEGS_RUN,
LEGS_BACK,
/*110*/ LEGS_SWIM,
LEGS_SWIM_IDLE,
LEGS_JUMP,
LEGS_JUMPB,
LEGS_LAND,
LEGS_IDLE,
LEGS_IDLE_ALT, // LEGS_IDLE2
LEGS_IDLECR,
LEGS_TURN,
LEGS_BOOT, // kicking animation
/*120*/ LEGS_EXTRA1,
LEGS_EXTRA2,
LEGS_EXTRA3,
LEGS_EXTRA4,
LEGS_EXTRA5,
LEGS_EXTRA6,
LEGS_EXTRA7,
LEGS_EXTRA8,
LEGS_EXTRA9,
LEGS_EXTRA10,
/*130*/ MAX_ANIMATIONS
} animNumber_t;
// text represenation for scripting
extern char *animStrings[]; // defined in bg_misc.c
extern char *animStringsOld[]; // defined in bg_misc.c
typedef enum {
WEAP_IDLE1,
WEAP_IDLE2,
WEAP_ATTACK1,
WEAP_ATTACK2,
WEAP_ATTACK_LASTSHOT, // used when firing the last round before having an empty clip.
WEAP_DROP,
WEAP_RAISE,
WEAP_RELOAD1,
WEAP_RELOAD2,
WEAP_RELOAD3,
WEAP_ALTSWITCHFROM, // switch from alt fire mode weap (scoped/silencer/etc)
WEAP_ALTSWITCHTO, // switch to alt fire mode weap
MAX_WP_ANIMATIONS
} weapAnimNumber_t;
#define ANIMFL_LADDERANIM 0x1
#define ANIMFL_FIRINGANIM 0x2
typedef struct animation_s {
char name[MAX_QPATH];
int firstFrame;
int numFrames;
int loopFrames; // 0 to numFrames
int frameLerp; // msec between frames
int initialLerp; // msec to get to first frame
int moveSpeed;
int animBlend; // take this long to blend to next anim
//
// derived
//
int duration;
int nameHash;
int flags;
int movetype;
} animation_t;
// Ridah, head animations
typedef enum {
HEAD_NEUTRAL_CLOSED,
HEAD_NEUTRAL_A,
HEAD_NEUTRAL_O,
HEAD_NEUTRAL_I,
HEAD_NEUTRAL_E,
HEAD_HAPPY_CLOSED,
HEAD_HAPPY_O,
HEAD_HAPPY_I,
HEAD_HAPPY_E,
HEAD_HAPPY_A,
HEAD_ANGRY_CLOSED,
HEAD_ANGRY_O,
HEAD_ANGRY_I,
HEAD_ANGRY_E,
HEAD_ANGRY_A,
MAX_HEAD_ANIMS
} animHeadNumber_t;
typedef struct headAnimation_s {
int firstFrame;
int numFrames;
} headAnimation_t;
// done.
// flip the togglebit every time an animation
// changes so a restart of the same anim can be detected
#define ANIM_TOGGLEBIT ( 1 << ( ANIM_BITS - 1 ) )
typedef enum {
TEAM_FREE,
TEAM_RED,
TEAM_BLUE,
TEAM_SPECTATOR,
TEAM_NUM_TEAMS
} team_t;
// Time between location updates
#define TEAM_LOCATION_UPDATE_TIME 1000
// How many players on the overlay
#define TEAM_MAXOVERLAY 8
// means of death
typedef enum {
MOD_UNKNOWN,
MOD_SHOTGUN,
MOD_GAUNTLET,
MOD_MACHINEGUN,
MOD_GRENADE,
MOD_GRENADE_SPLASH,
MOD_ROCKET,
MOD_ROCKET_SPLASH,
MOD_RAILGUN,
MOD_LIGHTNING,
MOD_BFG,
MOD_BFG_SPLASH,
// (SA) modified wolf weap mods
MOD_KNIFE,
MOD_KNIFE2,
MOD_KNIFE_STEALTH,
MOD_LUGER,
MOD_COLT,
MOD_MP40,
MOD_THOMPSON,
MOD_STEN,
MOD_MAUSER,
MOD_SNIPERRIFLE,
MOD_GARAND,
MOD_SNOOPERSCOPE,
MOD_SILENCER, //----(SA)
MOD_AKIMBO, //----(SA)
MOD_BAR, //----(SA)
MOD_FG42,
MOD_FG42SCOPE,
MOD_PANZERFAUST,
MOD_ROCKET_LAUNCHER,
MOD_GRENADE_LAUNCHER,
MOD_VENOM,
MOD_VENOM_FULL,
MOD_FLAMETHROWER,
MOD_TESLA,
MOD_SPEARGUN,
MOD_SPEARGUN_CO2,
MOD_GRENADE_PINEAPPLE,
MOD_CROSS,
// end
MOD_MORTAR,
MOD_MORTAR_SPLASH,
MOD_KICKED,
MOD_GRABBER,
MOD_DYNAMITE,
MOD_DYNAMITE_SPLASH,
MOD_AIRSTRIKE, // JPW NERVE
MOD_SYRINGE, // JPW NERVE
MOD_AMMO, // JPW NERVE
MOD_ARTY, // JPW NERVE
MOD_WATER,
MOD_SLIME,
MOD_LAVA,
MOD_CRUSH,
MOD_TELEFRAG,
MOD_FALLING,
MOD_SUICIDE,
MOD_TARGET_LASER,
MOD_TRIGGER_HURT,
MOD_GRAPPLE,
MOD_EXPLOSIVE,
MOD_POISONGAS,
// RF, AI attacks
MOD_ZOMBIESPIT,
MOD_ZOMBIESPIT_SPLASH,
MOD_ZOMBIESPIRIT,
MOD_ZOMBIESPIRIT_SPLASH,
MOD_LOPER_LEAP,
MOD_LOPER_GROUND,
MOD_LOPER_HIT,
// JPW NERVE multiplayer class-specific MODs
MOD_LT_AMMO,
MOD_LT_AIRSTRIKE,
MOD_ENGINEER, // not sure if we'll use
MOD_MEDIC, // these like this or not
//
MOD_BAT
} meansOfDeath_t;
//---------------------------------------------------------
// gitem_t->type
typedef enum {
IT_BAD,
IT_WEAPON, // EFX: rotate + upscale + minlight
IT_AMMO, // EFX: rotate
IT_ARMOR, // EFX: rotate + minlight
IT_HEALTH, // EFX: static external sphere + rotating internal
IT_POWERUP, // instant on, timer based
// EFX: rotate + external ring that rotates
IT_HOLDABLE, // single use, holdable item
// EFX: rotate + bob
IT_KEY,
IT_TREASURE, // gold bars, etc. things that can be picked up and counted for a tally at end-level
IT_CLIPBOARD, // 'clipboard' used as a general term for 'popup' items where you pick up the item and it pauses and opens a menu
IT_TEAM
} itemType_t;
#define MAX_ITEM_MODELS 5
#define MAX_ITEM_ICONS 4
// JOSEPH 4-17-00
typedef struct gitem_s {
char *classname; // spawning name
char *pickup_sound;
char *world_model[MAX_ITEM_MODELS];
char *icon;
char *ammoicon;
char *pickup_name; // for printing on pickup
int quantity; // for ammo how much, or duration of powerup (value not necessary for ammo/health. that value set in gameskillnumber[] below)
itemType_t giType; // IT_* flags
int giTag;
int giAmmoIndex; // type of weapon ammo this uses. (ex. WP_MP40 and WP_LUGER share 9mm ammo, so they both have WP_LUGER for giAmmoIndex)
int giClipIndex; // which clip this weapon uses. this allows the sniper rifle to use the same clip as the garand, etc.
char *precaches; // string of all models and images this item will use
char *sounds; // string of all sounds this item will use
int gameskillnumber[5];
} gitem_t;
// END JOSEPH
// included in both the game dll and the client
extern gitem_t bg_itemlist[];
extern int bg_numItems;
gitem_t *BG_FindItem( const char *pickupName );
gitem_t *BG_FindItemForWeapon( weapon_t weapon );
gitem_t *BG_FindItemForPowerup( powerup_t pw );
gitem_t *BG_FindItemForHoldable( holdable_t pw );
gitem_t *BG_FindItemForAmmo( int weapon );
gitem_t *BG_FindItemForKey( wkey_t k, int *index );
weapon_t BG_FindAmmoForWeapon( weapon_t weapon );
weapon_t BG_FindClipForWeapon( weapon_t weapon );
qboolean BG_AkimboFireSequence( playerState_t *ps ); //----(SA) added
#define ITEM_INDEX( x ) ( ( x ) - bg_itemlist )
qboolean BG_CanItemBeGrabbed( const entityState_t *ent, const playerState_t *ps );
// g_dmflags->integer flags
#define DF_NO_FALLING 8
#define DF_FIXED_FOV 16
#define DF_NO_FOOTSTEPS 32
#define DF_NO_WEAPRELOAD 64
// content masks
#define MASK_ALL ( -1 )
#define MASK_SOLID ( CONTENTS_SOLID )
#define MASK_PLAYERSOLID ( CONTENTS_SOLID | CONTENTS_PLAYERCLIP | CONTENTS_BODY )
#define MASK_DEADSOLID ( CONTENTS_SOLID | CONTENTS_PLAYERCLIP )
#define MASK_WATER ( CONTENTS_WATER | CONTENTS_LAVA | CONTENTS_SLIME )
//#define MASK_OPAQUE (CONTENTS_SOLID|CONTENTS_SLIME|CONTENTS_LAVA)
#define MASK_OPAQUE ( CONTENTS_SOLID | CONTENTS_LAVA ) //----(SA) modified since slime is no longer deadly
#define MASK_SHOT ( CONTENTS_SOLID | CONTENTS_BODY | CONTENTS_CORPSE )
#define MASK_MISSILESHOT ( MASK_SHOT | CONTENTS_MISSILECLIP )
//
// entityState_t->eType
//
typedef enum {
ET_GENERAL,
ET_PLAYER,
ET_ITEM,
ET_MISSILE,
ET_MOVER,
ET_BEAM,
ET_PORTAL,
ET_SPEAKER,
ET_PUSH_TRIGGER,
ET_TELEPORT_TRIGGER,
ET_INVISIBLE,
ET_GRAPPLE, // grapple hooked on wall
ET_CONCUSSIVE_TRIGGER, // JPW NERVE trigger for concussive dust particles
ET_OID_TRIGGER, // DHM - Nerve :: Objective Info Display
ET_EXPLOSIVE_INDICATOR, // NERVE - SMF
//---- (SA) Wolf
ET_EXPLOSIVE, // brush that will break into smaller bits when damaged
ET_EF_TESLA,
ET_EF_SPOTLIGHT,
ET_EFFECT3,
ET_ALARMBOX,
ET_CORONA,
ET_TRAP,
ET_GAMEMODEL, // misc_gamemodel. similar to misc_model, but it's a dynamic model so we have LOD
ET_FOOTLOCKER, //----(SA) added
//---- end
ET_FLAMEBARREL,
ET_FP_PARTS,
// FIRE PROPS
ET_FIRE_COLUMN,
ET_FIRE_COLUMN_SMOKE,
ET_RAMJET,
ET_FLAMETHROWER_CHUNK, // DHM - NERVE :: Used in server side collision detection for flamethrower
ET_EXPLO_PART,
ET_PROP,
ET_BAT,
ET_AI_EFFECT,
ET_CAMERA,
ET_MOVERSCALED,
ET_CORPSE, // Arnout: dead player
ET_SMOKER, // Arnout: target_smoke entity
ET_TEMPHEAD, // Gordon: temporary head for clients for bullet traces
ET_MG42_BARREL, // Arnout: MG42 barrel
ET_EVENTS // any of the EV_* events can be added freestanding
// by setting eType to ET_EVENTS + eventNum
// this avoids having to set eFlags and eventNum
} entityType_t;
// cursorhints (stored in ent->s.dmgFlags since that's only used for players at the moment)
typedef enum {
HINT_NONE, // reserved
HINT_FORCENONE, // reserved
HINT_PLAYER,
HINT_ACTIVATE,
HINT_DOOR,
HINT_DOOR_ROTATING,
HINT_DOOR_LOCKED,
HINT_DOOR_ROTATING_LOCKED,
HINT_MG42,
HINT_BREAKABLE,
HINT_BREAKABLE_DYNAMITE,
HINT_CHAIR,
HINT_ALARM,
HINT_HEALTH,
HINT_TREASURE,
HINT_KNIFE,
HINT_LADDER,
HINT_BUTTON,
HINT_WATER,
HINT_CAUTION,
HINT_DANGER,
HINT_SECRET,
HINT_QUESTION,
HINT_EXCLAMATION,
HINT_CLIPBOARD,
HINT_WEAPON,
HINT_AMMO,
HINT_ARMOR,
HINT_POWERUP,
HINT_HOLDABLE,
HINT_INVENTORY,
HINT_SCENARIC,
HINT_EXIT,
HINT_PLYR_FRIEND,
HINT_PLYR_NEUTRAL,
HINT_PLYR_ENEMY,
HINT_PLYR_UNKNOWN,
HINT_BUILD, // DHM - Nerve
HINT_DISARM, // DHM - Nerve
HINT_REVIVE, // DHM - Nerve
HINT_DYNAMITE, // DHM - Nerve
HINT_BAD_USER, // invisible user with no target
HINT_NUM_HINTS
} hintType_t;
void BG_EvaluateTrajectory( const trajectory_t *tr, int atTime, vec3_t result );
void BG_EvaluateTrajectoryDelta( const trajectory_t *tr, int atTime, vec3_t result );
void BG_GetMarkDir( const vec3_t dir, const vec3_t normal, vec3_t out );
void BG_AddPredictableEventToPlayerstate( int newEvent, int eventParm, playerState_t *ps );
//void BG_TouchJumpPad( playerState_t *ps, entityState_t *jumppad );
void BG_PlayerStateToEntityState( playerState_t *ps, entityState_t *s, qboolean snap );
void BG_PlayerStateToEntityStateExtraPolate( playerState_t *ps, entityState_t *s, int time, qboolean snap );
qboolean BG_WeaponInWolfMP( int weapon );
qboolean BG_PlayerTouchesItem( playerState_t *ps, entityState_t *item, int atTime );
qboolean BG_PlayerSeesItem( playerState_t *ps, entityState_t *item, int atTime );
//----(SA) removed PM_ammoNeeded 11/27/00
void PM_ClipVelocity( vec3_t in, vec3_t normal, vec3_t out, float overbounce );
#define ARENAS_PER_TIER 4
#define MAX_ARENAS 64
#define MAX_ARENAS_TEXT 8192
#define MAX_BOTS 64
#define MAX_BOTS_TEXT 8192
typedef enum {
FOOTSTEP_NORMAL,
FOOTSTEP_BOOT,
FOOTSTEP_FLESH,
FOOTSTEP_MECH,
FOOTSTEP_ENERGY,
FOOTSTEP_METAL,
FOOTSTEP_WOOD,
FOOTSTEP_GRASS,
FOOTSTEP_GRAVEL,
// END JOSEPH
FOOTSTEP_SPLASH,
FOOTSTEP_ROOF,
FOOTSTEP_SNOW,
FOOTSTEP_CARPET, //----(SA) added
FOOTSTEP_ELITE_STEP,
FOOTSTEP_ELITE_METAL,
FOOTSTEP_ELITE_ROOF,
FOOTSTEP_ELITE_WOOD,
FOOTSTEP_ELITE_GRAVEL,
FOOTSTEP_SUPERSOLDIER_METAL,
FOOTSTEP_SUPERSOLDIER_GRASS,
FOOTSTEP_SUPERSOLDIER_GRAVEL,
FOOTSTEP_SUPERSOLDIER_STEP,
FOOTSTEP_SUPERSOLDIER_WOOD,
FOOTSTEP_LOPER_METAL,
FOOTSTEP_LOPER_STEP,
FOOTSTEP_LOPER_WOOD,
FOOTSTEP_ZOMBIE_GRAVEL,
FOOTSTEP_ZOMBIE_STEP,
FOOTSTEP_ZOMBIE_WOOD,
FOOTSTEP_TOTAL
} footstep_t;
//==================================================================
// New Animation Scripting Defines
#define MAX_ANIMSCRIPT_MODELS 32
#define MAX_ANIMSCRIPT_ITEMS_PER_MODEL 2048
#define MAX_MODEL_ANIMATIONS 512 // animations per model
#define MAX_ANIMSCRIPT_ANIMCOMMANDS 8
#define MAX_ANIMSCRIPT_ITEMS 128
// NOTE: these must all be in sync with string tables in bg_animation.c
typedef enum
{
ANIM_MT_UNUSED,
ANIM_MT_IDLE,
ANIM_MT_IDLECR,
ANIM_MT_WALK,
ANIM_MT_WALKBK,
ANIM_MT_WALKCR,
ANIM_MT_WALKCRBK,
ANIM_MT_RUN,
ANIM_MT_RUNBK,
ANIM_MT_SWIM,
ANIM_MT_SWIMBK,
ANIM_MT_STRAFERIGHT,
ANIM_MT_STRAFELEFT,
ANIM_MT_TURNRIGHT,
ANIM_MT_TURNLEFT,
ANIM_MT_CLIMBUP,
ANIM_MT_CLIMBDOWN,
ANIM_MT_FALLEN, // DHM - Nerve :: dead, before limbo
NUM_ANIM_MOVETYPES
} scriptAnimMoveTypes_t;
typedef enum
{
ANIM_ET_PAIN,
ANIM_ET_DEATH,
ANIM_ET_FIREWEAPON,
ANIM_ET_JUMP,
ANIM_ET_JUMPBK,
ANIM_ET_LAND,
ANIM_ET_DROPWEAPON,
ANIM_ET_RAISEWEAPON,
ANIM_ET_CLIMB_MOUNT,
ANIM_ET_CLIMB_DISMOUNT,
ANIM_ET_RELOAD,
ANIM_ET_PICKUPGRENADE,
ANIM_ET_KICKGRENADE,
ANIM_ET_QUERY,
ANIM_ET_INFORM_FRIENDLY_OF_ENEMY,
ANIM_ET_KICK,
ANIM_ET_REVIVE,
ANIM_ET_FIRSTSIGHT,
ANIM_ET_ROLL,
ANIM_ET_FLIP,
ANIM_ET_DIVE,
ANIM_ET_PRONE_TO_CROUCH,
ANIM_ET_BULLETIMPACT,
ANIM_ET_INSPECTSOUND,
ANIM_ET_SECONDLIFE,
NUM_ANIM_EVENTTYPES
} scriptAnimEventTypes_t;
typedef enum
{
ANIM_BP_UNUSED,
ANIM_BP_LEGS,
ANIM_BP_TORSO,
ANIM_BP_BOTH,
NUM_ANIM_BODYPARTS
} animBodyPart_t;
typedef enum
{
ANIM_COND_WEAPON,
ANIM_COND_ENEMY_POSITION,
ANIM_COND_ENEMY_WEAPON,
ANIM_COND_UNDERWATER,
ANIM_COND_MOUNTED,
ANIM_COND_MOVETYPE,
ANIM_COND_UNDERHAND,
ANIM_COND_LEANING,
ANIM_COND_IMPACT_POINT,
ANIM_COND_CROUCHING,
ANIM_COND_STUNNED,
ANIM_COND_FIRING,
ANIM_COND_SHORT_REACTION,
ANIM_COND_ENEMY_TEAM,
ANIM_COND_PARACHUTE,
ANIM_COND_CHARGING,
ANIM_COND_SECONDLIFE,
ANIM_COND_HEALTH_LEVEL,
NUM_ANIM_CONDITIONS
} scriptAnimConditions_t;
//-------------------------------------------------------------------
typedef struct
{
char *string;
int hash;
} animStringItem_t;
typedef struct
{
int index; // reference into the table of possible conditionals
int value[2]; // can store anything from weapon bits, to position enums, etc
} animScriptCondition_t;
typedef struct
{
short int bodyPart[2]; // play this animation on legs/torso/both
short int animIndex[2]; // animation index in our list of animations
short int animDuration[2];
short int soundIndex;
} animScriptCommand_t;
typedef struct
{
int numConditions;
animScriptCondition_t conditions[NUM_ANIM_CONDITIONS];
int numCommands;
animScriptCommand_t commands[MAX_ANIMSCRIPT_ANIMCOMMANDS];
} animScriptItem_t;
typedef struct
{
int numItems;
animScriptItem_t *items[MAX_ANIMSCRIPT_ITEMS]; // pointers into a global list of items
} animScript_t;
typedef struct
{
char modelname[MAX_QPATH]; // name of the model
// parsed from the start of the cfg file
gender_t gender;
footstep_t footsteps;
vec3_t headOffset;
int version;
qboolean isSkeletal;
// parsed from cfg file
animation_t animations[MAX_MODEL_ANIMATIONS]; // anim names, frame ranges, etc
headAnimation_t headAnims[MAX_HEAD_ANIMS];
int numAnimations, numHeadAnims;
// parsed from script file
animScript_t scriptAnims[MAX_AISTATES][NUM_ANIM_MOVETYPES]; // locomotive anims, etc
animScript_t scriptCannedAnims[MAX_AISTATES][NUM_ANIM_MOVETYPES]; // played randomly
animScript_t scriptStateChange[MAX_AISTATES][MAX_AISTATES]; // state change events
animScript_t scriptEvents[NUM_ANIM_EVENTTYPES]; // events that trigger special anims
// global list of script items for this model
animScriptItem_t scriptItems[MAX_ANIMSCRIPT_ITEMS_PER_MODEL];
int numScriptItems;
} animModelInfo_t;
// this is the main structure that is duplicated on the client and server
typedef struct
{
int clientModels[MAX_CLIENTS]; // so we know which model each client is using
animModelInfo_t modelInfo[MAX_ANIMSCRIPT_MODELS];
int clientConditions[MAX_CLIENTS][NUM_ANIM_CONDITIONS][2];
//
// pointers to functions from the owning module
//
// TTimo: constify the arg
int ( *soundIndex )( const char *name );
void ( *playSound )( int soundIndex, vec3_t org, int clientNum );
} animScriptData_t;
//------------------------------------------------------------------
// Conditional Constants
typedef enum
{
POSITION_UNUSED,
POSITION_BEHIND,
POSITION_INFRONT,
POSITION_RIGHT,
POSITION_LEFT,
NUM_ANIM_COND_POSITIONS
} animScriptPosition_t;
typedef enum
{
MOUNTED_UNUSED,
MOUNTED_MG42,
NUM_ANIM_COND_MOUNTED
} animScriptMounted_t;
typedef enum
{
LEANING_UNUSED,
LEANING_RIGHT,
LEANING_LEFT,
NUM_ANIM_COND_LEANING
} animScriptLeaning_t;
typedef enum
{
IMPACTPOINT_UNUSED,
IMPACTPOINT_HEAD,
IMPACTPOINT_CHEST,
IMPACTPOINT_GUT,
IMPACTPOINT_GROIN,
IMPACTPOINT_SHOULDER_RIGHT,
IMPACTPOINT_SHOULDER_LEFT,
IMPACTPOINT_KNEE_RIGHT,
IMPACTPOINT_KNEE_LEFT,
NUM_ANIM_COND_IMPACTPOINT
} animScriptImpactPoint_t;
//------------------------------------------------------------------
// Global Function Decs
animModelInfo_t *BG_ModelInfoForModelname( char *modelname );
qboolean BG_AnimParseAnimConfig( animModelInfo_t *animModelInfo, const char *filename, const char *input );
void BG_AnimParseAnimScript( animModelInfo_t *modelInfo, animScriptData_t *scriptData, int client, char *filename, char *input );
int BG_AnimScriptAnimation( playerState_t *ps, aistateEnum_t state, scriptAnimMoveTypes_t movetype, qboolean isContinue );
int BG_AnimScriptCannedAnimation( playerState_t *ps, aistateEnum_t state );
int BG_AnimScriptStateChange( playerState_t *ps, aistateEnum_t newState, aistateEnum_t oldState );
int BG_AnimScriptEvent( playerState_t *ps, scriptAnimEventTypes_t event, qboolean isContinue, qboolean force );
int BG_IndexForString( char *token, animStringItem_t *strings, qboolean allowFail );
int BG_PlayAnimName( playerState_t *ps, char *animName, animBodyPart_t bodyPart, qboolean setTimer, qboolean isContinue, qboolean force );
qboolean BG_ValidAnimScript( int clientNum );
char *BG_GetAnimString( int client, int anim );
void BG_UpdateConditionValue( int client, int condition, int value, qboolean checkConversion );
int BG_GetConditionValue( int client, int condition, qboolean checkConversion );
int BG_GetAnimScriptAnimation( int client, aistateEnum_t state, scriptAnimMoveTypes_t movetype );
void BG_AnimUpdatePlayerStateConditions( pmove_t *pmove );
int BG_AnimationIndexForString( char *string, int client );
animation_t *BG_AnimationForString( char *string, animModelInfo_t *modelInfo );
animation_t *BG_GetAnimationForIndex( int client, int index );
int BG_GetAnimScriptEvent( playerState_t *ps, scriptAnimEventTypes_t event );
void QDECL BG_AnimParseError( const char *msg, ... ) __attribute__ ((format (printf, 1, 2)));
extern animStringItem_t animStateStr[];
extern animStringItem_t animBodyPartsStr[];
|