DEFINES.H (107439B)
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: /CounterStrike/DEFINES.H 4 3/07/97 9:55a 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 : DEFINES.H * 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 #ifndef DEFINES_H 34 #define DEFINES_H 35 36 /********************************************************************** 37 ** Language control: define the desired language for this build. 38 */ 39 //#define ENGLISH 1 40 //#define FRENCH 1 41 //#define GERMAN 1 42 //#define SPAIN 1 (never used) 43 // - Language define is now passed in from the makefile. - 44 45 /********************************************************************** 46 ** Controls the nature of the game and its abilities. Only define 47 ** one of these values. 48 ** 49 ** Internal version -- complete with scenario editor. 50 ** Playtest version -- no editor but does have minimal cheat keys. 51 ** Release version -- no editor or cheat keys -- all debugging info removed. 52 */ 53 //#define INTERNAL_VERSION 54 //#define PLAYTEST_VERSION 55 #define RELEASE_VERSION 56 57 /********************************************************************** 58 ** ColinM 59 ** Set this to enable dongle protection 60 */ 61 //#define DONGLE 62 63 64 // Enable 640x400 VQ movie capability in WIN32 mode 65 #define MOVIE640 66 67 68 //#if (GERMAN | FRENCH) 69 //#define BOGUSCD 70 //#endif 71 72 #define FIXIT_SCORE_CRASH // Fixes score screen crash 73 #define FIXIT_MULTI_SAVE // Fixes multiplayer save/load 74 #define FIXIT_NO_COMP_ALLY // Prevent ally with computer 75 #define FIXIT_DESTNET // Fixes -destnet parameter in Win95 76 #define FIXIT_RANDOM_GAME // Fixes random seed at start of multiplayer games 77 #define FIXIT_FORCE_CD // Forces correct CD load after scenario #1 78 #define FIXIT_IP_CRASH // Fixes crash if internet game aborts too quickly 79 #define FIXIT_IP_STATS // Fixes so vessels show up in internet stat info 80 #define FIXIT_NAME_OVERRIDE // Allows changing of unit names 81 #define FIXIT_RADAR_JAMMED // Fixes unjamming by merely starting to build a radar facility 82 #define FIXIT_CAPTURE_BIB // Fixes so that if fake is captured, you still can't build off of it. 83 #define FIXIT_BASE_ANNOUNCE // Fixes so player controlled buildings count as base when attacked. 84 #define FIXIT_APTIVA_MODEM // Fixes crash with Aptiva modem. 85 #define FIXIT_FLAG_CHECK // Disable placing building over a flag. 86 87 #define FIXIT_ANTS // Adds Ant Units 88 89 #define FIXIT_CSII // Adds Aftermath CounterStrike II units 90 // ajw 9/28/98 - Note about FIXIT_CSII. Changes seem to have been made for Aftermath ("Counterstrike II") that: a) were 91 // bug fixes that should never be rolled back, b) change the nature of the game, at least in multi-player. This meant 92 // that the "Red Alert" executable ( == Counterstrike executable ) could no longer be built. Apparently, at the time, 93 // this was justified, as it was believed that no further patches to the RA executable would ever be necessary. 94 // Given that Denzil's DVD changes and my WOLAPI integration are essentially a patch, we've got a problem. 95 // We've decided to level the field and make sure every who gets or patches to the new version of Red Alert, CS, AM, (and 96 // their DVD equivalent(s)) will have the same executable. So we're assuming that all of the FIXIT_CSII changes are 97 // permanent (as, in fact, all prior FIXIT_'s are - makes me wonder why the old non-compiling code has to hang around 98 // forever), and fixing the code so that the assumption "this is an Aftermath game" is no longer hard-coded, but can 99 // change at runtime. (Which is what should have been done when Aftermath was created.) 100 // <This goes for the following three defines as well.> 101 #define FIXIT_CARRIER // Adds Aftermath aircraft carrier 102 #define FIXIT_PHASETRANSPORT // Adds Aftermath cloaking APC 103 // ajw - Discovered that engineer changing fields were specifically left out of aftrmath.ini, thus this has no effect. 104 // Engineer changes (and other game rule changes) are in mplayer.ini, which was loaded before aftermath-only mplayer games. 105 #define FIXIT_ENGINEER // Adds Engineer rules.ini overrides 106 107 //#define FIXIT_FAST_LOAD // Enables faster INI loading 108 109 // These fixes will cause the game to go out of sync. 110 //#define FIXIT_ENGINEER_CAPTURE // If building not allied, will still capture if engineer not allied with building. 111 //#define FIXIT_HELI_LANDING // Fixes so new helicopters land at free helipad 112 //#define FIXIT_MINE_PASSABLE // Fixes units not driving onto mines 113 114 /* Turn on these changes for the 1.08 patch */ 115 #define FIXIT_PATCH_108 116 117 #ifdef FIXIT_PATCH_108 118 #define STEVES_LOAD_OVERRIDE // Allows loading of CONQUER.ENG instead of from mix file. 119 #define FIXIT_DIFFICULTY // Fixes no difficulty level for CStrike missions 120 #define FIXIT_VERSION // Fixes version playability for 1.04, 1.07 & 1.08 121 #define FIXIT_MODEM_LOAD_CRASH // Fixes crash after loading a modem game when names are the same 122 #define FIXIT_PHONELIST_CRASH // Fixes crash when clicking on an empty phonelist 123 #endif 124 125 // Denotes changes made for version 3 - reunification of all existing versions and undoing of Aftermath divergence. - ajw 126 #define FIXIT_VERSION_3 127 #define DVD 128 129 // Define DVD to turn on RADVD additions/changes - Denzil 130 #ifdef DVD 131 //#define INTERNET_OFF 132 //#define MPEGMOVIE //PG 133 //#define MCIMPEG 134 #endif 135 136 // Test to see if partial object drawing is any faster. 137 //#define PARTIAL 138 #define SORTDRAW 139 140 /********************************************************************** 141 ** If the scenario editor to to be active in this build then uncomment 142 ** the following #define line. 143 */ 144 #ifdef INTERNAL_VERSION 145 #define SCENARIO_EDITOR 146 #endif 147 148 149 /********************************************************************** 150 ** This define enables the full set of cheat keys and special 151 ** command line options. 152 */ 153 #if defined(INTERNAL_VERSION) || defined(PLAYTEST_VERSION) 154 #define CHEAT_KEYS 155 #endif 156 157 158 /********************************************************************** 159 ** If this is defined, the special Virgin limited cheat keys 160 ** are enabled. This allows the "cheat" parameter and then only 161 ** allows the ALT-W to win the mission. 162 */ 163 #ifdef PLAYTEST_VERSION 164 #define VIRGIN_CHEAT_KEYS 165 #endif 166 167 168 /********************************************************************** 169 ** If this is defined, then the network code will be enabled. 170 */ 171 #define NETWORK 172 #define TIMING_FIX 1 173 174 175 /********************************************************************** 176 ** Define this to 1 to enable MPath-specific code. Do not define 177 ** TEN at the same time. 178 */ 179 #define MPATH 0 180 181 182 /********************************************************************** 183 ** Define this to 1 to enable TEN-specific code. Do not define 184 ** MPATH at the same time. 185 */ 186 #define TEN 0 187 188 189 /********************************************************************** 190 ** If this is defined, the DoList is "mirrored", for memory trasher 191 ** detection. 192 */ 193 #ifdef CHEAT_KEYS 194 //#define MIRROR_QUEUE 195 #endif 196 197 198 /********************************************************************** 199 ** This define tells the Version Number class to use the date/time-based 200 ** version numbering system. If this define is not set, the actual 201 ** major/minor version numbers will be used. 202 */ 203 //#define DEV_VERSION 204 //#define DEV_VER_NAME 205 206 207 /********************************************************************** 208 ** This define enables a special additional foreign-version-number 209 ** after the other version number, for display purposes only. 210 */ 211 #if !defined(ENGLISH) 212 #define FOREIGN_VERSION 213 #define FOREIGN_VERSION_NUMBER 7 214 #endif 215 216 217 /********************************************************************** 218 ** This is the multiplier factor to convert low resution coordinates 219 ** into their actual resolution counterparts. 220 */ 221 #ifdef WIN32 222 #define RESFACTOR 2 223 #else 224 //#undef SCENARIO_EDITOR 225 #define RESFACTOR 1 226 #endif 227 228 229 #define SIDEBAR_WID 80 230 231 232 /********************************************************************** 233 ** Optional parameter control for special options. 234 */ 235 236 /* 237 ** Enable the set of limited cheat key options. 238 */ 239 #ifdef VIRGIN_CHEAT_KEYS 240 #define PARM_PLAYTEST 0xF7DDC227 // "PLAYTEST" 241 #endif 242 243 /* 244 ** Enable the full set of cheat key options. 245 */ 246 #ifdef CHEAT_KEYS 247 #ifndef PARM_PLAYTEST 248 #define PARM_PLAYTEST 0xF7DDC227 // "PLAYTEST" 249 #endif 250 #endif 251 252 253 #define PARM_INSTALL 0xD95C68A2 // "FROMINSTALL" 254 255 256 // 257 // Allow normal game play in the MPath version 258 // 259 #if(MPATH) 260 #define PARM_ALLOW_SOLO 0xc901c9db // AllowSoloPlayOptions 261 #endif 262 263 // 264 // Allow normal game play in the TEN version 265 // 266 #if(TEN) 267 #define PARM_ALLOW_SOLO 0xc901c9db // AllowSoloPlayOptions 268 #endif 269 270 /********************************************************************** 271 ** Defines for verifying free disk space 272 */ 273 #define INIT_FREE_DISK_SPACE 8388608 274 #define SAVE_GAME_DISK_SPACE (INIT_FREE_DISK_SPACE - (1024*4096)) 275 //#define SAVE_GAME_DISK_SPACE 100000 276 277 278 /********************************************************************** 279 ** This is the complete list of VQs allowed to be played in the game. 280 */ 281 typedef enum VQType { 282 VQ_NONE=-1, 283 VQ_AAGUN, 284 VQ_MIG, 285 VQ_SFROZEN, 286 VQ_AIRFIELD, 287 VQ_BATTLE, 288 VQ_BMAP, 289 VQ_BOMBRUN, 290 VQ_DPTHCHRG, 291 VQ_GRVESTNE, 292 VQ_MONTPASS, 293 VQ_MTNKFACT, 294 VQ_CRONTEST, 295 VQ_OILDRUM, 296 VQ_ALLYEND, 297 VQ_RADRRAID, 298 VQ_SHIPYARD, 299 VQ_SHORBOMB, 300 VQ_SITDUCK, 301 VQ_SLNTSRVC, 302 VQ_SNOWBASE, 303 VQ_EXECUTE, 304 VQ_TITLE, // Low res. 305 VQ_NUKESTOK, 306 VQ_V2ROCKET, 307 VQ_SEARCH, 308 VQ_BINOC, 309 VQ_ELEVATOR, 310 VQ_FROZEN, 311 VQ_MCV, 312 VQ_SHIPSINK, 313 VQ_SOVMCV, 314 VQ_TRINITY, 315 VQ_ALLYMORF, 316 VQ_APCESCPE, 317 VQ_BRDGTILT, 318 VQ_CRONFAIL, 319 VQ_STRAFE, 320 VQ_DESTROYR, 321 VQ_DOUBLE, 322 VQ_FLARE, 323 VQ_SNSTRAFE, 324 VQ_LANDING, 325 VQ_ONTHPRWL, 326 VQ_OVERRUN, 327 VQ_SNOWBOMB, 328 VQ_SOVCEMET, 329 VQ_TAKE_OFF, 330 VQ_TESLA, 331 VQ_SOVIET8, 332 VQ_SPOTTER, 333 VQ_SCENE1, 334 VQ_SCENE2, 335 VQ_SCENE4, 336 VQ_SOVFINAL, 337 VQ_ASSESS, 338 VQ_SOVIET10, 339 VQ_DUD, 340 VQ_MCV_LAND, 341 VQ_MCVBRDGE, 342 VQ_PERISCOP, 343 VQ_SHORBOM1, 344 VQ_SHORBOM2, 345 VQ_SOVBATL, 346 VQ_SOVTSTAR, 347 VQ_AFTRMATH, 348 VQ_SOVIET11, 349 VQ_MASASSLT, 350 VQ_REDINTRO, // High res 351 VQ_SOVIET1, 352 VQ_SOVIET2, 353 VQ_SOVIET3, 354 VQ_SOVIET4, 355 VQ_SOVIET5, 356 VQ_SOVIET6, 357 VQ_SOVIET7, 358 VQ_INTRO_MOVIE, 359 VQ_AVERTED, 360 VQ_COUNTDWN, 361 VQ_MOVINGIN, 362 VQ_ALLIED10, 363 VQ_ALLIED12, 364 VQ_ALLIED5, 365 VQ_ALLIED6, 366 VQ_ALLIED8, 367 VQ_TANYA1, 368 VQ_TANYA2, 369 VQ_ALLY10B, 370 VQ_ALLY11, 371 VQ_ALLY14, 372 VQ_ALLY9, 373 VQ_SPY, 374 VQ_TOOFAR, 375 VQ_SOVIET12, 376 VQ_SOVIET13, 377 VQ_SOVIET9, 378 VQ_BEACHEAD, 379 VQ_SOVIET14, 380 VQ_SIZZLE, 381 VQ_SIZZLE2, 382 VQ_ANTEND, 383 VQ_ANTINTRO, 384 385 //2019/11/12 JAS - Added for Retaliation movies 386 VQ_RETALIATION_ALLIED1, 387 VQ_RETALIATION_ALLIED2, 388 VQ_RETALIATION_ALLIED3, 389 VQ_RETALIATION_ALLIED4, 390 VQ_RETALIATION_ALLIED5, 391 VQ_RETALIATION_ALLIED6, 392 VQ_RETALIATION_ALLIED7, 393 VQ_RETALIATION_ALLIED8, 394 VQ_RETALIATION_ALLIED9, 395 VQ_RETALIATION_ALLIED10, 396 397 VQ_RETALIATION_SOVIET1, 398 VQ_RETALIATION_SOVIET2, 399 VQ_RETALIATION_SOVIET3, 400 VQ_RETALIATION_SOVIET4, 401 VQ_RETALIATION_SOVIET5, 402 VQ_RETALIATION_SOVIET6, 403 VQ_RETALIATION_SOVIET7, 404 VQ_RETALIATION_SOVIET8, 405 VQ_RETALIATION_SOVIET9, 406 VQ_RETALIATION_SOVIET10, 407 VQ_RETALIATION_WINA, 408 VQ_RETALIATION_WINS, 409 VQ_RETALIATION_ANTS, 410 411 VQ_COUNT, 412 VQ_FIRST=0 413 } VQType; 414 415 416 /********************************************************************** 417 ** These enumerations are used to implement RTTI. The target system 418 ** uses these and thus there can be no more RTTI types than can fit 419 ** in the exponent of a target value. 420 */ 421 typedef enum RTTIType : unsigned char { 422 RTTI_NONE=0, 423 RTTI_AIRCRAFT, 424 RTTI_AIRCRAFTTYPE, 425 RTTI_ANIM, 426 RTTI_ANIMTYPE, 427 RTTI_BUILDING, 428 RTTI_BUILDINGTYPE, 429 RTTI_BULLET, 430 RTTI_BULLETTYPE, 431 RTTI_CELL, 432 RTTI_FACTORY, 433 RTTI_HOUSE, 434 RTTI_HOUSETYPE, 435 RTTI_INFANTRY, 436 RTTI_INFANTRYTYPE, 437 RTTI_OVERLAY, 438 RTTI_OVERLAYTYPE, 439 RTTI_SMUDGE, 440 RTTI_SMUDGETYPE, 441 RTTI_SPECIAL, 442 RTTI_TEAM, 443 RTTI_TEAMTYPE, 444 RTTI_TEMPLATE, 445 RTTI_TEMPLATETYPE, 446 RTTI_TERRAIN, 447 RTTI_TERRAINTYPE, 448 RTTI_TRIGGER, 449 RTTI_TRIGGERTYPE, 450 RTTI_UNIT, 451 RTTI_UNITTYPE, 452 RTTI_VESSEL, 453 RTTI_VESSELTYPE, 454 455 RTTI_COUNT 456 } RTTIType; 457 458 459 /********************************************************************** 460 ** These are the difficulty settings of the game. 461 */ 462 typedef enum DiffType : unsigned char { 463 DIFF_EASY, 464 DIFF_NORMAL, 465 DIFF_HARD, 466 467 DIFF_COUNT, 468 DIFF_FIRST=0 469 } DiffType; 470 471 472 /********************************************************************** 473 ** This is the size of the speech buffer. This value should be as large 474 ** as the largest speech sample, plus a few bytes for overhead 475 ** (16 bytes is sufficient). 476 */ 477 #define SPEECH_BUFFER_SIZE 50000L 478 479 480 /********************************************************************** 481 ** The theater mixfiles are cached into a buffer of this size. Ensure 482 ** that the size specified is at least as large as the largest 483 ** theater mixfile data block. 484 */ 485 #define THEATER_BUFFER_SIZE 1100000L 486 487 488 /********************************************************************** 489 ** This is the size of the shape buffer. This buffer is used as a staging 490 ** buffer for the shape drawing technology. It MUST be as big as the 491 ** largest shape (uncompressed) that will be drawn. If this value is 492 ** changed, be sure to update the makefile and rebuild all of the shape 493 ** data files. 494 */ 495 #define SHAPE_BUFFER_SIZE 131072L 496 497 498 /********************************************************************** 499 ** Filenames of the data files it can create at run time. 500 */ 501 #define FAME_FILE_NAME "HALLFAME.DAT" 502 #define NET_SAVE_FILE_NAME "SAVEGAME.NET" 503 #define CONFIG_FILE_NAME "REDALERT.INI" 504 505 506 /********************************************************************** 507 ** Map controls. The map is composed of square elements called 'cells'. 508 ** All larger elements are build upon these. 509 */ 510 511 #define HIGH_COORD_MASK 0x80008000L 512 513 // Size of the map in cells. 514 #define MAP_CELL_W 128 515 #define MAP_CELL_H 128 516 #define MAP_CELL_TOTAL (MAP_CELL_W*MAP_CELL_H) 517 518 #define REFRESH_EOL 32767 // This number ends a refresh/occupy offset list. 519 #define REFRESH_SIDEBAR 32766 // This number flags that sidebar needs refreshing. 520 521 522 /**************************************************************************** 523 ** These are custom C&C specific types. The CELL is used for map coordinate 524 ** with cell resolution. The COORDINATE type is used for map coordinates that 525 ** have a lepton resolution. CELL is more efficient when indexing into the map 526 ** and when size is critical. COORDINATE is more efficient when dealing with 527 ** accuracy and object movement. 528 */ 529 typedef unsigned short LEPTON; 530 typedef union { 531 LEPTON Raw; 532 struct { 533 #ifdef BIG_ENDIAN 534 unsigned char Cell; 535 unsigned char Lepton; 536 #else 537 unsigned char Lepton; 538 unsigned char Cell; 539 #endif 540 } Sub; 541 } LEPTON_COMPOSITE; 542 543 typedef unsigned long COORDINATE; 544 typedef union { 545 COORDINATE Coord; 546 struct { 547 #ifdef BIG_ENDIAN 548 LEPTON_COMPOSITE Y; 549 LEPTON_COMPOSITE X; 550 #else 551 LEPTON_COMPOSITE X; 552 LEPTON_COMPOSITE Y; 553 #endif 554 } Sub; 555 } COORD_COMPOSITE; 556 557 typedef signed short CELL; 558 #define SLUFF_BITS (sizeof(CELL)*CHAR_BIT)-(14) 559 typedef union { 560 CELL Cell; 561 struct { 562 #ifdef BIG_ENDIAN 563 #if SLUFF_BITS 564 /* 565 ** Unused upper bits will cause problems on a big-endian machine unless they 566 ** are deliberately accounted for. 567 */ 568 unsigned sluff:SLUF_BITS; 569 #endif 570 unsigned Y:7; 571 unsigned X:7; 572 #else 573 unsigned X:7; 574 unsigned Y:7; 575 #endif 576 } Sub; 577 } CELL_COMPOSITE; 578 579 typedef int WAYPOINT; 580 581 582 /********************************************************************** 583 ** This is the target composit information. Notice that with an RTTI_NONE 584 ** and an index value of 0, the target value returned is identical with 585 ** TARGET_NONE. This is by design and is necessary. 586 */ 587 typedef long TARGET; 588 589 #define TARGET_MANTISSA 24 // Bits of value precision. 590 #define TARGET_EXPONENT 8 591 typedef union { 592 TARGET Target; 593 struct { 594 #ifdef BIG_ENDIAN 595 unsigned Exponent:TARGET_EXPONENT; 596 unsigned Mantissa:TARGET_MANTISSA; 597 #else 598 unsigned Mantissa:TARGET_MANTISSA; 599 unsigned Exponent:TARGET_EXPONENT; 600 #endif 601 } Sub; 602 } TARGET_COMPOSITE; 603 604 605 inline TARGET Build_Target(RTTIType kind, int value) 606 { 607 TARGET_COMPOSITE target; 608 609 target.Target = 0; 610 target.Sub.Exponent = kind; 611 target.Sub.Mantissa = value; 612 return(target.Target); 613 } 614 615 616 #define TARGET_NONE ((TARGET)0) 617 618 619 /* 620 ** The map is broken down into regions of this specified dimensions. 621 */ 622 #define REGION_WIDTH 4 623 #define REGION_HEIGHT 4 624 #define MAP_REGION_WIDTH (((MAP_CELL_W + (REGION_WIDTH -1)) / REGION_WIDTH)+2) 625 #define MAP_REGION_HEIGHT (((MAP_CELL_H + (REGION_WIDTH -1)) / REGION_HEIGHT)+2) 626 #define MAP_TOTAL_REGIONS (MAP_REGION_WIDTH * MAP_REGION_HEIGHT) 627 628 629 /********************************************************************** 630 ** This enumerates the various known fear states for infantry units. 631 ** At these stages, certain events or recovery actions are performed. 632 */ 633 typedef enum FearType : unsigned char { 634 FEAR_NONE=0, // No fear at all (default state). 635 FEAR_ANXIOUS=10, // Something makes them scared. 636 FEAR_SCARED=100, // Scared enough to take cover. 637 FEAR_PANIC=200, // Run away! Run away! 638 FEAR_MAXIMUM=255 // Scared to death. 639 } FearType; 640 641 642 /********************************************************************** 643 ** When a moving object moves, the Per_Cell_Process function is called 644 ** at various times during the move. Certain operations must be 645 ** performed at different stages of the move. This enum specifies the 646 ** different conditions under which the Per_Cell_Process function is 647 ** called. 648 */ 649 typedef enum PCPType : unsigned char { 650 PCP_ROTATION, // When sitting in place and performing rotations. 651 PCP_DURING, // While moving between two cells. 652 PCP_END, // When the 'center' of a cell is reached during movement. 653 } PCPType; 654 655 656 /********************************************************************** 657 ** A base is broken up into several zones. This type enumerates the 658 ** various zones. 659 */ 660 typedef enum ZoneType : char { 661 ZONE_CORE, // Center of base. 662 ZONE_NORTH, // North section. 663 ZONE_EAST, // East section. 664 ZONE_SOUTH, // South section. 665 ZONE_WEST, // West section. 666 667 ZONE_COUNT, 668 ZONE_FIRST=0, 669 ZONE_NONE=-1 670 } ZoneType; 671 672 673 /********************************************************************** 674 ** The map is prescanned to mark of movement zones according to certain 675 ** movement characteristics. This enum specifies those characteristics 676 ** and movement zones kept track of. 677 */ 678 typedef enum MZoneType : unsigned char { 679 MZONE_NORMAL, // Normal terrestrial objects (can't crush walls). 680 MZONE_CRUSHER, // Can crush crushable wall types. 681 MZONE_DESTROYER, // Can destroy walls. 682 MZONE_WATER, // Water based objects. 683 684 MZONE_COUNT, 685 MZONE_FIRST=0 686 } MZoneType; 687 688 #define MZONEF_NORMAL (1<<MZONE_NORMAL) 689 #define MZONEF_CRUSHER (1<<MZONE_CRUSHER) 690 #define MZONEF_DESTROYER (1<<MZONE_DESTROYER) 691 #define MZONEF_WATER (1<<MZONE_WATER) 692 #define MZONEF_ALL (MZONEF_NORMAL|MZONEF_CRUSHER|MZONEF_DESTROYER|MZONEF_WATER) 693 694 695 /********************************************************************** 696 ** This records the current state of the computer controlled base. The 697 ** AI will respond according to this state in order to control 698 ** production and unit orders. 699 */ 700 typedef enum StateType : unsigned char { 701 STATE_BUILDUP, // Base is building up (defensive buildup stage). 702 STATE_BROKE, // Low on money, need cash or income source. 703 STATE_THREATENED, // Enemy units are designated to move close by. 704 STATE_ATTACKED, // Base is under direct attack. 705 STATE_ENDGAME // Resistance is futile. 706 } StateType; 707 708 709 /********************************************************************** 710 ** Urgency rating used to determine what action to perform. The greater 711 ** the urgency the more likely the corresponding action will be chosen. 712 ** These values are assigned to each potential desired action the house 713 ** is to perform. 714 */ 715 typedef enum UrgencyType : unsigned char { 716 URGENCY_NONE, // No action on this matter is needed or desired. 717 URGENCY_LOW, // Minimal attention requested. 718 URGENCY_MEDIUM, // Normal attention requested. 719 URGENCY_HIGH, // High attention requested. 720 URGENCY_CRITICAL, // This matter must be addressed immediately. 721 722 URGENCY_COUNT, 723 URGENCY_FIRST=URGENCY_CRITICAL 724 } UrgencyType; 725 726 727 /********************************************************************** 728 ** These are the various actions a house may perform. These actions refer 729 ** to global events that encompass selling and production. Low level house 730 ** specific actions of choosing targets is handled elsewhere. 731 */ 732 typedef enum StrategyType : unsigned char { 733 STRATEGY_BUILD_POWER, // Power is low, build more. 734 STRATEGY_BUILD_DEFENSE, // Defense needs boosting. 735 STRATEGY_BUILD_INCOME, // Income is low or in jeopardy, raise it. 736 STRATEGY_FIRE_SALE, // Situation hopeless, sell and attack. 737 STRATEGY_BUILD_ENGINEER, // An engineer is needed. 738 STRATEGY_BUILD_OFFENSE, // Offensive weapons are needed. 739 STRATEGY_RAISE_MONEY, // Money is low, emergency raise cash. 740 STRATEGY_RAISE_POWER, // Money is low, raise power by selling. 741 STRATEGY_LOWER_POWER, // Too much power, sell power plants. 742 STRATEGY_ATTACK, // General charge the enemy attack logic. 743 744 STRATEGY_COUNT, 745 STRATEGY_FIRST=STRATEGY_BUILD_POWER 746 } StrategyType; 747 748 749 /********************************************************************** 750 ** These are the various return conditions that production may 751 ** produce. 752 */ 753 typedef enum ProdFailType : unsigned char { 754 PROD_OK, // Production request successful. 755 PROD_LIMIT, // Failed with production capacity limit reached. 756 PROD_ILLEGAL, // Failed because of illegal request. 757 PROD_CANT // Failed because unable to comply (busy or occupied). 758 } ProdFailType; 759 760 761 /********************************************************************** 762 ** When performing a landing operation, the aircraft must pass through 763 ** navigation checkpoints. These enumerations specify the check points. 764 */ 765 typedef enum CheckPointType : unsigned char { 766 CHECK_STACK, // Holding area far away from airfield. 767 CHECK_DOWNWIND, // Downwind leg of approach. 768 CHECK_CROSSWIND // Crosswind leg of approach. 769 } CheckPointType; 770 771 772 /********************************************************************** 773 ** These enumerate the various crate powerups that are available. 774 */ 775 typedef enum CrateType : unsigned char { 776 CRATE_MONEY, 777 CRATE_UNIT, 778 CRATE_PARA_BOMB, 779 CRATE_HEAL_BASE, 780 CRATE_CLOAK, 781 CRATE_EXPLOSION, 782 CRATE_NAPALM, 783 CRATE_SQUAD, 784 CRATE_DARKNESS, 785 CRATE_REVEAL, 786 CRATE_SONAR, 787 CRATE_ARMOR, 788 CRATE_SPEED, 789 CRATE_FIREPOWER, 790 CRATE_ICBM, 791 CRATE_TIMEQUAKE, 792 CRATE_INVULN, 793 CRATE_VORTEX, 794 795 CRATE_COUNT, 796 CRATE_FIRST=0 797 } CrateType; 798 799 800 /********************************************************************** 801 ** These are the special weapons that can be used in the game. The common thread 802 ** with these weapons is that they are controlled through the sidebar 803 ** mechanism. 804 */ 805 typedef enum SpecialWeaponType : char { 806 SPC_NONE=-1, 807 SPC_SONAR_PULSE, // Momentarily reveals submarines. 808 SPC_NUCLEAR_BOMB, // Tactical nuclear weapon. 809 SPC_CHRONOSPHERE, // Paradox device, for teleportation 810 SPC_PARA_BOMB, // Parachute bomb delivery. 811 SPC_PARA_INFANTRY, // Parachute reinforcement delivery. 812 SPC_SPY_MISSION, // Spy plane to take photo recon mission. 813 SPC_IRON_CURTAIN, // Bestow invulnerability on a unit/building 814 SPC_GPS, // give allies free unjammable radar. 815 816 SPC_COUNT, 817 SPC_FIRST=0, 818 SPC_ANY=1 819 } SpecialWeaponType; 820 #define SPC_CHRONO2 (SPC_COUNT) 821 822 823 /********************************************************************** 824 ** The computer AI is categorized by the following enumerations. If 825 ** the player is controlling a house, then the IQ rating is zero. When 826 ** the IQ rating is at maximum, then the computer has complete control 827 ** of the house. 828 */ 829 //typedef enum IQType { 830 // IQ_DEAD=0x0000, // Player controlled (computer does nothing). 831 // IQ_IDIOT=0x0040, 832 // IQ_IMBECILE=0x0080, 833 // IQ_MORON=0x00C0, 834 // IQ_MENSA=0x0100 // Complete computer control -- look out! 835 //} IQType; 836 837 838 /********************************************************************** 839 ** These are the response values when checking to see if an object 840 ** can enter or exist at a specified location. By examining this 841 ** return value, appropriate action may be chosen. 842 ** NOTE: If this changes, update the static array in Find_Path module. 843 */ 844 typedef enum MoveType : unsigned char { 845 MOVE_OK, // No blockage. 846 MOVE_CLOAK, // A cloaked blocking enemy object. 847 MOVE_MOVING_BLOCK, // Blocked, but only temporarily. 848 MOVE_DESTROYABLE, // Enemy unit or building is blocking. 849 MOVE_TEMP, // Blocked by friendly unit. 850 MOVE_NO, // Strictly prohibited terrain. 851 852 MOVE_COUNT 853 } MoveType; 854 855 856 /********************************************************************** 857 ** These are the themes that the game can play. They must be in exact 858 ** same order as specified in the CONQUER.TXT file as well as the filename 859 ** list located in the ThemeClass. 860 */ 861 typedef enum ThemeType : char { 862 THEME_QUIET=-3, 863 THEME_PICK_ANOTHER=-2, 864 THEME_NONE=-1, 865 THEME_BIGF, 866 THEME_CRUS, 867 THEME_FAC1, 868 THEME_FAC2, 869 THEME_HELL, 870 THEME_RUN1, 871 THEME_SMSH, 872 THEME_TREN, 873 THEME_WORK, 874 THEME_AWAIT, 875 THEME_DENSE_R, 876 THEME_FOGGER1A, 877 THEME_MUD1A, 878 THEME_RADIO2, 879 THEME_ROLLOUT, 880 THEME_SNAKE, 881 THEME_TERMINAT, 882 THEME_TWIN, 883 THEME_VECTOR1A, 884 885 THEME_MAP, 886 THEME_SCORE, 887 THEME_INTRO, 888 THEME_CREDITS, 889 890 THEME_2ND_HAND, 891 THEME_ARAZOID, 892 THEME_BACKSTAB, 893 THEME_CHAOS2, 894 THEME_SHUT_IT, 895 THEME_TWINMIX1, 896 THEME_UNDER3, 897 THEME_VR2, 898 899 #ifdef FIXIT_CSII // checked - ajw 9/28/98 900 THEME_BOG, 901 THEME_FLOAT_V2, 902 THEME_GLOOM, 903 THEME_GRNDWIRE, 904 THEME_RPT, 905 THEME_SEARCH, 906 THEME_TRACTION, 907 THEME_WASTELND, 908 #endif 909 910 THEME_COUNT, 911 THEME_LAST=(int)THEME_COUNT-1, 912 THEME_FIRST=0 913 } ThemeType; 914 915 //PG inline ThemeType operator++(ThemeType &, int); 916 917 918 /********************************************************************** 919 ** This is the various threat scan methods that can be used when looking 920 ** for targets. 921 */ 922 typedef enum ThreatType : unsigned short { 923 THREAT_NORMAL=0x0000, // Any distance threat scan? 924 THREAT_RANGE=0x0001, // Limit scan to weapon range? 925 THREAT_AREA=0x0002, // Limit scan to general area (twice weapon range)? 926 THREAT_AIR=0x0004, // Scan for air units? 927 THREAT_INFANTRY=0x0008, // Scan for infantry units? 928 THREAT_VEHICLES=0x0010, // Scan for vehicles? 929 THREAT_BUILDINGS=0x0020, // Scan for buildings? 930 THREAT_TIBERIUM=0x0040, // Limit scan to Tiberium processing objects? 931 THREAT_BOATS=0x0080, // Scan for gunboats? 932 THREAT_CIVILIANS=0x0100, // Consider civilians to be primary target? 933 THREAT_CAPTURE=0x0200, // Consider capturable buildings only? 934 THREAT_FAKES=0x0400, // Consider fake buildings a greater target? 935 THREAT_POWER=0x0800, // Consider power generating facilities a greater target? 936 THREAT_FACTORIES=0x1000, // Consider factories a greater target? 937 THREAT_BASE_DEFENSE=0x2000, // Consider base defense buildings a greater target? 938 } ThreatType; 939 //PG 940 //inline ThreatType operator |(ThreatType, ThreatType); 941 //inline ThreatType operator &(ThreatType, ThreatType); 942 //inline ThreatType operator ~(ThreatType); 943 944 inline ThreatType operator|(ThreatType a, ThreatType b) 945 {return static_cast<ThreatType>(static_cast<int>(a) | static_cast<int>(b));} 946 947 inline ThreatType operator&(ThreatType a, ThreatType b) 948 {return static_cast<ThreatType>(static_cast<int>(a) & static_cast<int>(b));} 949 950 inline ThreatType operator~(ThreatType a) 951 {return static_cast<ThreatType>(~static_cast<int>(a));} 952 953 954 #define THREAT_GROUND (THREAT_VEHICLES|THREAT_BUILDINGS|THREAT_INFANTRY) 955 956 957 /********************************************************************** 958 ** These return values are used when determine if firing is legal. 959 ** By examining this value it can be determined what should be done 960 ** to fix the reason why firing wasn't allowed. 961 */ 962 typedef enum FireErrorType : unsigned char{ 963 FIRE_OK, // Weapon is allowed to fire. 964 FIRE_AMMO, // No ammo available to fire? 965 FIRE_FACING, // Not correctly facing target? 966 FIRE_REARM, // It is busy rearming? 967 FIRE_ROTATING, // Is it in process of rotating? 968 FIRE_ILLEGAL, // Is it targeting something illegal? 969 FIRE_CANT, // Is this unit one that cannot fire anything? 970 FIRE_MOVING, // Is it moving and not allowed to fire while moving? 971 FIRE_RANGE, // Is the target out of range? 972 FIRE_CLOAKED, // Is the shooter currently cloaked? 973 FIRE_BUSY // Is shooter currently doing something else? 974 } FireErrorType; 975 976 977 /********************************************************************** 978 ** If an object can cloak, then it will be in one of these states. 979 ** For objects that cannot cloak, they will always be in the 980 ** UNCLOAKED state. This state controls how the object transitions between 981 ** cloaked and uncloaked conditions. 982 */ 983 typedef enum CloakType : unsigned char { 984 UNCLOAKED, // Completely visible (normal state). 985 CLOAKING, // In process of cloaking. 986 CLOAKED, // Completely cloaked (invisible). 987 UNCLOAKING // In process of uncloaking. 988 } CloakType; 989 990 991 /********************************************************************** 992 ** For units that are cloaking, these value specify the visual character 993 ** of the object. 994 */ 995 typedef enum VisualType : unsigned char{ 996 VISUAL_NORMAL, // Completely visible -- normal. 997 VISUAL_INDISTINCT, // The edges shimmer and become indistinct. 998 VISUAL_DARKEN, // Color and texture is muted along with shimmering. 999 VISUAL_SHADOWY, // Body is translucent in addition to shimmering. 1000 VISUAL_RIPPLE, // Just a ripple (true predator effect). 1001 VISUAL_HIDDEN // Nothing at all is visible. 1002 } VisualType; 1003 1004 1005 /********************************************************************** 1006 ** These missions enumerate the various state machines that can apply to 1007 ** a game object. Only one of these state machines is active at any one 1008 ** time. 1009 */ 1010 typedef enum MissionType : char { 1011 MISSION_NONE=-1, 1012 1013 MISSION_SLEEP, // Do nothing whatsoever. 1014 MISSION_ATTACK, // Attack nearest enemy. 1015 MISSION_MOVE, // Guard location or unit. 1016 MISSION_QMOVE, // A queue list movement mission. 1017 MISSION_RETREAT, // Return home for R & R. 1018 MISSION_GUARD, // Stay still. 1019 MISSION_STICKY, // Stay still -- never recruit. 1020 MISSION_ENTER, // Move into object cooperatively. 1021 MISSION_CAPTURE, // Move into in order to capture. 1022 MISSION_HARVEST, // Hunt for and collect nearby Tiberium. 1023 MISSION_GUARD_AREA, // Active guard of area. 1024 MISSION_RETURN, // Head back to refinery. 1025 MISSION_STOP, // Sit still. 1026 MISSION_AMBUSH, // Wait until discovered. 1027 MISSION_HUNT, // Active search and destroy. 1028 MISSION_UNLOAD, // Search for and deliver cargo. 1029 MISSION_SABOTAGE, // Move into in order to destroy. 1030 MISSION_CONSTRUCTION, // Building buildup operation. 1031 MISSION_DECONSTRUCTION, // Building builddown operation. 1032 MISSION_REPAIR, // Repair process mission. 1033 MISSION_RESCUE, 1034 MISSION_MISSILE, 1035 MISSION_HARMLESS, // Sit around and don't appear like a threat. 1036 1037 MISSION_COUNT, 1038 MISSION_FIRST=0 1039 } MissionType; 1040 1041 1042 /********************************************************************** 1043 ** These are the enumerated animation sequences that a building may 1044 ** be processing. These serve to control the way that a building 1045 ** appears. 1046 */ 1047 typedef enum BStateType : char { 1048 BSTATE_NONE=-1, 1049 BSTATE_CONSTRUCTION, // Construction animation. 1050 BSTATE_IDLE, // Idle animation. 1051 BSTATE_ACTIVE, // Animation when building is "doing its thing". 1052 BSTATE_FULL, // Special alternate active state. 1053 BSTATE_AUX1, // Auxiliary animation. 1054 BSTATE_AUX2, // Auxiliary animation. 1055 1056 BSTATE_COUNT 1057 } BStateType; 1058 1059 1060 /********************************************************************** 1061 ** Whenever a unit is selected and a click occurs over another object 1062 ** or terrain element, there is some action to initiate. This specifies 1063 ** the different types of actions possible. This also controls how the 1064 ** mouse cursor looks when "hovering" over the spot that clicking would 1065 ** occur at. 1066 */ 1067 typedef enum ActionType : unsigned char { 1068 ACTION_NONE, // Either undefined action or "do nothing". 1069 ACTION_MOVE, // Can move there or at least try to. 1070 ACTION_NOMOVE, // Special case for movable object, but illegal mouse position. 1071 ACTION_ENTER, // Special case for infantry->APC or vehicle->Repair facility. 1072 ACTION_SELF, // Self select special case. 1073 ACTION_ATTACK, // Can attack or fire upon it in some fashion. 1074 ACTION_HARVEST, // Special harvest mode. 1075 ACTION_SELECT, // Would change selection to specified object. 1076 ACTION_TOGGLE_SELECT,// Toggles select state of the object. 1077 ACTION_CAPTURE, // The unit will try to capture the object. 1078 ACTION_REPAIR, // The target object should be repaired. 1079 ACTION_SELL, // The target building should be sold back. 1080 ACTION_SELL_UNIT, // The target unit should be sold back. 1081 ACTION_NO_SELL, // No sell or no repair. 1082 ACTION_NO_REPAIR, // No sell or no repair. 1083 ACTION_SABOTAGE, // The unit will try to sabotage/destroy the object. 1084 ACTION_PARA_BOMB, // Parachute bomb strike. 1085 ACTION_PARA_INFANTRY,// Parachute infantry strike. 1086 ACTION_PARA_SABOTEUR,// Parachute saboteur strike. 1087 ACTION_NUKE_BOMB, // That target object should be blasted. 1088 ACTION_AIR_STRIKE, // That target object should be blasted. 1089 ACTION_CHRONOSPHERE, // That target object should be teleported. 1090 ACTION_CHRONO2, // Teleport it to the given coordinates now. 1091 ACTION_IRON_CURTAIN, // That target object should be invulnerable. 1092 ACTION_SPY_MISSION, // Photo recon mission. 1093 ACTION_GUARD_AREA, // Guard the area/object clicked on. 1094 ACTION_HEAL, // Heal the infantryman clicked on. 1095 ACTION_DAMAGE, // Enter and damage building. 1096 ACTION_GREPAIR, // Enter and complete repair building. 1097 ACTION_NO_DEPLOY, 1098 ACTION_NO_ENTER, 1099 ACTION_NO_GREPAIR, 1100 ACTION_TOGGLE_PRIMARY, // Toggle the primary status of the factory. 1101 1102 ACTION_COUNT 1103 } ActionType; 1104 1105 1106 /********************************************************************** 1107 ** When a unit gets damaged, the result of the damage is returned as 1108 ** this type. It can range from no damage taken to complete destruction. 1109 */ 1110 typedef enum ResultType : unsigned char { 1111 RESULT_NONE, // No damage was taken by the target. 1112 RESULT_LIGHT, // Some damage was taken, but no state change occurred. 1113 RESULT_HALF, // Damaged to below half strength (only returned on transition). 1114 RESULT_MAJOR, // Damaged down to 1 hit point. 1115 RESULT_DESTROYED // Damaged to complete destruction. 1116 } ResultType; 1117 1118 1119 #ifdef OBSOLETE 1120 /********************************************************************** 1121 ** These are the special concrete control defines. They enumerate the 1122 ** sequence order of the concrete icons in the concrete art file. 1123 */ 1124 // DEBUG === convert this to be zero based so that a nulled cell is the 1125 // default cell. 1126 enum ConcreteEnum { 1127 C_NONE=-1, 1128 C_LEFT=0, 1129 C_RIGHT=1, 1130 C_RIGHT_UPDOWN=2, 1131 C_LEFT_UPDOWN=3, 1132 C_UP_RIGHT=4, 1133 C_UP_LEFT=5, 1134 C_DOWN_RIGHT=6, 1135 C_DOWN_LEFT=7, 1136 C_RIGHT_DOWN=8, 1137 C_LEFT_DOWN=9, 1138 C_RIGHT_UP=10, 1139 C_LEFT_UP=11, 1140 C_UPDOWN_RIGHT=12, 1141 C_UPDOWN_LEFT=13 1142 }; 1143 #endif 1144 1145 1146 /********************************************************************** 1147 ** Units that move can move at different speeds. These enumerate the 1148 ** different speeds that a unit can move. 1149 */ 1150 typedef enum MPHType : unsigned char { 1151 MPH_IMMOBILE=0, 1152 MPH_VERY_SLOW=5, // 2 1153 MPH_KINDA_SLOW=6, // 3 1154 MPH_SLOW=8, // 4 1155 MPH_SLOW_ISH=10, // 5 1156 MPH_MEDIUM_SLOW=12, // 6 1157 MPH_MEDIUM=18, // 9 1158 MPH_MEDIUM_FAST=30, // 12 1159 MPH_MEDIUM_FASTER=35, // 14 1160 MPH_FAST=40, // 16 1161 MPH_ROCKET=60, // 24 1162 MPH_VERY_FAST=100, // 40 1163 MPH_LIGHT_SPEED=255 // 100 1164 } MPHType; 1165 1166 1167 /********************************************************************** 1168 ** The houses that can be played are listed here. Each has their own 1169 ** personality and strengths. 1170 */ 1171 typedef enum HousesType : char { 1172 HOUSE_NONE=-1, 1173 HOUSE_SPAIN, // Gold (unremapped) 1174 HOUSE_GREECE, // LtBlue 1175 HOUSE_USSR, // Red 1176 HOUSE_ENGLAND, // Green 1177 HOUSE_UKRAINE, // Orange 1178 HOUSE_GERMANY, // Grey 1179 HOUSE_FRANCE, // Blue 1180 HOUSE_TURKEY, // Brown 1181 HOUSE_GOOD, // Global Defense Initiative 1182 HOUSE_BAD, // Brotherhood of Nod 1183 HOUSE_NEUTRAL, // Civilians 1184 HOUSE_JP, // Disaster Containment Team 1185 HOUSE_MULTI1, // Multi-Player house #1 1186 HOUSE_MULTI2, // Multi-Player house #2 1187 HOUSE_MULTI3, // Multi-Player house #3 1188 HOUSE_MULTI4, // Multi-Player house #4 1189 HOUSE_MULTI5, // Multi-Player house #5 1190 HOUSE_MULTI6, // Multi-Player house #6 1191 HOUSE_MULTI7, // Multi-Player house #7 1192 HOUSE_MULTI8, // Multi-Player house #8 1193 HOUSE_COUNT, 1194 HOUSE_FIRST=0 1195 } HousesType; 1196 1197 //inline HousesType operator++(HousesType &, int) {return (HousesType)(int; 1198 inline HousesType operator++(HousesType &ht) { ht = (HousesType)(((int)ht)+1); return ht; } 1199 1200 #define HOUSEF_ALLIES (HOUSEF_ENGLAND|HOUSEF_SPAIN|HOUSEF_GREECE|HOUSEF_GERMANY|HOUSEF_FRANCE|HOUSEF_TURKEY|HOUSEF_GOOD) 1201 #define HOUSEF_SOVIET (HOUSEF_USSR|HOUSEF_UKRAINE|HOUSEF_BAD) 1202 #define HOUSEF_OTHERS (HOUSEF_NEUTRAL|HOUSEF_JP|HOUSEF_MULTI1|HOUSEF_MULTI2|HOUSEF_MULTI3|HOUSEF_MULTI4|HOUSEF_MULTI5|HOUSEF_MULTI6|HOUSEF_MULTI7|HOUSEF_MULTI8) 1203 #define HOUSEF_NONE 0 1204 1205 #define HOUSEF_ENGLAND (1L<<HOUSE_ENGLAND) 1206 #define HOUSEF_SPAIN (1L<<HOUSE_SPAIN) 1207 #define HOUSEF_GREECE (1L<<HOUSE_GREECE) 1208 #define HOUSEF_USSR (1L<<HOUSE_USSR) 1209 #define HOUSEF_UKRAINE (1L<<HOUSE_UKRAINE) 1210 #define HOUSEF_GERMANY (1L<<HOUSE_GERMANY) 1211 #define HOUSEF_FRANCE (1L<<HOUSE_FRANCE) 1212 #define HOUSEF_TURKEY (1L<<HOUSE_TURKEY) 1213 #define HOUSEF_GOOD (1L<<HOUSE_GOOD) 1214 #define HOUSEF_BAD (1L<<HOUSE_BAD) 1215 #define HOUSEF_NEUTRAL (1L<<HOUSE_NEUTRAL) 1216 #define HOUSEF_JP (1L<<HOUSE_JP) 1217 #define HOUSEF_MULTI1 (1L<<HOUSE_MULTI1) 1218 #define HOUSEF_MULTI2 (1L<<HOUSE_MULTI2) 1219 #define HOUSEF_MULTI3 (1L<<HOUSE_MULTI3) 1220 #define HOUSEF_MULTI4 (1L<<HOUSE_MULTI4) 1221 #define HOUSEF_MULTI5 (1L<<HOUSE_MULTI5) 1222 #define HOUSEF_MULTI6 (1L<<HOUSE_MULTI6) 1223 #define HOUSEF_MULTI7 (1L<<HOUSE_MULTI7) 1224 #define HOUSEF_MULTI8 (1L<<HOUSE_MULTI8) 1225 1226 typedef enum PlayerColorType : char { 1227 PCOLOR_NONE = -1, 1228 PCOLOR_GOLD, 1229 PCOLOR_LTBLUE, 1230 PCOLOR_RED, 1231 PCOLOR_GREEN, 1232 PCOLOR_ORANGE, 1233 PCOLOR_BLUE, //This is actually the red scheme used in the dialogs 1234 PCOLOR_GREY, 1235 PCOLOR_BROWN, 1236 PCOLOR_TYPE, 1237 PCOLOR_REALLY_BLUE, 1238 PCOLOR_DIALOG_BLUE, 1239 1240 PCOLOR_COUNT, 1241 PCOLOR_FIRST=0, 1242 PCOLOR_LAST=PCOLOR_COUNT-1 1243 } PlayerColorType; 1244 1245 1246 /********************************************************************** 1247 ** This enumerates the remap logic to be applied to an object type when 1248 ** it appears in the construction sidebar. 1249 */ 1250 typedef enum RemapType : unsigned char { 1251 REMAP_NONE, 1252 REMAP_NORMAL, 1253 REMAP_ALTERNATE 1254 } RemapType; 1255 1256 1257 /********************************************************************** 1258 ** These are the types of games that can be played. GDI & NOD are the 1259 ** usual human-vs-computer games; 2-Player games are network or modem, 1260 ** with 2 players; multi-player games are network with > 2 players. 1261 */ 1262 typedef enum ScenarioPlayerEnum : char 1263 { 1264 SCEN_PLAYER_NONE = -1, 1265 SCEN_PLAYER_SPAIN, 1266 SCEN_PLAYER_GREECE, 1267 SCEN_PLAYER_USSR, 1268 SCEN_PLAYER_JP, 1269 SCEN_PLAYER_2PLAYER, 1270 SCEN_PLAYER_MPLAYER, 1271 SCEN_PLAYER_COUNT, 1272 SCEN_PLAYER_FIRST = 0 1273 } ScenarioPlayerType; 1274 1275 inline ScenarioPlayerType operator++(ScenarioPlayerType &, int); 1276 1277 1278 /********************************************************************** 1279 ** These are the directional parameters for a scenario. 1280 */ 1281 typedef enum ScenarioDirEnum : char 1282 { 1283 SCEN_DIR_NONE = -1, 1284 SCEN_DIR_EAST, 1285 SCEN_DIR_WEST, 1286 SCEN_DIR_COUNT, 1287 SCEN_DIR_FIRST = 0 1288 } ScenarioDirType; 1289 1290 inline ScenarioDirType operator++(ScenarioDirType &, int); 1291 1292 1293 /********************************************************************** 1294 ** These are the random variations of a scenario. 1295 */ 1296 typedef enum ScenarioVarEnum : char 1297 { 1298 SCEN_VAR_NONE = -1, 1299 SCEN_VAR_A, 1300 SCEN_VAR_B, 1301 SCEN_VAR_C, 1302 SCEN_VAR_D, 1303 SCEN_VAR_COUNT, // comes before the Lose value! 1304 SCEN_VAR_LOSE, 1305 SCEN_VAR_FIRST = 0 1306 } ScenarioVarType; 1307 1308 //inline ScenarioVarType operator++(ScenarioVarType &, int); 1309 inline ScenarioVarType operator++(ScenarioVarType &n) { n = (ScenarioVarType)(((int)n) + 1); return n; } 1310 1311 1312 /********************************************************************** 1313 ** The objects to be drawn on the map are grouped into layers. These 1314 ** enumerated values specify those layers. The ground layer is sorted 1315 ** from back to front. 1316 */ 1317 typedef enum LayerType : char { 1318 LAYER_NONE=-1, 1319 LAYER_SURFACE, // Flat on the ground (no sorting or apparent vertical height). 1320 LAYER_GROUND, // Touching the ground type object (units & buildings). 1321 LAYER_AIR, // Flying above the ground (explosions & flames). 1322 LAYER_TOP, // Topmost layer (aircraft & bullets). 1323 1324 LAYER_COUNT, 1325 LAYER_FIRST=0 1326 } LayerType; 1327 1328 //PG inline LayerType operator++(LayerType &, int); 1329 inline LayerType operator++(LayerType &n) { n = (LayerType)(((int)n) + 1); return n; } 1330 1331 1332 /********************************************************************** 1333 ** This enumerates the various bullet types. These types specify bullet's 1334 ** visual and explosive characteristics. 1335 */ 1336 typedef enum BulletType : char { 1337 BULLET_NONE=-1, 1338 1339 BULLET_INVISIBLE, 1340 BULLET_CANNON, 1341 BULLET_ACK, 1342 BULLET_TORPEDO, 1343 BULLET_FROG, 1344 BULLET_HEAT_SEEKER, 1345 BULLET_LASER_GUIDED, 1346 BULLET_LOBBED, 1347 BULLET_BOMBLET, 1348 BULLET_BALLISTIC, 1349 BULLET_PARACHUTE, 1350 BULLET_FIREBALL, 1351 BULLET_DOG, 1352 BULLET_CATAPULT, 1353 BULLET_AAMISSILE, 1354 BULLET_GPS_SATELLITE, 1355 BULLET_NUKE_UP, 1356 BULLET_NUKE_DOWN, 1357 1358 BULLET_COUNT, 1359 BULLET_FIRST=0 1360 } BulletType; 1361 1362 //PG inline BulletType operator++(BulletType &, int); 1363 inline BulletType operator++(BulletType &n) { n = (BulletType)(((int)n) + 1); return n; } 1364 1365 1366 /********************************************************************** 1367 ** All game buildings (structures) are enumerated here. This includes 1368 ** civilian structures as well. 1369 */ 1370 typedef enum StructType : char { 1371 STRUCT_NONE=-1, 1372 STRUCT_ADVANCED_TECH, 1373 STRUCT_IRON_CURTAIN, 1374 STRUCT_WEAP, 1375 STRUCT_CHRONOSPHERE, 1376 STRUCT_PILLBOX, 1377 STRUCT_CAMOPILLBOX, 1378 STRUCT_RADAR, 1379 STRUCT_GAP, 1380 STRUCT_TURRET, 1381 STRUCT_AAGUN, 1382 STRUCT_FLAME_TURRET, 1383 STRUCT_CONST, 1384 STRUCT_REFINERY, 1385 STRUCT_STORAGE, 1386 STRUCT_HELIPAD, 1387 STRUCT_SAM, 1388 STRUCT_AIRSTRIP, 1389 STRUCT_POWER, 1390 STRUCT_ADVANCED_POWER, 1391 STRUCT_SOVIET_TECH, 1392 STRUCT_HOSPITAL, 1393 STRUCT_BARRACKS, 1394 STRUCT_TENT, 1395 STRUCT_KENNEL, 1396 STRUCT_REPAIR, 1397 STRUCT_BIO_LAB, 1398 STRUCT_MISSION, 1399 STRUCT_SHIP_YARD, 1400 STRUCT_SUB_PEN, 1401 STRUCT_MSLO, 1402 STRUCT_FORWARD_COM, 1403 STRUCT_TESLA, 1404 1405 /* 1406 ** All buildings that are never used as a prerequisite 1407 ** for construction, follow this point. Typically, this is 1408 ** limited to civilian structures. Also, the following 1409 ** buildings are NEVER used in the availability bit field 1410 ** record that each house maintains. i.e., STRUCTF_???? 1411 ** bit checking will never occur with the following 1412 ** building types. 1413 */ 1414 STRUCT_FAKEWEAP, 1415 STRUCT_FAKECONST, 1416 STRUCT_FAKE_YARD, 1417 STRUCT_FAKE_PEN, 1418 STRUCT_FAKE_RADAR, 1419 1420 STRUCT_SANDBAG_WALL, 1421 STRUCT_CYCLONE_WALL, 1422 STRUCT_BRICK_WALL, 1423 STRUCT_BARBWIRE_WALL, 1424 STRUCT_WOOD_WALL, 1425 STRUCT_FENCE, 1426 1427 STRUCT_AVMINE, 1428 STRUCT_APMINE, 1429 STRUCT_V01, 1430 STRUCT_V02, 1431 STRUCT_V03, 1432 STRUCT_V04, 1433 STRUCT_V05, 1434 STRUCT_V06, 1435 STRUCT_V07, 1436 STRUCT_V08, 1437 STRUCT_V09, 1438 STRUCT_V10, 1439 STRUCT_V11, 1440 STRUCT_V12, 1441 STRUCT_V13, 1442 STRUCT_V14, 1443 STRUCT_V15, 1444 STRUCT_V16, 1445 STRUCT_V17, 1446 STRUCT_V18, 1447 STRUCT_PUMP, 1448 STRUCT_V20, 1449 STRUCT_V21, 1450 STRUCT_V22, 1451 STRUCT_V23, 1452 STRUCT_V24, 1453 STRUCT_V25, 1454 STRUCT_V26, 1455 STRUCT_V27, 1456 STRUCT_V28, 1457 STRUCT_V29, 1458 STRUCT_V30, 1459 STRUCT_V31, 1460 STRUCT_V32, 1461 STRUCT_V33, 1462 STRUCT_V34, 1463 STRUCT_V35, 1464 STRUCT_V36, 1465 STRUCT_V37, 1466 STRUCT_BARREL, 1467 STRUCT_BARREL3, 1468 1469 #ifdef FIXIT_ANTS 1470 STRUCT_QUEEN, 1471 STRUCT_LARVA1, 1472 STRUCT_LARVA2, 1473 #endif 1474 1475 STRUCT_COUNT, 1476 STRUCT_FIRST=0 1477 } StructType; 1478 1479 //PG inline StructType operator++(StructType &, int); 1480 inline StructType operator++(StructType &n) { n = (StructType)(((int)n) + 1); return n; } 1481 1482 #define STRUCTF_NONE 0L 1483 #define STRUCTF_ADVANCED_TECH (1L << STRUCT_ADVANCED_TECH) 1484 #define STRUCTF_IRON_CURTAIN (1L << STRUCT_IRON_CURTAIN) 1485 #define STRUCTF_WEAP (1L << STRUCT_WEAP) 1486 #define STRUCTF_CHRONOSPHERE (1L << STRUCT_CHRONOSPHERE) 1487 #define STRUCTF_PILLBOX (1L << STRUCT_PILLBOX) 1488 #define STRUCTF_CAMOPILLBOX (1L << STRUCT_CAMOPILLBOX) 1489 #define STRUCTF_RADAR (1L << STRUCT_RADAR) 1490 #define STRUCTF_GAP (1L << STRUCT_GAP) 1491 #define STRUCTF_TURRET (1L << STRUCT_TURRET) 1492 #define STRUCTF_AAGUN (1L << STRUCT_AAGUN) 1493 #define STRUCTF_FLAME_TURRET (1L << STRUCT_FLAME_TURRET) 1494 #define STRUCTF_CONST (1L << STRUCT_CONST) 1495 #define STRUCTF_REFINERY (1L << STRUCT_REFINERY) 1496 #define STRUCTF_STORAGE (1L << STRUCT_STORAGE) 1497 #define STRUCTF_HELIPAD (1L << STRUCT_HELIPAD) 1498 #define STRUCTF_SAM (1L << STRUCT_SAM) 1499 #define STRUCTF_AIRSTRIP (1L << STRUCT_AIRSTRIP) 1500 #define STRUCTF_POWER (1L << STRUCT_POWER) 1501 #define STRUCTF_ADVANCED_POWER (1L << STRUCT_ADVANCED_POWER) 1502 #define STRUCTF_SOVIET_TECH (1L << STRUCT_SOVIET_TECH) 1503 #define STRUCTF_HOSPITAL (1L << STRUCT_HOSPITAL) 1504 #define STRUCTF_BARRACKS (1L << STRUCT_BARRACKS) 1505 #define STRUCTF_TENT (1L << STRUCT_TENT) 1506 #define STRUCTF_KENNEL (1L << STRUCT_KENNEL) 1507 #define STRUCTF_REPAIR (1L << STRUCT_REPAIR) 1508 #define STRUCTF_BIO_LAB (1L << STRUCT_BIO_LAB) 1509 #define STRUCTF_MISSION (1L << STRUCT_MISSION) 1510 #define STRUCTF_SHIP_YARD (1L << STRUCT_SHIP_YARD) 1511 #define STRUCTF_SUB_PEN (1L << STRUCT_SUB_PEN) 1512 #define STRUCTF_MSLO (1L << STRUCT_MSLO) 1513 #define STRUCTF_FAKECONST (1L << STRUCT_FAKECONST) 1514 #define STRUCTF_FAKEWEAP (1L << STRUCT_FAKEWEAP) 1515 1516 1517 /********************************************************************** 1518 ** The overlays are enumerated here. An overlay functions similarly to 1519 ** a transparent icon. It is placed over the terrain but usually falls 1520 ** "under" buildings, trees, and units. 1521 */ 1522 typedef enum OverlayType : char { 1523 OVERLAY_NONE=-1, 1524 OVERLAY_SANDBAG_WALL, // Piled sandbags. 1525 OVERLAY_CYCLONE_WALL, // Chain-link fence. 1526 OVERLAY_BRICK_WALL, // Solid concrete wall. 1527 OVERLAY_BARBWIRE_WALL, // Barbed-wire wall. 1528 OVERLAY_WOOD_WALL, // Wooden fence. 1529 OVERLAY_GOLD1, 1530 OVERLAY_GOLD2, 1531 OVERLAY_GOLD3, 1532 OVERLAY_GOLD4, 1533 OVERLAY_GEMS1, 1534 OVERLAY_GEMS2, 1535 OVERLAY_GEMS3, 1536 OVERLAY_GEMS4, 1537 OVERLAY_V12, // Haystacks 1538 OVERLAY_V13, // Haystack 1539 OVERLAY_V14, // Wheat field 1540 OVERLAY_V15, // Fallow field 1541 OVERLAY_V16, // Corn field 1542 OVERLAY_V17, // Celery field 1543 OVERLAY_V18, // Potato field 1544 OVERLAY_FLAG_SPOT, // Flag start location. 1545 OVERLAY_WOOD_CRATE, // Wooden goodie crate. 1546 OVERLAY_STEEL_CRATE, // Steel goodie crate. 1547 OVERLAY_FENCE, // New fangled fence. 1548 OVERLAY_WATER_CRATE, // Water goodie crate. 1549 1550 OVERLAY_COUNT, 1551 OVERLAY_FIRST=0 1552 } OverlayType; 1553 1554 //PG inline OverlayType operator++(OverlayType &, int); 1555 1556 1557 /********************************************************************** 1558 ** This specifies the infantry in the game. The "E" designation is 1559 ** similar to the army classification of enlisted soldiers. 1560 */ 1561 typedef enum InfantryType : char { 1562 INFANTRY_NONE=-1, 1563 INFANTRY_E1, // Mini-gun armed. 1564 INFANTRY_E2, // Grenade thrower. 1565 INFANTRY_E3, // Rocket launcher. 1566 INFANTRY_E4, // Flame thrower equipped. 1567 INFANTRY_RENOVATOR, // Engineer. 1568 INFANTRY_TANYA, // Saboteur. 1569 INFANTRY_SPY, // Spy. 1570 INFANTRY_THIEF, // Thief. 1571 INFANTRY_MEDIC, // Field Medic. 1572 INFANTRY_GENERAL, // Field Marshal. 1573 INFANTRY_DOG, // Soviet attack dog 1574 1575 INFANTRY_C1, // Civilian 1576 INFANTRY_C2, // Civilian 1577 INFANTRY_C3, // Civilian 1578 INFANTRY_C4, // Civilian 1579 INFANTRY_C5, // Civilian 1580 INFANTRY_C6, // Civilian 1581 INFANTRY_C7, // Civilian 1582 INFANTRY_C8, // Civilian 1583 INFANTRY_C9, // Civilian 1584 INFANTRY_C10, // Nikumba 1585 INFANTRY_EINSTEIN, // Einstein 1586 INFANTRY_DELPHI, // Agent "Delphi" 1587 INFANTRY_CHAN, // Dr. Chan 1588 1589 #ifdef FIXIT_CSII // checked - ajw 9/28/98 1590 // CounterStrike II only! 1591 INFANTRY_SHOCK, // Shock Trooper 1592 INFANTRY_MECHANIC, 1593 #endif 1594 1595 INFANTRY_COUNT, 1596 INFANTRY_FIRST=0 1597 #ifdef FIXIT_CSII // checked - ajw 9/28/98 1598 , 1599 INFANTRY_RA_COUNT = INFANTRY_SHOCK 1600 #endif 1601 } InfantryType; 1602 1603 #define INFANTRYF_DOG (1L << INFANTRY_DOG) 1604 1605 //PG inline InfantryType operator++(InfantryType &, int); 1606 1607 1608 /********************************************************************** 1609 ** The game units are enumerated here. These include not only traditional 1610 ** vehicles, but also hovercraft and gunboats. 1611 */ 1612 typedef enum UnitType : char { 1613 UNIT_NONE=-1, 1614 UNIT_HTANK, // Mammoth tank. 1615 UNIT_MTANK, // Heavy tank. 1616 UNIT_MTANK2, // Medium tank. 1617 UNIT_LTANK, // Light tank ('Bradly'). 1618 UNIT_APC, // APC. 1619 UNIT_MINELAYER, // Mine-laying vehicle. 1620 UNIT_JEEP, // 4x4 jeep replacement. 1621 UNIT_HARVESTER, // Resource gathering vehicle. 1622 UNIT_ARTY, // Artillery unit. 1623 UNIT_MRJ, // Mobile Radar Jammer. 1624 UNIT_MGG, // Mobile Gap Generator 1625 UNIT_MCV, // Mobile construction vehicle. 1626 UNIT_V2_LAUNCHER, // V2 rocket launcher. 1627 UNIT_TRUCK, // Convoy truck 1628 1629 #ifdef FIXIT_ANTS 1630 UNIT_ANT1, // Warrior ant. 1631 UNIT_ANT2, // Warrior ant. 1632 UNIT_ANT3, // Warrior ant. 1633 #endif 1634 1635 #ifdef FIXIT_CSII // checked - ajw 9/28/98 1636 // CS II ONLY! 1637 UNIT_CHRONOTANK, // Chrono-shifting tank 1638 UNIT_TESLATANK, // Tesla-equipped tank 1639 UNIT_MAD, // Timequake tank 1640 UNIT_DEMOTRUCK, // Jihad truck 1641 #ifdef FIXIT_PHASETRANSPORT // checked - ajw 9/28/98 1642 UNIT_PHASE, // cloaking APC for special missions 1643 #endif 1644 #endif 1645 1646 UNIT_COUNT, 1647 UNIT_FIRST=0 1648 #ifdef FIXIT_CSII // checked - ajw 9/28/98 1649 , 1650 UNIT_RA_COUNT = UNIT_CHRONOTANK 1651 #endif 1652 } UnitType; 1653 1654 //PG inline UnitType operator++(UnitType &, int); 1655 1656 #define UNITF_HTANK (1L<<UNIT_HTANK) 1657 #define UNITF_MTANK (1L<<UNIT_MTANK) 1658 #define UNITF_MTANK2 (1L<<UNIT_MTANK2) 1659 #define UNITF_LTANK (1L<<UNIT_LTANK) 1660 #define UNITF_STANK (1L<<UNIT_STANK) 1661 #define UNITF_APC (1L<<UNIT_APC) 1662 #define UNITF_MLRS (1L<<UNIT_MLRS) 1663 #define UNITF_JEEP (1L<<UNIT_JEEP) 1664 #define UNITF_HARVESTER (1L<<UNIT_HARVESTER) 1665 #define UNITF_ARTY (1L<<UNIT_ARTY) 1666 #define UNITF_MCV (1L<<UNIT_MCV) 1667 1668 1669 /********************************************************************** 1670 ** The naval vessels are enumerated below. 1671 */ 1672 typedef enum VesselType : char { 1673 VESSEL_NONE=-1, 1674 1675 VESSEL_SS, // Submarine 1676 VESSEL_DD, // Medium weapon patrol craft 1677 VESSEL_CA, // Heavy weapon patrol craft 1678 VESSEL_TRANSPORT, // Unit transporter 1679 VESSEL_PT, // Light weapon patrol craft 1680 #ifdef FIXIT_CSII // checked - ajw 9/28/98 1681 // CS II ONLY 1682 VESSEL_MISSILESUB, // Missile-equipped submarine 1683 #endif 1684 #ifdef FIXIT_CARRIER // checked - ajw 9/28/98 1685 VESSEL_CARRIER, 1686 #endif 1687 1688 VESSEL_COUNT, 1689 VESSEL_FIRST=0 1690 #ifdef FIXIT_CSII // checked - ajw 9/28/98 1691 , 1692 VESSEL_RA_COUNT = VESSEL_MISSILESUB 1693 #endif 1694 } VesselType; 1695 1696 //inline VesselType operator++(VesselType &, int); 1697 1698 #define VESSELF_SS (1L<<VESSEL_SS) 1699 #define VESSELF_DD (1L<<VESSEL_DD) 1700 #define VESSELF_CA (1L<<VESSEL_CA) 1701 #define VESSELF_TRANSPORT (1L<<VESSEL_TRANSPORT) 1702 #define VESSELF_PT (1L<<VESSEL_PT) 1703 1704 1705 /********************************************************************** 1706 ** The various aircraft types are enumerated here. These include helicopters 1707 ** as well as traditional aircraft. 1708 */ 1709 typedef enum AircraftType : char { 1710 AIRCRAFT_TRANSPORT, // Transport helicopter. 1711 AIRCRAFT_BADGER, // Badger bomber. 1712 AIRCRAFT_U2, // Photo recon plane. 1713 AIRCRAFT_MIG, // Mig attack plane. 1714 AIRCRAFT_YAK, // Yak attack plane. 1715 AIRCRAFT_LONGBOW, // Apache gunship. 1716 AIRCRAFT_HIND, // Soviet attach helicopter. 1717 1718 AIRCRAFT_COUNT, 1719 AIRCRAFT_NONE=-1, 1720 AIRCRAFT_FIRST=0 1721 } AircraftType; 1722 1723 #define AIRCRAFTF_TRANSPORT (1L << AIRCRAFT_TRANSPORT) 1724 #define AIRCRAFTF_BADGER (1L << AIRCRAFT_BADGER) 1725 #define AIRCRAFTF_U2 (1L << AIRCRAFT_U2) 1726 #define AIRCRAFTF_MIG (1L << AIRCRAFT_MIG) 1727 #define AIRCRAFTF_YAK (1L << AIRCRAFT_YAK) 1728 #define AIRCRAFTF_LONGBOW (1L << AIRCRAFT_LONGBOW) 1729 #define AIRCRAFTF_HIND (1L << AIRCRAFT_HIND) 1730 1731 //PG inline AircraftType operator++(AircraftType &, int); 1732 1733 1734 /********************************************************************** 1735 ** The game templates are enumerated here. These are the underlying 1736 ** terrain art. This includes everything from water to cliffs. If the 1737 ** terrain is broken up into icons, is not transparent, and is drawn 1738 ** as the bottom most layer, then it is a template. 1739 */ 1740 typedef enum TemplateType : unsigned short { 1741 TEMPLATE_CLEAR1, 1742 TEMPLATE_WATER, // This must be the first non-clear template. 1743 TEMPLATE_WATER2, 1744 TEMPLATE_SHORE01, 1745 TEMPLATE_SHORE02, 1746 TEMPLATE_SHORE03, 1747 TEMPLATE_SHORE04, 1748 TEMPLATE_SHORE05, 1749 TEMPLATE_SHORE06, 1750 TEMPLATE_SHORE07, 1751 TEMPLATE_SHORE08, 1752 TEMPLATE_SHORE09, 1753 TEMPLATE_SHORE10, 1754 TEMPLATE_SHORE11, 1755 TEMPLATE_SHORE12, 1756 TEMPLATE_SHORE13, 1757 TEMPLATE_SHORE14, 1758 TEMPLATE_SHORE15, 1759 TEMPLATE_SHORE16, 1760 TEMPLATE_SHORE17, 1761 TEMPLATE_SHORE18, 1762 TEMPLATE_SHORE19, 1763 TEMPLATE_SHORE20, 1764 TEMPLATE_SHORE21, 1765 TEMPLATE_SHORE22, 1766 TEMPLATE_SHORE23, 1767 TEMPLATE_SHORE24, 1768 TEMPLATE_SHORE25, 1769 TEMPLATE_SHORE26, 1770 TEMPLATE_SHORE27, 1771 TEMPLATE_SHORE28, 1772 TEMPLATE_SHORE29, 1773 TEMPLATE_SHORE30, 1774 TEMPLATE_SHORE31, 1775 TEMPLATE_SHORE32, 1776 TEMPLATE_SHORE33, 1777 TEMPLATE_SHORE34, 1778 TEMPLATE_SHORE35, 1779 TEMPLATE_SHORE36, 1780 TEMPLATE_SHORE37, 1781 TEMPLATE_SHORE38, 1782 TEMPLATE_SHORE39, 1783 TEMPLATE_SHORE40, 1784 TEMPLATE_SHORE41, 1785 TEMPLATE_SHORE42, 1786 TEMPLATE_SHORE43, 1787 TEMPLATE_SHORE44, 1788 TEMPLATE_SHORE45, 1789 TEMPLATE_SHORE46, 1790 TEMPLATE_SHORE47, 1791 TEMPLATE_SHORE48, 1792 TEMPLATE_SHORE49, 1793 TEMPLATE_SHORE50, 1794 TEMPLATE_SHORE51, 1795 TEMPLATE_SHORE52, 1796 TEMPLATE_SHORE53, 1797 TEMPLATE_SHORE54, 1798 TEMPLATE_SHORE55, 1799 TEMPLATE_SHORE56, 1800 TEMPLATE_SHORECLIFF01, 1801 TEMPLATE_SHORECLIFF02, 1802 TEMPLATE_SHORECLIFF03, 1803 TEMPLATE_SHORECLIFF04, 1804 TEMPLATE_SHORECLIFF05, 1805 TEMPLATE_SHORECLIFF06, 1806 TEMPLATE_SHORECLIFF07, 1807 TEMPLATE_SHORECLIFF08, 1808 TEMPLATE_SHORECLIFF09, 1809 TEMPLATE_SHORECLIFF10, 1810 TEMPLATE_SHORECLIFF11, 1811 TEMPLATE_SHORECLIFF12, 1812 TEMPLATE_SHORECLIFF13, 1813 TEMPLATE_SHORECLIFF14, 1814 TEMPLATE_SHORECLIFF15, 1815 TEMPLATE_SHORECLIFF16, 1816 TEMPLATE_SHORECLIFF17, 1817 TEMPLATE_SHORECLIFF18, 1818 TEMPLATE_SHORECLIFF19, 1819 TEMPLATE_SHORECLIFF20, 1820 TEMPLATE_SHORECLIFF21, 1821 TEMPLATE_SHORECLIFF22, 1822 TEMPLATE_SHORECLIFF23, 1823 TEMPLATE_SHORECLIFF24, 1824 TEMPLATE_SHORECLIFF25, 1825 TEMPLATE_SHORECLIFF26, 1826 TEMPLATE_SHORECLIFF27, 1827 TEMPLATE_SHORECLIFF28, 1828 TEMPLATE_SHORECLIFF29, 1829 TEMPLATE_SHORECLIFF30, 1830 TEMPLATE_SHORECLIFF31, 1831 TEMPLATE_SHORECLIFF32, 1832 TEMPLATE_SHORECLIFF33, 1833 TEMPLATE_SHORECLIFF34, 1834 TEMPLATE_SHORECLIFF35, 1835 TEMPLATE_SHORECLIFF36, 1836 TEMPLATE_SHORECLIFF37, 1837 TEMPLATE_SHORECLIFF38, 1838 TEMPLATE_BOULDER1, 1839 TEMPLATE_BOULDER2, 1840 TEMPLATE_BOULDER3, 1841 TEMPLATE_BOULDER4, 1842 TEMPLATE_BOULDER5, 1843 TEMPLATE_BOULDER6, 1844 TEMPLATE_PATCH01, 1845 TEMPLATE_PATCH02, 1846 TEMPLATE_PATCH03, 1847 TEMPLATE_PATCH04, 1848 TEMPLATE_PATCH07, 1849 TEMPLATE_PATCH08, 1850 TEMPLATE_PATCH13, 1851 TEMPLATE_PATCH14, 1852 TEMPLATE_PATCH15, 1853 TEMPLATE_RIVER01, 1854 TEMPLATE_RIVER02, 1855 TEMPLATE_RIVER03, 1856 TEMPLATE_RIVER04, 1857 TEMPLATE_RIVER05, 1858 TEMPLATE_RIVER06, 1859 TEMPLATE_RIVER07, 1860 TEMPLATE_RIVER08, 1861 TEMPLATE_RIVER09, 1862 TEMPLATE_RIVER10, 1863 TEMPLATE_RIVER11, 1864 TEMPLATE_RIVER12, 1865 TEMPLATE_RIVER13, 1866 TEMPLATE_FALLS1, 1867 TEMPLATE_FALLS1A, 1868 TEMPLATE_FALLS2, 1869 TEMPLATE_FALLS2A, 1870 TEMPLATE_FORD1, 1871 TEMPLATE_FORD2, 1872 TEMPLATE_BRIDGE1, 1873 TEMPLATE_BRIDGE1D, 1874 TEMPLATE_BRIDGE2, 1875 TEMPLATE_BRIDGE2D, 1876 TEMPLATE_SLOPE01, 1877 TEMPLATE_SLOPE02, 1878 TEMPLATE_SLOPE03, 1879 TEMPLATE_SLOPE04, 1880 TEMPLATE_SLOPE05, 1881 TEMPLATE_SLOPE06, 1882 TEMPLATE_SLOPE07, 1883 TEMPLATE_SLOPE08, 1884 TEMPLATE_SLOPE09, 1885 TEMPLATE_SLOPE10, 1886 TEMPLATE_SLOPE11, 1887 TEMPLATE_SLOPE12, 1888 TEMPLATE_SLOPE13, 1889 TEMPLATE_SLOPE14, 1890 TEMPLATE_SLOPE15, 1891 TEMPLATE_SLOPE16, 1892 TEMPLATE_SLOPE17, 1893 TEMPLATE_SLOPE18, 1894 TEMPLATE_SLOPE19, 1895 TEMPLATE_SLOPE20, 1896 TEMPLATE_SLOPE21, 1897 TEMPLATE_SLOPE22, 1898 TEMPLATE_SLOPE23, 1899 TEMPLATE_SLOPE24, 1900 TEMPLATE_SLOPE25, 1901 TEMPLATE_SLOPE26, 1902 TEMPLATE_SLOPE27, 1903 TEMPLATE_SLOPE28, 1904 TEMPLATE_SLOPE29, 1905 TEMPLATE_SLOPE30, 1906 TEMPLATE_SLOPE31, 1907 TEMPLATE_SLOPE32, 1908 TEMPLATE_SLOPE33, 1909 TEMPLATE_SLOPE34, 1910 TEMPLATE_SLOPE35, 1911 TEMPLATE_SLOPE36, 1912 TEMPLATE_SLOPE37, 1913 TEMPLATE_SLOPE38, 1914 TEMPLATE_ROAD01, 1915 TEMPLATE_ROAD02, 1916 TEMPLATE_ROAD03, 1917 TEMPLATE_ROAD04, 1918 TEMPLATE_ROAD05, 1919 TEMPLATE_ROAD06, 1920 TEMPLATE_ROAD07, 1921 TEMPLATE_ROAD08, 1922 TEMPLATE_ROAD09, 1923 TEMPLATE_ROAD10, 1924 TEMPLATE_ROAD11, 1925 TEMPLATE_ROAD12, 1926 TEMPLATE_ROAD13, 1927 TEMPLATE_ROAD14, 1928 TEMPLATE_ROAD15, 1929 TEMPLATE_ROAD16, 1930 TEMPLATE_ROAD17, 1931 TEMPLATE_ROAD18, 1932 TEMPLATE_ROAD19, 1933 TEMPLATE_ROAD20, 1934 TEMPLATE_ROAD21, 1935 TEMPLATE_ROAD22, 1936 TEMPLATE_ROAD23, 1937 TEMPLATE_ROAD24, 1938 TEMPLATE_ROAD25, 1939 TEMPLATE_ROAD26, 1940 TEMPLATE_ROAD27, 1941 TEMPLATE_ROAD28, 1942 TEMPLATE_ROAD29, 1943 TEMPLATE_ROAD30, 1944 TEMPLATE_ROAD31, 1945 TEMPLATE_ROAD32, 1946 TEMPLATE_ROAD33, 1947 TEMPLATE_ROAD34, 1948 TEMPLATE_ROAD35, 1949 TEMPLATE_ROAD36, 1950 TEMPLATE_ROAD37, 1951 TEMPLATE_ROAD38, 1952 TEMPLATE_ROAD39, 1953 TEMPLATE_ROAD40, 1954 TEMPLATE_ROAD41, 1955 TEMPLATE_ROAD42, 1956 TEMPLATE_ROAD43, 1957 TEMPLATE_ROUGH01, 1958 TEMPLATE_ROUGH02, 1959 TEMPLATE_ROUGH03, 1960 TEMPLATE_ROUGH04, 1961 TEMPLATE_ROUGH05, 1962 TEMPLATE_ROUGH06, 1963 TEMPLATE_ROUGH07, 1964 TEMPLATE_ROUGH08, 1965 TEMPLATE_ROUGH09, 1966 TEMPLATE_ROUGH10, 1967 TEMPLATE_ROUGH11, 1968 TEMPLATE_ROAD44, 1969 TEMPLATE_ROAD45, 1970 TEMPLATE_RIVER14, 1971 TEMPLATE_RIVER15, 1972 TEMPLATE_RIVERCLIFF01, 1973 TEMPLATE_RIVERCLIFF02, 1974 TEMPLATE_RIVERCLIFF03, 1975 TEMPLATE_RIVERCLIFF04, 1976 TEMPLATE_BRIDGE_1A, 1977 TEMPLATE_BRIDGE_1B, 1978 TEMPLATE_BRIDGE_1C, 1979 TEMPLATE_BRIDGE_2A, 1980 TEMPLATE_BRIDGE_2B, 1981 TEMPLATE_BRIDGE_2C, 1982 TEMPLATE_BRIDGE_3A, 1983 TEMPLATE_BRIDGE_3B, 1984 TEMPLATE_BRIDGE_3C, 1985 TEMPLATE_BRIDGE_3D, 1986 TEMPLATE_BRIDGE_3E, 1987 TEMPLATE_BRIDGE_3F, 1988 TEMPLATE_F01, 1989 TEMPLATE_F02, 1990 TEMPLATE_F03, 1991 TEMPLATE_F04, 1992 TEMPLATE_F05, 1993 TEMPLATE_F06, 1994 1995 // Custom interior pieces. 1996 TEMPLATE_ARRO0001, 1997 TEMPLATE_ARRO0002, 1998 TEMPLATE_ARRO0003, 1999 TEMPLATE_ARRO0004, 2000 TEMPLATE_ARRO0005, 2001 TEMPLATE_ARRO0006, 2002 TEMPLATE_ARRO0007, 2003 TEMPLATE_ARRO0008, 2004 TEMPLATE_ARRO0009, 2005 TEMPLATE_ARRO0010, 2006 TEMPLATE_ARRO0011, 2007 TEMPLATE_ARRO0012, 2008 TEMPLATE_ARRO0013, 2009 TEMPLATE_ARRO0014, 2010 TEMPLATE_ARRO0015, 2011 TEMPLATE_FLOR0001, 2012 TEMPLATE_FLOR0002, 2013 TEMPLATE_FLOR0003, 2014 TEMPLATE_FLOR0004, 2015 TEMPLATE_FLOR0005, 2016 TEMPLATE_FLOR0006, 2017 TEMPLATE_FLOR0007, 2018 TEMPLATE_GFLR0001, 2019 TEMPLATE_GFLR0002, 2020 TEMPLATE_GFLR0003, 2021 TEMPLATE_GFLR0004, 2022 TEMPLATE_GFLR0005, 2023 TEMPLATE_GSTR0001, 2024 TEMPLATE_GSTR0002, 2025 TEMPLATE_GSTR0003, 2026 TEMPLATE_GSTR0004, 2027 TEMPLATE_GSTR0005, 2028 TEMPLATE_GSTR0006, 2029 TEMPLATE_GSTR0007, 2030 TEMPLATE_GSTR0008, 2031 TEMPLATE_GSTR0009, 2032 TEMPLATE_GSTR0010, 2033 TEMPLATE_GSTR0011, 2034 TEMPLATE_LWAL0001, 2035 TEMPLATE_LWAL0002, 2036 TEMPLATE_LWAL0003, 2037 TEMPLATE_LWAL0004, 2038 TEMPLATE_LWAL0005, 2039 TEMPLATE_LWAL0006, 2040 TEMPLATE_LWAL0007, 2041 TEMPLATE_LWAL0008, 2042 TEMPLATE_LWAL0009, 2043 TEMPLATE_LWAL0010, 2044 TEMPLATE_LWAL0011, 2045 TEMPLATE_LWAL0012, 2046 TEMPLATE_LWAL0013, 2047 TEMPLATE_LWAL0014, 2048 TEMPLATE_LWAL0015, 2049 TEMPLATE_LWAL0016, 2050 TEMPLATE_LWAL0017, 2051 TEMPLATE_LWAL0018, 2052 TEMPLATE_LWAL0019, 2053 TEMPLATE_LWAL0020, 2054 TEMPLATE_LWAL0021, 2055 TEMPLATE_LWAL0022, 2056 TEMPLATE_LWAL0023, 2057 TEMPLATE_LWAL0024, 2058 TEMPLATE_LWAL0025, 2059 TEMPLATE_LWAL0026, 2060 TEMPLATE_LWAL0027, 2061 TEMPLATE_STRP0001, 2062 TEMPLATE_STRP0002, 2063 TEMPLATE_STRP0003, 2064 TEMPLATE_STRP0004, 2065 TEMPLATE_STRP0005, 2066 TEMPLATE_STRP0006, 2067 TEMPLATE_STRP0007, 2068 TEMPLATE_STRP0008, 2069 TEMPLATE_STRP0009, 2070 TEMPLATE_STRP0010, 2071 TEMPLATE_STRP0011, 2072 TEMPLATE_WALL0001, 2073 TEMPLATE_WALL0002, 2074 TEMPLATE_WALL0003, 2075 TEMPLATE_WALL0004, 2076 TEMPLATE_WALL0005, 2077 TEMPLATE_WALL0006, 2078 TEMPLATE_WALL0007, 2079 TEMPLATE_WALL0008, 2080 TEMPLATE_WALL0009, 2081 TEMPLATE_WALL0010, 2082 TEMPLATE_WALL0011, 2083 TEMPLATE_WALL0012, 2084 TEMPLATE_WALL0013, 2085 TEMPLATE_WALL0014, 2086 TEMPLATE_WALL0015, 2087 TEMPLATE_WALL0016, 2088 TEMPLATE_WALL0017, 2089 TEMPLATE_WALL0018, 2090 TEMPLATE_WALL0019, 2091 TEMPLATE_WALL0020, 2092 TEMPLATE_WALL0021, 2093 TEMPLATE_WALL0022, 2094 TEMPLATE_WALL0023, 2095 TEMPLATE_WALL0024, 2096 TEMPLATE_WALL0025, 2097 TEMPLATE_WALL0026, 2098 TEMPLATE_WALL0027, 2099 TEMPLATE_WALL0028, 2100 TEMPLATE_WALL0029, 2101 TEMPLATE_WALL0030, 2102 TEMPLATE_WALL0031, 2103 TEMPLATE_WALL0032, 2104 TEMPLATE_WALL0033, 2105 TEMPLATE_WALL0034, 2106 TEMPLATE_WALL0035, 2107 TEMPLATE_WALL0036, 2108 TEMPLATE_WALL0037, 2109 TEMPLATE_WALL0038, 2110 TEMPLATE_WALL0039, 2111 TEMPLATE_WALL0040, 2112 TEMPLATE_WALL0041, 2113 TEMPLATE_WALL0042, 2114 TEMPLATE_WALL0043, 2115 TEMPLATE_WALL0044, 2116 TEMPLATE_WALL0045, 2117 TEMPLATE_WALL0046, 2118 TEMPLATE_WALL0047, 2119 TEMPLATE_WALL0048, 2120 TEMPLATE_WALL0049, 2121 TEMPLATE_BRIDGE1H, 2122 TEMPLATE_BRIDGE2H, 2123 TEMPLATE_BRIDGE_1AX, 2124 TEMPLATE_BRIDGE_2AX, 2125 TEMPLATE_BRIDGE1X, 2126 TEMPLATE_BRIDGE2X, 2127 2128 TEMPLATE_XTRA0001, 2129 TEMPLATE_XTRA0002, 2130 TEMPLATE_XTRA0003, 2131 TEMPLATE_XTRA0004, 2132 TEMPLATE_XTRA0005, 2133 TEMPLATE_XTRA0006, 2134 TEMPLATE_XTRA0007, 2135 TEMPLATE_XTRA0008, 2136 TEMPLATE_XTRA0009, 2137 TEMPLATE_XTRA0010, 2138 TEMPLATE_XTRA0011, 2139 TEMPLATE_XTRA0012, 2140 TEMPLATE_XTRA0013, 2141 TEMPLATE_XTRA0014, 2142 TEMPLATE_XTRA0015, 2143 TEMPLATE_XTRA0016, 2144 2145 #ifdef FIXIT_ANTS 2146 TEMPLATE_HILL01, 2147 #endif 2148 2149 2150 TEMPLATE_COUNT, 2151 TEMPLATE_NONE=65535, 2152 TEMPLATE_FIRST=0 2153 } TemplateType; 2154 2155 //PG inline TemplateType operator++(TemplateType &, int); 2156 inline TemplateType operator++(TemplateType &n) { n = (TemplateType)(((int)n) + 1); return n; } 2157 2158 /********************************************************************** 2159 ** The three dimensional terrain objects are enumerated here. These 2160 ** objects function similar to buildings in that they can be driven 2161 ** behind and can take damage on an individual basis. 2162 */ 2163 typedef enum TerrainType : char { 2164 TERRAIN_NONE=-1, 2165 TERRAIN_TREE1, 2166 TERRAIN_TREE2, 2167 TERRAIN_TREE3, 2168 TERRAIN_TREE5, 2169 TERRAIN_TREE6, 2170 TERRAIN_TREE7, 2171 TERRAIN_TREE8, 2172 TERRAIN_TREE10, 2173 TERRAIN_TREE11, 2174 TERRAIN_TREE12, 2175 TERRAIN_TREE13, 2176 TERRAIN_TREE14, 2177 TERRAIN_TREE15, 2178 TERRAIN_TREE16, 2179 TERRAIN_TREE17, 2180 TERRAIN_CLUMP1, 2181 TERRAIN_CLUMP2, 2182 TERRAIN_CLUMP3, 2183 TERRAIN_CLUMP4, 2184 TERRAIN_CLUMP5, 2185 2186 TERRAIN_ICE01, 2187 TERRAIN_ICE02, 2188 TERRAIN_ICE03, 2189 TERRAIN_ICE04, 2190 TERRAIN_ICE05, 2191 2192 TERRAIN_BOXES01, 2193 TERRAIN_BOXES02, 2194 TERRAIN_BOXES03, 2195 TERRAIN_BOXES04, 2196 TERRAIN_BOXES05, 2197 TERRAIN_BOXES06, 2198 TERRAIN_BOXES07, 2199 TERRAIN_BOXES08, 2200 TERRAIN_BOXES09, 2201 2202 TERRAIN_MINE, 2203 2204 TERRAIN_COUNT, 2205 TERRAIN_FIRST=0 2206 } TerrainType; 2207 2208 //PG inline TerrainType operator++(TerrainType &, int); 2209 2210 2211 /********************************************************************** 2212 ** Smudges are enumerated here. Smudges are transparent icons that are 2213 ** drawn over the underlying terrain in order to give the effect of 2214 ** alterations to the terrain. Craters are a good example of this. 2215 */ 2216 typedef enum SmudgeType : char { 2217 SMUDGE_NONE=-1, 2218 SMUDGE_CRATER1, 2219 SMUDGE_CRATER2, 2220 SMUDGE_CRATER3, 2221 SMUDGE_CRATER4, 2222 SMUDGE_CRATER5, 2223 SMUDGE_CRATER6, 2224 SMUDGE_SCORCH1, 2225 SMUDGE_SCORCH2, 2226 SMUDGE_SCORCH3, 2227 SMUDGE_SCORCH4, 2228 SMUDGE_SCORCH5, 2229 SMUDGE_SCORCH6, 2230 SMUDGE_BIB1, 2231 SMUDGE_BIB2, 2232 SMUDGE_BIB3, 2233 2234 SMUDGE_COUNT, 2235 SMUDGE_FIRST=0 2236 } SmudgeType; 2237 2238 //PG inline SmudgeType operator++(SmudgeType &, int); 2239 2240 2241 /********************************************************************** 2242 ** Animations are enumerated here. Animations are the high speed and 2243 ** short lived effects that occur with explosions and fire. 2244 */ 2245 typedef enum AnimType : char { 2246 ANIM_NONE=-1, 2247 ANIM_FBALL1, // Large fireball explosion (bulges rightward). 2248 ANIM_FBALL_FADE, // Fading fireball puff. 2249 ANIM_FRAG1, // Medium fragment throwing explosion -- short decay. 2250 ANIM_VEH_HIT1, // Small fireball explosion (bulges rightward). 2251 ANIM_VEH_HIT2, // Small fragment throwing explosion -- pop & sparkles. 2252 ANIM_VEH_HIT3, // Small fragment throwing explosion -- burn/exp mix. 2253 ANIM_ART_EXP1, // Large fragment throwing explosion -- many sparkles. 2254 ANIM_NAPALM1, // Small napalm burn. 2255 ANIM_NAPALM2, // Medium napalm burn. 2256 ANIM_NAPALM3, // Large napalm burn. 2257 ANIM_SMOKE_PUFF, // Small rocket smoke trail puff. 2258 ANIM_PIFF, // Machine gun impact piffs. 2259 ANIM_PIFFPIFF, // Chaingun impact piffs. 2260 ANIM_FIRE_SMALL, // Small flame animation. 2261 ANIM_FIRE_MED, // Medium flame animation. 2262 ANIM_FIRE_MED2, // Medium flame animation (oranger). 2263 ANIM_FIRE_TINY, // Very tiny flames. 2264 ANIM_MUZZLE_FLASH, // Big cannon flash (with translucency). 2265 ANIM_SMOKE_M, // Smoke rising from ground. 2266 ANIM_BURN_SMALL, // Small combustible fire effect (with trail off). 2267 ANIM_BURN_MED, // Medium combustible fire effect (with trail off). 2268 ANIM_BURN_BIG, // Large combustible fire effect (with trail off). 2269 ANIM_ON_FIRE_SMALL, // Burning effect for buildings. 2270 ANIM_ON_FIRE_MED, // Burning effect for buildings. 2271 ANIM_ON_FIRE_BIG, // Burning effect for buildings. 2272 ANIM_SAM_N, 2273 ANIM_SAM_NE, 2274 ANIM_SAM_E, 2275 ANIM_SAM_SE, 2276 ANIM_SAM_S, 2277 ANIM_SAM_SW, 2278 ANIM_SAM_W, 2279 ANIM_SAM_NW, 2280 ANIM_GUN_N, 2281 ANIM_GUN_NE, 2282 ANIM_GUN_E, 2283 ANIM_GUN_SE, 2284 ANIM_GUN_S, 2285 ANIM_GUN_SW, 2286 ANIM_GUN_W, 2287 ANIM_GUN_NW, 2288 ANIM_LZ_SMOKE, 2289 ANIM_CRATE_DEVIATOR, // Red finned missile. 2290 ANIM_CRATE_DOLLAR, // Dollar sign. 2291 ANIM_CRATE_EARTH, // Cracked Earth. 2292 ANIM_CRATE_EMPULSE, // Plasma ball. 2293 ANIM_CRATE_INVUN, // Orange sphere with green rings. 2294 ANIM_CRATE_MINE, // Spiked mine. 2295 ANIM_CRATE_RAPID, // Red skull. 2296 ANIM_CRATE_STEALTH, // Cloaking sphere. 2297 ANIM_CRATE_MISSILE, // Green finned missile. 2298 ANIM_MOVE_FLASH, 2299 ANIM_OILFIELD_BURN, 2300 ANIM_ELECT_DIE, // Electrocution infantryman death from Tesla coil 2301 ANIM_PARACHUTE, // Parachute (designed to be attached to object). 2302 ANIM_DOG_ELECT_DIE, // Electrocution dog death from Tesla coil 2303 ANIM_CORPSE1, 2304 ANIM_CORPSE2, 2305 ANIM_CORPSE3, 2306 ANIM_SPUTDOOR, 2307 ANIM_ATOM_BLAST, 2308 ANIM_CHRONO_BOX, 2309 ANIM_GPS_BOX, 2310 ANIM_INVUL_BOX, 2311 ANIM_PARA_BOX, 2312 ANIM_SONAR_BOX, 2313 ANIM_TWINKLE1, 2314 ANIM_TWINKLE2, 2315 ANIM_TWINKLE3, 2316 ANIM_FLAK, 2317 ANIM_WATER_EXP1, 2318 ANIM_WATER_EXP2, 2319 ANIM_WATER_EXP3, 2320 ANIM_CRATE_ARMOR, 2321 ANIM_CRATE_SPEED, 2322 ANIM_CRATE_FPOWER, 2323 ANIM_CRATE_TQUAKE, 2324 ANIM_PARA_BOMB, 2325 ANIM_MINE_EXP1, 2326 ANIM_FLAG, 2327 ANIM_BEACON, 2328 2329 #ifdef FIXIT_ANTS 2330 ANIM_ANT1_DEATH, 2331 ANIM_ANT2_DEATH, 2332 ANIM_ANT3_DEATH, 2333 #endif 2334 2335 ANIM_FIRE_SMALL_VIRTUAL, // Small flame animation. 2336 ANIM_FIRE_MED_VIRTUAL, // Medium flame animation. 2337 ANIM_FIRE_MED2_VIRTUAL, // Medium flame animation (oranger). 2338 ANIM_FIRE_TINY_VIRTUAL, // Very tiny flames. 2339 ANIM_BEACON_VIRTUAL, // Beacon (virtual). 2340 2341 ANIM_COUNT, 2342 ANIM_FIRST=0 2343 } AnimType; 2344 2345 2346 inline AnimType operator++(AnimType &, int); 2347 2348 2349 /**************************************************************************** 2350 ** Infantry can be performing various activities. These can range from simple 2351 ** idle animations to physical hand to hand combat. 2352 */ 2353 typedef enum DoType : char { 2354 DO_NOTHING=-1, // Not performing any choreographed sequence. 2355 DO_STAND_READY=0, 2356 DO_STAND_GUARD, 2357 DO_PRONE, 2358 DO_WALK, 2359 DO_FIRE_WEAPON, 2360 DO_LIE_DOWN, 2361 DO_CRAWL, 2362 DO_GET_UP, 2363 DO_FIRE_PRONE, 2364 DO_IDLE1, 2365 DO_IDLE2, 2366 DO_GUN_DEATH, 2367 DO_EXPLOSION_DEATH, 2368 DO_EXPLOSION2_DEATH, 2369 DO_GRENADE_DEATH, 2370 DO_FIRE_DEATH, 2371 DO_GESTURE1, 2372 DO_SALUTE1, 2373 DO_GESTURE2, 2374 DO_SALUTE2, 2375 DO_DOG_MAUL, 2376 2377 DO_COUNT, 2378 DO_FIRST=0 2379 } DoType; 2380 2381 inline DoType operator++(DoType &, int); 2382 2383 /* 2384 ** This structure is associated with each maneuver type. It tells whether the 2385 ** maneuver can be interrupted and the frame rate. 2386 */ 2387 typedef struct { 2388 unsigned Interrupt:1; // Can it be interrupted? 2389 unsigned IsMobile:1; // Can it move while doing this? 2390 unsigned RandomStart:1; // Should animation be "randomized"? 2391 unsigned char Rate; // Frame rate. 2392 } DoStruct; 2393 2394 typedef struct { 2395 int Frame; // Starting frame of the animation. 2396 unsigned char Count; // Number of frames of animation. 2397 unsigned char Jump; // Frames to jump between facings. 2398 } DoInfoStruct; 2399 2400 2401 /**************************************************************************** 2402 ** These are the various radio message that can be transmitted between 2403 ** units and buildings. Some of these require a response from the receiver 2404 ** and some don't. 2405 */ 2406 typedef enum RadioMessageType : unsigned char { 2407 RADIO_STATIC, // "hisssss" -- non-message 2408 RADIO_ROGER, // "Roger." 2409 RADIO_HELLO, // "Come in. I wish to talk." 2410 RADIO_OVER_OUT, // "Something came up, bye." 2411 RADIO_PICK_UP, // "Please pick me up." 2412 RADIO_ATTACH, // "Attach to transport." 2413 RADIO_DELIVERY, // "I've got a delivery for you." 2414 RADIO_HOLD_STILL, // "I'm performing load/unload maneuver. Be careful." 2415 RADIO_UNLOADED, // "I'm clear." 2416 RADIO_UNLOAD, // "You are clear to unload. Please start driving off now." 2417 RADIO_NEGATIVE, // "Am unable to comply." 2418 RADIO_BUILDING, // "I'm starting construction now... act busy." 2419 RADIO_COMPLETE, // "I've finished construction. You are free." 2420 RADIO_REDRAW, // "Oops, sorry. I might have bumped you a little." 2421 RADIO_DOCKING, // "I'm trying to load up now." 2422 RADIO_CAN_LOAD, // "May I become a passenger?" 2423 RADIO_ARE_REFINERY, // "Are you a refinery ready to take shipment?" 2424 RADIO_TRYING_TO_LOAD, // "Are you trying to become a passenger?" 2425 RADIO_MOVE_HERE, // "Move to location X." 2426 RADIO_NEED_TO_MOVE, // "Do you need to move somewhere?" 2427 RADIO_YEA_NOW_WHAT, // "All right already. Now what?" 2428 RADIO_IM_IN, // "I'm a passenger now." 2429 RADIO_BACKUP_NOW, // "Begin backup into refinery now." 2430 RADIO_RUN_AWAY, // "Run away! Run away!" 2431 RADIO_TETHER, // "Establish tether contact." 2432 RADIO_UNTETHER, // "Break tether contact." 2433 RADIO_REPAIR, // "Repair one step." 2434 RADIO_PREPARED, // "Are you prepared to fight?" 2435 RADIO_ATTACK_THIS, // "Attack this target please." 2436 RADIO_RELOAD, // "Reload one step please." 2437 RADIO_CANT, // "Circumstances prevent success." 2438 RADIO_ALL_DONE, // "I have completed the task." 2439 RADIO_NEED_REPAIR, // "Are you in need of service depot work?" 2440 RADIO_ON_DEPOT, // "Are you sitting on a service depot?" 2441 2442 RADIO_COUNT 2443 } RadioMessageType; 2444 2445 2446 /**************************************************************************** 2447 ** Various trigger events and actions require additional data. This enumeration is 2448 ** used to indicate what kind of additional data is required. This is also used 2449 ** for team mission types that might need additional data. 2450 */ 2451 typedef enum NeedType : unsigned char { 2452 NEED_NONE, // No additional data is required. 2453 NEED_THEME, // Need a musical theme. 2454 NEED_MOVIE, // Need a movie to play. 2455 NEED_SOUND, // Sound effect. 2456 NEED_SPEECH, // Speech from EVA. 2457 NEED_INFANTRY, // Infantry type class. 2458 NEED_UNIT, // Unit type class. 2459 NEED_AIRCRAFT, // Aircraft type class. 2460 NEED_STRUCTURE, // Structure type class. 2461 NEED_WAYPOINT, // Waypoint letter. 2462 NEED_NUMBER, // General number. 2463 NEED_TRIGGER, // Trigger object reference. 2464 NEED_TEAM, // Team type class. 2465 NEED_HOUSE, // House type number. 2466 NEED_TIME, // Time delay value required. 2467 NEED_QUARRY, // Quarry type is needed. 2468 NEED_FORMATION, // A formation type is needed. 2469 NEED_BOOL, // Boolean value is needed. 2470 NEED_SPECIAL, // Special weapon ability. 2471 NEED_MISSION, // General unit mission type. 2472 NEED_HEX_NUMBER // General number. 2473 } NeedType; 2474 2475 2476 /**************************************************************************** 2477 ** There are various target types that teams and special weapons can be 2478 ** assigned to attack. These are general target categories since the actual 2479 ** disposition of potential targets cannot be precisely predicted -- thus these 2480 ** serve as guidelines for the computer AI. 2481 */ 2482 typedef enum QuarryType : unsigned char { 2483 QUARRY_NONE, 2484 2485 QUARRY_ANYTHING, // Attack any enemy (same as "hunt"). 2486 QUARRY_BUILDINGS, // Attack buildings (in general). 2487 QUARRY_HARVESTERS, // Attack harvesters or refineries. 2488 QUARRY_INFANTRY, // Attack infantry. 2489 QUARRY_VEHICLES, // Attack combat vehicles. 2490 QUARRY_VESSELS, // Attach ships. 2491 QUARRY_FACTORIES, // Attack factories (all types). 2492 QUARRY_DEFENSE, // Attack base defense buildings. 2493 QUARRY_THREAT, // Attack enemies near friendly base. 2494 QUARRY_POWER, // Attack power facilities. 2495 QUARRY_FAKES, // Prefer to attack fake buildings. 2496 2497 QUARRY_COUNT, 2498 QUARRY_FIRST=0 2499 } QuarryType; 2500 2501 2502 /**************************************************************************** 2503 ** Teams can be assigned formations. This specifies the various formations that 2504 ** a team can be composed into. 2505 */ 2506 typedef enum FormationType : unsigned char { 2507 FORMATION_NONE, 2508 2509 FORMATION_TIGHT, // Tight grouping (vulnerable units in center). 2510 FORMATION_LOOSE, // Loose grouping (one cell separation between units). 2511 FORMATION_WEDGE_N, // Wedge shape. 2512 FORMATION_WEDGE_E, // Wedge shape. 2513 FORMATION_WEDGE_S, // Wedge shape. 2514 FORMATION_WEDGE_W, // Wedge shape. 2515 FORMATION_LINE_NS, // Column formation. 2516 FORMATION_LINE_EW, // Line formation. 2517 2518 FORMATION_COUNT, 2519 FORMATION_FIRST=0 2520 } FormationType; 2521 2522 2523 /**************************************************************************** 2524 ** Selected units have a special selected unit box around them. These are the 2525 ** defines for the two types of selected unit boxes. One is for infantry and 2526 ** the other is for regular units. 2527 */ 2528 typedef enum SelectEnum : char { 2529 SELECT_NONE=-1, 2530 SELECT_INFANTRY, // Small infantry selection box. 2531 SELECT_UNIT, // Big unit selection box. 2532 SELECT_BUILDING=SELECT_UNIT, // Custom box for buildings. 2533 SELECT_TERRAIN=SELECT_UNIT, // Custom box for terrain objects. 2534 SELECT_WRENCH, // A building is repairing overlay graphic. 2535 2536 SELECT_COUNT 2537 } SelectEnum; 2538 2539 2540 /**************************************************************************** 2541 ** The pip shapes and text shapes are enumerated according to the following 2542 ** type. These special shapes are drawn over special objects or in other places 2543 ** where shape technology is needed. 2544 */ 2545 typedef enum PipEnum : unsigned char 2546 { 2547 PIP_EMPTY, // Empty pip spot. 2548 PIP_FULL, // Full pip spot. 2549 PIP_PRIMARY, // "Primary" building marker. 2550 PIP_READY, // "Ready" construction information tag. 2551 PIP_HOLDING, // "Hold"ing construction information tag. 2552 PIP_ENGINEER, // Full pip with engineer coloring. 2553 PIP_CIVILIAN, // Full pip with civilian coloring. 2554 PIP_COMMANDO, // Full pip with commando coloring. 2555 PIP_NUMBERS, // digit 0 2556 PIP_NUMBER1, // digit 1 2557 PIP_NUMBER2, // digit 2 2558 PIP_NUMBER3, // digit 3 2559 PIP_NUMBER4, // digit 4 2560 PIP_NUMBER5, // digit 5 2561 PIP_NUMBER6, // digit 6 2562 PIP_NUMBER7, // digit 7 2563 PIP_NUMBER8, // digit 8 2564 PIP_NUMBER9, // digit 9 2565 PIP_DECOY, // word "Decoy" for fake buildings 2566 PIP_LETTERF, // letter 'F' for signifying in-formation 2567 PIP_MEDIC, // Little medic red cross. 2568 PIP_PRI // Abbreviated "Primary" for kennel 2569 } PipEnum; 2570 2571 2572 /**************************************************************************** 2573 ** The radar map can be in one of several states depending on the presense of 2574 ** certain structures and power levels. 2575 */ 2576 typedef enum RadarEnum : unsigned char 2577 { 2578 RADAR_NONE, // Radar map doesn't exist at all 2579 RADAR_OFF, // Radar map is present, but displayed as off and non-interactive 2580 RADAR_ON // Radar map is present, visible, and fully interactive 2581 } RadarEnum; 2582 2583 2584 /**************************************************************************** 2585 ** The mouse cursor can be in different states. These states are listed 2586 ** below. Some of these represent animating mouse cursors. The mouse 2587 ** is controlled by passing one of these values to the appropriate 2588 ** MouseClass member function. 2589 */ 2590 typedef enum MouseType : unsigned char 2591 { 2592 MOUSE_NORMAL, 2593 MOUSE_N, 2594 MOUSE_NE, 2595 MOUSE_E, 2596 MOUSE_SE, 2597 MOUSE_S, 2598 MOUSE_SW, 2599 MOUSE_W, 2600 MOUSE_NW, 2601 MOUSE_NO_N, 2602 MOUSE_NO_NE, 2603 MOUSE_NO_E, 2604 MOUSE_NO_SE, 2605 MOUSE_NO_S, 2606 MOUSE_NO_SW, 2607 MOUSE_NO_W, 2608 MOUSE_NO_NW, 2609 MOUSE_NO_MOVE, 2610 MOUSE_CAN_MOVE, 2611 MOUSE_ENTER, 2612 MOUSE_DEPLOY, 2613 MOUSE_CAN_SELECT, 2614 MOUSE_CAN_ATTACK, 2615 MOUSE_SELL_BACK, 2616 MOUSE_SELL_UNIT, 2617 MOUSE_REPAIR, 2618 MOUSE_NO_REPAIR, 2619 MOUSE_NO_SELL_BACK, 2620 MOUSE_RADAR_CURSOR, 2621 MOUSE_NUCLEAR_BOMB, 2622 MOUSE_AIR_STRIKE, 2623 MOUSE_DEMOLITIONS, 2624 MOUSE_AREA_GUARD, 2625 MOUSE_HEAL, 2626 MOUSE_DAMAGE, // Engineer entering building to damage it. 2627 MOUSE_GREPAIR, // Engineer entering friendly building to heal it. 2628 MOUSE_STAY_ATTACK, 2629 MOUSE_NO_DEPLOY, 2630 MOUSE_NO_ENTER, 2631 MOUSE_NO_GREPAIR, 2632 MOUSE_CHRONO_SELECT, 2633 MOUSE_CHRONO_DEST, 2634 2635 MOUSE_COUNT 2636 } MouseType; 2637 2638 2639 /********************************************************************** 2640 ** This structure is used to control the box relief style drawn by 2641 ** the Draw_Box() function. 2642 */ 2643 typedef struct { 2644 int Filler; // Center box fill color. 2645 int Shadow; // Shadow color (darker). 2646 int Highlight; // Highlight color (lighter). 2647 int Corner; // Corner color (transition). 2648 } BoxStyleType; 2649 2650 typedef enum BoxStyleEnum : unsigned char { 2651 BOXSTYLE_DOWN, // Typical depressed edge border. 2652 BOXSTYLE_RAISED, // Typical raised edge border. 2653 BOXSTYLE_DIS_DOWN, // Disabled but depressed. 2654 BOXSTYLE_DIS_RAISED, // Disabled but raised. 2655 BOXSTYLE_BOX, // list box. 2656 BOXSTYLE_BORDER, // main dialog box. 2657 2658 BOXSTYLE_COUNT 2659 } BoxStyleEnum; 2660 2661 2662 /********************************************************************** 2663 ** Damage, as inflicted by projectiles, has different characteristics. 2664 ** These are the different "warhead" types that can be assigned to the 2665 ** various projectiles in the game. 2666 */ 2667 typedef enum WarheadType : char { 2668 WARHEAD_NONE=-1, 2669 2670 WARHEAD_SA, // Small arms -- good against infantry. 2671 WARHEAD_HE, // High explosive -- good against buildings & infantry. 2672 WARHEAD_AP, // Armor piercing -- good against armor. 2673 WARHEAD_FIRE, // Incendiary -- Good against flammables. 2674 WARHEAD_HOLLOW_POINT, // Sniper bullet type. 2675 WARHEAD_TESLA, // Electrocution warhead for infantrymen 2676 WARHEAD_DOG, // Slavering attack beast mauling infantryman 2677 WARHEAD_NUKE, // Nuclear missile 2678 #ifdef FIXIT_CSII // checked - ajw 9/28/98 2679 WARHEAD_MECHANICAL, // repair weapon for vehicles 2680 #endif 2681 WARHEAD_COUNT, 2682 WARHEAD_FIRST=0 2683 } WarheadType; 2684 2685 2686 /********************************************************************** 2687 ** This enumerates the various weapon types. The weapon is characterized 2688 ** by the projectile it launches, the damage it does, and the rate of 2689 ** fire. 2690 */ 2691 typedef enum WeaponType : char { 2692 WEAPON_NONE=-1, 2693 2694 WEAPON_COLT45, 2695 WEAPON_ACK_ACK, 2696 WEAPON_VULCAN, 2697 WEAPON_MAVERICK, 2698 WEAPON_CAMERA, 2699 WEAPON_FIREBALL, 2700 WEAPON_RIFLE, 2701 WEAPON_CHAIN_GUN, 2702 WEAPON_PISTOL, 2703 WEAPON_M16, 2704 WEAPON_DRAGON, 2705 WEAPON_HELLFIRE, 2706 WEAPON_GRENADE, 2707 WEAPON_75MM, 2708 WEAPON_90MM, 2709 WEAPON_105MM, 2710 WEAPON_120MM, 2711 WEAPON_TURRET_GUN, 2712 WEAPON_MAMMOTH_TUSK, 2713 WEAPON_155MM, 2714 WEAPON_M60MG, 2715 WEAPON_NAPALM, 2716 WEAPON_TESLA_ZAP, 2717 WEAPON_NIKE, 2718 WEAPON_8INCH, 2719 WEAPON_STINGER, 2720 WEAPON_TORPEDO, 2721 WEAPON_2INCH, 2722 WEAPON_DEPTH_CHARGE, 2723 WEAPON_PARA_BOMB, 2724 WEAPON_DOGJAW, 2725 WEAPON_HEAL, 2726 WEAPON_SCUD, 2727 WEAPON_FLAMER, 2728 WEAPON_REDEYE, 2729 2730 #ifdef FIXIT_ANTS 2731 WEAPON_MANDIBLE, 2732 #endif 2733 2734 #ifdef FIXIT_CSII // checked - ajw 9/28/98 2735 WEAPON_PORTATESLA, 2736 WEAPON_GOODWRENCH, 2737 WEAPON_SUBSCUD, 2738 WEAPON_TTANKZAP, 2739 WEAPON_APTUSK, 2740 WEAPON_DEMOCHARGE, 2741 #endif 2742 #ifdef FIXIT_CARRIER // checked - ajw 9/28/98 2743 WEAPON_CARRIER, 2744 #endif 2745 2746 2747 WEAPON_COUNT, 2748 WEAPON_FIRST=0 2749 } WeaponType; 2750 2751 2752 /********************************************************************** 2753 ** The various armor types are best suited to defend against a limited 2754 ** kind of warheads. The game strategy revolves around proper 2755 ** combination of armor and weaponry. Each vehicle or building has armor 2756 ** rated according to one of the following types. 2757 */ 2758 typedef enum ArmorType : unsigned char { 2759 ARMOR_NONE, // Vulnerable to SA and HE. 2760 ARMOR_WOOD, // Vulnerable to HE and Fire. 2761 ARMOR_ALUMINUM, // Vulnerable to AP and SA. 2762 ARMOR_STEEL, // Vulnerable to AP. 2763 ARMOR_CONCRETE, // Vulnerable to HE and AP. 2764 2765 ARMOR_COUNT, 2766 ARMOR_FIRST=0 2767 } ArmorType; 2768 2769 2770 /********************************************************************** 2771 ** These are the identifiers for the various monochrome debug screens. 2772 */ 2773 typedef enum DMonoType : unsigned char { 2774 DMONO_OBJECT, 2775 DMONO_HOUSE, 2776 DMONO_STRESS, 2777 DMONO_EVENTS, 2778 2779 DMONO_COUNT, 2780 DMONO_FIRST=0 2781 } DMonoType; 2782 2783 /* 2784 ** Performance benchmark tracking identifiers. 2785 */ 2786 typedef enum BenchType : unsigned char { 2787 BENCH_GAME_FRAME, // Whole game frame (used for normalizing). 2788 BENCH_FINDPATH, // Find path calls. 2789 BENCH_GREATEST_THREAT, // Greatest threat calculation. 2790 BENCH_AI, // Object AI calls. 2791 BENCH_CELL, // Cell draw it function. 2792 BENCH_SIDEBAR, // Sidebar (just cameo section) drawing. 2793 BENCH_RADAR, // Radar map drawing. 2794 BENCH_TACTICAL, // Whole tactical map. 2795 BENCH_PCP, // Per cell process. 2796 BENCH_EVAL_OBJECT, // Evaluate object as potential target. 2797 BENCH_EVAL_CELL, // Evaluate entire cell for potential targets. 2798 BENCH_EVAL_WALL, // Evaluate wall in cell as potential target. 2799 2800 BENCH_POWER, // Power bar drawing. 2801 BENCH_TABS, // Tab section (top) drawing. 2802 BENCH_SHROUD, // Shroud layer drawing. 2803 BENCH_ANIMS, // Animations drawing. 2804 BENCH_OBJECTS, // All game object drawing. 2805 BENCH_PALETTE, // Color cycling palette adjustments. 2806 BENCH_GSCREEN_RENDER, // Rendering of the whole map layered system (with blits). 2807 BENCH_BLIT_DISPLAY, // DirectX or shadow blit of hidpage to seenpage. 2808 BENCH_MISSION, // Mission list processing. 2809 2810 BENCH_RULES, // Processing of the rules.ini file. 2811 BENCH_SCENARIO, // Processing of the scenario.ini file. 2812 2813 BENCH_COUNT, 2814 BENCH_FIRST=0 2815 } BenchType; 2816 2817 2818 #ifdef CHEAT_KEYS 2819 #define BStart(a) if (Benches != NULL) Benches[a].Begin() 2820 #define BEnd(a) if (Benches != NULL) Benches[a].End() 2821 #else 2822 #define BStart(a) 2823 #define BEnd(a) 2824 #endif 2825 2826 2827 /********************************************************************** 2828 ** Working MCGA colors that give a pleasing effect for beveled edges and 2829 ** other purposes. 2830 */ 2831 #define MAGIC_COL_COUNT 13 // Translucent color count. 2832 #define SHADOW_COL_COUNT 4 // Terrain shroud translucent color count. 2833 #define USHADOW_COL_COUNT 1 // Unit shadow special ghost colors. 2834 2835 2836 /********************************************************************** 2837 ** Color cycling range that is used for water effects. 2838 */ 2839 #define CYCLE_COLOR_START (6*16) 2840 #define CYCLE_COLOR_COUNT 7 2841 2842 2843 /********************************************************************** 2844 ** Magic color fading pulsing effect limits -- color gun value. 2845 */ 2846 #define CC_PULSE_COLOR 255 2847 #define CC_EMBER_COLOR (CYCLE_COLOR_START+CYCLE_COLOR_COUNT) 2848 2849 2850 /********************************************************************** 2851 ** These are the control flags for Fancy_Text_Print function. 2852 */ 2853 typedef enum TextPrintType : unsigned short { 2854 TPF_LASTPOINT =0x0000, // Use previous font point value. 2855 TPF_6POINT =0x0001, // Use 6 point font. 2856 TPF_8POINT =0x0002, // Use 8 point font. 2857 TPF_3POINT =0x0003, // Use 3 point font. 2858 TPF_LED =0x0004, // Use LED font. 2859 TPF_VCR =0x0005, // Use VCR font. 2860 TPF_6PT_GRAD =0x0006, // Use 6 point gradient font. 2861 TPF_MAP =0x0007, // Font used for popup help text. 2862 TPF_METAL12 =0x0008, // Use 12 point tab font 2863 TPF_EFNT =0x0009, // Use scenario editor font. 2864 TPF_TYPE =0x000A, // Use teletype font 2865 TPF_SCORE =0x000B, // Use score screen font. 2866 TPF_LASTSHADOW =0x0000, // Use previous font palette. 2867 TPF_NOSHADOW =0x0010, // Don't have any shadow. 2868 TPF_DROPSHADOW =0x0020, // Use a simple drop shadow. 2869 TPF_FULLSHADOW =0x0040, // Use a full outline shadow. 2870 TPF_LIGHTSHADOW =0x0080, // Use engraved drop 'shadow' color. 2871 TPF_CENTER =0x0100, // Center about the X axis. 2872 TPF_RIGHT =0x0200, // Right justify text. 2873 TPF_MEDIUM_COLOR =0x1000, // Use medium color for all text gradient 2874 TPF_BRIGHT_COLOR =0x2000, // Use bright color for all text gradient 2875 TPF_USE_GRAD_PAL =0x4000 // Use a gradient palette based on fore color 2876 } TextPrintType; 2877 2878 //PG 2879 //inline TextPrintType operator |(TextPrintType, TextPrintType); 2880 //inline TextPrintType operator &(TextPrintType, TextPrintType); 2881 //inline TextPrintType operator ~(TextPrintType); 2882 2883 inline TextPrintType operator|(TextPrintType a, TextPrintType b) 2884 {return static_cast<TextPrintType>(static_cast<int>(a) | static_cast<int>(b));} 2885 2886 inline TextPrintType operator&(TextPrintType a, TextPrintType b) 2887 {return static_cast<TextPrintType>(static_cast<int>(a) & static_cast<int>(b));} 2888 2889 inline TextPrintType operator~(TextPrintType a) 2890 {return static_cast<TextPrintType>(~static_cast<int>(a));} 2891 2892 // Standard button text print flags. 2893 #define TPF_BUTTON (TPF_CENTER|TPF_6PT_GRAD|TPF_NOSHADOW) 2894 #define TPF_EBUTTON (TPF_CENTER|TPF_EFNT|TPF_NOSHADOW) 2895 #define TPF_TEXT (TPF_6PT_GRAD|TPF_NOSHADOW) 2896 2897 2898 /********************************************************************** 2899 ** These control the maximum number of objects in the game. Make sure that these 2900 ** maximums never exceed the maximum value for the "ID" element in the 2901 ** object class. 2902 */ 2903 #define BUILDING_MAX 500 // Lasts for hours. 2904 #define HOUSE_MAX (HOUSE_COUNT+1) // Lasts entire scenario. 2905 #define INFANTRY_MAX 500 // Lasts for minutes. 2906 #define UNIT_MAX 500 // Lasts for minutes. 2907 #define VESSEL_MAX 100 // Lasts for minutes. 2908 #define TEAMTYPE_MAX 60 // Lasts forever. 2909 2910 // Save filename description. 2911 #define DESCRIP_MAX 44 // 40 chars + CR + LF + CTRL-Z + NULL 2912 2913 #define CONQUER_PATH_MAX 12 // Number of cells to look ahead for movement. 2914 2915 #define EACH_INFANTRY_MAX (INFANTRY_MAX/5) // Default maximum any one player can have. 2916 #define EACH_UNIT_MAX (UNIT_MAX/5) // Default maximum any one player can have. 2917 #define EACH_BUILDING_MAX (BUILDING_MAX/5) // Default maximum any one player can build. 2918 #define EACH_VESSEL_MAX (VESSEL_MAX/5) // Default maximum any one player can build. 2919 2920 2921 /********************************************************************** 2922 ** Terrain can be of these different classes. At any point in the game 2923 ** a particular piece of ground must fall under one of these classifications. 2924 ** This is true, even if it is undergoing a temporary transition. 2925 */ 2926 typedef enum LandType : char { 2927 LAND_CLEAR, // "Clear" terrain. 2928 LAND_ROAD, // Road terrain. 2929 LAND_WATER, // Water. 2930 LAND_ROCK, // Impassable rock. 2931 LAND_WALL, // Wall (blocks movement). 2932 LAND_TIBERIUM, // Tiberium field. 2933 LAND_BEACH, // Beach terrain. 2934 LAND_ROUGH, // Rocky terrain. 2935 LAND_RIVER, // Rocky riverbed. 2936 2937 LAND_COUNT, 2938 LAND_NONE=-1, 2939 LAND_FIRST=0 2940 } LandType; 2941 2942 2943 /********************************************************************** 2944 ** The theaters of operation are as follows. 2945 */ 2946 typedef enum TheaterType : char { 2947 THEATER_NONE=-1, 2948 THEATER_TEMPERATE, 2949 THEATER_SNOW, 2950 THEATER_INTERIOR, 2951 2952 THEATER_COUNT, 2953 THEATER_FIRST=0 2954 } TheaterType; 2955 2956 //inline TheaterType operator++(TheaterType &, int); 2957 inline TheaterType operator++(TheaterType &n) { n = (TheaterType)(((int)n)+1); return n; } 2958 2959 2960 #define THEATERF_TEMPERATE (1<<THEATER_TEMPERATE) 2961 #define THEATERF_SNOW (1<<THEATER_SNOW) 2962 #define THEATERF_INTERIOR (1<<THEATER_INTERIOR) 2963 2964 typedef struct { 2965 char Name[16]; 2966 char Root[10]; 2967 char Suffix[4]; 2968 } TheaterDataType; 2969 2970 2971 /********************************************************************** 2972 ** Each building has a predetermined size. These are the size numbers. 2973 ** The trailing number is this define is the width and height (respectively) 2974 ** of the building in cells. 2975 */ 2976 typedef enum BSizeType : char { 2977 BSIZE_NONE=-1, 2978 BSIZE_11=0, 2979 BSIZE_21, 2980 BSIZE_12, 2981 BSIZE_22, 2982 BSIZE_23, 2983 BSIZE_32, 2984 BSIZE_33, 2985 BSIZE_42, 2986 BSIZE_55, 2987 2988 BSIZE_COUNT 2989 } BSizeType; 2990 2991 inline BSizeType operator++(BSizeType &, int); 2992 2993 2994 /********************************************************************** 2995 ** When objects are manipulated on the map that are marked as being 2996 ** removed (up), placed down (down), or just to be redrawn (change); 2997 ** or when an object's rendering (not logical) size changes, due to 2998 ** its being selected or having an animation attached (overlap up/down). 2999 */ 3000 typedef enum MarkType : unsigned char { 3001 MARK_UP, // Removed from the map. 3002 MARK_DOWN, // Placed on the map. 3003 MARK_CHANGE, // Altered in place on the map. 3004 MARK_CHANGE_REDRAW, // Redraw because of animation change. 3005 MARK_OVERLAP_DOWN, // Mark overlap cells on the map 3006 MARK_OVERLAP_UP // Clear overlap cells on the map 3007 } MarkType; 3008 3009 3010 /**************************************************************************** 3011 ** Window number definition list. Each window should be referred to by 3012 ** the value given in this list. 3013 */ 3014 // Allow window number enums to be passed to library functions. 3015 typedef enum WindowNumberType : unsigned char { 3016 WINDOW_MAIN, // Full screen window. 3017 WINDOW_ERROR, // Library error window. 3018 WINDOW_TACTICAL, // Tactical map window. 3019 WINDOW_MENU, // Main selection menu. 3020 WINDOW_SIDEBAR, // Sidebar (buildable list) window. 3021 WINDOW_EDITOR, // Scenario editor window. 3022 WINDOW_PARTIAL, // Partial object draw sub-window. 3023 WINDOW_CUSTOM, // Window that can be altered depending on circumstances 3024 WINDOW_VIRTUAL // Window that is used when we want to capture rendering information without actually rendering. ST - 1/15/2019 3:03PM 3025 } WindowNumberType; 3026 3027 3028 /**************************************************************************** 3029 ** For every cell there are 8 adjacent cells. Use these direction numbers 3030 ** when referring to adjacent cells. This comes into play when moving 3031 ** between cells and in the Desired_Facing() algorithm. 3032 */ 3033 typedef enum FacingType : char { 3034 FACING_NONE=-1, 3035 FACING_N, // North 3036 FACING_NE, // North-East 3037 FACING_E, // East 3038 FACING_SE, // South-East 3039 FACING_S, // South 3040 FACING_SW, // South-West 3041 FACING_W, // West 3042 FACING_NW, // North-West 3043 3044 FACING_COUNT, // Total of 8 directions (0..7). 3045 FACING_FIRST=0 3046 } FacingType; 3047 3048 //inline FacingType operator++(FacingType &, int); 3049 inline FacingType operator + (FacingType f1, FacingType f2) 3050 { 3051 return (FacingType)(((int)f1 + (int)f2) & 0x07); 3052 } 3053 inline FacingType operator + (FacingType f1, int f2) 3054 { 3055 return (FacingType)(((int)f1 + (int)f2) & 0x07); 3056 } 3057 3058 inline FacingType operator - (FacingType f1, FacingType f2) 3059 { 3060 return (FacingType)(((int)f1 - (int)f2) & 0x07); 3061 } 3062 inline FacingType operator - (FacingType f1, int f2) 3063 { 3064 return (FacingType)(((int)f1 - (int)f2) & 0x07); 3065 } 3066 3067 inline FacingType operator += (FacingType & f1, FacingType f2) 3068 { 3069 f1 = (FacingType)(((int)f1 + (int)f2) & 0x07); 3070 return(f1); 3071 } 3072 inline FacingType operator += (FacingType & f1, int f2) 3073 { 3074 f1 = (FacingType)(((int)f1 + (int)f2) & 0x07); 3075 return(f1); 3076 } 3077 3078 inline int operator * (FacingType f1, FacingType f2) 3079 { 3080 return((int)f1 * (int)f2); 3081 } 3082 3083 3084 #ifdef NEVER 3085 typedef enum DirType { 3086 DIR_MIN=0, 3087 DIR_N=0, 3088 DIR_NE=1<<5, 3089 DIR_E=2<<5, 3090 DIR_SE=3<<5, 3091 DIR_S=4<<5, 3092 DIR_SW=5<<5, 3093 DIR_SW_X1=(5<<5)-8, // Direction of harvester while unloading. 3094 DIR_SW_X2=(5<<5)-16, // Direction of harvester while unloading. 3095 DIR_W=6<<5, 3096 DIR_NW=7<<5, 3097 DIR_MAX=255 3098 } DirType; 3099 inline DirType operator + (DirType f1, DirType f2) 3100 { 3101 return (DirType)(((int)f1 + (int)f2) & 0x00FF); 3102 } 3103 inline DirType operator + (DirType f1, int f2) 3104 { 3105 return (DirType)(((int)f1 + (int)f2) & 0x00FF); 3106 } 3107 #endif 3108 #define DIR_SW_X1 DirType((5<<5)-8) 3109 #define DIR_SW_X2 DirType((5<<5)-16) 3110 3111 3112 /**************************************************************************** 3113 ** Timer constants. These are used when setting the countdown timer. 3114 ** Note that this is based upon a timer that ticks every 60th of a second. 3115 */ 3116 #define TIMER_SECOND 60 3117 #define TIMER_MINUTE (TIMER_SECOND*60) 3118 3119 #define FADE_PALETTE_FAST (TIMER_SECOND/8) 3120 #define FADE_PALETTE_MEDIUM (TIMER_SECOND/4) 3121 #define FADE_PALETTE_SLOW (TIMER_SECOND/2) 3122 3123 #define TICKS_PER_SECOND 15 3124 #define TICKS_PER_MINUTE (TICKS_PER_SECOND * 60) 3125 #define TICKS_PER_HOUR (TICKS_PER_MINUTE * 60) 3126 3127 #define GRAYFADETIME (1 * TICKS_PER_SECOND) 3128 3129 3130 /**************************************************************************** 3131 ** Each vehicle is give a speed rating. This is a combination of not only 3132 ** its physical speed, but the means by which it travels (wheels, tracks, 3133 ** wings, etc). This is used to determine the movement table. 3134 */ 3135 typedef enum SpeedType : char { 3136 SPEED_NONE=-1, 3137 3138 SPEED_FOOT, // Bipedal. 3139 SPEED_TRACK, // Tracked locomotion. 3140 SPEED_WHEEL, // Balloon tires. 3141 SPEED_WINGED, // Lifter's, 'thopters, and rockets. 3142 SPEED_FLOAT, // Ships. 3143 3144 SPEED_COUNT, 3145 SPEED_FIRST=SPEED_FOOT 3146 } SpeedType; 3147 3148 3149 /********************************************************************** 3150 ** These are the sound effect digitized sample file names. 3151 */ 3152 typedef enum VocType : short { 3153 VOC_NONE=-1, 3154 3155 VOC_GIRL_OKAY, // "okay" 3156 VOC_GIRL_YEAH, // "yeah?" 3157 VOC_GUY_OKAY, // "okay" 3158 VOC_GUY_YEAH, // "yeah?" 3159 3160 VOC_MINELAY1, // mine layer sound 3161 VOC_ACKNOWL, // "acknowledged" 3162 VOC_AFFIRM, // "affirmative" 3163 VOC_AWAIT, // "awaiting orders" 3164 VOC_ENG_AFFIRM, // Engineer: "affirmative" 3165 VOC_ENG_ENG, // Engineer: "engineering" 3166 VOC_NO_PROB, // "not a problem" 3167 VOC_READY, // "ready and waiting" 3168 VOC_REPORT, // "reporting" 3169 VOC_RIGHT_AWAY, // "right away sir" 3170 VOC_ROGER, // "roger" 3171 VOC_UGOTIT, // "you got it" 3172 VOC_VEHIC, // "vehicle reporting" 3173 VOC_YESSIR, // "yes sir" 3174 3175 VOC_SCREAM1, // short infantry scream 3176 VOC_SCREAM3, // short infantry scream 3177 VOC_SCREAM4, // short infantry scream 3178 VOC_SCREAM5, // short infantry scream 3179 VOC_SCREAM6, // short infantry scream 3180 VOC_SCREAM7, // short infantry scream 3181 VOC_SCREAM10, // short infantry scream 3182 VOC_SCREAM11, // short infantry scream 3183 VOC_YELL1, // long infantry scream 3184 3185 VOC_CHRONO, // Chronosphere sound. 3186 VOC_CANNON1, // Cannon sound (medium). 3187 VOC_CANNON2, // Cannon sound (short). 3188 VOC_IRON1, 3189 VOC_ENG_MOVEOUT, // Engineer: "movin' out" 3190 VOC_SONAR, // sonar pulse 3191 VOC_SANDBAG, // sand bag crunch 3192 VOC_MINEBLOW, 3193 VOC_CHUTE1, // wind swoosh sound 3194 VOC_DOG_BARK, // dog bark 3195 VOC_DOG_WHINE, // dog whine 3196 VOC_DOG_GROWL2, // strong dog growl 3197 VOC_FIRE_LAUNCH, // fireball launch sound 3198 VOC_FIRE_EXPLODE, // fireball explode sound 3199 VOC_GRENADE_TOSS, // grenade toss 3200 VOC_GUN_5, // 5 round gun burst (slow). 3201 VOC_GUN_7, // 7 round gun burst (fast). 3202 VOC_ENG_YES, // Engineer: "yes sir" 3203 VOC_GUN_RIFLE, // Rifle shot. 3204 VOC_HEAL, // Healing effect. 3205 VOC_DOOR, // Hyrdrolic door. 3206 VOC_INVULNERABLE, // Invulnerability effect. 3207 VOC_KABOOM1, // Long explosion (muffled). 3208 VOC_KABOOM12, // Very long explosion (muffled). 3209 VOC_KABOOM15, // Very long explosion (muffled). 3210 VOC_SPLASH, // Water splash 3211 VOC_KABOOM22, // Long explosion (sharp). 3212 VOC_AACANON3, // AA-Cannon 3213 VOC_TANYA_DIE, // Tanya: scream 3214 VOC_GUN_5F, // 5 round gun burst (fast). 3215 VOC_MISSILE_1, // Missile with high tech effect. 3216 VOC_MISSILE_2, // Long missile launch. 3217 VOC_MISSILE_3, // Short missile launch. 3218 VOC_x6, 3219 VOC_GUN_5R, // 5 round gun burst (rattles). 3220 VOC_BEEP, // Generic beep sound. 3221 VOC_CLICK, // Generic click sound. 3222 VOC_SILENCER, // Silencer. 3223 VOC_CANNON6, // Long muffled cannon shot. 3224 VOC_CANNON7, // Sharp mechanical cannon fire. 3225 VOC_TORPEDO, // Torpedo launch. 3226 VOC_CANNON8, // Sharp cannon fire. 3227 VOC_TESLA_POWER_UP, // Hum charge up. 3228 VOC_TESLA_ZAP, // Tesla zap effect. 3229 VOC_SQUISH, // Squish effect. 3230 VOC_SCOLD, // Scold bleep. 3231 VOC_RADAR_ON, // Powering up electronics. 3232 VOC_RADAR_OFF, // B movie power down effect. 3233 VOC_PLACE_BUILDING_DOWN, // Building slam down sound. 3234 VOC_KABOOM30, // Short explosion (HE). 3235 VOC_KABOOM25, // Short growling explosion. 3236 VOC_x7, 3237 VOC_DOG_HURT, // Dog whine. 3238 VOC_DOG_YES, // Dog 'yes sir'. 3239 VOC_CRUMBLE, // Building crumble. 3240 VOC_MONEY_UP, // Rising money tick. 3241 VOC_MONEY_DOWN, // Falling money tick. 3242 VOC_CONSTRUCTION, // Building construction sound. 3243 VOC_GAME_CLOSED, // Long bleep. 3244 VOC_INCOMING_MESSAGE, // Soft happy warble. 3245 VOC_SYS_ERROR, // Sharp soft warble. 3246 VOC_OPTIONS_CHANGED, // Mid range soft warble. 3247 VOC_GAME_FORMING, // Long warble. 3248 VOC_PLAYER_LEFT, // Chirp sequence. 3249 VOC_PLAYER_JOINED, // Reverse chirp sequence. 3250 VOC_DEPTH_CHARGE, // Distant explosion sound. 3251 VOC_CASHTURN, // Airbrake. 3252 3253 VOC_TANYA_CHEW, // Tanya: "Chew on this" 3254 VOC_TANYA_ROCK, // Tanya: "Let's rock" 3255 VOC_TANYA_LAUGH, // Tanya: "ha ha ha" 3256 VOC_TANYA_SHAKE, // Tanya: "Shake it baby" 3257 VOC_TANYA_CHING, // Tanya: "Cha Ching" 3258 VOC_TANYA_GOT, // Tanya: "That's all you got" 3259 VOC_TANYA_KISS, // Tanya: "Kiss it bye bye" 3260 VOC_TANYA_THERE, // Tanya: "I'm there" 3261 VOC_TANYA_GIVE, // Tanya: "Give it to me" 3262 VOC_TANYA_YEA, // Tanya: "Yea?" 3263 VOC_TANYA_YES, // Tanya: "Yes sir?" 3264 VOC_TANYA_WHATS, // Tanya: "What's up." 3265 VOC_WALLKILL2, // Crushing wall sound. 3266 VOC_x8, 3267 VOC_TRIPLE_SHOT, // Three quick shots in succession. 3268 VOC_SUBSHOW, // Submarine surfacing. 3269 VOC_E_AH, // Einstein "ah" 3270 VOC_E_OK, // Einstein "ok" 3271 VOC_E_YES, // Einstein "yes" 3272 VOC_TRIP_MINE, // mine explosion sound 3273 3274 VOC_SPY_COMMANDER, // Spy: "commander?" 3275 VOC_SPY_YESSIR, // Spy: "yes sir" 3276 VOC_SPY_INDEED, // Spy: "indeed" 3277 VOC_SPY_ONWAY, // Spy: "on my way" 3278 VOC_SPY_KING, // Spy: "for king and country" 3279 VOC_MED_REPORTING, // Medic: "reporting" 3280 VOC_MED_YESSIR, // Medic: "yes sir" 3281 VOC_MED_AFFIRM, // Medic: "affirmative" 3282 VOC_MED_MOVEOUT, // Medic: "movin' out" 3283 VOC_BEEP_SELECT, // map selection beep 3284 3285 VOC_THIEF_YEA, // Thief: "yea?" 3286 3287 #ifdef FIXIT_ANTS 3288 VOC_ANTDIE, 3289 VOC_ANTBITE, 3290 #else 3291 VOC_x9, 3292 VOC_x10, 3293 #endif 3294 3295 VOC_THIEF_MOVEOUT, // Thief: "movin' out" 3296 VOC_THIEF_OKAY, // Thief: "ok" 3297 VOC_x11, 3298 VOC_THIEF_WHAT, // Thief: "what" 3299 VOC_THIEF_AFFIRM, // Thief: "affirmative" 3300 3301 VOC_STAVCMDR, 3302 VOC_STAVCRSE, 3303 VOC_STAVYES, 3304 VOC_STAVMOV, 3305 VOC_BUZZY1, 3306 VOC_RAMBO1, 3307 VOC_RAMBO2, 3308 VOC_RAMBO3, 3309 3310 #ifdef FIXIT_CSII // checked - ajw 9/28/98 3311 VOC_MECHYES1, 3312 VOC_MECHHOWDY1, 3313 VOC_MECHRISE1, 3314 VOC_MECHHUH1, 3315 VOC_MECHHEAR1, 3316 VOC_MECHLAFF1, 3317 VOC_MECHBOSS1, 3318 VOC_MECHYEEHAW1, 3319 VOC_MECHHOTDIG1, 3320 VOC_MECHWRENCH1, 3321 VOC_STBURN1, 3322 VOC_STCHRGE1, 3323 VOC_STCRISP1, 3324 VOC_STDANCE1, 3325 VOC_STJUICE1, 3326 VOC_STJUMP1, 3327 VOC_STLIGHT1, 3328 VOC_STPOWER1, 3329 VOC_STSHOCK1, 3330 VOC_STYES1, 3331 3332 VOC_CHRONOTANK1, 3333 VOC_MECH_FIXIT1, 3334 VOC_MAD_CHARGE, 3335 VOC_MAD_EXPLODE, 3336 VOC_SHOCK_TROOP1, 3337 3338 VOC_BEACON, 3339 3340 #endif 3341 VOC_COUNT, 3342 VOC_FIRST=0 3343 } VocType; 3344 3345 /* 3346 ** EVA voices are specified by these identifiers. 3347 */ 3348 typedef enum VoxType : char { 3349 VOX_NONE=-1, 3350 VOX_ACCOMPLISHED, // mission accomplished 3351 VOX_FAIL, // your mission has failed 3352 VOX_NO_FACTORY, // unable to comply, building in progress 3353 VOX_CONSTRUCTION, // construction complete 3354 VOX_UNIT_READY, // unit ready 3355 VOX_NEW_CONSTRUCT, // new construction options 3356 VOX_DEPLOY, // cannot deploy here 3357 VOX_STRUCTURE_DESTROYED, // structure destroyed 3358 VOX_INSUFFICIENT_POWER, // insufficient power 3359 VOX_NO_CASH, // insufficient funds 3360 VOX_CONTROL_EXIT, // battle control terminated 3361 VOX_REINFORCEMENTS, // reinforcements have arrived 3362 VOX_CANCELED, // canceled 3363 VOX_BUILDING, // building 3364 VOX_LOW_POWER, // low power 3365 VOX_NEED_MO_MONEY, // need more funds 3366 VOX_BASE_UNDER_ATTACK, // our base is under attack 3367 VOX_UNABLE_TO_BUILD, // unable to build more 3368 VOX_PRIMARY_SELECTED, // primary building selected 3369 #ifdef ENGLISH 3370 VOX_MADTANK_DEPLOYED, // M.A.D. Tank Deployed 3371 #else 3372 VOX_none3, 3373 #endif 3374 VOX_none4, 3375 VOX_UNIT_LOST, // unit lost 3376 VOX_SELECT_TARGET, // select target 3377 VOX_PREPARE, // enemy approaching 3378 VOX_NEED_MO_CAPACITY, // silos needed 3379 VOX_SUSPENDED, // on hold 3380 VOX_REPAIRING, // repairing 3381 VOX_none5, 3382 VOX_none6, 3383 VOX_AIRCRAFT_LOST, 3384 VOX_none7, 3385 VOX_ALLIED_FORCES_APPROACHING, 3386 VOX_ALLIED_APPROACHING, 3387 VOX_none8, 3388 VOX_none9, 3389 VOX_BUILDING_INFILTRATED, 3390 VOX_CHRONO_CHARGING, 3391 VOX_CHRONO_READY, 3392 VOX_CHRONO_TEST, 3393 VOX_HQ_UNDER_ATTACK, 3394 VOX_CENTER_DEACTIVATED, 3395 VOX_CONVOY_APPROACHING, 3396 VOX_CONVOY_UNIT_LOST, 3397 VOX_EXPLOSIVE_PLACED, 3398 VOX_MONEY_STOLEN, 3399 VOX_SHIP_LOST, 3400 VOX_SATALITE_LAUNCHED, 3401 VOX_SONAR_AVAILABLE, 3402 VOX_none10, 3403 VOX_SOVIET_FORCES_APPROACHING, 3404 VOX_SOVIET_REINFORCEMENTS, 3405 VOX_TRAINING, 3406 VOX_ABOMB_READY, 3407 VOX_ABOMB_LAUNCH, 3408 VOX_ALLIES_N, 3409 VOX_ALLIES_S, 3410 VOX_ALLIES_E, 3411 VOX_ALLIES_W, 3412 VOX_OBJECTIVE1, 3413 VOX_OBJECTIVE2, 3414 VOX_OBJECTIVE3, 3415 VOX_IRON_CHARGING, 3416 VOX_IRON_READY, 3417 VOX_RESCUED, 3418 VOX_OBJECTIVE_NOT, 3419 VOX_SIGNAL_N, 3420 VOX_SIGNAL_S, 3421 VOX_SIGNAL_E, 3422 VOX_SIGNAL_W, 3423 VOX_SPY_PLANE, 3424 VOX_FREED, 3425 VOX_UPGRADE_ARMOR, 3426 VOX_UPGRADE_FIREPOWER, 3427 VOX_UPGRADE_SPEED, 3428 VOX_MISSION_TIMER, 3429 VOX_UNIT_FULL, 3430 VOX_UNIT_REPAIRED, 3431 VOX_TIME_40, 3432 VOX_TIME_30, 3433 VOX_TIME_20, 3434 VOX_TIME_10, 3435 VOX_TIME_5, 3436 VOX_TIME_4, 3437 VOX_TIME_3, 3438 VOX_TIME_2, 3439 VOX_TIME_1, 3440 VOX_TIME_STOP, 3441 VOX_UNIT_SOLD, 3442 VOX_TIMER_STARTED, 3443 VOX_TARGET_RESCUED, 3444 VOX_TARGET_FREED, 3445 VOX_TANYA_RESCUED, 3446 VOX_STRUCTURE_SOLD, 3447 VOX_SOVIET_FORCES_FALLEN, 3448 VOX_SOVIET_SELECTED, 3449 VOX_SOVIET_EMPIRE_FALLEN, 3450 VOX_OPERATION_TERMINATED, 3451 VOX_OBJECTIVE_REACHED, 3452 VOX_OBJECTIVE_NOT_REACHED, 3453 VOX_OBJECTIVE_MET, 3454 VOX_MERCENARY_RESCUED, 3455 VOX_MERCENARY_FREED, 3456 VOX_KOSOYGEN_FREED, 3457 VOX_FLARE_DETECTED, 3458 VOX_COMMANDO_RESCUED, 3459 VOX_COMMANDO_FREED, 3460 VOX_BUILDING_IN_PROGRESS, 3461 VOX_ATOM_PREPPING, 3462 VOX_ALLIED_SELECTED, 3463 VOX_ABOMB_PREPPING, 3464 VOX_ATOM_LAUNCHED, 3465 VOX_ALLIED_FORCES_FALLEN, 3466 VOX_ABOMB_AVAILABLE, 3467 VOX_ALLIED_REINFORCEMENTS, 3468 VOX_SAVE1, 3469 VOX_LOAD1, 3470 3471 VOX_COUNT, 3472 VOX_FIRST=0 3473 } VoxType; 3474 3475 3476 /**************************************************************************** 3477 ** Game reinforcements are each controlled by the following structure. The 3478 ** data originates in the scenario INI file but is then carried throughout 3479 ** any saved games. 3480 */ 3481 typedef enum SourceType : char { 3482 SOURCE_NONE=-1, // No defined source (error condition). 3483 SOURCE_NORTH, // From north edge. 3484 SOURCE_EAST, // From east edge. 3485 SOURCE_SOUTH, // From south edge. 3486 SOURCE_WEST, // From west edge. 3487 SOURCE_AIR, // Dropped by air (someplace). 3488 3489 SOURCE_COUNT, 3490 SOURCE_FIRST=0 3491 } SourceType; 3492 3493 3494 /**************************************************************************** 3495 ** This entry defines a complete color scheme, with the player's remap table, 3496 ** the font remap table, and a color scheme for dialog boxes and buttons. 3497 */ 3498 typedef struct RemapControlType 3499 { 3500 unsigned char BrightColor; // Highlight (bright) color index. 3501 unsigned char Color; // Normal color index. 3502 unsigned char RemapTable[256]; // Actual remap table. 3503 unsigned char FontRemap[16]; // Remap table for gradient font. 3504 unsigned char Shadow; // Color of shadowed edge of a raised button. 3505 unsigned char Background; // Background fill color for buttons. 3506 unsigned char Corners; // Transition color between shadow and highlight. 3507 unsigned char Highlight; // Bright edge of raised button. 3508 unsigned char Box; // Color for dialog box border. 3509 unsigned char Bright; // Color used for highlighted text. 3510 unsigned char Underline; // Color for underlining dialog box titles. 3511 unsigned char Bar; // Selected entry list box background color. 3512 } RemapControlType; 3513 3514 3515 /**************************************************************************** 3516 ** Each type of terrain has certain characteristics. These are indicated 3517 ** by the structure below. For every element of terrain there is a 3518 ** corresponding GroundType structure. 3519 */ 3520 typedef struct { 3521 fixed Cost[SPEED_COUNT]; // Terrain effect cost (normal). 3522 bool Build; // Can build on this terrain? 3523 } GroundType; 3524 3525 3526 /************************************************************************** 3527 ** Find_Path returns with a pointer to this structure. 3528 */ 3529 typedef struct { 3530 CELL Start; // Starting cell number. 3531 int Cost; // Accumulated terrain cost. 3532 int Length; // Command string length. 3533 FacingType *Command; // Pointer to command string. 3534 unsigned long *Overlap; // Pointer to overlap list 3535 CELL LastOverlap; // stores position of last overlap 3536 CELL LastFixup; // stores position of last overlap 3537 } PathType; 3538 3539 3540 /********************************************************************** 3541 ** These are special indices into the Waypoint array; slots 0-25 are 3542 ** reserved for letter-designated Waypoints, the others are special. 3543 */ 3544 typedef enum WaypointEnum : unsigned char 3545 { 3546 WAYPT_HOME = 98, // Home-cell for this scenario 3547 WAYPT_REINF, // cell where reinforcements arrive 3548 WAYPT_SPECIAL, // Used by special airdrop reinforcements. 3549 WAYPT_COUNT 3550 } WaypointType; 3551 3552 3553 /**************************************************************************** 3554 ** This is the max number of events supported on one frame. 3555 */ 3556 #define MAX_EVENTS 256 3557 3558 typedef enum : unsigned char { 3559 KF_NUMBER = 0x08, 3560 KF_LCW = 0x10, 3561 KF_DELTA = 0x20, 3562 KF_KEYDELTA = 0x40, 3563 KF_KEYFRAME = 0x80, 3564 KF_MASK = 0xF0 3565 } KeyFrameType; 3566 3567 3568 /* 3569 ** New Config structure for .CFG files 3570 */ 3571 typedef struct { 3572 unsigned DigitCard; // SoundCardType. 3573 unsigned Port; // SoundCardType. 3574 unsigned IRQ; // SoundCardType. 3575 unsigned DMA; // SoundCardType. 3576 unsigned BitsPerSample; // bits per sound sample 3577 unsigned Channels; // stereo/mono sound card 3578 unsigned Speed; // stereo/mono sound card 3579 bool Reverse; // Reverse left/right speakers 3580 char Language[4]; 3581 } NewConfigType; 3582 3583 3584 /**************************************************************************** 3585 ** These are the types of dialogs that can pop up outside of the main loop, 3586 ** an call the game in the background. 3587 */ 3588 typedef enum : unsigned char { 3589 SDLG_NONE, 3590 SDLG_OPTIONS, 3591 SDLG_SURRENDER, 3592 SDLG_SPECIAL 3593 } SpecialDialogType; 3594 3595 typedef enum : unsigned char { 3596 CC_MOUSE_COLOR=16 3597 } CCPaletteType; 3598 3599 3600 /**************************************************************************** 3601 ** These specify the shape numbers in the OPTIONS.SHP file. These shapes 3602 ** are used to dress up the dialog boxes. Many of these shapes come in pairs. 3603 ** For dialog box shapes, they are left image / right image paired. For buttons, 3604 ** they are up / down paired. 3605 */ 3606 typedef enum OptionControlType : char { 3607 OPTION_NONE=-1, // No fancy shmancy shape. 3608 OPTION_DIALOG=0, // Small dialog boxes. 3609 OPTION_CONTROLS=2, // Large dialog boxes, game controls. 3610 OPTION_DELETE=4, // Delete,Load,Save game. 3611 OPTION_SERIAL=6, // Serial dialog. 3612 OPTION_PHONE=8, // Phone dialog. 3613 OPTION_VISUAL=10, // Visual dialog. 3614 OPTION_NETWORK=12, // Network dialog. 3615 OPTION_JOIN_NETWORK=14, // Join network dialog. 3616 OPTION_SOUND=16, // Sound controls. 3617 3618 OPTION_COUNT 3619 } OptionControlType; 3620 3621 3622 /**************************************************************************** 3623 ** Used to store firing data for a unit. 3624 */ 3625 typedef struct { 3626 COORDINATE Center; 3627 int Distance; 3628 } FireDataType; 3629 3630 3631 #define size_of(typ,id) sizeof(((typ*)0)->id) 3632 3633 3634 #define MAX_LOG_LEVEL 10 3635 3636 // Maximum number of multi players possible. 3637 #define MAX_PLAYERS 8 // max # of players we can have 3638 3639 // Maximum number of teams 3640 #define MAX_TEAMS 10 3641 3642 #endif