GLOBALS.CPP (33480B)
1 // 2 // Copyright 2020 Electronic Arts Inc. 3 // 4 // TiberianDawn.DLL and RedAlert.dll and corresponding source code is free 5 // software: you can redistribute it and/or modify it under the terms of 6 // the GNU General Public License as published by the Free Software Foundation, 7 // either version 3 of the License, or (at your option) any later version. 8 9 // TiberianDawn.DLL and RedAlert.dll and corresponding source code is distributed 10 // in the hope that it will be useful, but with permitted additional restrictions 11 // under Section 7 of the GPL. See the GNU General Public License in LICENSE.TXT 12 // distributed with this program. You should have received a copy of the 13 // GNU General Public License along with permitted additional restrictions 14 // with this program. If not, see https://github.com/electronicarts/CnC_Remastered_Collection 15 16 /* $Header: F:\projects\c&c\vcs\code\globals.cpv 2.17 16 Oct 1995 16:52:22 JOE_BOSTIC $ */ 17 /*********************************************************************************************** 18 *** C O N F I D E N T I A L --- W E S T W O O D S T U D I O S *** 19 *********************************************************************************************** 20 * * 21 * Project Name : Command & Conquer * 22 * * 23 * File Name : GLOBALS.CPP * 24 * * 25 * Programmer : Joe L. Bostic * 26 * * 27 * Start Date : September 10, 1993 * 28 * * 29 * Last Update : September 10, 1993 [JLB] * 30 * * 31 *---------------------------------------------------------------------------------------------* 32 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ 33 34 #include "function.h" 35 36 #ifdef JAPANESE 37 bool ForceEnglish = false; 38 #endif 39 40 bool Debug_Quiet = false; 41 bool Debug_Cheat = false; 42 bool Debug_Remap = false; 43 bool Debug_Icon = false; 44 bool Debug_Flag = false; 45 bool Debug_Lose = false; 46 bool Debug_Win = false; 47 bool Debug_Map = false; // true = map editor mode 48 bool Debug_Passable = false; // true = show passable/impassable terrain 49 bool Debug_Unshroud = false; // true = hide the shroud 50 bool Debug_Threat = false; 51 bool Debug_Find_Path = false; 52 bool Debug_Check_Map = false; // true = validate the map each frame 53 bool Debug_Playtest = false; 54 int In_Debugger = 0; 55 bool Debug_Heap_Dump = false; // true = print the Heap Dump 56 bool Debug_Smart_Print = false; // true = print everything that calls Smart_Printf 57 bool Debug_Trap_Check_Heap = false; // true = check the Heap 58 bool Debug_Instant_Build = false; 59 bool Debug_Force_Crash = false; 60 61 62 TFixedIHeapClass<UnitClass> Units; 63 TFixedIHeapClass<FactoryClass> Factories; 64 TFixedIHeapClass<TerrainClass> Terrains; 65 TFixedIHeapClass<TemplateClass> Templates; 66 TFixedIHeapClass<SmudgeClass> Smudges; 67 TFixedIHeapClass<OverlayClass> Overlays; 68 TFixedIHeapClass<InfantryClass> Infantry; 69 TFixedIHeapClass<BulletClass> Bullets; 70 TFixedIHeapClass<BuildingClass> Buildings; 71 TFixedIHeapClass<AnimClass> Anims; 72 TFixedIHeapClass<AircraftClass> Aircraft; 73 TFixedIHeapClass<TriggerClass> Triggers; 74 TFixedIHeapClass<TeamTypeClass> TeamTypes; 75 TFixedIHeapClass<TeamClass> Teams; 76 TFixedIHeapClass<HouseClass> Houses; 77 78 79 #ifdef PATCH 80 /*************************************************************************** 81 ** Compatibility with version 1.07 flag. 82 */ 83 bool IsV107 = false; 84 char OverridePath[128]="."; 85 #endif 86 87 88 /*************************************************************************** 89 ** This tracks all selected objects per house (for this map). 90 */ 91 SelectedObjectsType CurrentObject; 92 93 94 /*************************************************************************** 95 ** This holds the custom version text that is fetched from the version 96 ** text file. This version is displayed on the options dialog. 97 */ 98 char VersionText[16]; 99 100 101 /*************************************************************************** 102 ** This is the VQ animation controller structure. It is filled in by reading 103 ** the PLAYER.INI and overridden through program control. 104 */ 105 //PG_TO_FIX 106 //VQAConfig AnimControl; 107 108 int PreserveVQAScreen; // Used for screen mode transition control. 109 bool BreakoutAllowed = true; // "true" if aborting of movies is allowed. 110 bool Brokeout; // Was the movie broken out of? 111 bool SlowPalette = true; // Slow palette flag set? 112 113 114 /*************************************************************************** 115 ** These are the movie names to use for mission briefing, winning, and losing 116 ** sequences. They are read from the INI file. 117 */ 118 char IntroMovie[_MAX_FNAME+_MAX_EXT]; 119 char BriefMovie[_MAX_FNAME+_MAX_EXT]; 120 char WinMovie[_MAX_FNAME+_MAX_EXT]; 121 char WinMovie2[_MAX_FNAME + _MAX_EXT]; 122 char WinMovie3[_MAX_FNAME + _MAX_EXT]; 123 char WinMovie4[_MAX_FNAME + _MAX_EXT]; 124 char LoseMovie[_MAX_FNAME+_MAX_EXT]; 125 char ActionMovie[_MAX_FNAME+_MAX_EXT]; 126 char MovieThemeName[_MAX_FNAME + _MAX_EXT]; 127 char BriefingText[512]; 128 ThemeType TransitTheme = THEME_NONE; 129 130 131 /*************************************************************************** 132 ** This records the view hotspots for the player. These are the cell numbers 133 ** of the upper left corner for the view position. 134 */ 135 CELL Views[4]; 136 137 138 /*************************************************************************** 139 ** This is the pending speech sample to play. This sample will be played 140 ** at the first opportunity. 141 */ 142 VoxType SpeakQueue = VOX_NONE; 143 144 145 /*************************************************************************** 146 ** This records if the score (music) file is present. If not, then much of 147 ** the streaming score system can be disabled. 148 */ 149 bool ScoresPresent; 150 151 152 /*************************************************************************** 153 ** This flag will control whether there is a response from game units. 154 ** By carefully controlling this global, multiple responses are supressed 155 ** when a large group of infantry is given the movement order. 156 */ 157 bool AllowVoice = true; 158 159 160 /*************************************************************************** 161 ** This counts the number of crates on the map. When this value reaches zero, 162 ** then a timer is started that will control crate creation. 163 */ 164 int CrateCount; 165 TCountDownTimerClass CrateTimer; 166 bool CrateMaker = false; 167 168 169 /*************************************************************************** 170 ** This is the current frame number. This number is guaranteed to count 171 ** upward at the rate of one per game logic process. The target rate is 15 172 ** per second. This value is saved and restored with the saved game. 173 */ 174 long Frame = 0; 175 176 177 /*************************************************************************** 178 ** These globals are constantly monitored to determine if the player 179 ** has won or lost. They get set according to the trigger events associated 180 ** with the scenario. 181 */ 182 bool PlayerWins; 183 bool PlayerLoses; 184 bool PlayerRestarts; 185 186 /* 187 ** This flag is set if the player neither wins nor loses; it's mostly for 188 ** multiplayer mode. 189 */ 190 bool PlayerAborts; 191 192 193 /*************************************************************************** 194 ** This is the pointer for the speech staging buffer. This buffer is used 195 ** to hold the currently speaking voice data. Since only one speech sample 196 ** is played at a time, this buffer is only as big as the largest speech 197 ** sample that can be played. 198 */ 199 void * SpeechBuffer; 200 201 202 /*************************************************************************** 203 ** This is a running accumulation of the number of ticks that were unused. 204 ** This accumulates into a useful value that contributes to a 205 ** histogram of game performance. 206 */ 207 long SpareTicks; 208 209 210 /*************************************************************************** 211 ** This is a special scenario count down value. End of game condition will 212 ** not be checked until this value reaches zero. 213 */ 214 int EndCountDown; 215 216 217 /*************************************************************************** 218 ** When the player sabotages a building (scenario #6 GDI only) then when 219 ** the next scenario starts, that building will already be destroyed. 220 */ 221 StructType SabotagedType; 222 223 224 /*************************************************************************** 225 ** If the Nod temple was destroyed by the ion cannon, then this flag will 226 ** be set to true. 227 */ 228 bool TempleIoned = false; 229 230 231 /*************************************************************************** 232 ** This is the monochrome debug page array. The various monochrome data 233 ** screens are located here. 234 */ 235 MonoClass MonoArray[MonoClass::MAX_MONO_PAGES]; 236 int MonoPage; // The current page. 237 238 239 /*************************************************************************** 240 ** This is true if the game is the currently in focus windows app 241 ** 242 */ 243 bool GameInFocus = true; 244 245 /*************************************************************************** 246 ** This holds the theater specific mixfiles. 247 */ 248 MixFileClass *TheaterData = NULL; 249 MixFileClass *TheaterIcons = NULL; 250 MixFileClass *LowTheaterData; 251 MixFileClass *MoviesMix = 0; 252 MixFileClass *GeneralMix = 0; 253 MixFileClass *ScoreMix = 0; 254 255 256 /*************************************************************************** 257 ** This is the options control class. The options control such things as 258 ** game speed, visual controls, and other user settings. 259 */ 260 GameOptionsClass Options; 261 262 263 /*************************************************************************** 264 ** Logic processing is controlled by this element. It handles both graphic 265 ** and AI logic. 266 */ 267 LogicClass Logic; 268 269 270 /*************************************************************************** 271 ** This handles the background music. 272 */ 273 ThemeClass Theme; 274 275 276 /*************************************************************************** 277 ** This is the main control class for the map. 278 */ 279 #ifdef SCENARIO_EDITOR 280 MapEditClass Map; 281 #else 282 MouseClass Map; 283 #endif 284 285 /************************************************************************** 286 ** The running game score is handled by this class (and member functions). 287 */ 288 ScoreClass Score; 289 290 291 /*************************************************************************** 292 ** The running credit display is controlled by this class (and member 293 ** functions. 294 */ 295 CreditClass CreditDisplay; 296 297 298 /*************************************************************************** 299 ** These are the bits that are set when the appropriate tutor message 300 ** has been displayed. Once the message has been displayed, it will not be 301 ** displayed again. 302 */ 303 long TutorFlags[2]; 304 305 306 /************************************************************************** 307 ** This class records the special command override options that C&C 308 ** supports. 309 */ 310 SpecialClass Special; 311 312 313 /*************************************************************************** 314 ** General rules that control the game. 315 */ 316 RulesClass Rule; 317 318 319 /*************************************************************************** 320 ** This is the scenario data for the currently loaded scenario. 321 ** These variables should all be set together. 322 */ 323 HousesType Whom; // Initial command line house choice. 324 unsigned Scenario; // Scenario # 325 ScenarioPlayerType ScenPlayer; // GDI, NOD, 2-Player, Multi-Player 326 ScenarioDirType ScenDir; // East/West 327 ScenarioVarType ScenVar; // variation A/B/C 328 char ScenarioName[_MAX_FNAME+_MAX_EXT]; // name of scenario 329 int CarryOverMoney; // Carry over money from last scenario. 330 int CarryOverPercent; // Carry over money percentage control. 331 int CarryOverCap; // Maxmimum carry over money allowed. 332 int ScenarioInit; 333 bool SpecialFlag = false; 334 335 336 /*************************************************************************** 337 ** This value tells the sidebar what items it's allowed to add. The 338 ** lower the value, the simpler the sidebar will be. 339 */ 340 unsigned BuildLevel = 3; // Buildable level (1 = simplest) 341 342 343 /*************************************************************************** 344 ** This value is computed every time a new scenario is loaded; it's a 345 ** CRC of the INI and binary map files. 346 */ 347 unsigned long ScenarioCRC; 348 349 350 /*************************************************************************** 351 ** The various tutor and dialog messages are located in the data block 352 ** referenced by this pointer. 353 */ 354 char const * SystemStrings; 355 356 357 /*************************************************************************** 358 ** The game plays as long as this var is true. 359 */ 360 bool GameActive; 361 362 363 /*************************************************************************** 364 ** This is a scratch variable that is used to when a reference is needed to 365 ** a long, but the value wasn't supplied to a function. This is used 366 ** specifically for the default reference value. As such, it is not stable. 367 */ 368 long LParam; 369 370 371 #ifdef SCENARIO_EDITOR 372 /*************************************************************************** 373 ** The currently-selected cell for the Scenario Editor 374 */ 375 CELL CurrentCell = 0; 376 #endif 377 378 379 /*************************************************************************** 380 ** Most of the text in the game will use the six point font. These are the 381 ** pointers to the fonts. If it is NULL, then the font hasn't been loaded 382 ** yet. 383 */ 384 void const *Green12FontPtr; // Green font for pressed in tabs 385 void const *Green12GradFontPtr; // Graduated green font for tabs 386 void const *MapFontPtr; // Standard very small font. 387 void const *Font3Ptr; // Standard very small font. 388 void const *Font6Ptr; // Standard small font. 389 void const *Font8Ptr; // 8 point proportional. 390 void const *FontLEDPtr; // LED fixed point font. 391 void const *VCRFontPtr; // VCR font pointer. 392 void const *ScoreFontPtr; // font for score & map selection screens 393 void const *GradFont6Ptr; // gradient 6 point font pointer. 394 395 396 /*************************************************************************** 397 ** This is the house that the human player is currently playing. 398 */ 399 HouseClass * PlayerPtr; 400 401 402 /*************************************************************************** 403 ** Special palettes for MCGA mode goes here. These palette buffers are used 404 ** for pictures that do not use the game palette or are used for fading to 405 ** black. 406 */ 407 unsigned char *GamePalette; 408 unsigned char *BlackPalette; 409 unsigned char *WhitePalette; 410 unsigned char *OriginalPalette; 411 unsigned char *Palette; 412 413 414 /*************************************************************************** 415 ** These are the event queues. One is for holding events until they are ready to be 416 ** sent to the remote computer for processing. The other list is for incoming events 417 ** that need to be executed when the correct frame has been reached. 418 */ 419 QueueClass<EventClass, MAX_EVENTS> OutList; 420 QueueClass<EventClass, (MAX_EVENTS * 8)> DoList; 421 422 423 /*************************************************************************** 424 ** These are arrays/lists of trigger pointers for each cell & the houses. 425 */ 426 DynamicVectorClass<TriggerClass *> CellTriggers; 427 DynamicVectorClass<TriggerClass *> HouseTriggers[HOUSE_COUNT]; 428 429 430 /*************************************************************************** 431 ** This is an array of waypoints; each waypoint corresponds to a letter of 432 ** the alphabet, and points to a cell number. -1 means unassigned. 433 ** The CellClass has a bit that tells if that cell has a waypoint attached to 434 ** it; the only way to find which waypoint it is, is to scan this array. This 435 ** shouldn't be needed often; usually, you know the waypoint & you want the CELL. 436 */ 437 CELL Waypoint[WAYPT_COUNT]; 438 439 440 /*************************************************************************** 441 ** This is the list of BuildingTypes that define the AI's base. 442 */ 443 BaseClass Base; 444 445 446 /*************************************************************************** 447 ** This value tells what type of multiplayer game we're playing. 448 */ 449 GameType GameToPlay = GAME_NORMAL; 450 451 452 /*************************************************************************** 453 ** This is the current communications protocol 454 */ 455 CommProtocolType CommProtocol; 456 457 458 /*************************************************************************** 459 ** These values are used for recording & playing back a game. 460 */ 461 CCFileClass RecordFile ("RECORD.BIN"); 462 int RecordGame = 0; // 1 = record a game 463 int SuperRecord = 0; // 1 = reopen record file with every write 464 int PlaybackGame= 0; // 1 = play back a game 465 int AllowAttract = 0; // 1 = allow attract mode 466 467 468 /*************************************************************************** 469 ** This is the null modem manager class. Declaring this class doesn't 470 ** perform any allocations; 471 ** the class itself is ?? bytes. 472 */ 473 #if (0) //PG_TO_FIX 474 bool ModemService = true; // When false disable servicing modem. 475 NullModemClass NullModem ( 476 16, // number of send entries 477 64, // number of receive entries 478 // sizeof (EventClass) * MAX_EVENTS, // maxlen of entry buffer 479 (200 / sizeof(EventClass) ) * sizeof(EventClass) + sizeof( CommHeaderType ), 480 0x1234); // Magic number must have each digit unique 481 // and different from the queue magic number 482 483 484 DynamicVectorClass <PhoneEntryClass *> PhoneBook; 485 int CurPhoneIdx; // current phonebook index, for dialing 486 487 DynamicVectorClass <char *> InitStrings; 488 489 SerialSettingsType SerialDefaults; // serial port default settings 490 491 //ModemGameType ModemGameToPlay; // type of modem play Dialer, answerer, null 492 493 char *DialMethodCheck[ DIAL_METHODS ] = { 494 "T", 495 "P" 496 }; 497 498 char *CallWaitStrings[ CALL_WAIT_STRINGS_NUM ] = { 499 "*70,", 500 "70#,", 501 "1170,", 502 "CUSTOM - " 503 }; 504 #endif 505 506 ModemGameType ModemGameToPlay; // type of modem play Dialer, answerer, null 507 508 /*************************************************************************** 509 ** Index into scenario description list box 510 */ 511 int ScenarioIdx; 512 513 514 /*************************************************************************** 515 ** This array of flags tells if the given colors have been used, or are 516 */ 517 int ColorUsed[MAX_MPLAYER_COLORS]; 518 519 520 /*************************************************************************** 521 ** This string stores the player's name. 522 */ 523 char MPlayerName[MPLAYER_NAME_MAX]; 524 525 526 /*************************************************************************** 527 ** This is the array of remap colors. Each player in a network game is 528 ** assigned one of these colors. The 'G' is for graphics drawing; the 'T' 529 ** is for text printing (indicates a remap table for the font to use). 530 */ 531 int MPlayerGColors[MAX_MPLAYER_COLORS] = { 532 5, // Yellow 533 127, // Red 534 135, // BlueGreen 535 26, // Orange 536 4, // Green 537 202 // Blue-Grey 538 }; 539 540 int MPlayerTColors[MAX_MPLAYER_COLORS] = { 541 CC_GDI_COLOR, // Yellow 542 CC_NOD_COLOR, // Red 543 CC_BLUE_GREEN, // BlueGreen 544 CC_ORANGE, // Orange //26 545 CC_GREEN, // Green 546 CC_BLUE_GREY, // Blue 547 }; 548 549 550 /*************************************************************************** 551 ** This is a list of all the names of the multiplayer scenarios that use 552 ** bases (production), and those that don't. There is a list for 553 ** descriptions, and another for actual filenames. 554 */ 555 char MPlayerDescriptions[100][40]; 556 DynamicVectorClass <char *> MPlayerScenarios; 557 DynamicVectorClass <int> MPlayerFilenum; 558 559 560 /*************************************************************************** 561 ** This value determines the max allowable # of players. 562 */ 563 int MPlayerMax = 6; 564 565 566 /*************************************************************************** 567 ** Multiplayer game options 568 */ 569 int MPlayerPrefColor; // preferred color index for this player 570 int MPlayerColorIdx; // actual color index of this player 571 HousesType MPlayerHouse; // House of this player (GDI/NOD) 572 unsigned char MPlayerLocalID; // ID of this player 573 int MPlayerCount; // # of human players in this game 574 int MPlayerBases; // 1 = bases are on for this scenario 575 int MPlayerCredits; // # credits everyone gets 576 int MPlayerTiberium; // 1 = tiberium enabled for this scenario 577 int MPlayerGoodies; // 1 = goodies enabled for this scenario 578 int MPlayerGhosts; // 1 = houses with no players will still play 579 int MPlayerSolo = 0; // 1 = allows a single-player net game 580 int MPlayerUnitCount = 10; // # units for non-base multiplayer scenarios 581 582 583 /*--------------------------------------------------------------------------- 584 Min & Max unit count values; index0 = bases OFF, index1 = bases ON 585 ---------------------------------------------------------------------------*/ 586 int MPlayerCountMin[2] = {1,0}; 587 int MPlayerCountMax[2] = {50,12}; 588 589 590 /*--------------------------------------------------------------------------- 591 MPlayerMaxAhead is the number of frames ahead of this one to execute a given 592 packet. It's set by the RESPONSE_TIME event. 593 ---------------------------------------------------------------------------*/ 594 unsigned long MPlayerMaxAhead = 3; 595 596 597 /*--------------------------------------------------------------------------- 598 'FrameSendRate' is the # frames between data packets 599 'FrameRateDelay' is the time ticks to wait between frames, for smoothing. 600 ---------------------------------------------------------------------------*/ 601 unsigned long FrameSendRate; 602 603 604 /*************************************************************************** 605 ** Multiplayer ID's, stored in order of event execution. 606 ** Format: 607 ** bits 0-3: the "preferred" house of the player (GDI/NOD) 608 ** bits 4-7: the player's Color Index 609 ** These values are used as the IPX connection ID's. 610 */ 611 unsigned char MPlayerID [MAX_PLAYERS]; 612 613 614 /*************************************************************************** 615 ** This array stores the actual HousesType for all players (MULT1, etc). 616 */ 617 HousesType MPlayerHouses [MAX_PLAYERS]; 618 619 620 /*************************************************************************** 621 ** This array stores the names of all players in a multiplayer game. 622 */ 623 char MPlayerNames [MAX_PLAYERS][MPLAYER_NAME_MAX]; 624 625 626 /*************************************************************************** 627 ** This is a list of the messages received from / sent to other players, 628 ** the address to send to (IPX only), and the last message received or 629 ** sent (for the computer's messages). 630 */ 631 MessageListClass Messages; 632 IPXAddressClass MessageAddress; 633 char LastMessage[MAX_MESSAGE_LENGTH]; 634 635 636 /*************************************************************************** 637 ** If this flag is set, computer AI will blitz the humans all at once; 638 ** otherwise, the computer units trickle gradually out. 639 */ 640 int MPlayerBlitz = 0; 641 642 643 /*************************************************************************** 644 ** If this flag is set, we can move around the map, but we can't do anything. 645 ** It means we've been defeated, but we're still allowed to watch the action. 646 */ 647 int MPlayerObiWan = 0; 648 649 650 /*************************************************************************** 651 ** These variables keep track of the multiplayer game scores. 652 */ 653 MPlayerScoreType MPlayerScore[MAX_MULTI_NAMES]; 654 int MPlayerGamesPlayed; // # games played this run 655 int MPlayerNumScores; // # active entries in MPlayerScore 656 int MPlayerWinner; // index of winner of last game 657 int MPlayerCurGame; // index of current game being played 658 659 660 // 661 // This array stores the processing time required by all multiplayer systems. 662 // The values are stored in the same order as the 'MPlayerID' array. 663 // 664 int TheirProcessTime[MAX_PLAYERS - 1]; 665 int DesiredFrameRate; 666 667 668 /*************************************************************************** 669 ** These values are used purely for the Mono debug display. They show the 670 ** names of the Global Channel packet types, and the event types. 671 */ 672 char *GlobalPacketNames[] = { 673 "Game?", 674 "Game!", 675 "Player?", 676 "Player!", 677 "Join?", 678 "Join!", 679 "Reject", 680 "GameOptions", 681 "Sign Off", 682 "GO!", 683 "Message", 684 "Ping" 685 }; 686 687 688 // yeah, there's 100 empty names here, because the SerialCommandType starts at 100. 689 char *SerialPacketNames[] = { 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 "CONNECT", 791 "GAME_OPTIONS", 792 "SIGN_OFF", 793 "GO", 794 "MESSAGE", 795 "TIMING", 796 "SCORE_SCREEN", 797 "LAST_COMMAND", 798 }; 799 800 801 /*************************************************************************** 802 ** These variables are just to help find sync bugs. 803 */ 804 long TrapFrame = 0x7fffffff; // frame to start trapping object values at 805 RTTIType TrapObjType = RTTI_NONE; // type of object to trap 806 TrapObjectType TrapObject = {NULL}; // ptr to object being trapped 807 COORDINATE TrapCoord = 0; // COORD of object to trap 808 void *TrapThis = NULL; // 'this' ptr of object to trap 809 CellClass *TrapCell = NULL; // for trapping a cell 810 int TrapCheckHeap = 0; // start checking the Heap 811 812 813 /*************************************************************************** 814 ** This is the network IPX manager class. It handles multiple remote 815 ** connections. Declaring this class doesn't perform any allocations; 816 ** the class itself is 140 bytes. 817 */ 818 IPXManagerClass Ipx ( 819 sizeof (GlobalPacketType), // size of Global Channel packets 820 ((546 - sizeof(CommHeaderType)) / sizeof(EventClass) ) * sizeof(EventClass), 821 10, // # entries in Global Queue 822 8, // # entries in Private Queues 823 VIRGIN_SOCKET, // Socket ID # 824 IPXGlobalConnClass::COMMAND_AND_CONQUER); // Product ID # 825 826 827 //#if(TIMING_FIX) 828 // 829 // These values store the min & max frame #'s for when MaxAhead >>increases<<. 830 // If MaxAhead increases, and the other systems free-run to the new MaxAhead 831 // value, they may miss an event generated after the MaxAhead event was sent, 832 // but before it executed, since it will have been scheduled with the older, 833 // shorter MaxAhead value. This will cause a Packet_Received_Too_Late error. 834 // The frames from the point where the new MaxAhead takes effect, up to that 835 // frame Plus the new MaxAhead, represent a "period of vulnerability"; any 836 // events received that are scheduled to execute during this period should 837 // be re-scheduled for after that period. 838 // 839 int NewMaxAheadFrame1; 840 int NewMaxAheadFrame2; 841 //#endif 842 843 /*************************************************************************** 844 ** This is the user-specified IPX address of a desired game owner machine. 845 ** Use this to cross a bridge. Only the 1st 4 numbers in the address are 846 ** used; the rest are set to ff's, for broadcasting. 'IsBridge' is set 847 ** if this address should be used. 848 */ 849 int IsBridge = 0; 850 IPXAddressClass BridgeNet; 851 852 853 /*************************************************************************** 854 ** This flag is true if the user has requested that this game be "secret" 855 ** (The game will not appear to other systems just starting up.) 856 */ 857 bool NetStealth = false; 858 859 860 /*************************************************************************** 861 ** If this flag is true, the user won't receive messages from any player 862 ** other than those in his own game. It defaults to protected mode. 863 */ 864 bool NetProtect = true; 865 866 867 /*************************************************************************** 868 ** This flag indicates whether the game is "open" or not to other network players. 869 */ 870 bool NetOpen = false; 871 872 873 /*************************************************************************** 874 ** This string stores the game's network name. 875 ** GameName does not include the "'s Game"; comparing GameName to 876 ** PlayerName can determine if this player is the originator of the game. 877 */ 878 char MPlayerGameName[MPLAYER_NAME_MAX]; 879 880 881 /*************************************************************************** 882 ** These variables are for servicing the Global Channel. 883 */ 884 GlobalPacketType GPacket; // Global Channel packet 885 int GPacketlen; // length of incoming packet 886 IPXAddressClass GAddress; // address of sender 887 unsigned short GProductID; // sender's Product ID 888 889 890 /*************************************************************************** 891 ** This is the "meta-packet"; it's a bunch of events lumped together. 892 ** The packet's size is IPX's max size (546), rounded down to accommodate 893 ** the max number of events possible. 894 */ 895 char *MetaPacket = 0; 896 int MetaSize = ((546 - sizeof(CommHeaderType)) / sizeof(EventClass) ) * sizeof(EventClass); 897 898 899 /*************************************************************************** 900 ** This is the random-number seed; it's synchronized between systems for 901 ** multiplayer games. 902 */ 903 int Seed = 0; 904 long *RandSeedPtr; 905 906 907 /*************************************************************************** 908 ** If this value is non-zero, use it as the random # seed instead; this should 909 ** help reproduce some bugs. 910 */ 911 int CustomSeed = 0; 912 913 int WindowList[][8] = { 914 /* xbyte, ypixel, bytewid, pixelht, cursor color, bkgd color, cursor x, cursor y */ 915 916 /* do not change the first 2 entries!! they are necc. to the system */ 917 {0,0,40,200,WHITE,BLACK,0,0}, /* screen window */ 918 {1,75,38,100,WHITE,BLACK,0,0}, /* DOS Error window */ 919 920 // Tactical map. 921 {0, 0, 40, 200, WHITE,LTGREY,0,0}, 922 923 // Initial menu window. 924 {12, 199-42, 16, 42, LTGREY, DKGREY, 0, 0}, 925 926 // Sidebar clipping window. 927 {0,0,0,0,0,0,0,0}, 928 929 // Scenario editor window. 930 {5, 30, 30, 140, 0, 0, 0, 0}, 931 932 // Custom window. 933 {0, 0, 0, 0, 0, 0, 0, 0}, 934 935 // Virtual window for external rendering. ST - 1/15/2019 3:02PM 936 {0, 0, 0, 0, 0, 0, 0, 0}, 937 }; 938 939 940 /* X,Y,Item Width,Items High,Selected,Norm Color,Sel Color,zero */ 941 int MenuList[][8]={ 942 {1, 3, 12, 3, 0, WHITE, PINK, 0}, 943 }; 944 945 GraphicBufferClass VisiblePage; 946 GraphicBufferClass HiddenPage; 947 948 GraphicViewPortClass SeenBuff(&VisiblePage, 0,0,1536,1536); 949 GraphicBufferClass ModeXBuff; 950 GraphicViewPortClass HidPage(&HiddenPage, 0,0, 1536,1536); 951 GraphicBufferClass SysMemPage(DEFAULT_SCREEN_WIDTH, 200, (void*)NULL); 952 int SoundOn; 953 CountDownTimerClass FrameTimer(BT_SYSTEM, 0L); 954 CountDownTimerClass DebugTimer(BT_SYSTEM, 0L); 955 CountDownTimerClass CountDownTimer(BT_SYSTEM, 0L); 956 957 NewConfigType NewConfig; 958 959 /*************************************************************************** 960 ** This timer measures how long (in ticks) it takes to process the game's 961 ** logic, with no packet processing or artificial delays. 962 */ 963 TimerClass ProcessTimer; 964 int ProcessTicks; // accumulated ticks 965 int ProcessFrames; // # frames used to measure 'ProcessTicks' 966 967 968 /*************************************************************************** 969 ** This flag is for popping up dialogs that call the main loop. 970 */ 971 SpecialDialogType SpecialDialog = SDLG_NONE; 972 973 974 /* 975 ** This flags if used to tell can enter cell that we are in a find path 976 ** check and thus should not uncloak units via Can_Enter_Cell. 977 */ 978 //bool IsFindPath = false; 979 980 981 /*************************************************************************** 982 ** Globals for the network Dialogs. 983 */ 984 985 /* 986 ** List of all games out there, & the address of the game's owner 987 */ 988 DynamicVectorClass <NodeNameType *> Games; 989 990 /* 991 ** List of names & addresses of all the players in the game I'm joining. 992 ** This is the really critical list, since it's used to form connections with 993 ** all other players in my game. It's updated when I get a response to my 994 ** outgoing query, or when I get a query from another system in my game asking 995 ** who I am. This double-insurance means that if any system knows about me, 996 ** I know about them too. The only catch is that if the game is started very, 997 ** very soon after a player joins, not everyone may know about him; to prevent 998 ** this, a timer restriction is put on the New Game dialog's GO button. 999 */ 1000 DynamicVectorClass <NodeNameType *> Players; 1001 1002 char *DebugFname; // for stoopid debugging purposes 1003 int DebugLine; // for stoopid debugging purposes 1004 #ifdef DEMO 1005 int RequiredCD = -2; 1006 #else 1007 int RequiredCD = -1; 1008 #endif 1009 int MouseInstalled; 1010 1011 /* 1012 ** Certain options must be enabled by both a command-line option, and an 1013 ** an entry in an INI file. If this flag is 'true', those options have been 1014 ** enabled by the INI file. 1015 */ 1016 int AreThingiesEnabled = false; 1017 1018 1019 /* 1020 ** Pointer to windows timer object 1021 ** 1022 ** 1023 */ 1024 1025 WinTimerClass *WindowsTimer=NULL; 1026 1027 1028 /* 1029 ** Command line arguments 1030 ** 1031 ** 1032 */ 1033 char * Argv[20]; //Pointers to command line arguments 1034 int Argc; //Command line argument count 1035 1036 1037 WWKeyboardClass Kbd; 1038 int ScreenWidth=1536; 1039 int ScreenHeight=1536; 1040 WWMouseClass *WWMouse = NULL; 1041 HANDLE hInstance; 1042 int AllDone; 1043 BOOL InMovie = FALSE; //Are we currently playing a VQ movie? 1044 bool MMXAvailable = false; //Does this CPU support MMX extensions? 1045 //GetCDClass CDList; 1046 bool GameStatisticsPacketSent; 1047 bool ConnectionLost; 1048 1049 TheaterType LastTheater = THEATER_NONE; 1050 1051 1052 bool RunningAsDLL = false;