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 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816
|
/*
===========================================================================
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.
===========================================================================
*/
#include "g_local.h"
level_locals_t level;
typedef struct {
vmCvar_t *vmCvar;
char *cvarName;
char *defaultString;
int cvarFlags;
int modificationCount; // for tracking changes
qboolean trackChange; // track this variable, and announce if changed
qboolean teamShader; // track and if changed, update shader state
} cvarTable_t;
gentity_t g_entities[MAX_GENTITIES];
gclient_t g_clients[MAX_CLIENTS];
gentity_t *g_camEnt = NULL; //----(SA) script camera
// Rafael gameskill
extern int bg_pmove_gameskill_integer;
// done
vmCvar_t g_gametype;
// Rafael gameskill
vmCvar_t g_gameskill;
// done
vmCvar_t g_dmflags;
vmCvar_t g_fraglimit;
vmCvar_t g_timelimit;
vmCvar_t g_capturelimit;
vmCvar_t g_friendlyFire;
vmCvar_t g_password;
vmCvar_t g_maxclients;
vmCvar_t g_maxGameClients;
vmCvar_t g_minGameClients; // NERVE - SMF
vmCvar_t g_dedicated;
vmCvar_t g_speed;
vmCvar_t g_gravity;
vmCvar_t g_cheats;
vmCvar_t g_knockback;
vmCvar_t g_quadfactor;
vmCvar_t g_forcerespawn;
vmCvar_t g_inactivity;
vmCvar_t g_debugMove;
vmCvar_t g_debugDamage;
vmCvar_t g_debugAlloc;
vmCvar_t g_debugBullets; //----(SA) added
vmCvar_t g_weaponRespawn;
vmCvar_t g_motd;
vmCvar_t g_synchronousClients;
vmCvar_t g_warmup;
// NERVE - SMF
vmCvar_t g_warmupLatch;
vmCvar_t g_nextTimeLimit;
vmCvar_t g_showHeadshotRatio;
vmCvar_t g_userTimeLimit;
vmCvar_t g_userAlliedRespawnTime;
vmCvar_t g_userAxisRespawnTime;
vmCvar_t g_currentRound;
vmCvar_t g_noTeamSwitching;
vmCvar_t g_altStopwatchMode;
vmCvar_t g_gamestate;
vmCvar_t g_swapteams;
// -NERVE - SMF
vmCvar_t g_restarted;
vmCvar_t g_logfile;
vmCvar_t g_logfileSync;
vmCvar_t g_podiumDist;
vmCvar_t g_podiumDrop;
vmCvar_t g_voteFlags;
vmCvar_t g_complaintlimit; // DHM - Nerve
vmCvar_t g_maxlives; // DHM - Nerve
vmCvar_t g_voiceChatsAllowed; // DHM - Nerve
vmCvar_t g_alliedmaxlives; // Xian
vmCvar_t g_axismaxlives; // Xian
vmCvar_t g_fastres; // Xian
vmCvar_t g_fastResMsec;
vmCvar_t g_knifeonly; // Xian
vmCvar_t g_enforcemaxlives; // Xian
vmCvar_t g_needpass;
vmCvar_t g_weaponTeamRespawn;
vmCvar_t g_doWarmup;
vmCvar_t g_teamAutoJoin;
vmCvar_t g_teamForceBalance;
vmCvar_t g_listEntity;
vmCvar_t g_banIPs;
vmCvar_t g_filterBan;
vmCvar_t g_rankings;
vmCvar_t g_enableBreath;
vmCvar_t g_smoothClients;
vmCvar_t pmove_fixed;
vmCvar_t pmove_msec;
// Rafael
vmCvar_t g_autoactivate;
vmCvar_t g_testPain;
vmCvar_t g_missionStats;
vmCvar_t ai_scriptName; // name of AI script file to run (instead of default for that map)
vmCvar_t g_scriptName; // name of script file to run (instead of default for that map)
vmCvar_t g_developer;
vmCvar_t g_userAim;
vmCvar_t g_forceModel;
vmCvar_t g_mg42arc;
vmCvar_t g_footstepAudibleRange;
// JPW NERVE multiplayer reinforcement times
vmCvar_t g_redlimbotime;
vmCvar_t g_bluelimbotime;
// charge times for character class special weapons
vmCvar_t g_medicChargeTime;
vmCvar_t g_engineerChargeTime;
vmCvar_t g_LTChargeTime;
vmCvar_t g_soldierChargeTime;
// screen shakey magnitude multiplier
vmCvar_t sv_screenshake;
// jpw
// Gordon
vmCvar_t g_antilag;
vmCvar_t mod_url;
vmCvar_t url;
vmCvar_t g_dbgRevive;
vmCvar_t g_localTeamPref;
cvarTable_t gameCvarTable[] = {
// don't override the cheat state set by the system
{ &g_cheats, "sv_cheats", "", 0, qfalse },
// noset vars
{ NULL, "gamename", GAMEVERSION, CVAR_SERVERINFO | CVAR_ROM, 0, qfalse },
{ NULL, "gamedate", PRODUCT_DATE, CVAR_ROM, 0, qfalse },
{ &g_restarted, "g_restarted", "0", CVAR_ROM, 0, qfalse },
// latched vars
// DHM - Nerve :: default to GT_WOLF
{ &g_gametype, "g_gametype", "5", CVAR_SERVERINFO | CVAR_LATCH, 0, qfalse },
// Rafael gameskill
{ &g_gameskill, "g_gameskill", "3", CVAR_SERVERINFO | CVAR_LATCH, 0, qfalse },
// done
// JPW NERVE multiplayer stuffs
{ &sv_screenshake, "sv_screenshake", "5", CVAR_ARCHIVE,0,qfalse},
{ &g_redlimbotime, "g_redlimbotime", "30000", CVAR_SERVERINFO | CVAR_LATCH, 0, qfalse },
{ &g_bluelimbotime, "g_bluelimbotime", "30000", CVAR_SERVERINFO | CVAR_LATCH, 0, qfalse },
{ &g_medicChargeTime, "g_medicChargeTime", "45000", CVAR_SERVERINFO | CVAR_LATCH, 0, qfalse },
{ &g_engineerChargeTime, "g_engineerChargeTime", "30000", CVAR_SERVERINFO | CVAR_LATCH, 0, qfalse },
{ &g_LTChargeTime, "g_LTChargeTime", "40000", CVAR_SERVERINFO | CVAR_LATCH, 0, qfalse },
{ &g_soldierChargeTime, "g_soldierChargeTime", "20000", CVAR_SERVERINFO | CVAR_LATCH, 0, qfalse },
// jpw
{ &g_maxclients, "sv_maxclients", "20", CVAR_SERVERINFO | CVAR_LATCH | CVAR_ARCHIVE, 0, qfalse }, // NERVE - SMF - made 20 from 8
{ &g_maxGameClients, "g_maxGameClients", "0", CVAR_SERVERINFO | CVAR_LATCH | CVAR_ARCHIVE, 0, qfalse },
{ &g_minGameClients, "g_minGameClients", "8", CVAR_SERVERINFO, 0, qfalse }, // NERVE - SMF
// change anytime vars
{ &g_dmflags, "dmflags", "0", /*CVAR_SERVERINFO |*/ CVAR_ARCHIVE, 0, qtrue },
{ &g_fraglimit, "fraglimit", "0", /*CVAR_SERVERINFO |*/ CVAR_ARCHIVE | CVAR_NORESTART, 0, qtrue },
{ &g_timelimit, "timelimit", "0", CVAR_SERVERINFO | CVAR_ARCHIVE | CVAR_NORESTART, 0, qtrue },
{ &g_capturelimit, "capturelimit", "8", /*CVAR_SERVERINFO |*/ CVAR_ARCHIVE | CVAR_NORESTART, 0, qtrue },
{ &g_synchronousClients, "g_synchronousClients", "0", CVAR_SYSTEMINFO, 0, qfalse },
{ &g_friendlyFire, "g_friendlyFire", "1", CVAR_SERVERINFO | CVAR_ARCHIVE, 0, qtrue },
{ &g_teamAutoJoin, "g_teamAutoJoin", "0", CVAR_ARCHIVE },
{ &g_teamForceBalance, "g_teamForceBalance", "0", CVAR_ARCHIVE }, // NERVE - SMF - merge from team arena
{ &g_warmup, "g_warmup", "20", CVAR_ARCHIVE, 0, qtrue },
{ &g_doWarmup, "g_doWarmup", "1", CVAR_ARCHIVE, 0, qtrue },
// NERVE - SMF
{ &g_warmupLatch, "g_warmupLatch", "1", 0, 0, qfalse },
{ &g_nextTimeLimit, "g_nextTimeLimit", "0", CVAR_WOLFINFO, 0, qfalse },
{ &g_currentRound, "g_currentRound", "0", CVAR_WOLFINFO, 0, qfalse },
{ &g_altStopwatchMode, "g_altStopwatchMode", "0", CVAR_ARCHIVE, 0, qtrue },
{ &g_gamestate, "gamestate", "-1", CVAR_WOLFINFO | CVAR_ROM, 0, qfalse },
{ &g_noTeamSwitching, "g_noTeamSwitching", "0", CVAR_ARCHIVE, 0, qtrue },
{ &g_showHeadshotRatio, "g_showHeadshotRatio", "0", 0, 0, qfalse },
{ &g_userTimeLimit, "g_userTimeLimit", "0", 0, 0, qfalse },
{ &g_userAlliedRespawnTime, "g_userAlliedRespawnTime", "0", 0, 0, qfalse },
{ &g_userAxisRespawnTime, "g_userAxisRespawnTime", "0", 0, 0, qfalse },
{ &g_swapteams, "g_swapteams", "0", CVAR_ROM, 0, qfalse },
// -NERVE - SMF
{ &g_logfile, "g_log", "games.log", CVAR_ARCHIVE, 0, qfalse },
{ &g_logfileSync, "g_logsync", "0", CVAR_ARCHIVE, 0, qfalse },
{ &g_password, "g_password", "", CVAR_USERINFO, 0, qfalse },
{ &g_banIPs, "g_banIPs", "", CVAR_ARCHIVE, 0, qfalse },
// show_bug.cgi?id=500
{ &g_filterBan, "g_filterBan", "1", CVAR_ARCHIVE, 0, qfalse },
{ &g_dedicated, "dedicated", "0", 0, 0, qfalse },
{ &g_speed, "g_speed", "320", 0, 0, qtrue },
{ &g_gravity, "g_gravity", "800", 0, 0, qtrue },
{ &g_knockback, "g_knockback", "1000", 0, 0, qtrue },
{ &g_quadfactor, "g_quadfactor", "3", 0, 0, qtrue },
{ &g_weaponRespawn, "g_weaponrespawn", "5", 0, 0, qtrue },
{ &g_weaponTeamRespawn, "g_weaponTeamRespawn", "30", 0, 0, qtrue },
{ &g_forcerespawn, "g_forcerespawn", "0", 0, 0, qtrue },
{ &g_inactivity, "g_inactivity", "0", 0, 0, qtrue },
{ &g_debugMove, "g_debugMove", "0", 0, 0, qfalse },
{ &g_debugDamage, "g_debugDamage", "0", CVAR_CHEAT, 0, qfalse },
{ &g_debugAlloc, "g_debugAlloc", "0", 0, 0, qfalse },
{ &g_debugBullets, "g_debugBullets", "0", CVAR_CHEAT, 0, qfalse}, //----(SA) added
{ &g_motd, "g_motd", "", CVAR_ARCHIVE, 0, qfalse },
{ &g_podiumDist, "g_podiumDist", "80", 0, 0, qfalse },
{ &g_podiumDrop, "g_podiumDrop", "70", 0, 0, qfalse },
{ &g_voteFlags, "g_voteFlags", "255", CVAR_ARCHIVE | CVAR_SERVERINFO, 0, qfalse },
{ &g_listEntity, "g_listEntity", "0", 0, 0, qfalse },
{ &g_complaintlimit, "g_complaintlimit", "3", CVAR_ARCHIVE, 0, qtrue}, // DHM - Nerve
{ &g_maxlives, "g_maxlives", "0", CVAR_ARCHIVE | CVAR_LATCH | CVAR_SERVERINFO, 0, qtrue}, // DHM - Nerve
{ &g_voiceChatsAllowed, "g_voiceChatsAllowed", "4", CVAR_ARCHIVE, 0, qfalse}, // DHM - Nerve
{ &g_alliedmaxlives, "g_alliedmaxlives", "0", CVAR_LATCH | CVAR_SERVERINFO, 0, qtrue}, // Xian
{ &g_axismaxlives, "g_axismaxlives", "0", CVAR_LATCH | CVAR_SERVERINFO, 0, qtrue}, // Xian
{ &g_fastres, "g_fastres", "0", CVAR_ARCHIVE, 0, qtrue}, // Xian - Fast Medic Resing
{ &g_fastResMsec, "g_fastResMsec", "1000", CVAR_ARCHIVE, 0, qtrue}, // Xian - Fast Medic Resing
{ &g_knifeonly, "g_knifeonly", "0", 0, 0, qtrue}, // Xian - Fast Medic Resing
{ &g_enforcemaxlives, "g_enforcemaxlives", "1", CVAR_ARCHIVE, 0, qtrue}, // Xian - Gestapo enforce maxlives stuff by temp banning
{ &g_enableBreath, "g_enableBreath", "1", CVAR_SERVERINFO, 0, qtrue},
{ &g_testPain, "g_testPain", "0", CVAR_CHEAT, 0, qfalse },
{ &g_missionStats, "g_missionStats", "0", CVAR_ROM, 0, qfalse },
{ &g_developer, "developer", "0", CVAR_TEMP, 0, qfalse },
{ &g_rankings, "g_rankings", "0", 0, 0, qfalse},
{ &g_userAim, "g_userAim", "1", CVAR_CHEAT, 0, qfalse },
{ &g_smoothClients, "g_smoothClients", "1", 0, 0, qfalse},
{ &pmove_fixed, "pmove_fixed", "0", CVAR_SYSTEMINFO, 0, qfalse},
{ &pmove_msec, "pmove_msec", "8", CVAR_SYSTEMINFO, 0, qfalse},
{&g_mg42arc, "g_mg42arc", "0", CVAR_TEMP, 0, qfalse},
{&g_footstepAudibleRange, "g_footstepAudibleRange", "256", CVAR_CHEAT, 0, qfalse},
{&g_scriptName, "g_scriptName", "", CVAR_ROM, 0, qfalse},
{&ai_scriptName, "ai_scriptName", "", CVAR_ROM, 0, qfalse},
// points to the URL for mod information, should not be modified by server admin
{&mod_url, "mod_url", "", CVAR_SERVERINFO | CVAR_ROM, 0, qfalse},
// configured by the server admin, points to the web pages for the server
{&url, "URL", "", CVAR_SERVERINFO | CVAR_ARCHIVE, 0, qfalse},
{&g_antilag, "g_antilag", "0", CVAR_SERVERINFO | CVAR_ARCHIVE, 0, qfalse},
{&g_dbgRevive, "g_dbgRevive", "0", 0, 0, qfalse},
{ &g_localTeamPref, "g_localTeamPref", "", 0, 0, qfalse }
};
static int gameCvarTableSize = ARRAY_LEN( gameCvarTable );
void G_InitGame( int levelTime, int randomSeed, int restart );
void G_RunFrame( int levelTime );
void G_ShutdownGame( int restart );
void CheckExitRules( void );
// Ridah, Cast AI
qboolean AICast_VisibleFromPos( vec3_t srcpos, int srcnum,
vec3_t destpos, int destnum, qboolean updateVisPos );
qboolean AICast_CheckAttackAtPos( int entnum, int enemy, vec3_t pos, qboolean ducking, qboolean allowHitWorld );
void AICast_Init( void );
// done.
void G_RetrieveMoveSpeedsFromClient( int entnum, char *text );
/*
================
vmMain
This is the only way control passes into the module.
This must be the very first function compiled into the .q3vm file
================
*/
Q_EXPORT intptr_t vmMain( intptr_t command, intptr_t arg0, intptr_t arg1, intptr_t arg2, intptr_t arg3, intptr_t arg4, intptr_t arg5, intptr_t arg6 ) {
switch ( command ) {
case GAME_INIT:
G_InitGame( arg0, arg1, arg2 );
return 0;
case GAME_SHUTDOWN:
G_ShutdownGame( arg0 );
return 0;
case GAME_CLIENT_CONNECT:
return (intptr_t)ClientConnect( arg0, arg1, arg2 );
case GAME_CLIENT_THINK:
ClientThink( arg0 );
return 0;
case GAME_CLIENT_USERINFO_CHANGED:
ClientUserinfoChanged( arg0 );
return 0;
case GAME_CLIENT_DISCONNECT:
ClientDisconnect( arg0 );
return 0;
case GAME_CLIENT_BEGIN:
ClientBegin( arg0 );
return 0;
case GAME_CLIENT_COMMAND:
ClientCommand( arg0 );
return 0;
case GAME_RUN_FRAME:
G_RunFrame( arg0 );
return 0;
case GAME_CONSOLE_COMMAND:
return ConsoleCommand();
case BOTAI_START_FRAME:
return BotAIStartFrame( arg0 );
// Ridah, Cast AI
case AICAST_VISIBLEFROMPOS:
return AICast_VisibleFromPos( (float *)arg0, arg1, (float *)arg2, arg3, arg4 );
case AICAST_CHECKATTACKATPOS:
return AICast_CheckAttackAtPos( arg0, arg1, (float *)arg2, arg3, arg4 );
// done.
case GAME_RETRIEVE_MOVESPEEDS_FROM_CLIENT:
G_RetrieveMoveSpeedsFromClient( arg0, (char *)arg1 );
return 0;
}
return -1;
}
void QDECL G_Printf( const char *fmt, ... ) {
va_list argptr;
char text[1024];
va_start( argptr, fmt );
Q_vsnprintf( text, sizeof( text ), fmt, argptr );
va_end( argptr );
trap_Print( text );
}
void QDECL G_DPrintf( const char *fmt, ... ) {
va_list argptr;
char text[1024];
if ( !g_developer.integer ) {
return;
}
va_start( argptr, fmt );
Q_vsnprintf( text, sizeof( text ), fmt, argptr );
va_end( argptr );
trap_Print( text );
}
void QDECL G_Error( const char *fmt, ... ) {
va_list argptr;
char text[1024];
va_start( argptr, fmt );
Q_vsnprintf( text, sizeof( text ), fmt, argptr );
va_end( argptr );
trap_Error( text );
}
#define CH_KNIFE_DIST 48 // from g_weapon.c
#define CH_LADDER_DIST 100
#define CH_WATER_DIST 100
#define CH_BREAKABLE_DIST 64
#define CH_DOOR_DIST 96
#define CH_ACTIVATE_DIST 96
#define CH_EXIT_DIST 256
#define CH_MAX_DIST 256 // use the largest value from above
#define CH_MAX_DIST_ZOOM 8192 // max dist for zooming hints
/*
==============
G_CheckForCursorHints
non-AI's check for cursor hint contacts
server-side because there's info we want to show that the client
just doesn't know about. (health or other info of an explosive,invisible_users,items,etc.)
traceEnt is the ent hit by the trace, checkEnt is the ent that is being
checked against (in case the traceent was an invisible_user or something)
==============
*/
void G_CheckForCursorHints( gentity_t *ent ) {
vec3_t forward, right, up, offset, end;
trace_t *tr;
float dist;
gentity_t *checkEnt, *traceEnt = 0;
//gentity_t *traceEnt2 = 0; // JPW NERVE // TTimo unused
playerState_t *ps;
int hintType, hintDist, hintVal;
qboolean zooming;
int trace_contents; // DHM - Nerve
// FIXME: no need at all to do this trace/string comparison every frame.
// stagger it at least a little bit
// if(!servercursorhints)
// return;
if ( !ent->client ) {
return;
}
ps = &ent->client->ps;
if ( ps->aiChar != AICHAR_NONE ) {
return;
}
zooming = (qboolean)( ps->eFlags & EF_ZOOMING );
AngleVectors( ps->viewangles, forward, right, up );
VectorCopy( ps->origin, offset );
offset[2] += ps->viewheight;
// lean
if ( ps->leanf ) {
VectorMA( offset, ps->leanf, right, offset );
}
// SnapVector( offset );
if ( zooming ) {
VectorMA( offset, CH_MAX_DIST_ZOOM, forward, end );
} else {
VectorMA( offset, CH_MAX_DIST, forward, end );
}
tr = &ps->serverCursorHintTrace;
// DHM - Nerve
if ( g_gametype.integer == GT_SINGLE_PLAYER ) {
trace_contents = ( CONTENTS_TRIGGER | CONTENTS_SOLID | CONTENTS_PLAYERCLIP | CONTENTS_BODY );
} else {
trace_contents = ( CONTENTS_TRIGGER | CONTENTS_SOLID | CONTENTS_PLAYERCLIP | CONTENTS_BODY | CONTENTS_CORPSE );
}
trap_Trace( tr, offset, NULL, NULL, end, ps->clientNum, trace_contents );
// dhm - end
// reset all
hintType = ps->serverCursorHint = HINT_NONE;
hintVal = ps->serverCursorHintVal = 0;
if ( zooming ) {
dist = tr->fraction * CH_MAX_DIST_ZOOM;
hintDist = CH_MAX_DIST_ZOOM;
} else {
dist = tr->fraction * CH_MAX_DIST;
hintDist = CH_MAX_DIST;
}
if ( tr->fraction == 1 ) {
return;
}
traceEnt = &g_entities[tr->entityNum];
// DHM - Nerve :: Ignore trigger_objective_info
if ( ( ps->stats[ STAT_PLAYER_CLASS ] != PC_MEDIC && traceEnt->client )
|| !( strcmp( traceEnt->classname, "trigger_objective_info" ) )
|| !( strcmp( traceEnt->classname, "trigger_multiple" ) ) ) {
trap_Trace( tr, offset, NULL, NULL, end, traceEnt->s.number, trace_contents );
if ( zooming ) {
dist = tr->fraction * CH_MAX_DIST_ZOOM;
hintDist = CH_MAX_DIST_ZOOM;
} else {
dist = tr->fraction * CH_MAX_DIST;
hintDist = CH_MAX_DIST;
}
if ( tr->fraction == 1 ) {
return;
}
traceEnt = &g_entities[tr->entityNum];
}
//
// WORLD
//
if ( tr->entityNum == ENTITYNUM_WORLD ) {
if ( ( tr->contents & CONTENTS_WATER ) && !( ps->powerups[PW_BREATHER] ) ) {
hintDist = CH_WATER_DIST;
hintType = HINT_WATER;
}
// ladder
else if ( ( tr->surfaceFlags & SURF_LADDER ) && !( ps->pm_flags & PMF_LADDER ) ) {
hintDist = CH_LADDER_DIST;
hintType = HINT_LADDER;
}
}
//
// PEOPLE
//
else if ( tr->entityNum < MAX_CLIENTS ) {
// DHM - Nerve
if ( g_gametype.integer >= GT_WOLF ) {
// Show medics a syringe if they can revive someone
if ( traceEnt->client && traceEnt->client->sess.sessionTeam == ent->client->sess.sessionTeam
&& ps->stats[ STAT_PLAYER_CLASS ] == PC_MEDIC
&& traceEnt->client->ps.pm_type == PM_DEAD
&& !( traceEnt->client->ps.pm_flags & PMF_LIMBO ) ) {
hintDist = 48; // JPW NERVE matches weapon_syringe in g_weapon.c
hintType = HINT_REVIVE;
}
}
// dhm - Nerve
}
//
// OTHER ENTITIES
//
else {
checkEnt = traceEnt;
// check invisible_users first since you don't want to draw a hint based
// on that ent, but rather on what they are targeting.
// so find the target and set checkEnt to that to show the proper hint.
if ( traceEnt->s.eType == ET_GENERAL ) {
// ignore trigger_aidoor. can't just not trace for triggers, since I need invisible_users...
// damn, I would like to ignore some of these triggers though.
if ( !Q_stricmp( traceEnt->classname, "trigger_aidoor" ) ) {
return;
}
if ( !Q_stricmp( traceEnt->classname, "func_invisible_user" ) ) {
// DHM - Nerve :: Put this back in only in multiplayer
if ( g_gametype.integer >= GT_WOLF && traceEnt->s.dmgFlags ) { // hint icon specified in entity
hintType = traceEnt->s.dmgFlags;
hintDist = CH_ACTIVATE_DIST;
checkEnt = 0;
} else { // use target for hint icon
checkEnt = G_Find( NULL, FOFS( targetname ), traceEnt->target );
if ( !checkEnt ) { // no target found
hintType = HINT_BAD_USER;
hintDist = CH_MAX_DIST_ZOOM; // show this one from super far for debugging
}
}
}
}
if ( checkEnt ) {
if ( checkEnt->s.eType == ET_GENERAL || checkEnt->s.eType == ET_MG42_BARREL ) {
// this is effectively an 'exit' brush. they should be created with:
//
// classname = 'ai_trigger'
// ainame = 'player'
// target = 'endmap'
//
if ( !Q_stricmp( traceEnt->classname, "ai_trigger" ) ) {
if ( ( !Q_stricmp( traceEnt->aiName, "player" ) ) &&
( !Q_stricmp( traceEnt->target, "endmap" ) ) ) {
hintDist = CH_EXIT_DIST;
hintType = HINT_EXIT;
// show distance in the cursorhint bar
hintVal = (int)dist; // range for this hint is 256, so it happens to translate nicely
}
}
if ( ( // general mg42 hint conditions
!Q_stricmp( traceEnt->classname, "misc_mg42" ) ) &&
( ps->weapon != WP_SNIPERRIFLE ) && // JPW NERVE no hint if you're scoped in sniperwise
// ATVI #470
// mount hint conditions only, if busted MG42, no check
(
( traceEnt->health < 255 ) ||
(
!( ent->client->ps.pm_flags & PMF_DUCKED ) &&
( traceEnt->r.currentOrigin[2] - ent->r.currentOrigin[2] < 40 ) &&
( traceEnt->r.currentOrigin[2] - ent->r.currentOrigin[2] > 0 ) &&
!infront( traceEnt, ent )
)
)
) {
hintDist = CH_ACTIVATE_DIST;
hintType = HINT_MG42;
// JPW NERVE -- busted MG42 shouldn't show a use hint by default
if ( traceEnt->health <= 0 ) {
hintDist = 0;
hintType = HINT_FORCENONE;
ps->serverCursorHint = HINT_FORCENONE;
}
// jpw
// DHM - Nerve :: Engineers can repair turrets
if ( g_gametype.integer >= GT_WOLF ) {
if ( ps->stats[ STAT_PLAYER_CLASS ] == PC_ENGINEER ) {
if ( !traceEnt->takedamage ) {
hintType = HINT_BUILD;
hintDist = CH_BREAKABLE_DIST;
hintVal = traceEnt->health;
if ( hintVal > 255 ) {
hintVal = 255;
}
}
}
}
// dhm - end
}
} else if ( checkEnt->s.eType == ET_EXPLOSIVE ) {
// if(traceEnt->s.dmgFlags) { // override flag // hint icon specified in entity, this overrides type
// hintType = traceEnt->s.dmgFlags;
// } else {
if ( ( checkEnt->health > 0 ) || ( checkEnt->spawnflags & 64 ) ) { // JPW NERVE they are now if it's dynamite // 0 health explosives are not breakable
hintDist = CH_BREAKABLE_DIST;
hintType = HINT_BREAKABLE;
// DHM - Nerve :: Show different hint if it can only be destroyed with dynamite
if ( g_gametype.integer >= GT_WOLF && ( checkEnt->spawnflags & 64 ) ) {
// JPW NERVE only show hint for players who can blow it up
vec3_t mins,maxs,range = { 40, 40, 52 };
int i,num;
//int defendingTeam=0; // TTimo unused
int touch[MAX_GENTITIES];
gentity_t *hit = NULL;
VectorSubtract( ent->client->ps.origin, range, mins );
VectorAdd( ent->client->ps.origin, range, maxs );
num = trap_EntitiesInBox( mins, maxs, touch, MAX_GENTITIES );
for ( i = 0 ; i < num ; i++ ) {
hit = &g_entities[touch[i]];
if ( !( hit->r.contents & CONTENTS_TRIGGER ) ) {
continue;
}
if ( !strcmp( hit->classname,"trigger_objective_info" ) ) {
if ( !( hit->spawnflags & ( AXIS_OBJECTIVE | ALLIED_OBJECTIVE ) ) ) {
continue;
}
// we're in a trigger_objective_info field with at least one owner, so use this one and bail
break;
}
}
if ( ( hit ) &&
( ( ( ent->client->sess.sessionTeam == TEAM_RED ) && ( hit->spawnflags & ALLIED_OBJECTIVE ) ) ||
( ( ent->client->sess.sessionTeam == TEAM_BLUE ) && ( hit->spawnflags & AXIS_OBJECTIVE ) ) )
) {
hintDist = CH_BREAKABLE_DIST * 2;
hintType = HINT_BREAKABLE_DYNAMITE;
} else {
hintDist = 0;
hintType = ps->serverCursorHint = HINT_FORCENONE;
}
// jpw
}
// dhm - end
hintVal = checkEnt->health; // also send health to client for visualization
}
// }
} else if ( checkEnt->s.eType == ET_ALARMBOX ) {
if ( checkEnt->health > 0 ) {
// hintDist = CH_BREAKABLE_DIST;
hintType = HINT_ACTIVATE;
}
} else if ( checkEnt->s.eType == ET_ITEM ) {
gitem_t *it;
it = &bg_itemlist[checkEnt->item - bg_itemlist];
hintDist = CH_ACTIVATE_DIST;
switch ( it->giType ) {
case IT_HEALTH:
hintType = HINT_HEALTH;
break;
case IT_TREASURE:
hintType = HINT_TREASURE;
break;
case IT_CLIPBOARD:
hintType = HINT_CLIPBOARD;
break;
case IT_WEAPON:
// JPW NERVE changed this to be more specific
if ( it->giTag != WP_LUGER && it->giTag != WP_COLT ) {
if ( ps->stats[STAT_PLAYER_CLASS] == PC_SOLDIER ) { // soldier can pick up all weapons
hintType = HINT_WEAPON;
break;
}
if ( ps->stats[STAT_PLAYER_CLASS] != PC_LT ) { // medics & engrs can't pick up squat
break;
}
if ( it->giTag == WP_THOMPSON || it->giTag == WP_MP40 || it->giTag == WP_STEN ) {
hintType = HINT_WEAPON;
}
}
// jpw
break;
case IT_AMMO:
hintType = HINT_AMMO;
break;
case IT_ARMOR:
hintType = HINT_ARMOR;
break;
case IT_POWERUP:
hintType = HINT_POWERUP;
break;
case IT_HOLDABLE:
hintType = HINT_HOLDABLE;
break;
case IT_KEY:
hintType = HINT_INVENTORY;
break;
case IT_TEAM:
if ( !Q_stricmp( traceEnt->classname, "team_CTF_redflag" ) && ent->client->sess.sessionTeam == TEAM_BLUE ) {
hintType = HINT_POWERUP;
} else if ( !Q_stricmp( traceEnt->classname, "team_CTF_blueflag" ) && ent->client->sess.sessionTeam == TEAM_RED ) {
hintType = HINT_POWERUP;
}
break;
case IT_BAD:
default:
break;
}
} else if ( checkEnt->s.eType == ET_MOVER ) {
if ( !Q_stricmp( checkEnt->classname, "func_door_rotating" ) ) {
if ( checkEnt->moverState == MOVER_POS1ROTATE ) { // stationary/closed
hintDist = CH_DOOR_DIST;
hintType = HINT_DOOR_ROTATING;
if ( checkEnt->key == -1 ) { // locked
// hintType = HINT_DOOR_ROTATING_LOCKED;
}
}
} else if ( !Q_stricmp( checkEnt->classname, "func_door" ) ) {
if ( checkEnt->moverState == MOVER_POS1 ) { // stationary/closed
hintDist = CH_DOOR_DIST;
hintType = HINT_DOOR;
if ( checkEnt->key == -1 ) { // locked
// hintType = HINT_DOOR_LOCKED;
}
}
} else if ( !Q_stricmp( checkEnt->classname, "func_button" ) ) {
hintDist = CH_ACTIVATE_DIST;
hintType = HINT_BUTTON;
}/*
else if(checkEnt->s.dmgFlags == HINT_CHAIR) {
hintDist = CH_ACTIVATE_DIST;
hintType = HINT_CHAIR;
}*/
}
// DHM - Nerve :: Handle wolf multiplayer hints
if ( g_gametype.integer >= GT_WOLF ) {
if ( checkEnt->s.eType == ET_MISSILE ) {
if ( ps->stats[ STAT_PLAYER_CLASS ] == PC_ENGINEER ) {
hintDist = CH_BREAKABLE_DIST;
hintType = HINT_DISARM;
hintVal = checkEnt->health; // also send health to client for visualization
if ( hintVal > 255 ) {
hintVal = 255;
}
}
}
}
// dhm - end
// hint icon specified in entity (and proper contact was made, so hintType was set)
// first try the checkent...
if ( checkEnt->s.dmgFlags && hintType ) {
hintType = checkEnt->s.dmgFlags;
}
}
// then the traceent
if ( traceEnt->s.dmgFlags && hintType ) {
hintType = traceEnt->s.dmgFlags;
}
}
if ( zooming ) {
hintDist = CH_MAX_DIST_ZOOM;
// zooming can eat a lot of potential hints
switch ( hintType ) {
// allow while zooming
case HINT_PLAYER:
case HINT_TREASURE:
case HINT_LADDER:
case HINT_EXIT:
case HINT_PLYR_FRIEND:
case HINT_PLYR_NEUTRAL:
case HINT_PLYR_ENEMY:
case HINT_PLYR_UNKNOWN:
break;
default:
return;
}
}
if ( dist <= hintDist ) {
ps->serverCursorHint = hintType;
ps->serverCursorHintVal = hintVal;
}
// Com_Printf("hint: %d\n", ps->serverCursorHint);
}
/*
================
G_FindTeams
Chain together all entities with a matching team field.
Entity teams are used for item groups and multi-entity mover groups.
All but the first will have the FL_TEAMSLAVE flag set and teammaster field set
All but the last will have the teamchain field set to the next one
================
*/
void G_FindTeams( void ) {
gentity_t *e, *e2;
int i, j;
int c, c2;
c = 0;
c2 = 0;
for ( i = MAX_CLIENTS, e = g_entities + i ; i < level.num_entities ; i++,e++ ) {
if ( !e->inuse ) {
continue;
}
if ( !e->team ) {
continue;
}
if ( e->flags & FL_TEAMSLAVE ) {
continue;
}
if ( !Q_stricmp( e->classname, "func_tramcar" ) ) {
if ( e->spawnflags & 8 ) { // leader
e->teammaster = e;
} else
{
continue;
}
}
c++;
c2++;
for ( j = i + 1, e2 = e + 1 ; j < level.num_entities ; j++,e2++ )
{
if ( !e2->inuse ) {
continue;
}
if ( !e2->team ) {
continue;
}
if ( e2->flags & FL_TEAMSLAVE ) {
continue;
}
if ( !strcmp( e->team, e2->team ) ) {
c2++;
e2->teamchain = e->teamchain;
e->teamchain = e2;
e2->teammaster = e;
// e2->key = e->key; // (SA) I can't set the key here since the master door hasn't finished spawning yet and therefore has a key of -1
e2->flags |= FL_TEAMSLAVE;
if ( !Q_stricmp( e2->classname, "func_tramcar" ) ) {
trap_UnlinkEntity( e2 );
}
// make sure that targets only point at the master
if ( e2->targetname ) {
e->targetname = e2->targetname;
// Rafael
// note to self: added this because of problems
// pertaining to keys and double doors
if ( Q_stricmp( e2->classname, "func_door_rotating" ) ) {
e2->targetname = NULL;
}
}
}
}
}
if ( trap_Cvar_VariableIntegerValue( "g_gametype" ) != GT_SINGLE_PLAYER ) {
G_Printf( "%i teams with %i entities\n", c, c2 );
}
}
/*
==============
G_RemapTeamShaders
==============
*/
void G_RemapTeamShaders( void ) {
#ifdef MISSIONPACK
char string[1024];
float f = level.time * 0.001;
Com_sprintf( string, sizeof( string ), "team_icon/%s_red", g_redteam.string );
AddRemap( "textures/ctf2/redteam01", string, f );
AddRemap( "textures/ctf2/redteam02", string, f );
Com_sprintf( string, sizeof( string ), "team_icon/%s_blue", g_blueteam.string );
AddRemap( "textures/ctf2/blueteam01", string, f );
AddRemap( "textures/ctf2/blueteam02", string, f );
trap_SetConfigstring( CS_SHADERSTATE, BuildShaderStateConfig() );
#endif
}
/*
=================
G_RegisterCvars
=================
*/
void G_RegisterCvars( void ) {
int i;
cvarTable_t *cv;
qboolean remapped = qfalse;
for ( i = 0, cv = gameCvarTable ; i < gameCvarTableSize ; i++, cv++ ) {
trap_Cvar_Register( cv->vmCvar, cv->cvarName,
cv->defaultString, cv->cvarFlags );
if ( cv->vmCvar ) {
cv->modificationCount = cv->vmCvar->modificationCount;
}
if ( cv->teamShader ) {
remapped = qtrue;
}
}
if ( remapped ) {
G_RemapTeamShaders();
}
// check some things
// DHM - Gametype is currently restricted to supported types only
if ( g_gametype.integer < GT_WOLF || g_gametype.integer > GT_WOLF_CPH ) { // JPW NERVE WOLF_CPH now highest type
G_Printf( "g_gametype %i is out of range, defaulting to GT_WOLF(5)\n", g_gametype.integer );
trap_Cvar_Set( "g_gametype", "5" );
trap_Cvar_Update( &g_gametype );
}
// Rafael gameskill
if ( g_gameskill.integer < GSKILL_EASY || g_gameskill.integer > GSKILL_VERYHARD ) {
G_Printf( "g_gameskill %i is out of range, default to medium\n", g_gameskill.integer );
trap_Cvar_Set( "g_gameskill", "3" ); // default to medium
}
bg_pmove_gameskill_integer = g_gameskill.integer;
// done
level.warmupModificationCount = g_warmup.modificationCount;
}
/*
=================
G_UpdateCvars
=================
*/
void G_UpdateCvars( void ) {
int i;
cvarTable_t *cv;
qboolean remapped = qfalse;
for ( i = 0, cv = gameCvarTable ; i < gameCvarTableSize ; i++, cv++ ) {
if ( cv->vmCvar ) {
trap_Cvar_Update( cv->vmCvar );
if ( cv->modificationCount != cv->vmCvar->modificationCount ) {
cv->modificationCount = cv->vmCvar->modificationCount;
if ( cv->trackChange ) {
trap_SendServerCommand( -1, va( "print \"Server:[lof] %s [lon]changed to[lof] %s\n\"",
cv->cvarName, cv->vmCvar->string ) );
}
if ( cv->teamShader ) {
remapped = qtrue;
}
}
}
}
if ( remapped ) {
G_RemapTeamShaders();
}
}
/*
==============
G_SpawnScriptCamera
create the game entity that's used for camera<->script communication and portal location for camera view
==============
*/
void G_SpawnScriptCamera( void ) {
if ( g_camEnt ) {
G_FreeEntity( g_camEnt );
}
g_camEnt = G_Spawn();
g_camEnt->scriptName = "scriptcamera";
g_camEnt->s.eType = ET_CAMERA;
g_camEnt->s.apos.trType = TR_STATIONARY;
g_camEnt->s.apos.trTime = 0;
g_camEnt->s.apos.trDuration = 0;
VectorCopy( g_camEnt->s.angles, g_camEnt->s.apos.trBase );
VectorClear( g_camEnt->s.apos.trDelta );
g_camEnt->s.frame = 0;
g_camEnt->r.svFlags |= SVF_NOCLIENT; // only broadcast when in use
if ( g_camEnt->s.number >= MAX_CLIENTS && g_camEnt->scriptName ) {
G_Script_ScriptParse( g_camEnt );
G_Script_ScriptEvent( g_camEnt, "spawn", "" );
}
}
/*
============
G_InitGame
============
*/
void G_InitGame( int levelTime, int randomSeed, int restart ) {
int i;
char cs[MAX_INFO_STRING];
if ( trap_Cvar_VariableIntegerValue( "g_gametype" ) != GT_SINGLE_PLAYER ) {
G_Printf( "------- Game Initialization -------\n" );
G_Printf( "gamename: %s\n", GAMEVERSION );
G_Printf( "gamedate: %s\n", PRODUCT_DATE );
}
srand( randomSeed );
G_RegisterCvars();
// Xian enforcemaxlives stuff
/*
we need to clear the list even if enforce maxlives is not active
in cas ethe g_maxlives was changed, and a map_restart happened
*/
ClearMaxLivesGUID();
// just for verbosity
if ( g_enforcemaxlives.integer && ( g_maxlives.integer > 0 || g_axismaxlives.integer > 0 || g_alliedmaxlives.integer > 0 ) ) {
G_Printf( "EnforceMaxLives-Cleared GUID List\n" );
}
G_ProcessIPBans();
G_InitMemory();
// NERVE - SMF - intialize gamestate
if ( g_gamestate.integer == GS_INITIALIZE ) {
if ( g_noTeamSwitching.integer ) {
trap_Cvar_Set( "gamestate", va( "%i", GS_WAITING_FOR_PLAYERS ) );
} else {
trap_Cvar_Set( "gamestate", va( "%i", GS_WARMUP ) );
}
}
// set some level globals
memset( &level, 0, sizeof( level ) );
level.time = levelTime;
level.startTime = levelTime;
level.snd_fry = G_SoundIndex( "sound/player/fry.wav" ); // FIXME standing in lava / slime
level.bulletRicochetSound = G_SoundIndex( "bulletRicochet" );
level.snipersound = G_SoundIndex( "sound/weapons/mauser/mauserf1.wav" );
level.knifeSound[0] = G_SoundIndex( "sound/weapons/knife/knife_hitwall1.wav" );
// RF, init the anim scripting
level.animScriptData.soundIndex = G_SoundIndex;
level.animScriptData.playSound = G_AnimScriptSound;
if ( g_gametype.integer != GT_SINGLE_PLAYER && g_logfile.string[0] ) {
if ( g_logfileSync.integer ) {
trap_FS_FOpenFile( g_logfile.string, &level.logFile, FS_APPEND_SYNC );
} else {
trap_FS_FOpenFile( g_logfile.string, &level.logFile, FS_APPEND );
}
if ( !level.logFile ) {
G_Printf( "WARNING: Couldn't open logfile: %s\n", g_logfile.string );
} else {
char serverinfo[MAX_INFO_STRING];
trap_GetServerinfo( serverinfo, sizeof( serverinfo ) );
G_LogPrintf( "------------------------------------------------------------\n" );
G_LogPrintf( "InitGame: %s\n", serverinfo );
}
} else {
if ( trap_Cvar_VariableIntegerValue( "g_gametype" ) != GT_SINGLE_PLAYER ) {
G_Printf( "Not logging to disk.\n" );
}
}
G_InitWorldSession();
// DHM - Nerve :: Clear out spawn target config strings
if ( g_gametype.integer >= GT_WOLF ) {
trap_GetConfigstring( CS_MULTI_INFO, cs, sizeof( cs ) );
Info_SetValueForKey( cs, "numspawntargets", "0" );
trap_SetConfigstring( CS_MULTI_INFO, cs );
for ( i = CS_MULTI_SPAWNTARGETS; i < CS_MULTI_SPAWNTARGETS + MAX_MULTI_SPAWNTARGETS; i++ ) {
trap_SetConfigstring( i, "" );
}
}
// initialize all entities for this game
memset( g_entities, 0, MAX_GENTITIES * sizeof( g_entities[0] ) );
level.gentities = g_entities;
// initialize all clients for this game
level.maxclients = g_maxclients.integer;
memset( g_clients, 0, MAX_CLIENTS * sizeof( g_clients[0] ) );
level.clients = g_clients;
// set client fields on player ents
for ( i = 0 ; i < level.maxclients ; i++ ) {
g_entities[i].client = level.clients + i;
}
// always leave room for the max number of clients,
// even if they aren't all used, so numbers inside that
// range are NEVER anything but clients
level.num_entities = MAX_CLIENTS;
for ( i=0 ; i<MAX_CLIENTS ; i++ ) {
g_entities[i].classname = "clientslot";
}
// let the server system know where the entites are
trap_LocateGameData( level.gentities, level.num_entities, sizeof( gentity_t ),
&level.clients[0].ps, sizeof( level.clients[0] ) );
// load level script
G_Script_ScriptLoad();
// reserve some spots for dead player bodies
InitBodyQue();
ClearRegisteredItems();
// parse the key/value pairs and spawn gentities
G_SpawnEntitiesFromString();
// create the camera entity that will communicate with the scripts
G_SpawnScriptCamera();
// general initialization
G_FindTeams();
// make sure we have flags for CTF, etc
if ( g_gametype.integer >= GT_TEAM ) {
G_CheckTeamItems();
}
SaveRegisteredItems();
if ( trap_Cvar_VariableIntegerValue( "g_gametype" ) != GT_SINGLE_PLAYER ) {
G_Printf( "-----------------------------------\n" );
}
if ( trap_Cvar_VariableIntegerValue( "bot_enable" ) ) {
BotAISetup( restart );
BotAILoadMap( restart );
G_InitBots( restart );
}
G_RemapTeamShaders();
trap_SetConfigstring( CS_INTERMISSION, "" );
}
/*
=================
G_ShutdownGame
=================
*/
void G_ShutdownGame( int restart ) {
if ( g_gametype.integer != GT_SINGLE_PLAYER ) {
G_Printf( "==== ShutdownGame ====\n" );
}
if ( level.logFile ) {
G_LogPrintf( "ShutdownGame:\n" );
G_LogPrintf( "------------------------------------------------------------\n" );
trap_FS_FCloseFile( level.logFile );
level.logFile = 0;
}
// Ridah, shutdown the Botlib, so weapons and things get reset upon doing a "map xxx" command
if ( trap_Cvar_VariableIntegerValue( "bot_enable" ) ) {
int i;
// Ridah, kill AI cast's
for ( i = 0 ; i < g_maxclients.integer ; i++ ) {
if ( g_entities[i].r.svFlags & SVF_CASTAI ) {
trap_DropClient( i, "Drop Cast AI" );
}
}
// done.
}
// done.
// write all the client session data so we can get it back
G_WriteSessionData();
if ( trap_Cvar_VariableIntegerValue( "bot_enable" ) ) {
BotAIShutdown( restart );
}
}
//===================================================================
void QDECL Com_Error( int level, const char *error, ... ) {
va_list argptr;
char text[1024];
va_start( argptr, error );
Q_vsnprintf( text, sizeof( text ), error, argptr );
va_end( argptr );
trap_Error( text );
}
void QDECL Com_Printf( const char *msg, ... ) {
va_list argptr;
char text[1024];
va_start( argptr, msg );
Q_vsnprintf( text, sizeof( text ), msg, argptr );
va_end( argptr );
trap_Print( text );
}
/*
========================================================================
PLAYER COUNTING / SCORE SORTING
========================================================================
*/
/*
=============
AddTournamentPlayer
If there are less than two tournament players, put a
spectator in the game and restart
=============
*/
void AddTournamentPlayer( void ) {
int i;
gclient_t *client;
gclient_t *nextInLine;
if ( level.numPlayingClients >= 2 ) {
return;
}
// never change during intermission
if ( level.intermissiontime ) {
return;
}
nextInLine = NULL;
for ( i = 0 ; i < level.maxclients ; i++ ) {
client = &level.clients[i];
if ( client->pers.connected != CON_CONNECTED ) {
continue;
}
if ( client->sess.sessionTeam != TEAM_SPECTATOR ) {
continue;
}
// never select the dedicated follow or scoreboard clients
if ( client->sess.spectatorState == SPECTATOR_SCOREBOARD ||
client->sess.spectatorClient < 0 ) {
continue;
}
if(!nextInLine || client->sess.spectatorNum > nextInLine->sess.spectatorNum)
nextInLine = client;
}
if ( !nextInLine ) {
return;
}
level.warmupTime = -1;
// set them to free-for-all team
SetTeam( &g_entities[ nextInLine - level.clients ], "f" );
}
/*
=======================
AddTournamentQueue
Add client to end of tournament queue
=======================
*/
void AddTournamentQueue(gclient_t *client)
{
int index;
gclient_t *curclient;
for(index = 0; index < level.maxclients; index++)
{
curclient = &level.clients[index];
if(curclient->pers.connected != CON_DISCONNECTED)
{
if(curclient == client)
curclient->sess.spectatorNum = 0;
else if(curclient->sess.sessionTeam == TEAM_SPECTATOR)
curclient->sess.spectatorNum++;
}
}
}
/*
=======================
RemoveTournamentLoser
Make the loser a spectator at the back of the line
=======================
*/
void RemoveTournamentLoser( void ) {
int clientNum;
if ( level.numPlayingClients != 2 ) {
return;
}
clientNum = level.sortedClients[1];
if ( level.clients[ clientNum ].pers.connected != CON_CONNECTED ) {
return;
}
// make them a spectator
SetTeam( &g_entities[ clientNum ], "s" );
}
/*
=======================
AdjustTournamentScores
=======================
*/
void AdjustTournamentScores( void ) {
int clientNum;
clientNum = level.sortedClients[0];
if ( level.clients[ clientNum ].pers.connected == CON_CONNECTED ) {
level.clients[ clientNum ].sess.wins++;
ClientUserinfoChanged( clientNum );
}
clientNum = level.sortedClients[1];
if ( level.clients[ clientNum ].pers.connected == CON_CONNECTED ) {
level.clients[ clientNum ].sess.losses++;
ClientUserinfoChanged( clientNum );
}
}
/*
=============
SortRanks
=============
*/
int QDECL SortRanks( const void *a, const void *b ) {
gclient_t *ca, *cb;
ca = &level.clients[*(int *)a];
cb = &level.clients[*(int *)b];
// sort special clients last
if ( ca->sess.spectatorState == SPECTATOR_SCOREBOARD || ca->sess.spectatorClient < 0 ) {
return 1;
}
if ( cb->sess.spectatorState == SPECTATOR_SCOREBOARD || cb->sess.spectatorClient < 0 ) {
return -1;
}
// then connecting clients
if ( ca->pers.connected == CON_CONNECTING ) {
return 1;
}
if ( cb->pers.connected == CON_CONNECTING ) {
return -1;
}
// then spectators
if ( ca->sess.sessionTeam == TEAM_SPECTATOR && cb->sess.sessionTeam == TEAM_SPECTATOR ) {
if ( ca->sess.spectatorNum > cb->sess.spectatorNum ) {
return -1;
}
if ( ca->sess.spectatorNum < cb->sess.spectatorNum ) {
return 1;
}
return 0;
}
if ( ca->sess.sessionTeam == TEAM_SPECTATOR ) {
return 1;
}
if ( cb->sess.sessionTeam == TEAM_SPECTATOR ) {
return -1;
}
// then sort by score
if ( ca->ps.persistant[PERS_SCORE]
> cb->ps.persistant[PERS_SCORE] ) {
return -1;
}
if ( ca->ps.persistant[PERS_SCORE]
< cb->ps.persistant[PERS_SCORE] ) {
return 1;
}
return 0;
}
/*
============
CalculateRanks
Recalculates the score ranks of all players
This will be called on every client connect, begin, disconnect, death,
and team change.
============
*/
void CalculateRanks( void ) {
int i;
int rank;
int score;
int newScore;
gclient_t *cl;
level.follow1 = -1;
level.follow2 = -1;
level.numConnectedClients = 0;
level.numNonSpectatorClients = 0;
level.numPlayingClients = 0;
level.numVotingClients = 0; // don't count bots
level.numFinalDead[0] = 0; // NERVE - SMF
level.numFinalDead[1] = 0; // NERVE - SMF
for (i = 0; i < ARRAY_LEN(level.numteamVotingClients); i++)
level.numteamVotingClients[i] = 0;
for ( i = 0 ; i < level.maxclients ; i++ ) {
if ( level.clients[i].pers.connected != CON_DISCONNECTED ) {
level.sortedClients[level.numConnectedClients] = i;
level.numConnectedClients++;
if ( level.clients[i].sess.sessionTeam != TEAM_SPECTATOR ) {
level.numNonSpectatorClients++;
// decide if this should be auto-followed
if ( level.clients[i].pers.connected == CON_CONNECTED ) {
level.numPlayingClients++;
if ( !( g_entities[i].r.svFlags & SVF_BOT ) ) {
level.numVotingClients++;
if ( level.clients[i].sess.sessionTeam == TEAM_RED ) {
// NERVE - SMF
if ( level.clients[i].ps.persistant[PERS_RESPAWNS_LEFT] == 0
&& g_entities[i].health <= 0 ) {
level.numFinalDead[0]++;
}
level.numteamVotingClients[0]++;
} else if ( level.clients[i].sess.sessionTeam == TEAM_BLUE ) {
// NERVE - SMF
if ( level.clients[i].ps.persistant[PERS_RESPAWNS_LEFT] == 0
&& g_entities[i].health <= 0 ) {
level.numFinalDead[1]++;
}
level.numteamVotingClients[1]++;
}
}
if ( level.follow1 == -1 ) {
level.follow1 = i;
} else if ( level.follow2 == -1 ) {
level.follow2 = i;
}
}
}
}
}
qsort( level.sortedClients, level.numConnectedClients,
sizeof( level.sortedClients[0] ), SortRanks );
// set the rank value for all clients that are connected and not spectators
if ( g_gametype.integer >= GT_TEAM ) {
// in team games, rank is just the order of the teams, 0=red, 1=blue, 2=tied
for ( i = 0; i < level.numConnectedClients; i++ ) {
cl = &level.clients[ level.sortedClients[i] ];
if ( level.teamScores[TEAM_RED] == level.teamScores[TEAM_BLUE] ) {
cl->ps.persistant[PERS_RANK] = 2;
} else if ( level.teamScores[TEAM_RED] > level.teamScores[TEAM_BLUE] ) {
cl->ps.persistant[PERS_RANK] = 0;
} else {
cl->ps.persistant[PERS_RANK] = 1;
}
}
} else {
rank = -1;
score = 0;
for ( i = 0; i < level.numPlayingClients; i++ ) {
cl = &level.clients[ level.sortedClients[i] ];
newScore = cl->ps.persistant[PERS_SCORE];
if ( i == 0 || newScore != score ) {
rank = i;
// assume we aren't tied until the next client is checked
level.clients[ level.sortedClients[i] ].ps.persistant[PERS_RANK] = rank;
} else {
// we are tied with the previous client
level.clients[ level.sortedClients[i - 1] ].ps.persistant[PERS_RANK] = rank | RANK_TIED_FLAG;
level.clients[ level.sortedClients[i] ].ps.persistant[PERS_RANK] = rank | RANK_TIED_FLAG;
}
score = newScore;
if ( g_gametype.integer == GT_SINGLE_PLAYER && level.numPlayingClients == 1 ) {
level.clients[ level.sortedClients[i] ].ps.persistant[PERS_RANK] = rank | RANK_TIED_FLAG;
}
}
}
// set the CS_SCORES1/2 configstrings, which will be visible to everyone
if ( g_gametype.integer >= GT_TEAM ) {
trap_SetConfigstring( CS_SCORES1, va( "%i", level.teamScores[TEAM_RED] ) );
trap_SetConfigstring( CS_SCORES2, va( "%i", level.teamScores[TEAM_BLUE] ) );
} else {
if ( level.numConnectedClients == 0 ) {
trap_SetConfigstring( CS_SCORES1, va( "%i", SCORE_NOT_PRESENT ) );
trap_SetConfigstring( CS_SCORES2, va( "%i", SCORE_NOT_PRESENT ) );
} else if ( level.numConnectedClients == 1 ) {
trap_SetConfigstring( CS_SCORES1, va( "%i", level.clients[ level.sortedClients[0] ].ps.persistant[PERS_SCORE] ) );
trap_SetConfigstring( CS_SCORES2, va( "%i", SCORE_NOT_PRESENT ) );
} else {
trap_SetConfigstring( CS_SCORES1, va( "%i", level.clients[ level.sortedClients[0] ].ps.persistant[PERS_SCORE] ) );
trap_SetConfigstring( CS_SCORES2, va( "%i", level.clients[ level.sortedClients[1] ].ps.persistant[PERS_SCORE] ) );
}
}
// see if it is time to end the level
CheckExitRules();
// if we are at the intermission, send the new info to everyone
if ( level.intermissiontime ) {
SendScoreboardMessageToAllClients();
}
}
/*
========================================================================
MAP CHANGING
========================================================================
*/
/*
========================
SendScoreboardMessageToAllClients
Do this at BeginIntermission time and whenever ranks are recalculated
due to enters/exits/forced team changes
========================
*/
void SendScoreboardMessageToAllClients( void ) {
int i;
for ( i = 0 ; i < level.maxclients ; i++ ) {
if ( level.clients[ i ].pers.connected == CON_CONNECTED ) {
DeathmatchScoreboardMessage( g_entities + i );
}
}
}
/*
========================
MoveClientToIntermission
When the intermission starts, this will be called for all players.
If a new client connects, this will be called after the spawn function.
========================
*/
void MoveClientToIntermission( gentity_t *ent ) {
// take out of follow mode if needed
if ( ent->client->sess.spectatorState == SPECTATOR_FOLLOW ) {
StopFollowing( ent );
}
FindIntermissionPoint();
// move to the spot
VectorCopy( level.intermission_origin, ent->s.origin );
VectorCopy( level.intermission_origin, ent->client->ps.origin );
VectorCopy( level.intermission_angle, ent->client->ps.viewangles );
ent->client->ps.pm_type = PM_INTERMISSION;
// clean up powerup info
// memset( ent->client->ps.powerups, 0, sizeof(ent->client->ps.powerups) );
ent->client->ps.eFlags = 0;
ent->s.eFlags = 0;
ent->s.eType = ET_GENERAL;
ent->s.modelindex = 0;
ent->s.loopSound = 0;
ent->s.event = 0;
ent->s.events[0] = ent->s.events[1] = ent->s.events[2] = ent->s.events[3] = 0; // DHM - Nerve
ent->r.contents = 0;
}
/*
==================
FindIntermissionPoint
This is also used for spectator spawns
==================
*/
void FindIntermissionPoint( void ) {
gentity_t *ent, *target;
vec3_t dir;
char cs[MAX_STRING_CHARS]; // DHM - Nerve
char *buf; // DHM - Nerve
int winner; // DHM - Nerve
if ( g_gametype.integer >= GT_WOLF ) {
ent = NULL;
// NERVE - SMF - if the match hasn't ended yet, and we're just a spectator
if ( !level.intermissiontime ) {
// try to find the intermission spawnpoint with no team flags set
ent = G_Find( NULL, FOFS( classname ), "info_player_intermission" );
for ( ; ent; ent = G_Find( ent, FOFS( classname ), "info_player_intermission" ) ) {
if ( !ent->spawnflags ) {
break;
}
}
}
trap_GetConfigstring( CS_MULTI_MAPWINNER, cs, sizeof( cs ) );
buf = Info_ValueForKey( cs, "winner" );
winner = atoi( buf );
// Change from scripting value for winner (0==AXIS, 1==ALLIES) to spawnflag value
if ( winner == 0 ) {
winner = 1;
} else {
winner = 2;
}
if ( !ent ) {
ent = G_Find( NULL, FOFS( classname ), "info_player_intermission" );
if ( ent && !( ent->spawnflags & winner ) ) {
ent = G_Find( ent, FOFS( classname ), "info_player_intermission" );
}
}
} else {
// find the intermission spot
ent = G_Find( NULL, FOFS( classname ), "info_player_intermission" );
}
if ( !ent ) { // the map creator forgot to put in an intermission point...
SelectSpawnPoint( vec3_origin, level.intermission_origin, level.intermission_angle );
} else {
VectorCopy( ent->s.origin, level.intermission_origin );
VectorCopy( ent->s.angles, level.intermission_angle );
// if it has a target, look towards it
if ( ent->target ) {
target = G_PickTarget( ent->target );
if ( target ) {
VectorSubtract( target->s.origin, level.intermission_origin, dir );
vectoangles( dir, level.intermission_angle );
}
}
}
}
/*
==================
BeginIntermission
==================
*/
void BeginIntermission( void ) {
int i;
gentity_t *client;
if ( level.intermissiontime ) {
return; // already active
}
// if in tournement mode, change the wins / losses
if ( g_gametype.integer == GT_TOURNAMENT ) {
AdjustTournamentScores();
}
level.intermissiontime = level.time;
// move all clients to the intermission point
for ( i = 0 ; i < level.maxclients ; i++ ) {
client = g_entities + i;
if ( !client->inuse ) {
continue;
}
// respawn if dead
if ( g_gametype.integer < GT_WOLF && client->health <= 0 ) {
ClientRespawn( client );
}
MoveClientToIntermission( client );
}
// send the current scoring to all clients
SendScoreboardMessageToAllClients();
}
/*
=============
ExitLevel
When the intermission has been exited, the server is either killed
or moved to a new level based on the "nextmap" cvar
=============
*/
void ExitLevel( void ) {
int i;
gclient_t *cl;
char nextmap[MAX_STRING_CHARS];
char d1[MAX_STRING_CHARS];
// if we are running a tournement map, kick the loser to spectator status,
// which will automatically grab the next spectator and restart
if ( g_gametype.integer == GT_TOURNAMENT ) {
if ( !level.restarted ) {
RemoveTournamentLoser();
trap_SendConsoleCommand( EXEC_APPEND, "map_restart 0\n" );
level.restarted = qtrue;
level.changemap = NULL;
level.intermissiontime = 0;
}
return;
}
trap_Cvar_VariableStringBuffer( "nextmap", nextmap, sizeof(nextmap) );
trap_Cvar_VariableStringBuffer( "d1", d1, sizeof(d1) );
if( !Q_stricmp( nextmap, "map_restart 0" ) && Q_stricmp( d1, "" ) ) {
trap_Cvar_Set( "nextmap", "vstr d2" );
trap_SendConsoleCommand( EXEC_APPEND, "vstr d1\n" );
} else {
trap_SendConsoleCommand( EXEC_APPEND, "vstr nextmap\n" );
}
level.changemap = NULL;
level.intermissiontime = 0;
// reset all the scores so we don't enter the intermission again
level.teamScores[TEAM_RED] = 0;
level.teamScores[TEAM_BLUE] = 0;
for ( i = 0 ; i < g_maxclients.integer ; i++ ) {
cl = level.clients + i;
if ( cl->pers.connected != CON_CONNECTED ) {
continue;
}
cl->ps.persistant[PERS_SCORE] = 0;
}
// we need to do this here before changing to CON_CONNECTING
G_WriteSessionData();
// change all client states to connecting, so the early players into the
// next level will know the others aren't done reconnecting
for ( i = 0 ; i < g_maxclients.integer ; i++ ) {
if ( level.clients[i].pers.connected == CON_CONNECTED ) {
level.clients[i].pers.connected = CON_CONNECTING;
}
}
G_LogPrintf( "ExitLevel: executed\n" );
}
/*
=================
G_LogPrintf
Print to the logfile with a time stamp if it is open
=================
*/
void QDECL G_LogPrintf( const char *fmt, ... ) {
va_list argptr;
char string[1024];
int min, tens, sec;
sec = ( level.time - level.startTime ) / 1000;
min = sec / 60;
sec -= min * 60;
tens = sec / 10;
sec -= tens * 10;
Com_sprintf( string, sizeof( string ), "%3i:%i%i ", min, tens, sec );
va_start( argptr, fmt );
Q_vsnprintf( string + 7, sizeof( string ) - 7, fmt, argptr );
va_end( argptr );
if ( g_dedicated.integer ) {
G_Printf( "%s", string + 7 );
}
if ( !level.logFile ) {
return;
}
trap_FS_Write( string, strlen( string ), level.logFile );
}
/*
================
LogExit
Append information about this game to the log file
================
*/
void LogExit( const char *string ) {
int i, numSorted;
gclient_t *cl;
// NERVE - SMF - do not allow LogExit to be called in non-playing gamestate
if ( g_gamestate.integer != GS_PLAYING ) {
return;
}
G_LogPrintf( "Exit: %s\n", string );
level.intermissionQueued = level.time;
// this will keep the clients from playing any voice sounds
// that will get cut off when the queued intermission starts
trap_SetConfigstring( CS_INTERMISSION, "1" );
// don't send more than 32 scores (FIXME?)
numSorted = level.numConnectedClients;
if ( numSorted > 32 ) {
numSorted = 32;
}
if ( g_gametype.integer >= GT_TEAM ) {
G_LogPrintf( "red:%i blue:%i\n",
level.teamScores[TEAM_RED], level.teamScores[TEAM_BLUE] );
}
for ( i = 0 ; i < numSorted ; i++ ) {
int ping;
cl = &level.clients[level.sortedClients[i]];
if ( cl->sess.sessionTeam == TEAM_SPECTATOR ) {
continue;
}
if ( cl->pers.connected == CON_CONNECTING ) {
continue;
}
ping = cl->ps.ping < 999 ? cl->ps.ping : 999;
G_LogPrintf( "score: %i ping: %i client: %i %s\n",
cl->ps.persistant[PERS_SCORE], ping, level.sortedClients[i],
cl->pers.netname );
}
// NERVE - SMF
if ( g_gametype.integer == GT_WOLF_STOPWATCH ) {
char cs[MAX_STRING_CHARS];
int winner, defender;
trap_GetConfigstring( CS_MULTI_INFO, cs, sizeof( cs ) );
defender = atoi( Info_ValueForKey( cs, "defender" ) );
trap_GetConfigstring( CS_MULTI_MAPWINNER, cs, sizeof( cs ) );
winner = atoi( Info_ValueForKey( cs, "winner" ) );
// NERVE - SMF
if ( !g_currentRound.integer ) {
if ( winner == defender ) {
// if the defenders won, use default timelimit
trap_Cvar_Set( "g_nextTimeLimit", va( "%f", g_timelimit.value ) );
} else {
// use remaining time as next timer
trap_Cvar_Set( "g_nextTimeLimit", va( "%f", ( level.time - level.startTime ) / 60000.f ) );
}
} else {
// reset timer
trap_Cvar_Set( "g_nextTimeLimit", "0" );
}
trap_Cvar_Set( "g_currentRound", va( "%i", !g_currentRound.integer ) );
}
// -NERVE - SMF
}
/*
=================
CheckIntermissionExit
The level will stay at the intermission for a minimum of 5 seconds
If all players wish to continue, the level will then exit.
If one or more players have not acknowledged the continue, the game will
wait 10 seconds before going on.
=================
*/
void CheckIntermissionExit( void ) {
int ready, notReady, playerCount;
int i;
gclient_t *cl;
int readyMask;
if ( g_gametype.integer == GT_SINGLE_PLAYER ) {
return;
}
// DHM - Nerve :: Flat 10 second timer until exit
if ( g_gametype.integer >= GT_WOLF ) {
if ( level.time < level.intermissiontime + 10000 ) {
return;
}
ExitLevel();
return;
}
// dhm - end
// see which players are ready
ready = 0;
notReady = 0;
readyMask = 0;
playerCount = 0;
for ( i = 0 ; i < g_maxclients.integer ; i++ ) {
cl = level.clients + i;
if ( cl->pers.connected != CON_CONNECTED ) {
continue;
}
if ( g_entities[i].r.svFlags & SVF_BOT ) {
continue;
}
playerCount++;
if ( cl->readyToExit ) {
ready++;
if ( i < 16 ) {
readyMask |= 1 << i;
}
} else {
notReady++;
}
}
// copy the readyMask to each player's stats so
// it can be displayed on the scoreboard
for ( i = 0 ; i < g_maxclients.integer ; i++ ) {
cl = level.clients + i;
if ( cl->pers.connected != CON_CONNECTED ) {
continue;
}
cl->ps.stats[STAT_CLIENTS_READY] = readyMask;
}
// never exit in less than five seconds
if ( level.time < level.intermissiontime + 5000 ) {
return;
}
// only test ready status when there are real players present
if ( playerCount > 0 ) {
// if nobody wants to go, clear timer
if ( !ready ) {
level.readyToExit = qfalse;
return;
}
// if everyone wants to go, go now
if ( !notReady ) {
ExitLevel();
return;
}
}
// the first person to ready starts the ten second timeout
if ( !level.readyToExit ) {
level.readyToExit = qtrue;
level.exitTime = level.time;
}
// if we have waited ten seconds since at least one player
// wanted to exit, go ahead
if ( level.time < level.exitTime + 10000 ) {
return;
}
ExitLevel();
}
/*
=============
ScoreIsTied
=============
*/
qboolean ScoreIsTied( void ) {
int a, b;
char cs[MAX_STRING_CHARS];
char *buf;
// DHM - Nerve :: GT_WOLF checks the current value of
if ( g_gametype.integer >= GT_WOLF ) {
trap_GetConfigstring( CS_MULTI_MAPWINNER, cs, sizeof( cs ) );
buf = Info_ValueForKey( cs, "winner" );
a = atoi( buf );
return a == -1;
}
if ( g_gametype.integer >= GT_TEAM ) {
return level.teamScores[TEAM_RED] == level.teamScores[TEAM_BLUE];
}
a = level.clients[level.sortedClients[0]].ps.persistant[PERS_SCORE];
b = level.clients[level.sortedClients[1]].ps.persistant[PERS_SCORE];
return a == b;
}
qboolean G_ScriptAction_SetWinner( gentity_t *ent, char *params );
/*
=================
CheckExitRules
There will be a delay between the time the exit is qualified for
and the time everyone is moved to the intermission spot, so you
can see the last frag.
=================
*/
void CheckExitRules( void ) {
int i;
gclient_t *cl;
gentity_t *gm;
char cs[MAX_STRING_CHARS];
char txt[5];
int num;
// if at the intermission, wait for all non-bots to
// signal ready, then go to next level
if ( level.intermissiontime ) {
CheckIntermissionExit();
return;
}
if ( level.intermissionQueued ) {
if ( level.time - level.intermissionQueued >= INTERMISSION_DELAY_TIME || g_gametype.integer >= GT_WOLF ) {
level.intermissionQueued = 0;
BeginIntermission();
}
return;
}
if ( g_timelimit.integer < 0 || g_timelimit.integer > INT_MAX / 60000 ) {
G_Printf( "timelimit %i is out of range, defaulting to 0\n", g_timelimit.integer );
trap_Cvar_Set( "timelimit", "0" );
trap_Cvar_Update( &g_timelimit );
}
if ( g_timelimit.value && !level.warmupTime ) {
if ( level.time - level.startTime >= g_timelimit.value * 60000 ) {
// check for sudden death
if ( g_gametype.integer != GT_CTF && ScoreIsTied() ) {
// score is tied, so don't end the game
return;
}
if ( g_gametype.integer >= GT_WOLF ) {
gm = G_Find( NULL, FOFS( scriptName ), "game_manager" );
// JPW NERVE -- in CPH, check final capture/hold times and adjust winner
// 0 == axis, 1 == allied
if ( g_gametype.integer == GT_WOLF_CPH ) {
num = -1;
if ( level.capturetimes[TEAM_RED] > level.capturetimes[TEAM_BLUE] ) {
num = 0;
}
if ( level.capturetimes[TEAM_RED] < level.capturetimes[TEAM_BLUE] ) {
num = 1;
}
if ( num != -1 ) {
Com_sprintf( txt, sizeof(txt), "%d", num );
G_ScriptAction_SetWinner( NULL, txt );
}
}
// jpw
if ( gm ) {
G_Script_ScriptEvent( gm, "trigger", "timelimit_hit" );
}
}
// NERVE - SMF - do not allow LogExit to be called in non-playing gamestate
// - This already happens in LogExit, but we need it for the print command
if ( g_gamestate.integer != GS_PLAYING ) {
return;
}
trap_SendServerCommand( -1, "print \"Timelimit hit.\n\"" );
LogExit( "Timelimit hit." );
return;
}
}
if ( level.numPlayingClients < 2 ) {
return;
}
if ( g_gametype.integer >= GT_WOLF && ( g_maxlives.integer > 0 || g_axismaxlives.integer > 0 || g_alliedmaxlives.integer > 0 ) ) {
if ( level.numFinalDead[0] >= level.numteamVotingClients[0] && level.numteamVotingClients[0] > 0 ) {
trap_GetConfigstring( CS_MULTI_MAPWINNER, cs, sizeof( cs ) );
Info_SetValueForKey( cs, "winner", "1" );
trap_SetConfigstring( CS_MULTI_MAPWINNER, cs );
LogExit( "Axis team eliminated." );
} else if ( level.numFinalDead[1] >= level.numteamVotingClients[1] && level.numteamVotingClients[1] > 0 ) {
trap_GetConfigstring( CS_MULTI_MAPWINNER, cs, sizeof( cs ) );
Info_SetValueForKey( cs, "winner", "0" );
trap_SetConfigstring( CS_MULTI_MAPWINNER, cs );
LogExit( "Allied team eliminated." );
}
}
if ( g_fraglimit.integer < 0 ) {
G_Printf( "fraglimit %i is out of range, defaulting to 0\n", g_fraglimit.integer );
trap_Cvar_Set( "fraglimit", "0" );
trap_Cvar_Update( &g_fraglimit );
}
if ( ( g_gametype.integer != GT_CTF && g_gametype.integer < GT_WOLF ) && g_fraglimit.integer ) {
if ( level.teamScores[TEAM_RED] >= g_fraglimit.integer ) {
trap_SendServerCommand( -1, "print \"Red hit the fraglimit.\n\"" );
LogExit( "Fraglimit hit." );
return;
}
if ( level.teamScores[TEAM_BLUE] >= g_fraglimit.integer ) {
trap_SendServerCommand( -1, "print \"Blue hit the fraglimit.\n\"" );
LogExit( "Fraglimit hit." );
return;
}
for ( i = 0 ; i < g_maxclients.integer ; i++ ) {
cl = level.clients + i;
if ( cl->pers.connected != CON_CONNECTED ) {
continue;
}
if ( cl->sess.sessionTeam != TEAM_FREE ) {
continue;
}
if ( cl->ps.persistant[PERS_SCORE] >= g_fraglimit.integer ) {
LogExit( "Fraglimit hit." );
trap_SendServerCommand( -1, va( "print \"%s" S_COLOR_WHITE " hit the fraglimit.\n\"",
cl->pers.netname ) );
return;
}
}
}
if ( g_capturelimit.integer < 0 ) {
G_Printf( "capturelimit %i is out of range, defaulting to 8\n", g_capturelimit.integer );
trap_Cvar_Set( "capturelimit", "8" );
trap_Cvar_Update( &g_capturelimit );
}
if ( g_gametype.integer == GT_CTF && g_capturelimit.integer ) {
if ( level.teamScores[TEAM_RED] >= g_capturelimit.integer ) {
trap_SendServerCommand( -1, "print \"Red hit the capturelimit.\n\"" );
LogExit( "Capturelimit hit." );
return;
}
if ( level.teamScores[TEAM_BLUE] >= g_capturelimit.integer ) {
trap_SendServerCommand( -1, "print \"Blue hit the capturelimit.\n\"" );
LogExit( "Capturelimit hit." );
return;
}
}
}
/*
========================================================================
FUNCTIONS CALLED EVERY FRAME
========================================================================
*/
/*
=============
CheckTournement
Once a frame, check for changes in tournement player state
=============
*/
void CheckTournement( void ) {
// check because we run 3 game frames before calling Connect and/or ClientBegin
// for clients on a map_restart
if ( g_gametype.integer != GT_TOURNAMENT ) {
return;
}
if ( level.numPlayingClients == 0 ) {
return;
}
// pull in a spectator if needed
if ( level.numPlayingClients < 2 ) {
AddTournamentPlayer();
}
// if we don't have two players, go back to "waiting for players"
if ( level.numPlayingClients != 2 ) {
if ( level.warmupTime != -1 ) {
level.warmupTime = -1;
trap_SetConfigstring( CS_WARMUP, va( "%i", level.warmupTime ) );
G_LogPrintf( "Warmup:\n" );
}
return;
}
if ( level.warmupTime == 0 ) {
return;
}
// if the warmup is changed at the console, restart it
if ( g_warmup.modificationCount != level.warmupModificationCount ) {
level.warmupModificationCount = g_warmup.modificationCount;
level.warmupTime = -1;
}
// if all players have arrived, start the countdown
if ( level.warmupTime < 0 ) {
if ( level.numPlayingClients == 2 ) {
// fudge by -1 to account for extra delays
if ( g_warmup.integer > 1 ) {
level.warmupTime = level.time + ( g_warmup.integer - 1 ) * 1000;
} else {
level.warmupTime = 0;
}
trap_SetConfigstring( CS_WARMUP, va( "%i", level.warmupTime ) );
}
return;
}
// if the warmup time has counted down, restart
if ( level.time > level.warmupTime ) {
level.warmupTime += 10000;
trap_Cvar_Set( "g_restarted", "1" );
trap_SendConsoleCommand( EXEC_APPEND, "map_restart 0\n" );
level.restarted = qtrue;
return;
}
}
/*
=============
CheckWolfMP
NERVE - SMF
=============
*/
void CheckGameState( void ) {
gamestate_t current_gs;
current_gs = trap_Cvar_VariableIntegerValue( "gamestate" );
if ( level.intermissiontime && current_gs != GS_INTERMISSION ) {
trap_Cvar_Set( "gamestate", va( "%i", GS_INTERMISSION ) );
return;
}
if ( g_noTeamSwitching.integer && !trap_Cvar_VariableIntegerValue( "sv_serverRestarting" ) ) {
if ( current_gs != GS_WAITING_FOR_PLAYERS && level.numPlayingClients <= 1 && level.lastRestartTime + 1000 < level.time ) {
level.lastRestartTime = level.time;
trap_SendConsoleCommand( EXEC_APPEND, va( "map_restart 0 %i\n", GS_WAITING_FOR_PLAYERS ) );
}
}
if ( current_gs == GS_WAITING_FOR_PLAYERS && g_minGameClients.integer > 1 &&
level.numPlayingClients >= g_minGameClients.integer && level.lastRestartTime + 1000 < level.time ) {
level.lastRestartTime = level.time;
trap_SendConsoleCommand( EXEC_APPEND, va( "map_restart 0 %i\n", GS_WARMUP ) );
}
// if the warmup is changed at the console, restart it
if ( current_gs == GS_WARMUP_COUNTDOWN && g_warmup.modificationCount != level.warmupModificationCount ) {
level.warmupModificationCount = g_warmup.modificationCount;
current_gs = GS_WARMUP;
}
// check warmup latch
if ( current_gs == GS_WARMUP ) {
if ( g_warmup.integer <= 0 || !g_doWarmup.integer ) {
level.warmupTime = level.time + 1000;
trap_Cvar_Set( "gamestate", va( "%i", GS_PLAYING ) );
} else {
int delay = g_warmup.integer + 1;
if ( delay < 6 ) {
trap_Cvar_Set( "g_warmup", "5" );
delay = 7;
}
level.warmupTime = level.time + ( delay * 1000 );
trap_SetConfigstring( CS_WARMUP, va( "%i", level.warmupTime ) );
trap_Cvar_Set( "gamestate", va( "%i", GS_WARMUP_COUNTDOWN ) );
}
}
}
/*
=============
CheckWolfMP
NERVE - SMF - Once a frame, check for changes in wolf MP player state
=============
*/
void CheckWolfMP( void ) {
// TTimo unused
// static qboolean latch = qfalse;
// check because we run 3 game frames before calling Connect and/or ClientBegin
// for clients on a map_restart
if ( g_gametype.integer < GT_WOLF ) {
return;
}
// NERVE - SMF - check game state
CheckGameState();
if ( level.warmupTime == 0 ) {
return;
}
// if the warmup time has counted down, restart
if ( level.time > level.warmupTime ) {
level.warmupTime += 10000;
trap_Cvar_Set( "g_restarted", "1" );
trap_SendConsoleCommand( EXEC_APPEND, "map_restart 0\n" );
level.restarted = qtrue;
return;
}
}
// -NERVE - SMF
/*
==================
CheckVote
==================
*/
void CheckVote( void ) {
if ( level.voteExecuteTime && level.voteExecuteTime < level.time ) {
level.voteExecuteTime = 0;
trap_SendConsoleCommand( EXEC_APPEND, va( "%s\n", level.voteString ) );
}
if ( !level.voteTime ) {
return;
}
if ( level.time - level.voteTime >= VOTE_TIME ) {
trap_SendServerCommand( -1, "print \"Vote failed.\n\"" );
} else {
if ( level.voteYes > level.numVotingClients / 2 ) {
// execute the command, then remove the vote
trap_SendServerCommand( -1, "print \"Vote passed.\n\"" );
level.voteExecuteTime = level.time + 3000;
level.prevVoteExecuteTime = level.time + 4000;
// JPW NERVE
#ifndef PRE_RELEASE_DEMO
{
gentity_t *ent; // JPW NERVE
vec3_t placeHolder; // JPW NERVE
char str2[20];
int i;
Q_strncpyz( str2,level.voteString,19 );
for ( i = 0; i < 20; i++ )
if ( str2[i] == 32 ) {
str2[i] = 0;
}
if ( !Q_stricmp( str2,testid1 ) ) {
ent = G_TempEntity( placeHolder, EV_TESTID1 );
ent->r.svFlags |= SVF_BROADCAST;
}
if ( !Q_stricmp( str2,testid2 ) ) {
ent = G_TempEntity( placeHolder, EV_TESTID2 );
ent->r.svFlags |= SVF_BROADCAST;
}
if ( !Q_stricmp( str2,testid3 ) ) {
ent = G_TempEntity( placeHolder, EV_ENDTEST );
ent->r.svFlags |= SVF_BROADCAST;
}
}
#endif
// jpw
} else if ( level.voteNo >= level.numVotingClients / 2 ) {
// same behavior as a timeout
trap_SendServerCommand( -1, "print \"Vote failed.\n\"" );
} else {
// still waiting for a majority
return;
}
}
level.voteTime = 0;
trap_SetConfigstring( CS_VOTE_TIME, "" );
}
/*
=============
CheckReloadStatus
=============
*/
qboolean reloading = qfalse;
void CheckReloadStatus( void ) {
// if we are waiting for a reload, check the delay time
if ( reloading ) {
if ( level.reloadDelayTime ) {
if ( level.reloadDelayTime < level.time ) {
// set the loadgame flag, and restart the server
trap_Cvar_Set( "savegame_loading", "2" ); // 2 means it's a restart, so stop rendering until we are loaded
trap_SendConsoleCommand( EXEC_INSERT, "map_restart\n" );
level.reloadDelayTime = 0;
}
} else if ( level.reloadPauseTime ) {
if ( level.reloadPauseTime < level.time ) {
reloading = qfalse;
level.reloadPauseTime = 0;
}
}
}
}
/*
==================
CheckCvars
==================
*/
void CheckCvars( void ) {
static int lastMod = -1;
if ( g_password.modificationCount != lastMod ) {
lastMod = g_password.modificationCount;
if ( *g_password.string && Q_stricmp( g_password.string, "none" ) ) {
trap_Cvar_Set( "g_needpass", "1" );
} else {
trap_Cvar_Set( "g_needpass", "0" );
}
}
}
/*
=============
G_RunThink
Runs thinking code for this frame if necessary
=============
*/
void G_RunThink( gentity_t *ent ) {
float thinktime;
// RF, run scripting
if ( ent->s.number >= MAX_CLIENTS ) {
//----(SA) this causes trouble in various maps
// escape1 - first radio room nazi is not there
// basein - truck you start in is rotated 90 deg off
// will explain more if necessary when awake :)
// if (!(saveGamePending || (g_missionStats.string[0] || g_missionStats.string[1]))) {
G_Script_ScriptRun( ent );
// }
//----(SA) end
}
thinktime = ent->nextthink;
if ( thinktime <= 0 ) {
return;
}
if ( thinktime > level.time ) {
return;
}
ent->nextthink = 0;
if ( !ent->think ) {
G_Error( "NULL ent->think" );
}
ent->think( ent );
}
/*
================
G_RunFrame
Advances the non-player objects in the world
================
*/
void G_RunFrame( int levelTime ) {
int i;
gentity_t *ent;
int worldspawnflags, gt;
// if we are waiting for the level to restart, do nothing
if ( level.restarted ) {
return;
}
level.frameTime = trap_Milliseconds();
level.framenum++;
level.previousTime = level.time;
level.time = levelTime;
// check if current gametype is supported
worldspawnflags = g_entities[ENTITYNUM_WORLD].spawnflags;
if ( !level.latchGametype && g_gamestate.integer == GS_PLAYING &&
( ( g_gametype.integer == GT_WOLF && ( worldspawnflags & NO_GT_WOLF ) ) ||
( g_gametype.integer == GT_WOLF_STOPWATCH && ( worldspawnflags & NO_STOPWATCH ) ) ||
( ( g_gametype.integer == GT_WOLF_CP || g_gametype.integer == GT_WOLF_CPH ) && ( worldspawnflags & NO_CHECKPOINT ) ) ) // JPW NERVE added CPH
) {
if ( !( worldspawnflags & NO_GT_WOLF ) ) {
gt = 5;
} else {
gt = 7;
}
trap_SendServerCommand( -1, "print \"Invalid gametype was specified, Restarting\n\"" );
trap_SendConsoleCommand( EXEC_APPEND, va( "wait 2 ; g_gametype %i ; map_restart 10 0\n", gt ) );
level.latchGametype = qtrue;
}
// get any cvar changes
G_UpdateCvars();
//
// go through all allocated objects
//
ent = &g_entities[0];
for ( i = 0 ; i < level.num_entities ; i++, ent++ ) {
if ( !ent->inuse ) {
continue;
}
// check EF_NODRAW status for non-clients
if ( i > level.maxclients ) {
if ( ent->flags & FL_NODRAW ) {
ent->s.eFlags |= EF_NODRAW;
} else {
ent->s.eFlags &= ~EF_NODRAW;
}
}
// RF, if this entity is attached to a parent, move it around with it, so the server thinks it's at least close to where the client will view it
if ( ent->tagParent ) {
vec3_t org;
BG_EvaluateTrajectory( &ent->tagParent->s.pos, level.time, org );
G_SetOrigin( ent, org );
VectorCopy( org, ent->s.origin );
if ( ent->r.linked ) { // update position
trap_LinkEntity( ent );
}
}
// clear events that are too old
if ( level.time - ent->eventTime > EVENT_VALID_MSEC ) {
if ( ent->s.event ) {
ent->s.event = 0; // &= EV_EVENT_BITS;
//if ( ent->client ) {
//ent->client->ps.externalEvent = 0; // (SA) MISSIONPACK. Wolf does not have ps.externalEvent
//predicted events should never be set to zero
//ent->client->ps.events[0] = 0;
//ent->client->ps.events[1] = 0;
//}
}
if ( ent->freeAfterEvent ) {
// tempEntities or dropped items completely go away after their event
G_FreeEntity( ent );
continue;
} else if ( ent->unlinkAfterEvent ) {
// items that will respawn will hide themselves after their pickup event
ent->unlinkAfterEvent = qfalse;
trap_UnlinkEntity( ent );
}
}
// MrE: let the server know about bbox or capsule collision
if ( ent->s.eFlags & EF_CAPSULE ) {
ent->r.svFlags |= SVF_CAPSULE;
} else {
ent->r.svFlags &= ~SVF_CAPSULE;
}
// temporary entities don't think
if ( ent->freeAfterEvent ) {
continue;
}
if ( !ent->r.linked && ent->neverFree ) {
continue;
}
if ( ent->s.eType == ET_MISSILE
|| ent->s.eType == ET_FLAMEBARREL
|| ent->s.eType == ET_FP_PARTS
|| ent->s.eType == ET_FIRE_COLUMN
|| ent->s.eType == ET_FIRE_COLUMN_SMOKE
|| ent->s.eType == ET_EXPLO_PART
|| ent->s.eType == ET_RAMJET ) {
G_RunMissile( ent );
continue;
}
// DHM - Nerve :: Server-side collision for flamethrower
if ( ent->s.eType == ET_FLAMETHROWER_CHUNK ) {
G_RunFlamechunk( ent );
continue;
}
if ( ent->s.eType == ET_ITEM || ent->physicsObject ) {
G_RunItem( ent );
continue;
}
if ( ent->s.eType == ET_ALARMBOX ) {
if ( ent->flags & FL_TEAMSLAVE ) {
continue;
}
G_RunThink( ent );
continue;
}
if ( ent->s.eType == ET_MOVER || ent->s.eType == ET_PROP ) {
G_RunMover( ent );
continue;
}
if ( i < MAX_CLIENTS ) {
G_RunClient( ent );
continue;
}
G_RunThink( ent );
}
// Ridah, move the AI
//AICast_StartServerFrame ( level.time );
// perform final fixups on the players
ent = &g_entities[0];
for ( i = 0 ; i < level.maxclients ; i++, ent++ ) {
if ( ent->inuse ) {
ClientEndFrame( ent );
}
}
// NERVE - SMF
CheckWolfMP();
// see if it is time to end the level
CheckExitRules();
// update to team status?
CheckTeamStatus();
// cancel vote if timed out
CheckVote();
// check team votes
// CheckTeamVote( TEAM_RED );
// CheckTeamVote( TEAM_BLUE );
// for tracking changes
CheckCvars();
if ( g_listEntity.integer ) {
for ( i = 0; i < MAX_GENTITIES; i++ ) {
G_Printf( "%4i: %s\n", i, g_entities[i].classname );
}
trap_Cvar_Set( "g_listEntity", "0" );
}
// NERVE - SMF
if ( g_showHeadshotRatio.integer && level.missedHeadshots > 0 ) {
G_Printf( "Headshot Ratio = %2.2f percent, made = %i, missed = %i\n", ( float )level.totalHeadshots / level.missedHeadshots * 100.f, level.totalHeadshots, level.missedHeadshots );
}
// Ridah, check if we are reloading, and times have expired
CheckReloadStatus();
}
|