DEFINES.H (95230B)
1 // 2 // Copyright 2020 Electronic Arts Inc. 3 // 4 // TiberianDawn.DLL and RedAlert.dll and corresponding source code is free 5 // software: you can redistribute it and/or modify it under the terms of 6 // the GNU General Public License as published by the Free Software Foundation, 7 // either version 3 of the License, or (at your option) any later version. 8 9 // TiberianDawn.DLL and RedAlert.dll and corresponding source code is distributed 10 // in the hope that it will be useful, but with permitted additional restrictions 11 // under Section 7 of the GPL. See the GNU General Public License in LICENSE.TXT 12 // distributed with this program. You should have received a copy of the 13 // GNU General Public License along with permitted additional restrictions 14 // with this program. If not, see https://github.com/electronicarts/CnC_Remastered_Collection 15 16 /* $Header: F:\projects\c&c\vcs\code\defines.h_v 2.19 16 Oct 1995 16:44:54 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 34 #ifndef DEFINES_H 35 #define DEFINES_H 36 37 38 //#define PETROGLYPH_EXAMPLE_MOD 39 40 /********************************************************************** 41 ** If defined, then the advanced balancing features will be enabled 42 ** for this version. 43 */ 44 //#define ADVANCED 45 #define PATCH // Super patch (1.17?) 46 47 48 /********************************************************************** 49 ** The demo version of C&C will be built if the following define 50 ** is active. 51 */ 52 //#define DEMO 53 54 55 /* 56 ** Use AI pulled in from Red Alert. ST - 7/26/2019 11:42AM 57 */ 58 #define USE_RA_AI 59 60 61 /********************************************************************** 62 ** Define this to allow play of the bonus missions for the Gateway 63 ** bundle deal. 64 */ 65 #define BONUS_MISSIONS 66 67 68 /********************************************************************** 69 ** Handle expansion scnearios as a set of single missions with all 70 ** necessary information self contained within the mission file. 71 */ 72 #ifndef DEMO 73 #define NEWMENU 74 #endif 75 76 77 /********************************************************************** 78 ** If the scenario editor to to be active in this build then uncomment 79 ** the following #define line. 80 */ 81 //#define SCENARIO_EDITOR 82 83 84 /********************************************************************** 85 ** This define enables the full set of cheat keys and special 86 ** command line options. 87 */ 88 #define CHEAT_KEYS 89 90 91 /********************************************************************** 92 ** If this is defined, the special Virgin limited cheat keys 93 ** are enabled. This allows the "cheat" parameter and then only 94 ** allows the ALT-W to win the mission. 95 */ 96 //#define VIRGIN_CHEAT_KEYS 97 98 99 /********************************************************************** 100 ** Optional parameter control for special options. 101 */ 102 //#define PARM_6PLAYER 0x5D9F6F24 // "6" 103 #define PARM_6PLAYER 0x9CAFC93B // Alternate 6 player keyphrase. 104 105 /* 106 ** Enable the set of limited cheat key options. 107 */ 108 #ifdef VIRGIN_CHEAT_KEYS 109 #define PARM_PLAYTEST 0xF7DDC227 // "PLAYTEST" 110 #endif 111 112 /* 113 ** Enable the full set of cheat key options. 114 */ 115 #ifdef CHEAT_KEYS 116 #ifndef PARM_PLAYTEST 117 #define PARM_PLAYTEST 0xF7DDC227 // "PLAYTEST" 118 #endif 119 #define PARM_CHEATDAVID 0xBE79088C // Cheat keys for David Dettmer 120 #define PARM_CHEATERIK 0x9F38A19D // Cheat keys for Erik Yeo 121 #define PARM_EDITORERIK 0xC2AA509B // Map editor for Erik Yeo 122 #define PARM_CHEATPHIL 0x39D01821 // Cheat keys for Phil Gorrow 123 #define PARM_CHEATJOE 0xABDD0362 // Cheat keys for Joe Bostic 124 #define PARM_CHEATBILL 0xB5B63531 // Cheat keys for Bill Randolph 125 #define PARM_CHEAT_STEVET 0x2E7FE493 // Cheat keys for Steve Tall 126 #define PARM_EDITORBILL 0x7E7C4CCA // "-EDITOR" 127 #define PARM_CHEATMIKE 0x00532693 // Mike Lightner 128 #define PARM_CHEATADAM 0xDFABC23A // Adam Isgreen 129 #endif 130 131 //#define PARM_CHEAT 0x6F4BE7CA // "CHEAT" 132 //#define PARM_EDITOR 0x7E7C4CCA // "-EDITOR" 133 134 #define PARM_EASY 0x59E975CE // "EASY" Enables easy mode. 135 #define PARM_HARD 0xACFE9D13 // "HARD" Enables hard mode. 136 137 #define PARM_INSTALL 0xD95C68A2 // "FROMINSTALL" 138 #define PARM_TRUENAME 0xB1A34435 // Enables true object names. 139 #define PARM_3POINT 0x03552894 // Enable three point turns. 140 #define PARM_SCORE 0x7FDE2C33 // Enables alternate themes. 141 #define PARM_COMBAT 0xDC57C4B2 // Gives combat advantage to attacker. 142 #define PARM_TREETARGET 0x00AB6BEF // Allows targeting of trees without <CTRL> key. 143 #define PARM_BIB 0xF7867BF0 // Disables building bibs. 144 #define PARM_MCV 0x104DF10F // MCV undeploys rather than sells. 145 #define PARM_HELIPAD 0x53EBECBC // Helipad can be purchased separately from helicopter. 146 #define PARM_IQ 0x9E3881B8 // Smart self defense logic enable. 147 #define PARM_SQUISH 0x4EA2FBDF // Squish images for infantry bodies. 148 #define PARM_HUMAN 0xACB58F61 // Human generated sound effects. 149 #define PARM_SCROLLING 0xC084AE82 // Restricts scrolling over the tabs. 150 //#define PARM_SPECIAL 0xD18129F6 // Enables special mode. 151 //#define PARM_SPECIAL 0x2E84E394 // #1 152 //#define PARM_SPECIAL 0x63CE7584 // #2 153 //#define PARM_SPECIAL 0x85F110A5 // #3 154 ///#define PARM_SPECIAL 0x7F65F13C // #4 155 //#define PARM_SPECIAL 0x431F5F61 // #5 156 #define PARM_SPECIAL 0x11CA05BB // #6 funpark 157 //#define PARM_SPECIAL 0xE0F651B9 // #7 158 //#define PARM_SPECIAL 0x10B9683D // #8 159 //#define PARM_SPECIAL 0xEE1CD37D // #9 160 161 162 /********************************************************************** 163 ** Defines for verifying free disk space 164 */ 165 #define INIT_FREE_DISK_SPACE 1024*4096 //8388608 166 #define SAVE_GAME_DISK_SPACE INIT_FREE_DISK_SPACE // (INIT_FREE_DISK_SPACE - (1024*4096)) 167 //#define SAVE_GAME_DISK_SPACE 100000 168 169 170 /********************************************************************** 171 ** This is the credit threshold that the computer's money must exceed 172 ** in order for structure repair to commence. 173 */ 174 #define REPAIR_THRESHHOLD 1000 175 176 177 //#define GERMAN 1 178 //#define FRENCH 1 179 //#define JAPANESE 1 180 181 #define FOREIGN_VERSION_NUMBER 6 182 183 // 184 // typedef enums with -1 will show this warning, even when the type of the enum is signed. It's a compiler bug, apparently 185 // ST - 1/8/2019 9:23AM 186 // 187 #pragma warning (push) 188 #pragma warning (disable:4341) 189 190 /********************************************************************** 191 ** These enumerations are used to implement RTTI. 192 */ 193 typedef enum RTTIType : unsigned char { 194 RTTI_NONE=0, 195 RTTI_INFANTRY, 196 RTTI_INFANTRYTYPE, 197 RTTI_UNIT, 198 RTTI_UNITTYPE, 199 RTTI_AIRCRAFT, 200 RTTI_AIRCRAFTTYPE, 201 RTTI_BUILDING, 202 RTTI_BUILDINGTYPE, 203 204 RTTI_TERRAIN, 205 RTTI_ABSTRACTTYPE, 206 RTTI_ANIM, 207 RTTI_ANIMTYPE, 208 RTTI_BULLET, 209 RTTI_BULLETTYPE, 210 RTTI_OVERLAY, 211 RTTI_OVERLAYTYPE, 212 RTTI_SMUDGE, 213 RTTI_SMUDGETYPE, 214 RTTI_TEAM, 215 RTTI_TEMPLATE, 216 RTTI_TEMPLATETYPE, 217 RTTI_TERRAINTYPE, 218 RTTI_OBJECT, 219 RTTI_SPECIAL 220 } RTTIType; 221 222 223 /********************************************************************** 224 ** These are the difficulty settings of the game. 225 */ 226 typedef enum DiffType : unsigned char { 227 DIFF_EASY, 228 DIFF_NORMAL, 229 DIFF_HARD, 230 231 DIFF_COUNT, 232 DIFF_FIRST = 0 233 } DiffType; 234 235 236 /********************************************************************** 237 ** This is the size of the speech buffer. This value should be as large 238 ** as the largest speech sample, plus a few bytes for overhead 239 ** (16 bytes is sufficient). 240 */ 241 #define SPEECH_BUFFER_SIZE 50000L 242 243 244 /********************************************************************** 245 ** This is the size of the shape buffer. This buffer is used as a staging 246 ** buffer for the shape drawing technology. It MUST be as big as the 247 ** largest shape (uncompressed) that will be drawn. If this value is 248 ** changed, be sure to update the makefile and rebuild all of the shape 249 ** data files. 250 */ 251 #define SHAPE_BUFFER_SIZE 131072L 252 253 // Use this to allow keep track of versions as they affect saved games. 254 #define VERSION_NUMBER 1 255 #define RELEASE_NUMBER 01 256 257 #define FAME_FILE_NAME "HALLFAME.DAT" 258 259 260 /********************************************************************** 261 ** Map controls. The map is composed of square elements called 'cells'. 262 ** All larger elements are build upon these. 263 */ 264 265 // Size of the map in cells. The width of the map must be a power 266 // of two. This is accomplished by setting the width by the number of 267 // bits it occupies. The number of meta-cells will be a subset of the 268 // cell width. 269 #define MAP_CELL_MAX_X_BITS 6 270 #define MAP_CELL_MAX_Y_BITS 6 271 #define MAP_CELL_X_MASK (~(~0 << MAP_CELL_MAX_X_BITS)) 272 //#define MAP_CELL_Y_MASK ((~(~0 << MAP_CELL_MAX_Y_BITS)) << MAP_CELL_MAX_Y_BITS) 273 274 // Size of the map in cells. 275 #define MAP_CELL_W (1<<MAP_CELL_MAX_X_BITS) 276 #define MAP_CELL_H (1<<MAP_CELL_MAX_Y_BITS) 277 #define MAP_CELL_TOTAL (MAP_CELL_W*MAP_CELL_H) 278 279 #define REFRESH_EOL 32767 // This number ends a refresh/occupy offset list. 280 #define REFRESH_SIDEBAR 32766 // This number flags that sidebar needs refreshing. 281 282 /* 283 ** The map is broken down into regions of this specified dimensions. 284 */ 285 #define REGION_WIDTH 4 286 #define REGION_HEIGHT 4 287 #define MAP_REGION_WIDTH (((MAP_CELL_W + (REGION_WIDTH -1)) / REGION_WIDTH)+2) 288 #define MAP_REGION_HEIGHT (((MAP_CELL_H + (REGION_WIDTH -1)) / REGION_HEIGHT)+2) 289 #define MAP_TOTAL_REGIONS (MAP_REGION_WIDTH * MAP_REGION_HEIGHT) 290 291 292 /********************************************************************** 293 ** These are the various return conditions that production may 294 ** produce. 295 */ 296 typedef enum ProdFailType : unsigned char { 297 PROD_OK, // Production request successful. 298 PROD_LIMIT, // Failed with production capacity limit reached. 299 PROD_ILLEGAL, // Failed because of illegal request. 300 PROD_CANT, // Faile because unable to comply (busy or occupied). 301 } ProdFailType; 302 303 304 /********************************************************************** 305 ** These are the special weapons that can be used in the game. The common thread 306 ** with these weapons is that they are controlled through the sidebar 307 ** mechanism. 308 */ 309 typedef enum SpecialWeaponType : unsigned char { 310 SPC_NONE, 311 SPC_ION_CANNON, // Partical beam from satalite (Akira effect). 312 SPC_NUCLEAR_BOMB, // Tactical nuclear weapon. 313 SPC_AIR_STRIKE // Conventional air strike. 314 } SpecialWeaponType; 315 316 317 /********************************************************************** 318 ** These defines control the rate of ion cannon and airstrike recharging. 319 */ 320 #define NUKE_GONE_TIME 14*TICKS_PER_MINUTE 321 #define ION_CANNON_GONE_TIME 10*TICKS_PER_MINUTE 322 #define AIR_CANNON_GONE_TIME 8*TICKS_PER_MINUTE 323 #define OBELISK_ANIMATION_RATE 15 324 325 326 /********************************************************************** 327 ** These are the response values when checking to see if an object 328 ** can enter or exist at a specified location. By examining this 329 ** return value, appropriate action may be chosen. 330 ** NOTE: If this changes, update the static array in Find_Path module. 331 */ 332 typedef enum MoveType : unsigned char { 333 MOVE_OK, // No blockage. 334 MOVE_CLOAK, // A cloaked blocking enemy object. 335 MOVE_MOVING_BLOCK, // Blocked, but only temporarily. 336 MOVE_DESTROYABLE, // Enemy unit or building is blocking. 337 MOVE_TEMP, // Blocked by friendly unit. 338 MOVE_NO, // Strictly prohibited terrain. 339 340 MOVE_COUNT 341 } MoveType; 342 343 344 /********************************************************************** 345 ** These are the themes that the game can play. They must be in exact 346 ** same order as specified in the CONQUER.TXT file as well as the filename 347 ** list located in the ThemeClass. 348 */ 349 typedef enum ThemeType : char { 350 THEME_PICK_ANOTHER=-2, 351 THEME_NONE=-1, 352 THEME_AIRSTRIKE, 353 THEME_80MX, 354 THEME_CHRG, 355 THEME_CREP, 356 THEME_DRIL, 357 THEME_DRON, 358 THEME_FIST, 359 THEME_RECON, 360 THEME_VOICE, 361 THEME_HEAVYG, 362 THEME_J1, 363 THEME_JDI_V2, 364 THEME_RADIO, 365 THEME_RAIN, 366 THEME_AOI, // Act On Instinct 367 THEME_CCTHANG, // C&C Thang 368 THEME_DIE, // Die!! 369 THEME_FWP, // Fight, Win, Prevail 370 THEME_IND, // Industrial 371 THEME_IND2, // Industrial2 372 THEME_JUSTDOIT, // Just Do It! 373 THEME_LINEFIRE, // In The Line Of Fire 374 THEME_MARCH, // March To Your Doom 375 THEME_MECHMAN, // Mechanical Man 376 THEME_NOMERCY, // No Mercy 377 THEME_OTP, // On The Prowl 378 THEME_PRP, // Prepare For Battle 379 THEME_ROUT, // Reaching Out 380 THEME_HEART, // 381 THEME_STOPTHEM, // Stop Them 382 THEME_TROUBLE, // Looks Like Trouble 383 THEME_WARFARE, // Warfare 384 THEME_BFEARED, // Enemies To Be Feared 385 THEME_IAM, // I Am 386 THEME_WIN1, // Great Shot! 387 THEME_MAP1, // Map subliminal techno "theme". 388 THEME_VALKYRIE, // Ride of the valkyries. 389 390 THEME_COUNT, 391 THEME_LAST=THEME_BFEARED, 392 THEME_FIRST=0 393 } ThemeType; 394 395 //inline ThemeType operator++(ThemeType &, int); 396 397 398 /********************************************************************** 399 ** This is the various threat scan methods that can be used when looking 400 ** for targets. 401 */ 402 typedef enum ThreatType : unsigned short { 403 THREAT_NORMAL=0x0000, // Any distance threat scan? 404 THREAT_RANGE=0x0001, // Limit scan to weapon range? 405 THREAT_AREA=0x0002, // Limit scan to general area (twice weapon range)? 406 THREAT_AIR=0x0004, // Scan for air units? 407 THREAT_INFANTRY=0x0008, // Scan for infantry units? 408 THREAT_VEHICLES=0x0010, // Scan for vehicles? 409 THREAT_BUILDINGS=0x0020, // Scan for buildings? 410 THREAT_TIBERIUM=0x0040, // Limit scan to Tiberium processing objects? 411 THREAT_BOATS=0x0080, // Scan for gunboats? 412 THREAT_CIVILIANS=0x0100, // Consider civilians to be primary target? 413 THREAT_CAPTURE=0x0200, // Consider capturable buildings only? 414 } ThreatType; 415 //inline ThreatType operator |(ThreatType, ThreatType); 416 //inline ThreatType operator &(ThreatType, ThreatType); 417 //inline ThreatType operator ~(ThreatType); 418 419 inline ThreatType operator|(ThreatType a, ThreatType b) 420 {return static_cast<ThreatType>(static_cast<int>(a) | static_cast<int>(b));} 421 422 inline ThreatType operator&(ThreatType a, ThreatType b) 423 {return static_cast<ThreatType>(static_cast<int>(a) & static_cast<int>(b));} 424 425 inline ThreatType operator~(ThreatType a) 426 {return static_cast<ThreatType>(~static_cast<int>(a));} 427 428 429 #define THREAT_GROUND (THREAT_VEHICLES|THREAT_BUILDINGS|THREAT_INFANTRY) 430 431 432 /********************************************************************** 433 ** These return values are used when determine if firing is legal. 434 ** By examining this value it can be determined what should be done 435 ** to fix the reason why firing wasn't allowed. 436 */ 437 typedef enum FireErrorType : unsigned char { 438 FIRE_OK, // Weapon is allowed to fire. 439 FIRE_AMMO, // No ammo available to fire? 440 FIRE_FACING, // Not correctly facing target? 441 FIRE_REARM, // It is busy rearming? 442 FIRE_ROTATING, // Is it in process of rotating? 443 FIRE_ILLEGAL, // Is it targeting something illegal? 444 FIRE_CANT, // Is this unit one that cannot fire anything? 445 FIRE_MOVING, // Is it moving and not allowed to fire while moving? 446 FIRE_RANGE, // Is the target out of range? 447 FIRE_CLOAKED, // Is the shooter currently cloaked? 448 FIRE_BUSY // Is shooter currently doing something else? 449 } FireErrorType; 450 451 452 /********************************************************************** 453 ** If an object can cloak, then it will be in one of these states. 454 ** For objects that cannot cloak, they will always be in the 455 ** UNCLOAKED state. This state controls how the obect transitions between 456 ** cloaked and uncloaked conditions. 457 */ 458 typedef enum CloakType : unsigned char { 459 UNCLOAKED, // Completely visible (normal state). 460 CLOAKING, // In process of claoking. 461 CLOAKED, // Completely cloaked (invisible). 462 UNCLOAKING // In process of uncloaking. 463 } CloakType; 464 465 466 /********************************************************************** 467 ** For units that are cloaking, these value specify the visual character 468 ** of the object. 469 */ 470 typedef enum VisualType : unsigned char { 471 VISUAL_NORMAL, // Completely visible -- normal. 472 VISUAL_INDISTINCT, // The edges shimmer and become indistinct. 473 VISUAL_DARKEN, // Color and texture is muted along with shimmering. 474 VISUAL_SHADOWY, // Body is translucent in addition to shimmering. 475 VISUAL_RIPPLE, // Just a ripple (true predator effect). 476 VISUAL_HIDDEN, // Nothing at all is visible. 477 } VisualType; 478 479 480 /********************************************************************** 481 ** These missions enumerate the various state machines that can apply to 482 ** a game object. Only one of these state machines is active at any one 483 ** time. 484 */ 485 typedef enum MissionType : char { 486 MISSION_NONE=-1, 487 488 MISSION_SLEEP, // Do nothing whatsoever. 489 MISSION_ATTACK, // Attack nearest enemy. 490 MISSION_MOVE, // Guard location or unit. 491 MISSION_RETREAT, // Return home for R & R. 492 MISSION_GUARD, // Stay still. 493 MISSION_STICKY, // Stay still -- never recruit. 494 MISSION_ENTER, // Move into object cooperatively. 495 MISSION_CAPTURE, // Move into in order to capture. 496 MISSION_HARVEST, // Hunt for and collect nearby Tiberium. 497 MISSION_GUARD_AREA, // Active guard of area. 498 MISSION_RETURN, // Head back to refinery. 499 MISSION_STOP, // Sit still. 500 MISSION_AMBUSH, // Wait until discovered. 501 MISSION_HUNT, // Active search and destroy. 502 MISSION_TIMED_HUNT, // Wait a while, then go into HUNT (multiplayer AI) 503 MISSION_UNLOAD, // Search for and deliver cargo. 504 MISSION_SABOTAGE, // Move into in order to destroy. 505 MISSION_CONSTRUCTION, // Building buildup operation. 506 MISSION_DECONSTRUCTION, // Building builddown operation. 507 MISSION_REPAIR, // Repair process mission. 508 MISSION_RESCUE, 509 MISSION_MISSILE, 510 511 MISSION_COUNT, 512 MISSION_FIRST=0 513 } MissionType; 514 515 516 /********************************************************************** 517 ** These are the enumerated animation sequences that a building may 518 ** be processing. These serve to control the way that a building 519 ** appears. 520 */ 521 typedef enum BStateType : char { 522 BSTATE_NONE=-1, 523 BSTATE_CONSTRUCTION, // Construction animation. 524 BSTATE_IDLE, // Idle animation. 525 BSTATE_ACTIVE, // Animation when building is "doing its thing". 526 BSTATE_FULL, // Special alternate active state. 527 BSTATE_AUX1, // Auxiliary animation. 528 BSTATE_AUX2, // Auxiliary animation. 529 530 BSTATE_COUNT 531 } BStateType; 532 533 534 /********************************************************************** 535 ** Whenever a unit is selected and a click occurs over another object 536 ** or terrain element, there is some action to initiate. This specifies 537 ** the different types of actions possible. This also controls how the 538 ** mouse cursor looks when "hovering" over the spot that clicking would 539 ** occur at. 540 */ 541 typedef enum ActionType : unsigned char { 542 ACTION_NONE, // Either undefined action or "do nothing". 543 ACTION_MOVE, // Can move there or at least try to. 544 ACTION_NOMOVE, // Special case for movable object, but illegal mouse position. 545 ACTION_ENTER, // Special case for infantry->APC or vehicle->Repair facility. 546 ACTION_SELF, // Self select special case. 547 ACTION_ATTACK, // Can attack or fire upon it in some fashion. 548 ACTION_HARVEST, // Special harvest mode. 549 ACTION_SELECT, // Would change selection to specified object. 550 ACTION_TOGGLE_SELECT,// Toggles select state of the object. 551 ACTION_CAPTURE, // The unit will try to capture the object. 552 ACTION_REPAIR, // The target object should be repaired. 553 ACTION_SELL, // The target building should be sold back. 554 ACTION_SELL_UNIT, // The target unit should be sold back. 555 ACTION_NO_SELL, // No sell or no repair. 556 ACTION_NO_REPAIR, // No sell or no repair. 557 ACTION_SABOTAGE, // The unit will try to sabotage/destroy the object. 558 ACTION_ION, // That target object should be blasted. 559 ACTION_NUKE_BOMB, // That target object should be blasted. 560 ACTION_AIR_STRIKE, // That target object should be blasted. 561 ACTION_GUARD_AREA, // Guard the area/object clicked on. 562 ACTION_TOGGLE_PRIMARY, // Toggle the primary status of the factory. 563 ACTION_NO_DEPLOY, 564 565 ACTION_COUNT 566 } ActionType; 567 568 569 /********************************************************************** 570 ** When a unit gets damaged, the result of the damage is returned as 571 ** this type. It can range from no damage taken to complete destruction. 572 */ 573 typedef enum ResultType : unsigned char { 574 RESULT_NONE, // No damage was taken by the target. 575 RESULT_LIGHT, // Some damage was taken, but no state change occurred. 576 RESULT_HALF, // Damaged to below half strength (only returned on transition). 577 RESULT_MAJOR, // Damaged down to 1 hit point. 578 RESULT_DESTROYED, // Damaged to complete destruction. 579 } ResultType; 580 581 582 /********************************************************************** 583 ** These are the special concrete control defines. They enumerate the 584 ** sequence order of the concrete icons in the concrete art file. 585 */ 586 // DEBUG === convert this to be zero based so that a nulled cell is the 587 // default cell. 588 enum ConcreteEnum : char { 589 C_NONE=-1, 590 C_LEFT=0, 591 C_RIGHT=1, 592 C_RIGHT_UPDOWN=2, 593 C_LEFT_UPDOWN=3, 594 C_UP_RIGHT=4, 595 C_UP_LEFT=5, 596 C_DOWN_RIGHT=6, 597 C_DOWN_LEFT=7, 598 C_RIGHT_DOWN=8, 599 C_LEFT_DOWN=9, 600 C_RIGHT_UP=10, 601 C_LEFT_UP=11, 602 C_UPDOWN_RIGHT=12, 603 C_UPDOWN_LEFT=13 604 }; 605 606 607 /********************************************************************** 608 ** Units that move can move at different speeds. These enumerate the 609 ** different speeds that a unit can move. 610 */ 611 typedef enum MPHType: unsigned char { 612 MPH_IMMOBILE=0, 613 MPH_VERY_SLOW=5, 614 MPH_KINDA_SLOW=6, 615 MPH_SLOW=8, 616 MPH_SLOW_ISH=10, 617 MPH_MEDIUM_SLOW=12, 618 MPH_MEDIUM=18, 619 MPH_MEDIUM_FAST=30, 620 MPH_MEDIUM_FASTER=35, 621 MPH_FAST=40, 622 MPH_ROCKET=60, 623 MPH_VERY_FAST=100, 624 MPH_LIGHT_SPEED=255 625 } MPHType; 626 627 628 /********************************************************************** 629 ** General audio volume is enumerated by these identifiers. Since small 630 ** volume variations are usually unnoticable when specifying the volume 631 ** to play a sample, this enumeration list creates more readable code. 632 */ 633 typedef enum VolType : unsigned char 634 { 635 VOL_OFF=0, 636 VOL_0=VOL_OFF, 637 VOL_1=0x19, 638 VOL_2=0x32, 639 VOL_3=0x4C, 640 VOL_4=0x66, 641 VOL_5=0x80, 642 VOL_6=0x9A, 643 VOL_7=0xB4, 644 VOL_8=0xCC, 645 VOL_9=0xE6, 646 VOL_10=0xFF, 647 VOL_FULL=VOL_10 648 } VolType; 649 650 651 /********************************************************************** 652 ** The houses that can be played are listed here. Each has their own 653 ** personality and strengths. 654 */ 655 typedef enum HousesType : char { 656 HOUSE_NONE=-1, 657 HOUSE_GOOD, // Global Defense Initiative 658 HOUSE_BAD, // Brotherhood of Nod 659 HOUSE_NEUTRAL, // Civilians 660 HOUSE_JP, // Disaster Containment Team 661 HOUSE_MULTI1, // Multi-Player house #1 662 HOUSE_MULTI2, // Multi-Player house #2 663 HOUSE_MULTI3, // Multi-Player house #3 664 HOUSE_MULTI4, // Multi-Player house #4 665 HOUSE_MULTI5, // Multi-Player house #5 666 HOUSE_MULTI6, // Multi-Player house #6 667 668 HOUSE_COUNT, 669 HOUSE_FIRST=HOUSE_GOOD 670 } HousesType; 671 672 //inline HousesType operator++(HousesType &, int); 673 674 #define HOUSEF_GOOD (1<<HOUSE_GOOD) 675 #define HOUSEF_BAD (1<<HOUSE_BAD) 676 #define HOUSEF_NEUTRAL (1<<HOUSE_NEUTRAL) 677 #define HOUSEF_JP (1<<HOUSE_JP) 678 #define HOUSEF_MULTI1 (1<<HOUSE_MULTI1) 679 #define HOUSEF_MULTI2 (1<<HOUSE_MULTI2) 680 #define HOUSEF_MULTI3 (1<<HOUSE_MULTI3) 681 #define HOUSEF_MULTI4 (1<<HOUSE_MULTI4) 682 #define HOUSEF_MULTI5 (1<<HOUSE_MULTI5) 683 #define HOUSEF_MULTI6 (1<<HOUSE_MULTI6) 684 685 typedef enum PlayerColorType : char { 686 REMAP_NONE = -1, 687 REMAP_GOLD, 688 REMAP_FIRST=REMAP_GOLD, 689 REMAP_LTBLUE, 690 REMAP_RED, 691 REMAP_GREEN, 692 REMAP_ORANGE, 693 REMAP_BLUE, 694 REMAP_LAST=REMAP_BLUE, 695 696 REMAP_COUNT 697 } PlayerColorType; 698 699 700 /********************************************************************** 701 ** These are the types of games that can be played. GDI & NOD are the 702 ** usual human-vs-computer games; 2-Player games are network or modem, 703 ** with 2 players; multi-player games are network with > 2 players. 704 */ 705 typedef enum ScenarioPlayerEnum : char 706 { 707 SCEN_PLAYER_NONE = -1, 708 SCEN_PLAYER_GDI, 709 SCEN_PLAYER_NOD, 710 SCEN_PLAYER_JP, 711 SCEN_PLAYER_2PLAYER, 712 SCEN_PLAYER_MPLAYER, 713 SCEN_PLAYER_COUNT, 714 SCEN_PLAYER_FIRST = 0, 715 } ScenarioPlayerType; 716 717 //inline ScenarioPlayerType operator++(ScenarioPlayerType &, int); 718 719 720 /********************************************************************** 721 ** These are the directional parameters for a scenario. 722 */ 723 typedef enum ScenarioDirEnum : char 724 { 725 SCEN_DIR_NONE = -1, 726 SCEN_DIR_EAST, 727 SCEN_DIR_WEST, 728 SCEN_DIR_COUNT, 729 SCEN_DIR_FIRST = 0, 730 } ScenarioDirType; 731 732 //inline ScenarioDirType operator++(ScenarioDirType &, int); 733 734 735 /********************************************************************** 736 ** These are the random variations of a scenario. 737 */ 738 typedef enum ScenarioVarEnum : char 739 { 740 SCEN_VAR_NONE = -1, 741 SCEN_VAR_A, 742 SCEN_VAR_B, 743 SCEN_VAR_C, 744 SCEN_VAR_D, 745 SCEN_VAR_COUNT, // comes before the Lose value! 746 SCEN_VAR_LOSE, 747 SCEN_VAR_FIRST = 0, 748 } ScenarioVarType; 749 750 //inline ScenarioVarType operator++(ScenarioVarType &, int); 751 752 753 /********************************************************************** 754 ** The objects to be drawn on the map are grouped into layers. These 755 ** enumerated values specify those layers. The ground layer is sorted 756 ** from back to front. 757 */ 758 typedef enum LayerType : char { 759 LAYER_NONE=-1, 760 LAYER_GROUND, // Touching the ground type object (units & buildings). 761 LAYER_AIR, // Flying above the ground (explosions & flames). 762 LAYER_TOP, // Topmost layer (aircraft & bullets). 763 764 LAYER_COUNT, 765 LAYER_FIRST=0 766 } LayerType; 767 768 //inline LayerType operator++(LayerType &, int); 769 770 771 /********************************************************************** 772 ** This enumerates the various bullet types. These types specify bullet's 773 ** visual and explosive characteristics. 774 */ 775 typedef enum BulletType : char { 776 BULLET_NONE=-1, 777 BULLET_SNIPER, // Sniper bullet. 778 BULLET_BULLET, // Small arms 779 BULLET_APDS, // Armor piercing projectile. 780 BULLET_HE, // High explosive shell. 781 BULLET_SSM, // Surface to surface small missile type. 782 BULLET_SSM2, // MLRS missile. 783 BULLET_SAM, // Fast homing anti-aircraft missile. 784 BULLET_TOW, // TOW anti-vehicle short range missile. 785 BULLET_FLAME, // Flame thrower flame. 786 BULLET_CHEMSPRAY, // Chemical weapon spray. 787 BULLET_NAPALM, // Napalm bomblet. 788 BULLET_GRENADE, // Hand tossed grenade. 789 BULLET_LASER, // Laser beam from obelisk 790 BULLET_NUKE_UP, // Nuclear Missile on its way down 791 BULLET_NUKE_DOWN, // Nuclear Missile on its way up 792 BULLET_HONEST_JOHN, // SSM with napalm warhead. 793 BULLET_SPREADFIRE, // Chain gun bullets. 794 BULLET_HEADBUTT, // Stegosaurus, Triceratops head butt 795 BULLET_TREXBITE, // Tyrannosaurus Rex's bite - especially bad for infantry 796 797 #ifdef PETROGLYPH_EXAMPLE_MOD 798 BULLET_NUKE_LOB, // Nuke projectile 799 #endif //PETROGLYPH_EXAMPLE_MOD 800 801 BULLET_COUNT, 802 BULLET_FIRST=0 803 } BulletType; 804 805 //inline BulletType operator++(BulletType &, int); 806 807 808 /********************************************************************** 809 ** All game buildings (structures) are enumerated here. This includes 810 ** civilian structures as well. 811 */ 812 typedef enum StructType : char { 813 STRUCT_NONE=-1, 814 STRUCT_WEAP, 815 STRUCT_GTOWER, 816 STRUCT_ATOWER, 817 STRUCT_OBELISK, 818 STRUCT_RADAR, 819 STRUCT_TURRET, 820 STRUCT_CONST, 821 STRUCT_REFINERY, 822 STRUCT_STORAGE, 823 STRUCT_HELIPAD, 824 STRUCT_SAM, 825 STRUCT_AIRSTRIP, 826 STRUCT_POWER, 827 STRUCT_ADVANCED_POWER, 828 STRUCT_HOSPITAL, 829 STRUCT_BARRACKS, 830 STRUCT_TANKER, 831 STRUCT_REPAIR, 832 STRUCT_BIO_LAB, 833 STRUCT_HAND, 834 STRUCT_TEMPLE, 835 STRUCT_EYE, 836 STRUCT_MISSION, 837 838 /* 839 ** All buildings that are never used as a prerequisite 840 ** for construction, follow this point. Typically, this is 841 ** limited to civilian structures. 842 */ 843 STRUCT_V01, 844 STRUCT_V02, 845 STRUCT_V03, 846 STRUCT_V04, 847 STRUCT_V05, 848 STRUCT_V06, 849 STRUCT_V07, 850 STRUCT_V08, 851 STRUCT_V09, 852 STRUCT_V10, 853 STRUCT_V11, 854 STRUCT_V12, 855 STRUCT_V13, 856 STRUCT_V14, 857 STRUCT_V15, 858 STRUCT_V16, 859 STRUCT_V17, 860 STRUCT_V18, 861 STRUCT_PUMP, 862 STRUCT_V20, 863 STRUCT_V21, 864 STRUCT_V22, 865 STRUCT_V23, 866 STRUCT_V24, 867 STRUCT_V25, 868 STRUCT_V26, 869 STRUCT_V27, 870 STRUCT_V28, 871 STRUCT_V29, 872 STRUCT_V30, 873 STRUCT_V31, 874 STRUCT_V32, 875 STRUCT_V33, 876 STRUCT_V34, 877 STRUCT_V35, 878 STRUCT_V36, 879 STRUCT_V37, 880 #ifdef OBSOLETE 881 STRUCT_ROAD, 882 #endif 883 STRUCT_SANDBAG_WALL, 884 STRUCT_CYCLONE_WALL, 885 STRUCT_BRICK_WALL, 886 STRUCT_BARBWIRE_WALL, 887 STRUCT_WOOD_WALL, 888 889 STRUCT_COUNT, 890 STRUCT_FIRST=0 891 } StructType; 892 893 //inline StructType operator++(StructType &, int); 894 895 #define STRUCTF_NONE 0L 896 #define STRUCTF_ADVANCED_POWER (1L << STRUCT_ADVANCED_POWER) 897 #define STRUCTF_REPAIR (1L << STRUCT_REPAIR) 898 #define STRUCTF_EYE (1L << STRUCT_EYE) 899 #define STRUCTF_TEMPLE (1L << STRUCT_TEMPLE) 900 #define STRUCTF_HAND (1L << STRUCT_HAND) 901 #define STRUCTF_BIO_LAB (1L << STRUCT_BIO_LAB) 902 #define STRUCTF_OBELISK (1L << STRUCT_OBELISK) 903 #define STRUCTF_ATOWER (1L << STRUCT_ATOWER) 904 #define STRUCTF_WEAP (1L << STRUCT_WEAP) 905 #define STRUCTF_GTOWER (1L << STRUCT_GTOWER) 906 #define STRUCTF_RADAR (1L << STRUCT_RADAR) 907 #define STRUCTF_TURRET (1L << STRUCT_TURRET) 908 #define STRUCTF_CIV1 (1L << STRUCT_CIV1) 909 #define STRUCTF_CIV2 (1L << STRUCT_CIV2) 910 #define STRUCTF_CIV3 (1L << STRUCT_CIV3) 911 #define STRUCTF_CONST (1L << STRUCT_CONST) 912 #define STRUCTF_REFINERY (1L << STRUCT_REFINERY) 913 #define STRUCTF_STORAGE (1L << STRUCT_STORAGE) 914 #define STRUCTF_HELIPAD (1L << STRUCT_HELIPAD) 915 #define STRUCTF_SAM (1L << STRUCT_SAM) 916 #define STRUCTF_AIRSTRIP (1L << STRUCT_AIRSTRIP) 917 #define STRUCTF_POWER (1L << STRUCT_POWER) 918 #define STRUCTF_HOSPITAL (1L << STRUCT_HOSPITAL) 919 #define STRUCTF_BARRACKS (1L << STRUCT_BARRACKS) 920 #define STRUCTF_TANKER (1L << STRUCT_TANKER) 921 #define STRUCTF_MISSION (1L << STRUCT_MISSION) 922 923 924 /********************************************************************** 925 ** The overlays are enumerated here. An overlay functions similarly to 926 ** a transparent icon. It is placed over the terrain but usually falls 927 ** "under" buildings, trees, and units. 928 */ 929 typedef enum OverlayType : char { 930 OVERLAY_NONE=-1, 931 OVERLAY_CONCRETE, // Concrete. 932 OVERLAY_SANDBAG_WALL, // Piled sandbags. 933 OVERLAY_CYCLONE_WALL, // Chain-link fence. 934 OVERLAY_BRICK_WALL, // Solid concrete wall. 935 OVERLAY_BARBWIRE_WALL, // Barbed-wire wall. 936 OVERLAY_WOOD_WALL, // Wooden fence. 937 OVERLAY_TIBERIUM1, // Tiberium patch. 938 OVERLAY_TIBERIUM2, // Tiberium patch. 939 OVERLAY_TIBERIUM3, // Tiberium patch. 940 OVERLAY_TIBERIUM4, // Tiberium patch. 941 OVERLAY_TIBERIUM5, // Tiberium patch. 942 OVERLAY_TIBERIUM6, // Tiberium patch. 943 OVERLAY_TIBERIUM7, // Tiberium patch. 944 OVERLAY_TIBERIUM8, // Tiberium patch. 945 OVERLAY_TIBERIUM9, // Tiberium patch. 946 OVERLAY_TIBERIUM10, // Tiberium patch. 947 OVERLAY_TIBERIUM11, // Tiberium patch. 948 OVERLAY_TIBERIUM12, // Tiberium patch. 949 OVERLAY_ROAD, // Road/concrete piece. 950 OVERLAY_SQUISH, // Squish mark for overran infantry. 951 OVERLAY_V12, // Haystacks 952 OVERLAY_V13, // Haystack 953 OVERLAY_V14, // Wheat field 954 OVERLAY_V15, // Fallow field 955 OVERLAY_V16, // Corn field 956 OVERLAY_V17, // Celery field 957 OVERLAY_V18, // Potato field 958 OVERLAY_FLAG_SPOT, // Flag start location. 959 OVERLAY_WOOD_CRATE, // Wooden goodie crate. 960 OVERLAY_STEEL_CRATE, // Steel goodie crate. 961 962 OVERLAY_COUNT, 963 OVERLAY_FIRST=0 964 } OverlayType; 965 966 //inline OverlayType operator++(OverlayType &, int); 967 968 969 /********************************************************************** 970 ** This specifies the infantry in the game. The "E" designation is 971 ** similar to the army classification of enlisted soldiers. 972 */ 973 typedef enum InfantryType : char { 974 INFANTRY_NONE=-1, 975 INFANTRY_E1, // Mini-gun armed. 976 INFANTRY_E2, // Grenade thrower. 977 INFANTRY_E3, // Rocket launcher. 978 INFANTRY_E4, // Flame thrower equipped. 979 INFANTRY_E5, // Chemical thrower equipped. 980 INFANTRY_E7, // Engineer. 981 INFANTRY_RAMBO, // Commando. 982 983 INFANTRY_C1, // Civilian 984 INFANTRY_C2, // Civilian 985 INFANTRY_C3, // Civilian 986 INFANTRY_C4, // Civilian 987 INFANTRY_C5, // Civilian 988 INFANTRY_C6, // Civilian 989 INFANTRY_C7, // Civilian 990 INFANTRY_C8, // Civilian 991 INFANTRY_C9, // Civilian 992 INFANTRY_C10, // Nikumba 993 INFANTRY_MOEBIUS, // Dr. Moebius 994 INFANTRY_DELPHI, // Agent "Delphi" 995 INFANTRY_CHAN, // Dr. Chan 996 997 INFANTRY_COUNT, 998 INFANTRY_FIRST=0 999 } InfantryType; 1000 1001 //inline InfantryType operator++(InfantryType &, int); 1002 1003 1004 /********************************************************************** 1005 ** The game units are enumerated here. These include not only traditional 1006 ** vehicles, but also hovercraft and gunboats. 1007 */ 1008 typedef enum UnitType : char{ 1009 UNIT_NONE=-1, 1010 UNIT_HTANK, // Heavy tank (Mammoth). 1011 UNIT_MTANK, // Medium tank (M1). 1012 UNIT_LTANK, // Light tank ('Bradly'). 1013 UNIT_STANK, // Stealth tank (Romulan). 1014 UNIT_FTANK, // Flame thrower tank. 1015 UNIT_VICE, // Visceroid 1016 UNIT_APC, // APC. 1017 UNIT_MLRS, // MLRS rocket launcher. 1018 UNIT_JEEP, // 4x4 jeep replacement. 1019 UNIT_BUGGY, // Rat patrol dune buggy type. 1020 UNIT_HARVESTER, // Resource gathering vehicle. 1021 UNIT_ARTY, // Artillery unit. 1022 UNIT_MSAM, // Anti-Aircraft vehicle. 1023 UNIT_HOVER, // Hovercraft. 1024 UNIT_MHQ, // Mobile Head Quarters. 1025 UNIT_GUNBOAT, // Gunboat 1026 UNIT_MCV, // Mobile construction vehicle. 1027 UNIT_BIKE, // Nod recon motor-bike. 1028 UNIT_TRIC, // Triceratops 1029 UNIT_TREX, // Tyranosaurus Rex 1030 UNIT_RAPT, // Velociraptor 1031 UNIT_STEG, // Stegasaurus 1032 1033 #ifdef PETROGLYPH_EXAMPLE_MOD 1034 UNIT_NUKE_TANK, // Mammoth with a nuke 1035 #endif 1036 1037 UNIT_COUNT, 1038 UNIT_FIRST=0 1039 } UnitType; 1040 1041 //inline UnitType operator++(UnitType &, int); 1042 1043 #define UNITF_HTANK (1L<<UNIT_HTANK) 1044 #define UNITF_MTANK (1L<<UNIT_MTANK) 1045 #define UNITF_LTANK (1L<<UNIT_LTANK) 1046 #define UNITF_STANK (1L<<UNIT_STANK) 1047 #define UNITF_FTANK (1L<<UNIT_FTANK) 1048 #define UNITF_APC (1L<<UNIT_APC) 1049 #define UNITF_MLRS (1L<<UNIT_MLRS) 1050 #define UNITF_JEEP (1L<<UNIT_JEEP) 1051 #define UNITF_BUGGY (1L<<UNIT_BUGGY) 1052 #define UNITF_HARVESTER (1L<<UNIT_HARVESTER) 1053 #define UNITF_ARTY (1L<<UNIT_ARTY) 1054 #define UNITF_MSAM (1L<<UNIT_MSAM) 1055 #define UNITF_HOVER (1L<<UNIT_HOVER) 1056 #define UNITF_MHQ (1L<<UNIT_MHQ) 1057 #define UNITF_GUNBOAT (1L<<UNIT_GUNBOAT) 1058 #define UNITF_MCV (1L<<UNIT_MCV) 1059 #define UNITF_BIKE (1L<<UNIT_BIKE) 1060 #define UNITF_VICE (1L<<UNIT_VICE) 1061 #define UNITF_TRIC (1L<<UNIT_TRIC) 1062 #define UNITF_TREX (1L<<UNIT_TREX) 1063 #define UNITF_RAPT (1L<<UNIT_RAPT) 1064 #define UNITF_STEG (1L<<UNIT_STEG) 1065 1066 1067 /********************************************************************** 1068 ** The variuos aircraft types are enumerated here. These include helicopters 1069 ** as well as traditional aircraft. 1070 */ 1071 typedef enum AircraftType : char { 1072 AIRCRAFT_TRANSPORT, // Transport helicopter. 1073 AIRCRAFT_A10, // Ground attack plane. 1074 AIRCRAFT_HELICOPTER, // Apache gunship. 1075 AIRCRAFT_CARGO, // Cargo plane. 1076 AIRCRAFT_ORCA, // Nod attack helicopter. 1077 1078 AIRCRAFT_COUNT, 1079 AIRCRAFT_NONE=-1, 1080 AIRCRAFT_FIRST=0 1081 } AircraftType; 1082 1083 #define AIRCRAFTF_TRANSPORT (1L << AIRCRAFT_TRANSPORT) 1084 #define AIRCRAFTF_A10 (1L << AIRCRAFT_A10) 1085 #define AIRCRAFTF_HELICOPTER (1L << AIRCRAFT_HELICOPTER) 1086 #define AIRCRAFTF_CARGO (1L << AIRCRAFT_CARGO) 1087 #define AIRCRAFTF_ORCA (1L << AIRCRAFT_ORCA) 1088 1089 //inline AircraftType operator++(AircraftType &, int); 1090 1091 1092 /********************************************************************** 1093 ** The game templates are enumerated here. These are the underlying 1094 ** terrain art. This includes everything from water to clifs. If the 1095 ** terrain is broken up into icons, is not transparent, and is drawn 1096 ** as the bottom most layer, then it is a template. 1097 */ 1098 typedef enum TemplateType : unsigned char { 1099 TEMPLATE_CLEAR1, 1100 TEMPLATE_WATER, // This must be the first non-clear template. 1101 TEMPLATE_WATER2, 1102 TEMPLATE_SHORE1, 1103 TEMPLATE_SHORE2, 1104 TEMPLATE_SHORE3, 1105 TEMPLATE_SHORE4, 1106 TEMPLATE_SHORE5, 1107 TEMPLATE_SHORE11, 1108 TEMPLATE_SHORE12, 1109 TEMPLATE_SHORE13, 1110 TEMPLATE_SHORE14, 1111 TEMPLATE_SHORE15, 1112 TEMPLATE_SLOPE1, 1113 TEMPLATE_SLOPE2, 1114 TEMPLATE_SLOPE3, 1115 TEMPLATE_SLOPE4, 1116 TEMPLATE_SLOPE5, 1117 TEMPLATE_SLOPE6, 1118 TEMPLATE_SLOPE7, 1119 TEMPLATE_SLOPE8, 1120 TEMPLATE_SLOPE9, 1121 TEMPLATE_SLOPE10, 1122 TEMPLATE_SLOPE11, 1123 TEMPLATE_SLOPE12, 1124 TEMPLATE_SLOPE13, 1125 TEMPLATE_SLOPE14, 1126 TEMPLATE_SLOPE15, 1127 TEMPLATE_SLOPE16, 1128 TEMPLATE_SLOPE17, 1129 TEMPLATE_SLOPE18, 1130 TEMPLATE_SLOPE19, 1131 TEMPLATE_SLOPE20, 1132 TEMPLATE_SLOPE21, 1133 TEMPLATE_SLOPE22, 1134 TEMPLATE_SLOPE23, 1135 TEMPLATE_SLOPE24, 1136 TEMPLATE_SLOPE25, 1137 TEMPLATE_SLOPE26, 1138 TEMPLATE_SLOPE27, 1139 TEMPLATE_SLOPE28, 1140 TEMPLATE_SLOPE29, 1141 TEMPLATE_SLOPE30, 1142 TEMPLATE_SLOPE31, 1143 TEMPLATE_SLOPE32, 1144 TEMPLATE_SLOPE33, 1145 TEMPLATE_SLOPE34, 1146 TEMPLATE_SLOPE35, 1147 TEMPLATE_SLOPE36, 1148 TEMPLATE_SLOPE37, 1149 TEMPLATE_SLOPE38, 1150 TEMPLATE_SHORE32, 1151 TEMPLATE_SHORE33, 1152 TEMPLATE_SHORE20, 1153 TEMPLATE_SHORE21, 1154 TEMPLATE_SHORE22, 1155 TEMPLATE_SHORE23, 1156 TEMPLATE_BRUSH1, 1157 TEMPLATE_BRUSH2, 1158 TEMPLATE_BRUSH3, 1159 TEMPLATE_BRUSH4, 1160 TEMPLATE_BRUSH5, 1161 TEMPLATE_BRUSH6, 1162 TEMPLATE_BRUSH7, 1163 TEMPLATE_BRUSH8, 1164 TEMPLATE_BRUSH9, 1165 TEMPLATE_BRUSH10, 1166 TEMPLATE_PATCH1, 1167 TEMPLATE_PATCH2, 1168 TEMPLATE_PATCH3, 1169 TEMPLATE_PATCH4, 1170 TEMPLATE_PATCH5, 1171 TEMPLATE_PATCH6, 1172 TEMPLATE_PATCH7, 1173 TEMPLATE_PATCH8, 1174 TEMPLATE_SHORE16, 1175 TEMPLATE_SHORE17, 1176 TEMPLATE_SHORE18, 1177 TEMPLATE_SHORE19, 1178 TEMPLATE_PATCH13, 1179 TEMPLATE_PATCH14, 1180 TEMPLATE_PATCH15, 1181 TEMPLATE_BOULDER1, 1182 TEMPLATE_BOULDER2, 1183 TEMPLATE_BOULDER3, 1184 TEMPLATE_BOULDER4, 1185 TEMPLATE_BOULDER5, 1186 TEMPLATE_BOULDER6, 1187 TEMPLATE_SHORE6, 1188 TEMPLATE_SHORE7, 1189 TEMPLATE_SHORE8, 1190 TEMPLATE_SHORE9, 1191 TEMPLATE_SHORE10, 1192 1193 TEMPLATE_ROAD1, 1194 TEMPLATE_ROAD2, 1195 TEMPLATE_ROAD3, 1196 TEMPLATE_ROAD4, 1197 TEMPLATE_ROAD5, 1198 TEMPLATE_ROAD6, 1199 TEMPLATE_ROAD7, 1200 TEMPLATE_ROAD8, 1201 TEMPLATE_ROAD9, 1202 TEMPLATE_ROAD10, 1203 TEMPLATE_ROAD11, 1204 TEMPLATE_ROAD12, 1205 TEMPLATE_ROAD13, 1206 TEMPLATE_ROAD14, 1207 TEMPLATE_ROAD15, 1208 TEMPLATE_ROAD16, 1209 TEMPLATE_ROAD17, 1210 TEMPLATE_ROAD18, 1211 TEMPLATE_ROAD19, 1212 TEMPLATE_ROAD20, 1213 TEMPLATE_ROAD21, 1214 TEMPLATE_ROAD22, 1215 TEMPLATE_ROAD23, 1216 TEMPLATE_ROAD24, 1217 TEMPLATE_ROAD25, 1218 TEMPLATE_ROAD26, 1219 TEMPLATE_ROAD27, 1220 TEMPLATE_ROAD28, 1221 TEMPLATE_ROAD29, 1222 TEMPLATE_ROAD30, 1223 TEMPLATE_ROAD31, 1224 TEMPLATE_ROAD32, 1225 TEMPLATE_ROAD33, 1226 TEMPLATE_ROAD34, 1227 TEMPLATE_ROAD35, 1228 TEMPLATE_ROAD36, 1229 TEMPLATE_ROAD37, 1230 TEMPLATE_ROAD38, 1231 TEMPLATE_ROAD39, 1232 TEMPLATE_ROAD40, 1233 TEMPLATE_ROAD41, 1234 TEMPLATE_ROAD42, 1235 TEMPLATE_ROAD43, 1236 1237 TEMPLATE_RIVER1, 1238 TEMPLATE_RIVER2, 1239 TEMPLATE_RIVER3, 1240 TEMPLATE_RIVER4, 1241 TEMPLATE_RIVER5, 1242 TEMPLATE_RIVER6, 1243 TEMPLATE_RIVER7, 1244 TEMPLATE_RIVER8, 1245 TEMPLATE_RIVER9, 1246 TEMPLATE_RIVER10, 1247 TEMPLATE_RIVER11, 1248 TEMPLATE_RIVER12, 1249 TEMPLATE_RIVER13, 1250 1251 TEMPLATE_RIVER14, 1252 TEMPLATE_RIVER15, 1253 TEMPLATE_RIVER16, 1254 TEMPLATE_RIVER17, 1255 TEMPLATE_RIVER18, 1256 TEMPLATE_RIVER19, 1257 TEMPLATE_RIVER20, 1258 TEMPLATE_RIVER21, 1259 TEMPLATE_RIVER22, 1260 TEMPLATE_RIVER23, 1261 TEMPLATE_RIVER24, 1262 TEMPLATE_RIVER25, 1263 TEMPLATE_FORD1, 1264 TEMPLATE_FORD2, 1265 TEMPLATE_FALLS1, 1266 TEMPLATE_FALLS2, 1267 1268 TEMPLATE_BRIDGE1, 1269 TEMPLATE_BRIDGE1D, 1270 TEMPLATE_BRIDGE2, 1271 TEMPLATE_BRIDGE2D, 1272 TEMPLATE_BRIDGE3, 1273 TEMPLATE_BRIDGE3D, 1274 TEMPLATE_BRIDGE4, 1275 TEMPLATE_BRIDGE4D, 1276 1277 TEMPLATE_SHORE24, 1278 TEMPLATE_SHORE25, 1279 TEMPLATE_SHORE26, 1280 TEMPLATE_SHORE27, 1281 TEMPLATE_SHORE28, 1282 TEMPLATE_SHORE29, 1283 TEMPLATE_SHORE30, 1284 TEMPLATE_SHORE31, 1285 1286 TEMPLATE_PATCH16, 1287 TEMPLATE_PATCH17, 1288 TEMPLATE_PATCH18, 1289 TEMPLATE_PATCH19, 1290 TEMPLATE_PATCH20, 1291 1292 TEMPLATE_SHORE34, 1293 TEMPLATE_SHORE35, 1294 TEMPLATE_SHORE36, 1295 TEMPLATE_SHORE37, 1296 TEMPLATE_SHORE38, 1297 TEMPLATE_SHORE39, 1298 TEMPLATE_SHORE40, 1299 TEMPLATE_SHORE41, 1300 TEMPLATE_SHORE42, 1301 TEMPLATE_SHORE43, 1302 TEMPLATE_SHORE44, 1303 TEMPLATE_SHORE45, 1304 1305 TEMPLATE_SHORE46, 1306 TEMPLATE_SHORE47, 1307 TEMPLATE_SHORE48, 1308 TEMPLATE_SHORE49, 1309 TEMPLATE_SHORE50, 1310 TEMPLATE_SHORE51, 1311 TEMPLATE_SHORE52, 1312 TEMPLATE_SHORE53, 1313 TEMPLATE_SHORE54, 1314 TEMPLATE_SHORE55, 1315 TEMPLATE_SHORE56, 1316 TEMPLATE_SHORE57, 1317 TEMPLATE_SHORE58, 1318 TEMPLATE_SHORE59, 1319 TEMPLATE_SHORE60, 1320 TEMPLATE_SHORE61, 1321 1322 TEMPLATE_SHORE62, 1323 TEMPLATE_SHORE63, 1324 1325 TEMPLATE_COUNT, 1326 TEMPLATE_NONE=255, 1327 TEMPLATE_FIRST=0 1328 } TemplateType; 1329 1330 //inline TemplateType operator++(TemplateType &, int); 1331 1332 1333 /********************************************************************** 1334 ** The three dimensional terrain objects are enumerated here. These 1335 ** objects function similar to buildings in that they can be driven 1336 ** behind and can take damage on an individual basis. 1337 */ 1338 typedef enum TerrainType : char { 1339 TERRAIN_NONE=-1, 1340 TERRAIN_TREE1, 1341 TERRAIN_TREE2, 1342 TERRAIN_TREE3, 1343 TERRAIN_TREE4, 1344 TERRAIN_TREE5, 1345 TERRAIN_TREE6, 1346 TERRAIN_TREE7, 1347 TERRAIN_TREE8, 1348 TERRAIN_TREE9, 1349 TERRAIN_TREE10, 1350 TERRAIN_TREE11, 1351 TERRAIN_TREE12, 1352 TERRAIN_TREE13, 1353 TERRAIN_TREE14, 1354 TERRAIN_TREE15, 1355 TERRAIN_TREE16, 1356 TERRAIN_TREE17, 1357 TERRAIN_TREE18, 1358 TERRAIN_BLOSSOMTREE1, 1359 TERRAIN_BLOSSOMTREE2, 1360 TERRAIN_CLUMP1, 1361 TERRAIN_CLUMP2, 1362 TERRAIN_CLUMP3, 1363 TERRAIN_CLUMP4, 1364 TERRAIN_CLUMP5, 1365 TERRAIN_ROCK1, 1366 TERRAIN_ROCK2, 1367 TERRAIN_ROCK3, 1368 TERRAIN_ROCK4, 1369 TERRAIN_ROCK5, 1370 TERRAIN_ROCK6, 1371 TERRAIN_ROCK7, 1372 1373 TERRAIN_COUNT, 1374 TERRAIN_FIRST=0 1375 } TerrainType; 1376 1377 //inline TerrainType operator++(TerrainType &, int); 1378 1379 1380 /********************************************************************** 1381 ** Smudges are enumerated here. Smudges are transparent icons that are 1382 ** drawn over the underlying terrain in order to give the effect of 1383 ** alterations to the terrin. Craters are a good example of this. 1384 */ 1385 typedef enum SmudgeType : char { 1386 SMUDGE_NONE=-1, 1387 SMUDGE_CRATER1, 1388 SMUDGE_CRATER2, 1389 SMUDGE_CRATER3, 1390 SMUDGE_CRATER4, 1391 SMUDGE_CRATER5, 1392 SMUDGE_CRATER6, 1393 SMUDGE_SCORCH1, 1394 SMUDGE_SCORCH2, 1395 SMUDGE_SCORCH3, 1396 SMUDGE_SCORCH4, 1397 SMUDGE_SCORCH5, 1398 SMUDGE_SCORCH6, 1399 SMUDGE_BIB1, 1400 SMUDGE_BIB2, 1401 SMUDGE_BIB3, 1402 1403 SMUDGE_COUNT, 1404 SMUDGE_FIRST=0 1405 } SmudgeType; 1406 1407 //inline SmudgeType operator++(SmudgeType &, int); 1408 1409 1410 /********************************************************************** 1411 ** Animations are enumerated here. Animations are the high speed and 1412 ** short lived effects that occur with explosions and fire. 1413 */ 1414 typedef enum AnimType : char { 1415 ANIM_NONE=-1, 1416 ANIM_FBALL1=0, // Large fireball explosion (bulges rightward). 1417 ANIM_GRENADE, // Genade (dirt type) explosion. 1418 ANIM_FRAG1, // Medium fragment throwing explosion -- short decay. 1419 ANIM_FRAG2, // Medium fragment throwing explosion -- long decay. 1420 ANIM_VEH_HIT1, // Small fireball explosion (bulges rightward). 1421 ANIM_VEH_HIT2, // Small fragment throwing explosion -- pop & sparkles. 1422 ANIM_VEH_HIT3, // Small fragment throwing explosion -- burn/exp mix. 1423 ANIM_ART_EXP1, // Large fragment throwing explosion -- many sparkles. 1424 ANIM_NAPALM1, // Small napalm burn. 1425 ANIM_NAPALM2, // Medium napalm burn. 1426 ANIM_NAPALM3, // Large napalm burn. 1427 ANIM_SMOKE_PUFF, // Small rocket smoke trail puff. 1428 ANIM_PIFF, // Machine gun impact piffs. 1429 ANIM_PIFFPIFF, // Chaingun impact piffs. 1430 ANIM_FLAME_N, // Flame thrower firing north. 1431 ANIM_FLAME_NE, // Flame thrower firing north east. 1432 ANIM_FLAME_E, // Flame thrower firing east. 1433 ANIM_FLAME_SE, // Flame thrower firing south east. 1434 ANIM_FLAME_S, // Flame thrower firing south. 1435 ANIM_FLAME_SW, // Flame thrower firing south west. 1436 ANIM_FLAME_W, // Flame thrower firing west. 1437 ANIM_FLAME_NW, // Flame thrower firing north west. 1438 ANIM_CHEM_N, // Chem sprayer firing north. 1439 ANIM_CHEM_NE, // Chem sprayer firing north east. 1440 ANIM_CHEM_E, // Chem sprayer firing east. 1441 ANIM_CHEM_SE, // Chem sprayer firing south east. 1442 ANIM_CHEM_S, // Chem sprayer firing south. 1443 ANIM_CHEM_SW, // Chem sprayer firing south west. 1444 ANIM_CHEM_W, // Chem sprayer firing west. 1445 ANIM_CHEM_NW, // Chem sprayer firing north west. 1446 ANIM_FIRE_SMALL, // Small flame animation. 1447 ANIM_FIRE_MED, // Medium flame animation. 1448 ANIM_FIRE_MED2, // Medium flame animation (oranger). 1449 ANIM_FIRE_TINY, // Very tiny flames. 1450 ANIM_MUZZLE_FLASH, // Big cannon flash (with translucency). 1451 #ifdef NEVER 1452 ANIM_E1_ROT_FIRE, // Infantry decay animations. 1453 ANIM_E1_ROT_GRENADE, 1454 ANIM_E1_ROT_GUN, 1455 ANIM_E1_ROT_EXP, 1456 ANIM_E2_ROT_FIRE, 1457 ANIM_E2_ROT_GRENADE, 1458 ANIM_E2_ROT_GUN, 1459 ANIM_E2_ROT_EXP, 1460 ANIM_E3_ROT_FIRE, 1461 ANIM_E3_ROT_GRENADE, 1462 ANIM_E3_ROT_GUN, 1463 ANIM_E3_ROT_EXP, 1464 ANIM_E4_ROT_FIRE, 1465 ANIM_E4_ROT_GRENADE, 1466 ANIM_E4_ROT_GUN, 1467 ANIM_E4_ROT_EXP, 1468 #endif 1469 ANIM_SMOKE_M, // Smoke rising from ground. 1470 ANIM_BURN_SMALL, // Small combustable fire effect (with trail off). 1471 ANIM_BURN_MED, // Medium combustable fire effect (with trail off). 1472 ANIM_BURN_BIG, // Large combustable fire effect (with trail off). 1473 ANIM_ON_FIRE_SMALL, // Burning effect for buildings. 1474 ANIM_ON_FIRE_MED, // Burning effect for buildings. 1475 ANIM_ON_FIRE_BIG, // Burning effect for buildings. 1476 ANIM_SAM_N, 1477 ANIM_SAM_NE, 1478 ANIM_SAM_E, 1479 ANIM_SAM_SE, 1480 ANIM_SAM_S, 1481 ANIM_SAM_SW, 1482 ANIM_SAM_W, 1483 ANIM_SAM_NW, 1484 ANIM_GUN_N, 1485 ANIM_GUN_NE, 1486 ANIM_GUN_E, 1487 ANIM_GUN_SE, 1488 ANIM_GUN_S, 1489 ANIM_GUN_SW, 1490 ANIM_GUN_W, 1491 ANIM_GUN_NW, 1492 ANIM_LZ_SMOKE, 1493 ANIM_ION_CANNON, 1494 ANIM_ATOM_BLAST, 1495 ANIM_CRATE_DEVIATOR, // Red finned missile. 1496 ANIM_CRATE_DOLLAR, // Dollar sign. 1497 ANIM_CRATE_EARTH, // Cracked Earth. 1498 ANIM_CRATE_EMPULSE, // Plasma ball. 1499 ANIM_CRATE_INVUN, // Orange sphere with green rings. 1500 ANIM_CRATE_MINE, // Spiked mine. 1501 ANIM_CRATE_RAPID, // Red skull. 1502 ANIM_CRATE_STEALTH, // Cloaking sphere. 1503 ANIM_CRATE_MISSILE, // Green finned missile. 1504 ANIM_ATOM_DOOR, 1505 ANIM_MOVE_FLASH, 1506 ANIM_OILFIELD_BURN, 1507 ANIM_TRIC_DIE, 1508 ANIM_TREX_DIE, 1509 ANIM_STEG_DIE, 1510 ANIM_RAPT_DIE, 1511 ANIM_CHEM_BALL, // Chemical warrior explosion. 1512 ANIM_FLAG, // CTF flag. 1513 ANIM_BEACON, // Beacon. 1514 1515 ANIM_FIRE_SMALL_VIRTUAL, // Small flame animation (virtual). 1516 ANIM_FIRE_MED_VIRTUAL, // Medium flame animation (virtual). 1517 ANIM_FIRE_MED2_VIRTUAL, // Medium flame animation (oranger) (virtual). 1518 ANIM_FIRE_TINY_VIRTUAL, // Very tiny flames (virtual). 1519 ANIM_BEACON_VIRTUAL, // Beacon (virtual). 1520 1521 ANIM_COUNT, 1522 ANIM_FIRST=0 1523 } AnimType; 1524 1525 //inline AnimType operator++(AnimType &, int); 1526 1527 1528 /**************************************************************************** 1529 ** Infantry can be performing various activities. These can range from simple 1530 ** idle animations to physical hand to hand combat. 1531 */ 1532 typedef enum DoType : char { 1533 DO_NOTHING=-1, // Not performing any choreographed sequence. 1534 DO_STAND_READY=0, 1535 DO_STAND_GUARD, 1536 DO_PRONE, 1537 DO_WALK, 1538 DO_FIRE_WEAPON, 1539 DO_LIE_DOWN, 1540 DO_CRAWL, 1541 DO_GET_UP, 1542 DO_FIRE_PRONE, 1543 DO_IDLE1, 1544 DO_IDLE2, 1545 DO_ON_GUARD, 1546 DO_FIGHT_READY, 1547 DO_PUNCH, 1548 DO_KICK, 1549 DO_PUNCH_HIT1, 1550 DO_PUNCH_HIT2, 1551 DO_PUNCH_DEATH, 1552 DO_KICK_HIT1, 1553 DO_KICK_HIT2, 1554 DO_KICK_DEATH, 1555 DO_READY_WEAPON, 1556 DO_GUN_DEATH, 1557 DO_EXPLOSION_DEATH, 1558 DO_EXPLOSION2_DEATH, 1559 DO_GRENADE_DEATH, 1560 DO_FIRE_DEATH, 1561 DO_GESTURE1, 1562 DO_SALUTE1, 1563 DO_GESTURE2, 1564 DO_SALUTE2, 1565 // Civilian actions 1566 DO_PULL_GUN, 1567 DO_PLEAD, 1568 DO_PLEAD_DEATH, 1569 1570 DO_COUNT, 1571 DO_FIRST=0 1572 } DoType; 1573 1574 //inline DoType operator++(DoType &, int); 1575 1576 /* 1577 ** This structure is associated with each maneuver type. It tells whether the 1578 ** maneuver can be interrupted and the frame rate. 1579 */ 1580 typedef struct { 1581 unsigned Interrupt:1; // Can it be interrupted? 1582 unsigned IsMobile:1; // Can it move while doing this? 1583 unsigned RandomStart:1; // Should animation be "randomized"? 1584 unsigned char Rate; // Frame rate. 1585 } DoStruct; 1586 1587 typedef struct { 1588 int Frame; // Starting frame of the animation. 1589 unsigned char Count; // Number of frames of animation. 1590 unsigned char Jump; // Frames to jump between facings. 1591 } DoInfoStruct; 1592 1593 1594 /**************************************************************************** 1595 ** These are the various radio message that can be transmitted between 1596 ** units and buildings. Some of these require a response from the receiver 1597 ** and some don't. 1598 */ 1599 typedef enum RadioMessageType : unsigned char { 1600 RADIO_STATIC, // "hisssss" -- non-message 1601 RADIO_ROGER, // "Roger." 1602 RADIO_HELLO, // "Come in. I wish to talk." 1603 RADIO_OVER_OUT, // "Something came up, bye." 1604 RADIO_PICK_UP, // "Please pick me up." 1605 RADIO_ATTACH, // "Attach to transport." 1606 RADIO_DELIVERY, // "I've got a delivery for you." 1607 RADIO_HOLD_STILL, // "I'm performing load/unload maneuver. Be careful." 1608 RADIO_UNLOADED, // "I'm clear." 1609 RADIO_UNLOAD, // "You are clear to unload. Please start driving off now." 1610 RADIO_NEGATIVE, // "Am unable to comply." 1611 RADIO_BUILDING, // "I'm starting construction now... act busy." 1612 RADIO_COMPLETE, // "I've finished construction. You are free." 1613 RADIO_REDRAW, // "Oops, sorry. I might have bumped you a little." 1614 RADIO_DOCKING, // "I'm trying to load up now." 1615 RADIO_CAN_LOAD, // "May I become a passenger?" 1616 RADIO_ARE_REFINERY, // "Are you a refinery ready to take shipment?" 1617 RADIO_TRYING_TO_LOAD, // "Are you trying to become a passenger?" 1618 RADIO_MOVE_HERE, // "Move to location X." 1619 RADIO_NEED_TO_MOVE, // "Do you need to move somewhere?" 1620 RADIO_YEA_NOW_WHAT, // "All right already. Now what?" 1621 RADIO_IM_IN, // "I'm a passenger now." 1622 RADIO_BACKUP_NOW, // "Begin backup into refinery now." 1623 RADIO_RUN_AWAY, // "Run away! Run away!" 1624 RADIO_TETHER, // "Establish tether contact." 1625 RADIO_UNTETHER, // "Break tether contact." 1626 RADIO_REPAIR, // "Repair one step." 1627 RADIO_PREPARED, // "Are you prepared to fight?" 1628 RADIO_ATTACK_THIS, // "Attack this target please." 1629 RADIO_RELOAD, // "Reload one step please." 1630 1631 // Hand to hand combat messages (yelled rather than radioed). 1632 RADIO_KICK, // "Take this kick, you.. you.." 1633 RADIO_PUNCH, // "Take this punch, you.. you.." 1634 RADIO_PREPARE_TO_BOX,// "Fancy a little fisticuffs, eh?" 1635 1636 RADIO_NEED_REPAIR, // "Are you in need of service depot work?" 1637 RADIO_ON_DEPOT, // "Are you sitting on a service depot?" 1638 1639 RADIO_COUNT 1640 } RadioMessageType; 1641 1642 1643 /**************************************************************************** 1644 ** These are custom C&C specific types. The CELL is used for map coordinate 1645 ** with cell resolution. The COORD type is used for map coordinates that 1646 ** have a lepton resolution. 1647 */ 1648 typedef unsigned long COORDINATE; 1649 typedef signed short CELL; 1650 1651 typedef unsigned short TARGET; 1652 #define TARGET_NONE ((TARGET)0) 1653 1654 1655 /**************************************************************************** 1656 ** Selected units have a special selected unit box around them. These are the 1657 ** defines for the two types of selected unit boxes. One is for infantry and 1658 ** the other is for regular units. 1659 */ 1660 typedef enum SelectEnum : char { 1661 SELECT_NONE=-1, 1662 SELECT_INFANTRY, // Small infantry selection box. 1663 SELECT_UNIT, // Big unit selection box. 1664 SELECT_BUILDING=SELECT_UNIT, // Custom box for buildings. 1665 SELECT_TERRAIN=SELECT_UNIT, // Custom box for terrain objects. 1666 SELECT_WRENCH, // A building is repairing overlay graphic. 1667 1668 SELECT_COUNT 1669 } SelectEnum; 1670 1671 1672 /**************************************************************************** 1673 ** The pip shapes and text shapes are enumerated according to the following 1674 ** type. These special shapes are drawn over special objects or in other places 1675 ** where shape technology is needed. 1676 */ 1677 typedef enum PipEnum : unsigned char 1678 { 1679 PIP_EMPTY, // Empty pip spot. 1680 PIP_FULL, // Full pip spot. 1681 PIP_PRIMARY, // "Primary" building marker. 1682 PIP_READY, // "Ready" construction information tag. 1683 PIP_HOLDING, // "Hold"ing construction information tag. 1684 PIP_ENGINEER, // Full pip with engineer coloring. 1685 PIP_CIVILIAN, // Full pip with civilian coloring. 1686 PIP_COMMANDO // Full pip with commando coloring. 1687 } PipEnum; 1688 1689 1690 /**************************************************************************** 1691 ** The radar map can be in one of several states depending on the presense of 1692 ** certain structures and power levels. 1693 */ 1694 typedef enum RadarEnum : unsigned char 1695 { 1696 RADAR_NONE, // Radar map doesn't exist at all 1697 RADAR_OFF, // Radar map is present, but displayed as off and non-interactive 1698 RADAR_ON // Radar map is present, visible, and fully interactive 1699 } RadarEnum; 1700 1701 1702 /**************************************************************************** 1703 ** The mouse cursor can be in different states. These states are listed 1704 ** below. Some of these represent animating mouse cursors. The mouse 1705 ** is controlled by passing one of these values to the appropriate 1706 ** MouseClass member function. 1707 */ 1708 typedef enum MouseType : char 1709 { 1710 MOUSE_NORMAL, 1711 MOUSE_N, 1712 MOUSE_NE, 1713 MOUSE_E, 1714 MOUSE_SE, 1715 MOUSE_S, 1716 MOUSE_SW, 1717 MOUSE_W, 1718 MOUSE_NW, 1719 MOUSE_NO_N, 1720 MOUSE_NO_NE, 1721 MOUSE_NO_E, 1722 MOUSE_NO_SE, 1723 MOUSE_NO_S, 1724 MOUSE_NO_SW, 1725 MOUSE_NO_W, 1726 MOUSE_NO_NW, 1727 MOUSE_NO_MOVE, 1728 MOUSE_CAN_MOVE, 1729 MOUSE_ENTER, 1730 MOUSE_DEPLOY, 1731 MOUSE_CAN_SELECT, 1732 MOUSE_CAN_ATTACK, 1733 MOUSE_SELL_BACK, 1734 MOUSE_SELL_UNIT, 1735 MOUSE_REPAIR, 1736 MOUSE_NO_REPAIR, 1737 MOUSE_NO_SELL_BACK, 1738 MOUSE_RADAR_CURSOR, 1739 MOUSE_ION_CANNON, 1740 MOUSE_NUCLEAR_BOMB, 1741 MOUSE_AIR_STRIKE, 1742 MOUSE_DEMOLITIONS, 1743 MOUSE_AREA_GUARD, 1744 MOUSE_COUNT 1745 } MouseType; 1746 1747 /********************************************************************** 1748 ** This structure is used to control the box relief style drawn by 1749 ** the Draw_Box() function. 1750 */ 1751 typedef struct { 1752 int Filler; // Center box fill color. 1753 int Shadow; // Shadow color (darker). 1754 int Highlight; // Highlight color (lighter). 1755 int Corner; // Corner color (transition). 1756 } BoxStyleType; 1757 1758 typedef enum BoxStyleEnum : unsigned char { 1759 BOXSTYLE_DOWN, // Typical depressed edge border. 1760 BOXSTYLE_RAISED, // Typical raised edge border. 1761 BOXSTYLE_BLUE_UP, // Raised blue border. 1762 BOXSTYLE_DIS_DOWN, // Disabled but depressed. 1763 BOXSTYLE_DIS_RAISED, // Disabled but raised. 1764 BOXSTYLE_RAISED_ARROW, // Typical raised edge w/arrow around caption 1765 BOXSTYLE_GREEN_DOWN, // green depressed edge border. 1766 BOXSTYLE_GREEN_RAISED, // green raised edge border. 1767 BOXSTYLE_GREEN_DIS_DOWN, // disabled but depressed. 1768 BOXSTYLE_GREEN_DIS_RAISED, // disabled but raised. 1769 BOXSTYLE_GREEN_BOX, // list box. 1770 BOXSTYLE_GREEN_BORDER, // main dialog box. 1771 1772 BOXSTYLE_COUNT 1773 } BoxStyleEnum; 1774 1775 1776 /********************************************************************** 1777 ** Damage, as inflicted by projectiles, has different characteristics. 1778 ** These are the different "warhead" types that can be assigned to the 1779 ** various projectiles in the game. 1780 */ 1781 typedef enum WarheadType : char{ 1782 WARHEAD_NONE=-1, 1783 1784 WARHEAD_SA, // Small arms -- good against infantry. 1785 WARHEAD_HE, // High explosive -- good against buildings & infantry. 1786 WARHEAD_AP, // Amor piercing -- good against armor. 1787 WARHEAD_FIRE, // Incendiary -- Good against flammables. 1788 WARHEAD_LASER, // Light Amplification of Stimulated Emission of Radiation. 1789 WARHEAD_PB, // Particle beam (neutron beam). 1790 WARHEAD_FIST, // punching in hand-to-hand combat 1791 WARHEAD_FOOT, // kicking in hand-to-hand combat 1792 WARHEAD_HOLLOW_POINT, // Sniper bullet type. 1793 WARHEAD_SPORE, // Spores from blossom tree - affect infantry only 1794 WARHEAD_HEADBUTT, // Other dinosaurs butt into people 1795 WARHEAD_FEEDME, // T-Rex eats people, hurts vehicles/buildings 1796 1797 WARHEAD_COUNT 1798 } WarheadType; 1799 1800 1801 /********************************************************************** 1802 ** This enumerates the various weapon types. The weapon is characterized 1803 ** by the projectile it launches, the damage it does, and the rate of 1804 ** fire. 1805 */ 1806 typedef enum WeaponType : char { 1807 WEAPON_NONE=-1, 1808 1809 WEAPON_RIFLE, 1810 WEAPON_CHAIN_GUN, 1811 WEAPON_PISTOL, 1812 WEAPON_M16, 1813 WEAPON_DRAGON, 1814 WEAPON_FLAMETHROWER, 1815 WEAPON_FLAME_TONGUE, 1816 WEAPON_CHEMSPRAY, 1817 WEAPON_GRENADE, 1818 WEAPON_75MM, 1819 WEAPON_105MM, 1820 WEAPON_120MM, 1821 WEAPON_TURRET_GUN, 1822 WEAPON_MAMMOTH_TUSK, 1823 WEAPON_MLRS, 1824 WEAPON_155MM, 1825 WEAPON_M60MG, 1826 WEAPON_TOMAHAWK, 1827 WEAPON_TOW_TWO, 1828 WEAPON_NAPALM, 1829 WEAPON_OBELISK_LASER, 1830 WEAPON_NIKE, 1831 WEAPON_HONEST_JOHN, 1832 WEAPON_STEG, 1833 WEAPON_TREX, 1834 1835 #ifdef PETROGLYPH_EXAMPLE_MOD 1836 WEAPON_NUKE_LOB, 1837 #endif PETROGLYPH_EXAMPLE_MOD 1838 1839 WEAPON_COUNT 1840 } WeaponType; 1841 1842 1843 /********************************************************************** 1844 ** The various armor types are best suited to defend against a limited 1845 ** kind of warheads. The game strategy revolves around proper 1846 ** combination of armor and weaponry. Each vehicle or building has armor 1847 ** rated according to one of the following types. 1848 */ 1849 typedef enum ArmorType : unsigned char { 1850 ARMOR_NONE, // Vulnerable to SA and HE. 1851 ARMOR_WOOD, // Vulnerable to HE and Fire. 1852 ARMOR_ALUMINUM, // Vulnerable to AP and SA. 1853 ARMOR_STEEL, // Vulnerable to AP. 1854 ARMOR_CONCRETE, // Vulnerable to HE and AP. 1855 1856 ARMOR_COUNT 1857 } ArmorType; 1858 1859 1860 /********************************************************************** 1861 ** Working MCGA colors that give a pleasing effect for beveled edges and 1862 ** other purposes. 1863 */ 1864 #define MAGIC_COL_COUNT 12 // Translucent color count. 1865 #define SHADOW_COL_COUNT 4 // Terrain shroud translucent color count. 1866 #define USHADOW_COL_COUNT 1 // Unit shadow special ghost colors. 1867 1868 1869 /********************************************************************** 1870 ** Color cycling range that is used for water effects. 1871 */ 1872 #define CYCLE_COLOR_START 32 1873 #define CYCLE_COLOR_COUNT 7 1874 1875 1876 /********************************************************************** 1877 ** Magic color fading pulsing effect limts -- color gun value. 1878 */ 1879 #define MIN_CYCLE_COLOR 16 1880 #define MAX_CYCLE_COLOR 63 1881 1882 1883 /********************************************************************** 1884 ** The game's six and eight point fonts have these names. 1885 */ 1886 #define FONT3 "3point.fnt" 1887 #define FONT6 "6point.fnt" 1888 #define FONT8 "8point.fnt" 1889 1890 1891 /********************************************************************** 1892 ** These are the control flags for Fancy_Text_Print function. 1893 */ 1894 typedef enum TextPrintType : unsigned short { 1895 TPF_LASTPOINT =0x0000, // Use previous font point value. 1896 TPF_6POINT =0x0001, // Use 6 point font. 1897 TPF_8POINT =0x0002, // Use 8 point font. 1898 TPF_3POINT =0x0003, // Use 3 point font. 1899 TPF_LED =0x0004, // Use LED font. 1900 TPF_VCR =0x0005, // Use VCR font. 1901 TPF_6PT_GRAD =0x0006, // Use 6 point gradient font. 1902 TPF_MAP =0x0007, // Use 6 point gradient font. 1903 TPF_GREEN12 =0x0008, // Use green tab font 1904 TPF_GREEN12_GRAD =0x0009, // Use graduated green tab font 1905 TPF_LASTSHADOW =0x0000, // Use previous font palette. 1906 TPF_NOSHADOW =0x0010, // Don't have any shadow. 1907 TPF_DROPSHADOW =0x0020, // Use a simple drop shadow. 1908 TPF_FULLSHADOW =0x0040, // Use a full outline shadow. 1909 TPF_LIGHTSHADOW =0x0080, // Use engraved drop 'shadow' color. 1910 TPF_CENTER =0x0100, // Center about the X axis. 1911 TPF_RIGHT =0x0200, // Right justify text. 1912 TPF_MEDIUM_COLOR =0x1000, // Use medium color for all text gradient 1913 TPF_BRIGHT_COLOR =0x2000, // Use bright color for all text gradient 1914 TPF_USE_GRAD_PAL =0x4000 // Use a gradient palette based on fore color 1915 } TextPrintType; 1916 1917 //inline TextPrintType operator |(TextPrintType, TextPrintType); 1918 //inline TextPrintType operator &(TextPrintType, TextPrintType); 1919 //inline TextPrintType operator ~(TextPrintType); 1920 1921 inline TextPrintType operator|(TextPrintType a, TextPrintType b) 1922 {return static_cast<TextPrintType>(static_cast<int>(a) | static_cast<int>(b));} 1923 1924 inline TextPrintType operator&(TextPrintType a, TextPrintType b) 1925 {return static_cast<TextPrintType>(static_cast<int>(a) & static_cast<int>(b));} 1926 1927 inline TextPrintType operator~(TextPrintType a) 1928 {return static_cast<TextPrintType>(~static_cast<int>(a));} 1929 1930 1931 /********************************************************************** 1932 ** These control the maximum number of objects in the game. Make sure that these 1933 ** maximums never exceed the maximum value for the "ID" element in the 1934 ** object class. 1935 */ 1936 #define AIRCRAFT_MAX 100 // Lasts for minutes. 1937 #define ANIM_MAX 200 // Lasts only a few seconds. 1938 #define BUILDING_MAX 500 // Lasts for hours. 1939 #define BULLET_MAX 50 // Lasts several seconds. 1940 #define FACTORY_MAX 32 // Lasts a few minutes. 1941 #define HOUSE_MAX 12 // Lasts entire scenario. 1942 #define INFANTRY_MAX 500 // Lasts for minutes. 1943 #define OVERLAY_MAX 1 // Very transitory. 1944 #define REINFORCEMENT_MAX 50 // Maximum number of reinforcements. 1945 #define SMUDGE_MAX 1 // Very transitory. 1946 #define TEAM_MAX 60 // Lasts forever. 1947 #define TEMPLATE_MAX 1 // Very transitory. 1948 #define TERRAIN_MAX 500 // Lasts for hours or eternity. 1949 #define TRIGGER_MAX 80 // Lasts forever. 1950 #define UNIT_MAX 500 // Lasts for minutes. 1951 #define TEAMTYPE_MAX 60 // Lasts forever. 1952 1953 // Save filename description. 1954 #define DESCRIP_MAX 44 // 40 chars + CR + LF + CTRL-Z + NULL 1955 1956 #define MAX_ENTRY_SIZE 15 1957 1958 #define OBUTTON_HEIGHT 9 // Is defined in mapedit.h, need for buttons 1959 1960 #define CONQUER_PATH_MAX 9 // Number of cells to look ahead for movement. 1961 1962 #define EACH_UNIT_MAX (UNIT_MAX/4) // Default maximum any one player can have. 1963 #define EACH_BUILDING_MAX (BUILDING_MAX/4) // Default maximum any one player can build. 1964 1965 1966 /********************************************************************** 1967 ** Terrain can be of these different classes. At any point in the game 1968 ** a particular piece of ground must fall under one of these classifications. 1969 ** This is true, even if it is undergoing a temporary transition. 1970 */ 1971 typedef enum LandType : unsigned char { 1972 LAND_CLEAR, // "Clear" terrain. 1973 LAND_ROAD, // Road terrain. 1974 LAND_WATER, // Water. 1975 LAND_ROCK, // Impassable rock. 1976 LAND_WALL, // Wall (blocks movement). 1977 LAND_TIBERIUM, // Tiberium field. 1978 LAND_BEACH, // Beach terrain. 1979 1980 LAND_COUNT 1981 } LandType; 1982 1983 1984 /********************************************************************** 1985 ** The theaters of operation are as follows. 1986 */ 1987 typedef enum TheaterType : char { 1988 THEATER_NONE=-1, 1989 THEATER_DESERT, 1990 THEATER_JUNGLE, 1991 THEATER_TEMPERATE, 1992 THEATER_WINTER, 1993 1994 THEATER_COUNT, 1995 THEATER_FIRST=0 1996 } TheaterType; 1997 1998 //inline TheaterType operator++(TheaterType &, int); 1999 2000 #define THEATERF_DESERT (1<<THEATER_DESERT) 2001 #define THEATERF_JUNGLE (1<<THEATER_JUNGLE) 2002 #define THEATERF_TEMPERATE (1<<THEATER_TEMPERATE) 2003 #define THEATERF_WINTER (1<<THEATER_WINTER) 2004 2005 typedef struct { 2006 char Name[16]; 2007 char Root[10]; 2008 char Suffix[4]; 2009 } TheaterDataType; 2010 2011 2012 /********************************************************************** 2013 ** Each building has a predetermined size. These are the size numbers. 2014 ** The trailing number is this define is the width and height (respectively) 2015 ** of the building in cells. 2016 */ 2017 typedef enum BSizeType : char { 2018 BSIZE_NONE=-1, 2019 BSIZE_11=0, 2020 BSIZE_21, 2021 BSIZE_12, 2022 BSIZE_22, 2023 BSIZE_23, 2024 BSIZE_32, 2025 BSIZE_33, 2026 BSIZE_42, 2027 BSIZE_55, 2028 2029 BSIZE_COUNT 2030 } BSizeType; 2031 2032 //inline BSizeType operator++(BSizeType &, int); 2033 2034 2035 /********************************************************************** 2036 ** When objects are manipulated on the map that are marked as being 2037 ** removed (up), placed down (down), or just to be redrawn (change); 2038 ** or when an object's rendering (not logical) size changes, due to 2039 ** its being selected or having an animation attached (overlap up/down). 2040 */ 2041 typedef enum MarkType : unsigned char { 2042 MARK_UP, // Removed from the map. 2043 MARK_DOWN, // Placed on the map. 2044 MARK_CHANGE, // Altered in place on the map. 2045 MARK_OVERLAP_DOWN, // Mark overlap cells on the map 2046 MARK_OVERLAP_UP, // Clear overlap cells on the map 2047 } MarkType; 2048 2049 2050 /**************************************************************************** 2051 ** Window number definition list. Each window should be referred to by 2052 ** the value given in this list. 2053 */ 2054 // Allow window number enums to be passed to library functions. 2055 typedef enum WindowNumberType : unsigned char { 2056 WINDOW_MAIN, // Full screen window. 2057 WINDOW_ERROR, // Library error window. 2058 WINDOW_TACTICAL, // Tactical map window. 2059 WINDOW_MENU, // Main selection menu. 2060 WINDOW_SIDEBAR, // Sidebar (buildable list) window. 2061 WINDOW_EDITOR, // Scenario editor window. 2062 WINDOW_CUSTOM, // Window that can be altered depending on circumstances 2063 WINDOW_VIRTUAL // Window that is used when we want to capture rendering information without actually rendering. ST - 1/15/2019 3:03PM 2064 } WindowNumberType; 2065 2066 2067 /**************************************************************************** 2068 ** For every cell there are 8 adjacent cells. Use these direction numbers 2069 ** when referring to adjacent cells. This comes into play when moving 2070 ** between cells and in the Desired_Facing() algorithm. 2071 */ 2072 typedef enum FacingType : char { 2073 FACING_NONE=-1, 2074 FACING_N, // North 2075 FACING_NE, // North-East 2076 FACING_E, // East 2077 FACING_SE, // South-East 2078 FACING_S, // South 2079 FACING_SW, // South-West 2080 FACING_W, // West 2081 FACING_NW, // North-West 2082 2083 FACING_COUNT, // Total of 8 directions (0..7). 2084 FACING_FIRST=0 2085 } FacingType; 2086 2087 //inline FacingType operator++(FacingType &, int); 2088 inline FacingType operator + (FacingType f1, FacingType f2) 2089 { 2090 return (FacingType)(((int)f1 + (int)f2) & 0x07); 2091 } 2092 inline FacingType operator + (FacingType f1, int f2) 2093 { 2094 return (FacingType)(((int)f1 + (int)f2) & 0x07); 2095 } 2096 2097 inline FacingType operator - (FacingType f1, FacingType f2) 2098 { 2099 return (FacingType)(((int)f1 - (int)f2) & 0x07); 2100 } 2101 inline FacingType operator - (FacingType f1, int f2) 2102 { 2103 return (FacingType)(((int)f1 - (int)f2) & 0x07); 2104 } 2105 2106 inline FacingType operator += (FacingType & f1, FacingType f2) 2107 { 2108 f1 = (FacingType)(((int)f1 + (int)f2) & 0x07); 2109 return(f1); 2110 } 2111 inline FacingType operator += (FacingType & f1, int f2) 2112 { 2113 f1 = (FacingType)(((int)f1 + (int)f2) & 0x07); 2114 return(f1); 2115 } 2116 2117 2118 typedef enum DirType : unsigned char { 2119 DIR_MIN=0, 2120 DIR_N=0, 2121 DIR_NE=1<<5, 2122 DIR_E=2<<5, 2123 DIR_SE=3<<5, 2124 DIR_S=4<<5, 2125 DIR_SW=5<<5, 2126 DIR_SW_X1=(5<<5)-8, // Direction of harvester while unloading. 2127 DIR_SW_X2=(5<<5)-16, // Direction of harvester while unloading. 2128 DIR_W=6<<5, 2129 DIR_NW=7<<5, 2130 DIR_MAX=254 2131 } DirType; 2132 inline DirType operator + (DirType f1, DirType f2) 2133 { 2134 return (DirType)(((int)f1 + (int)f2) & 0x00FF); 2135 } 2136 inline DirType operator + (DirType f1, int f2) 2137 { 2138 return (DirType)(((int)f1 + (int)f2) & 0x00FF); 2139 } 2140 2141 2142 /**************************************************************************** 2143 ** Timer constants. These are used when setting the countdown timer. 2144 ** Note that this is based upon a timer that ticks every 60th of a second. 2145 */ 2146 #define TICKS_PER_SECOND 15 2147 #define TICKS_PER_MINUTE (TICKS_PER_SECOND * 60) 2148 2149 #define TIMER_SECOND 60 2150 #define TIMER_MINUTE (TIMER_SECOND*60) 2151 2152 #define FADE_PALETTE_FAST (TIMER_SECOND/8) 2153 #define FADE_PALETTE_MEDIUM (TIMER_SECOND/4) 2154 #define FADE_PALETTE_SLOW (TIMER_SECOND/2) 2155 2156 2157 /**************************************************************************** 2158 ** Each vehicle is give a speed rating. This is a combination of not only 2159 ** its physical speed, but the means by which it travels (wheels, tracks, 2160 ** wings, etc). This is used to determine the movement table. 2161 */ 2162 typedef enum SpeedType : char { 2163 SPEED_NONE=-1, 2164 2165 SPEED_FOOT=0, // Bipedal. 2166 SPEED_TRACK, // Tracked locomotion. 2167 SPEED_HARVESTER, // Harvester speed rating. 2168 SPEED_WHEEL, // Balloon tires. 2169 SPEED_WINGED, // Lifter's, 'thopters, and rockets. 2170 SPEED_HOVER, // Typical hovercraft logic. 2171 SPEED_FLOAT, // Ships. 2172 2173 SPEED_COUNT, 2174 SPEED_FIRST=SPEED_FOOT 2175 } SpeedType; 2176 2177 2178 /********************************************************************** 2179 ** These are the sound effect digitized sample file names. 2180 */ 2181 typedef enum VocType : char{ 2182 VOC_NONE=-1, 2183 2184 VOC_RAMBO_PRESENT,// "I've got a present for ya" 2185 VOC_RAMBO_CMON, // "c'mon" 2186 VOC_RAMBO_UGOTIT, // "you got it" 2187 VOC_RAMBO_COMIN, // "keep 'em commin'" 2188 VOC_RAMBO_LAUGH, // "hahaha" 2189 VOC_RAMBO_LEFTY, // "that was left handed" 2190 VOC_RAMBO_NOPROB, // "no problem" 2191 // VOC_RAMBO_OHSH, // "oh shiiiiii...." 2192 VOC_RAMBO_ONIT, // "I'm on it" 2193 VOC_RAMBO_YELL, // "ahhhhhhh" 2194 VOC_RAMBO_ROCK, // "time to rock and roll" 2195 VOC_RAMBO_TUFF, // "real tuff guy" 2196 VOC_RAMBO_YEA, // "yea" 2197 VOC_RAMBO_YES, // "yes" 2198 VOC_RAMBO_YO, // "yo" 2199 2200 VOC_GIRL_OKAY, // "okay" 2201 VOC_GIRL_YEAH, // "yeah?" 2202 VOC_GUY_OKAY, // "okay" 2203 VOC_GUY_YEAH, // "yeah?" 2204 2205 VOC_2DANGER, // "negative, too dangerous" 2206 VOC_ACKNOWL, // "acknowledged" 2207 VOC_AFFIRM, // "affirmative" 2208 VOC_AWAIT, // "awaiting orders" 2209 // VOC_BACKUP, // "send backup" 2210 // VOC_HELP, // "send help" 2211 VOC_MOVEOUT, // "movin' out" 2212 VOC_NEGATIVE, // "negative" 2213 VOC_NO_PROB, // "not a problem" 2214 VOC_READY, // "ready and waiting" 2215 VOC_REPORT, // "reporting" 2216 VOC_RIGHT_AWAY, // "right away sir" 2217 VOC_ROGER, // "roger" 2218 // VOC_SIR, // "sir?" 2219 // VOC_SQUAD, // "squad reporting" 2220 // VOC_PRACTICE, // "target practice" 2221 VOC_UGOTIT, // "you got it" 2222 VOC_UNIT, // "unit reporting" 2223 VOC_VEHIC, // "vehicle reporting" 2224 VOC_YESSIR, // "yes sir" 2225 2226 VOC_BAZOOKA, // Gunfire 2227 VOC_BLEEP, // Clean metal bing 2228 VOC_BOMB1, // Crunchy parachute bomb type explosion 2229 VOC_BUTTON, // Dungeon Master button click 2230 VOC_RADAR_ON, // Elecronic static with beeps 2231 VOC_CONSTRUCTION, // construction sounds 2232 VOC_CRUMBLE, // muffled crumble sound 2233 VOC_FLAMER1, // flame thrower 2234 VOC_RIFLE, // rifle shot 2235 VOC_M60, // machine gun burst -- 6 rounds 2236 VOC_GUN20, // bat hitting heavy metal door 2237 VOC_M60A, // medium machine gun burst 2238 VOC_MINI, // mini gun burst 2239 VOC_RELOAD, // gun clip reload 2240 VOC_SLAM, // metal plates slamming together 2241 VOC_HVYGUN10, // loud sharp cannon 2242 VOC_ION_CANNON, // partical beam 2243 VOC_MGUN11, // alternate tripple burst 2244 VOC_MGUN2, // M-16 tripple burst 2245 VOC_NUKE_FIRE, // long missile sound 2246 VOC_NUKE_EXPLODE, // long but not loud explosion 2247 VOC_LASER, // humming laser beam 2248 VOC_LASER_POWER, // warming up sound of laser beam 2249 VOC_RADAR_OFF, // doom door slide 2250 VOC_SNIPER, // silenced rifle fire 2251 VOC_ROCKET1, // rocket launch variation #1 2252 VOC_ROCKET2, // rocket launch variation #2 2253 VOC_MOTOR, // dentists drill 2254 VOC_SCOLD, // cannot perform action feedback tone 2255 VOC_SIDEBAR_OPEN, // xylophone clink 2256 VOC_SIDEBAR_CLOSE,// xylophone clink 2257 VOC_SQUISH2, // crushing infantry 2258 VOC_TANK1, // sharp tank fire with recoil 2259 VOC_TANK2, // sharp tank fire 2260 VOC_TANK3, // sharp tank fire 2261 VOC_TANK4, // big gun tank fire 2262 VOC_UP, // credits counting up 2263 VOC_DOWN, // credits counting down 2264 VOC_TARGET, // target sound 2265 VOC_SONAR, // sonar echo 2266 VOC_TOSS, // air swish 2267 VOC_CLOAK, // stealth tank 2268 VOC_BURN, // burning crackle 2269 VOC_TURRET, // muffled gunfire 2270 VOC_XPLOBIG4, // very long muffled explosion 2271 VOC_XPLOBIG6, // very long muffled explosion 2272 VOC_XPLOBIG7, // very long muffled explosion 2273 VOC_XPLODE, // long soft muffled explosion 2274 VOC_XPLOS, // short crunchy explosion 2275 VOC_XPLOSML2, // muffled mechanical explosion 2276 2277 VOC_SCREAM1, // short infantry scream 2278 VOC_SCREAM3, // short infantry scream 2279 VOC_SCREAM4, // short infantry scream 2280 VOC_SCREAM5, // short infantry scream 2281 VOC_SCREAM6, // short infantry scream 2282 VOC_SCREAM7, // short infantry scream 2283 VOC_SCREAM10, // short infantry scream 2284 VOC_SCREAM11, // short infantry scream 2285 VOC_SCREAM12, // short infantry scream 2286 VOC_YELL1, // long infantry scream 2287 2288 VOC_YES, // "Yes?" 2289 VOC_COMMANDER, // "Commander?" 2290 VOC_HELLO, // "Hello?" 2291 VOC_HMMM, // "Hmmm?" 2292 // VOC_PROCEED1, // "I will proceed, post haste." 2293 // VOC_PROCEED2, // "I will proceed, at once." 2294 // VOC_PROCEED3, // "I will proceed, immediately." 2295 // VOC_EXCELLENT1, // "That is an excellent plan." 2296 // VOC_EXCELLENT2, // "Yes, that is an excellent plan." 2297 VOC_EXCELLENT3, // "A wonderful plan." 2298 // VOC_EXCELLENT4, // "Asounding plan of action commander." 2299 // VOC_EXCELLENT5, // "Remarkable contrivance." 2300 VOC_OF_COURSE, // "Of course." 2301 VOC_YESYES, // "Yes yes yes." 2302 VOC_QUIP1, // "Mind the Tiberium." 2303 // VOC_QUIP2, // "A most remarkable Metasequoia Glyptostroboides." 2304 VOC_THANKS, // "Thank you." 2305 2306 VOC_CASHTURN, // Sound of money being piled up. 2307 VOC_BLEEPY3, // Clean computer bleep sound. 2308 2309 VOC_DINOMOUT, // Movin' out in dino-speak. 2310 VOC_DINOYES, // Yes Sir in dino-speak. 2311 VOC_DINOATK1, // Dino attack sound. 2312 VOC_DINODIE1, // Dino die sound. 2313 2314 VOC_BEACON, // Beacon sound. 2315 2316 #ifdef PETROGLYPH_EXAMPLE_MOD 2317 VOC_NUKE_LOB, // Modded unit firing sound 2318 #endif 2319 2320 VOC_COUNT, 2321 VOC_BUILD_SELECT=VOC_TARGET, 2322 VOC_FIRST=0 2323 } VocType; 2324 2325 2326 typedef enum VoxType : char{ 2327 VOX_NONE=-1, 2328 VOX_ACCOMPLISHED, // mission accomplished 2329 VOX_FAIL, // your mission has failed 2330 VOX_NO_FACTORY, // unable to comply, building in progress 2331 VOX_CONSTRUCTION, // construction complete 2332 VOX_UNIT_READY, // unit ready 2333 VOX_NEW_CONSTRUCT, // new construction options 2334 VOX_DEPLOY, // cannot deploy here 2335 VOX_DEAD_GDI, // GDI unit destroyed 2336 VOX_DEAD_NOD, // Nod unit destroyed 2337 VOX_DEAD_CIV, // civilian killed 2338 // VOX_AFFIRMATIVE, // affirmative 2339 // VOX_NEGATIVE, // negative 2340 // VOX_UPGRADE_UNIT, // upgrade complete, new unit available 2341 // VOX_UPGRADE_STRUCT, // upgrade complete, new structure available 2342 VOX_NO_CASH, // insufficient funds 2343 VOX_CONTROL_EXIT, // battle control terminated 2344 VOX_REINFORCEMENTS, // reinforcements have arrived 2345 VOX_CANCELED, // canceled 2346 VOX_BUILDING, // building 2347 VOX_LOW_POWER, // low power 2348 VOX_NO_POWER, // insufficient power 2349 VOX_NEED_MO_MONEY, // need more funds 2350 VOX_BASE_UNDER_ATTACK, // our base is under attack 2351 VOX_INCOMING_MISSILE, // incoming missile 2352 VOX_ENEMY_PLANES, // enemy planes approaching 2353 VOX_INCOMING_NUKE, // nuclear warhead approaching - "NUKE1" 2354 // VOX_RADIATION_OK, // radiation levels are acceptable 2355 // VOX_RADIATION_FATAL, // radiation levels are fatal 2356 VOX_UNABLE_TO_BUILD, // unable to build more 2357 VOX_PRIMARY_SELECTED, // primary building selected 2358 // VOX_REPAIRS_COMPLETE, // repairs completed 2359 VOX_NOD_CAPTURED, // Nod building captured 2360 VOX_GDI_CAPTURED, // GDI building captured 2361 // VOX_STRUCTURE_SOLD, // structure sold 2362 VOX_ION_CHARGING, // ion cannon charging 2363 VOX_ION_READY, // ion cannon ready 2364 VOX_NUKE_AVAILABLE, // nuclear weapon available 2365 VOX_NUKE_LAUNCHED, // nuclear weapon launched - "NUKLNCH1" 2366 VOX_UNIT_LOST, // unit lost 2367 VOX_STRUCTURE_LOST, // structure lost 2368 VOX_NEED_HARVESTER, // need harvester 2369 VOX_SELECT_TARGET, // select target 2370 VOX_AIRSTRIKE_READY, // airstrike ready 2371 VOX_NOT_READY, // not ready 2372 VOX_TRANSPORT_SIGHTED, // Nod transport sighted 2373 VOX_TRANSPORT_LOADED, // Nod transport loaded 2374 VOX_PREPARE, // enemy approaching 2375 VOX_NEED_MO_CAPACITY, // silos needed 2376 VOX_SUSPENDED, // on hold 2377 VOX_REPAIRING, // repairing 2378 VOX_ENEMY_STRUCTURE, // enemy structure destroyed 2379 VOX_GDI_STRUCTURE, // GDI structure destroyed 2380 VOX_NOD_STRUCTURE, // NOD structure destroyed 2381 VOX_ENEMY_UNIT, // Enemy unit destroyed. 2382 // VOX_GOLD_UNIT, // gold unit destroyed 2383 // VOX_GOLD_STRUCTURE, // gold structure destroyed 2384 // VOX_GOLD_ONLINE, // gold player online 2385 // VOX_GOLD_OFFLINE, // gold player has departed 2386 // VOX_GOLD_LOST, // gold player destroyed 2387 // VOX_GOLD_WON, // gold player is victorious 2388 // VOX_RED_UNIT, // red unit destroyed 2389 // VOX_RED_STRUCTURE, // red structure destroyed 2390 // VOX_RED_ONLINE, // red player online 2391 // VOX_RED_OFFLINE, // red player has departed 2392 // VOX_RED_LOST, // red player destroyed 2393 // VOX_RED_WON, // red player is victorious 2394 // VOX_GREY_UNIT, // grey unit destroyed 2395 // VOX_GREY_STRUCTURE, // grey structure destroyed 2396 // VOX_GREY_ONLINE, // grey player online 2397 // VOX_GREY_OFFLINE, // grey player has departed 2398 // VOX_GREY_LOST, // grey player destroyed 2399 // VOX_GREY_WON, // grey player is victorious 2400 // VOX_ORANGE_UNIT, // orange unit destroyed 2401 // VOX_ORANGE_STRUCTURE, // orange structure destroyed 2402 // VOX_ORANGE_ONLINE, // orange player online 2403 // VOX_ORANGE_OFFLINE, // orange player has departed 2404 // VOX_ORANGE_LOST, // orange player destroyed 2405 // VOX_ORANGE_WON, // orange player is victorious 2406 // VOX_GREEN_UNIT, // green unit destroyed 2407 // VOX_GREEN_STRUCTURE, // green structure destroyed 2408 // VOX_GREEN_ONLINE, // green player online 2409 // VOX_GREEN_OFFLINE, // green player has departed 2410 // VOX_GREEN_LOST, // green player destroyed 2411 // VOX_GREEN_WON, // green player is victorious 2412 // VOX_BLUE_UNIT, // blue unit destroyed 2413 // VOX_BLUE_STRUCTURE, // blue structure destroyed 2414 // VOX_BLUE_ONLINE, // blue player online 2415 // VOX_BLUE_OFFLINE, // blue player has departed 2416 // VOX_BLUE_LOST, // blue player destroyed 2417 // VOX_BLUE_WON, // blue player is victorious 2418 2419 VOX_COUNT, 2420 // VOX_MULTI_UNIT = VOX_GOLD_UNIT, 2421 // VOX_MULTI_STRUCTURE = VOX_GOLD_STRUCTURE, 2422 // VOX_MULTI_ONLINE = VOX_GOLD_ONLINE, 2423 // VOX_MULTI_OFFLINE = VOX_GOLD_OFFLINE, 2424 // VOX_MULTI_LOST = VOX_GOLD_LOST, 2425 // VOX_MULTI_WON = VOX_GOLD_WON, 2426 2427 VOX_FIRST=0 2428 } VoxType; 2429 2430 #define NUM_MULTI_VOICES 6 2431 /**************************************************************************** 2432 ** Game reinforcements are each controlled by the following structure. The 2433 ** data originates in the scenario INI file but is then carried throughout 2434 ** any saved games. 2435 */ 2436 typedef enum SourceType : char { 2437 SOURCE_NONE=-1, // No defined source (error condition). 2438 SOURCE_FIRST=0, 2439 2440 SOURCE_NORTH=SOURCE_FIRST, // From north edge. 2441 SOURCE_EAST, // From east edge. 2442 SOURCE_SOUTH, // From south edge. 2443 SOURCE_WEST, // From west edge. 2444 SOURCE_SHIPPING, // Shipping lane. 2445 SOURCE_BEACH, // Selects beach to land upon. 2446 SOURCE_AIR, // Dropped by air (someplace). 2447 SOURCE_VISIBLE, // Dropped where player can see. 2448 SOURCE_ENEMYBASE, // Dropped at enemy base. 2449 SOURCE_HOMEBASE, // Dropped at friendly base. 2450 SOURCE_OCEAN, // Enters from ocean map edge. 2451 2452 SOURCE_COUNT 2453 } SourceType; 2454 2455 2456 /**************************************************************************** 2457 ** Each type of terrain has certain characteristics. These are indicated 2458 ** by the structure below. For every element of terrain there is a 2459 ** corresponding GroundType structure. 2460 */ 2461 typedef struct { 2462 int Color; // Radar map (map editor) id color. 2463 unsigned char Cost[SPEED_COUNT]; // Terrain effect cost (normal). 2464 bool Build; // Can build on this terrain? 2465 } GroundType; 2466 2467 2468 /************************************************************************** 2469 ** Find_Path returns with a pointer to this structure. 2470 */ 2471 typedef struct { 2472 CELL Start; // Starting cell number. 2473 int Cost; // Accumulated terrain cost. 2474 int Length; // Command string length. 2475 FacingType *Command; // Pointer to command string. 2476 unsigned long *Overlap; // Pointer to overlap list 2477 CELL LastOverlap; // stores position of last overlap 2478 CELL LastFixup; // stores position of last overlap 2479 } PathType; 2480 2481 2482 /********************************************************************** 2483 ** These are special indices into the Waypoint array; slots 0-25 are 2484 ** reserved for letter-designated Waypoints, the others are special. 2485 */ 2486 typedef enum WaypointEnum : unsigned char 2487 { 2488 WAYPT_HOME = 26, // Home-cell for this scenario 2489 WAYPT_REINF, // cell where reinforcements arrive 2490 WAYPT_COUNT, 2491 } WaypointType; 2492 2493 2494 /**************************************************************************** 2495 ** Max # of players total, including the game's owner 2496 */ 2497 #define MAX_PLAYERS 6 2498 2499 2500 /**************************************************************************** 2501 ** These are the possible types of multiplayer games supported. 2502 */ 2503 typedef enum GameEnum : unsigned char { 2504 GAME_NORMAL, // not multiplayer 2505 GAME_MODEM, // modem game 2506 GAME_NULL_MODEM, // NULL-modem 2507 GAME_IPX, // IPX Network game 2508 GAME_INTERNET, // WInsock game 2509 GAME_GLYPHX_MULTIPLAYER // Multiplayer game controlled by the GLYPHX engine. ST - 3/12/2019 10:04AM 2510 } GameType; 2511 2512 2513 #define MPLAYER_BUILD_LEVEL_MAX 7 2514 2515 2516 /**************************************************************************** 2517 ** This is the max character length of a player's name 2518 */ 2519 #define MPLAYER_NAME_MAX 12 2520 2521 2522 /**************************************************************************** 2523 ** Max # of colors for multiplayer games 2524 */ 2525 #define MAX_MPLAYER_COLORS 6 2526 2527 2528 /**************************************************************************** 2529 ** This defines the various possible communications protocols. 2530 */ 2531 typedef enum CommProtocolEnum : unsigned char { 2532 COMM_PROTOCOL_SINGLE_NO_COMP = 0, // single frame with no compression 2533 COMM_PROTOCOL_SINGLE_E_COMP, // single frame with event compression 2534 COMM_PROTOCOL_MULTI_E_COMP, // multiple frame with event compression 2535 COMM_PROTOCOL_COUNT, 2536 DEFAULT_COMM_PROTOCOL = COMM_PROTOCOL_SINGLE_NO_COMP, 2537 } CommProtocolType; 2538 2539 2540 /**************************************************************************** 2541 ** Min value for MaxAhead, for both net & modem; only applies for 2542 ** COMM_PROTOCOL_MULTI_E_COMP. 2543 */ 2544 #define MODEM_MIN_MAX_AHEAD 5 2545 #define NETWORK_MIN_MAX_AHEAD 2 2546 2547 2548 /**************************************************************************** 2549 ** Max length of inter-player message buffers. Messages.Init() should specify 2550 ** a value <= this. For editing messages, the "to" field length is added to 2551 ** this length to generate the entire editable message length. For displayed 2552 ** messages, a "From" prefix length should be added to this value to generate 2553 ** the entire max displayable message length. 2554 */ 2555 #define COMPAT_MESSAGE_LENGTH 28 2556 #define MAX_MESSAGE_SEGMENTS 3 2557 #define MAX_MESSAGE_LENGTH COMPAT_MESSAGE_LENGTH*3 2558 2559 /* 2560 ** Defines for magic numbers to place in messages to allow concatenation. 2561 */ 2562 #define MESSAGE_HEAD_MAGIC_NUMBER 0xFACE 2563 #define MESSAGE_TAIL_MAGIC_MUMBER 0xECAF 2564 2565 /* 2566 ** Max # of allowed messages at one time 2567 */ 2568 #define MAX_NUM_MESSAGES 10 2569 2570 #define PORTBUF_MAX 64 // Dialog field size 2571 #define IRQBUF_MAX 3 2572 #define BAUDBUF_MAX 7 2573 #define INITSTRBUF_MAX 41 2574 #define CWAITSTRBUF_MAX 16 2575 #define CREDITSBUF_MAX 5 2576 #define MODEM_NAME_MAX PORTBUF_MAX - 1 // Max length of modem name in list box 2577 2578 typedef enum DetectPortType : unsigned char { 2579 PORT_VALID = 0, 2580 PORT_INVALID, 2581 PORT_IRQ_INUSE 2582 } DetectPortType; 2583 2584 typedef enum DialStatusType : unsigned char { 2585 DIAL_CONNECTED = 0, 2586 DIAL_NO_CARRIER, 2587 DIAL_BUSY, 2588 DIAL_ERROR, 2589 DIAL_NO_DIAL_TONE, 2590 DIAL_CANCELED 2591 } DialStatusType; 2592 2593 typedef enum DialMethodType : unsigned char { 2594 DIAL_TOUCH_TONE = 0, 2595 DIAL_PULSE, 2596 2597 DIAL_METHODS 2598 } DialMethodType; 2599 2600 typedef enum CallWaitStringType : unsigned char { 2601 CALL_WAIT_TONE_1 = 0, 2602 CALL_WAIT_TONE_2, 2603 CALL_WAIT_PULSE, 2604 CALL_WAIT_CUSTOM, 2605 2606 CALL_WAIT_STRINGS_NUM 2607 } CallWaitStringType; 2608 2609 2610 /**************************************************************************** 2611 ** This structure defines the settings for the serial port. 2612 */ 2613 typedef struct { 2614 int Port; 2615 int IRQ; 2616 int Baud; 2617 DialMethodType DialMethod; 2618 int InitStringIndex; 2619 int CallWaitStringIndex; 2620 char CallWaitString[ CWAITSTRBUF_MAX ]; 2621 bool Init; 2622 bool Compression; 2623 bool ErrorCorrection; 2624 bool HardwareFlowControl; 2625 char ModemName [ MODEM_NAME_MAX ]; 2626 } SerialSettingsType; 2627 2628 2629 /**************************************************************************** 2630 ** These are the various commands sent during startup of a Serial game. 2631 */ 2632 typedef enum SerialCommandType : unsigned short { 2633 SERIAL_CONNECT = 100, // Are you there? Hello? McFly? 2634 SERIAL_GAME_OPTIONS = 101, // Hey, dudes, here's some new game options 2635 SERIAL_SIGN_OFF = 102, // Bogus, dudes, my boss is coming; I'm outta here! 2636 SERIAL_GO = 103, // OK, dudes, jump into the game loop! 2637 SERIAL_MESSAGE = 104, // Here's a message 2638 SERIAL_TIMING = 105, // timimg packet 2639 SERIAL_SCORE_SCREEN = 106, // player at score screen 2640 SERIAL_READY_TO_GO = 107, // Host is ready to start the game 2641 SERIAL_LAST_COMMAND // last command 2642 } SerialCommandType; 2643 2644 // 2645 // how much time (ticks) to go by before sending another packet 2646 // to simulate traffic. 2647 // 2648 #define PACKET_TIMING_TIMEOUT 40 2649 2650 2651 /**************************************************************************** 2652 ** These is the structure sent over the network Global Channel. 2653 ** Also used for the Null-Modem and Modem. 2654 */ 2655 typedef struct { 2656 SerialCommandType Command; // One of the enum's defined above 2657 char Name[MPLAYER_NAME_MAX]; // Player or Game Name 2658 int Version; // game's version number 2659 HousesType House; // player's House 2660 unsigned char Color; // player's color or SIGNOFF ID 2661 unsigned char Scenario; // Scenario # 2662 unsigned int Credits; // player's credits 2663 unsigned int IsBases : 1; // 1 = bases are allowed 2664 unsigned int IsTiberium : 1; // 1 = tiberium is allowed 2665 unsigned int IsGoodies : 1; // 1 = goodies are allowed 2666 unsigned int IsGhosties : 1; // 1 = ghosts are allowed 2667 unsigned char BuildLevel; // buildable level 2668 unsigned char UnitCount; // max # units 2669 int Seed; // random number seed 2670 SpecialClass Special; // command-line options 2671 unsigned int GameSpeed; // Game Speed 2672 unsigned long ResponseTime; // packet response time 2673 char Message[COMPAT_MESSAGE_LENGTH]; // inter-player message 2674 unsigned char ID; // ID of sender of message 2675 } SerialPacketType; 2676 2677 typedef enum ModemGameType : unsigned char { 2678 MODEM_NULL_HOST = 0, 2679 MODEM_NULL_JOIN, 2680 MODEM_DIALER, 2681 MODEM_ANSWERER, 2682 INTERNET_HOST = MODEM_NULL_HOST, 2683 INTERNET_JOIN = MODEM_NULL_JOIN 2684 } ModemGameType; 2685 2686 2687 /**************************************************************************** 2688 ** This is the max number of events supported on one frame. 2689 */ 2690 #define MAX_EVENTS 256 2691 2692 2693 /**************************************************************************** 2694 ** These are the various commands sent over the network's Global Channel. 2695 */ 2696 typedef enum NetCommandType : unsigned char { 2697 NET_QUERY_GAME, // Hey, what games are out there? 2698 NET_ANSWER_GAME, // Yo, Here's my game's name! 2699 NET_QUERY_PLAYER, // Hey, what players are in this game? 2700 NET_ANSWER_PLAYER, // Yo, I'm in that game! 2701 NET_QUERY_JOIN, // Hey guys, can I play too? 2702 NET_CONFIRM_JOIN, // Well, OK, if you really want to. 2703 NET_REJECT_JOIN, // No, you can't join; sorry, dude. 2704 NET_GAME_OPTIONS, // Hey, dudes, here's some new game options 2705 NET_SIGN_OFF, // Bogus, dudes, my boss is coming; I'm outta here! 2706 NET_GO, // OK, dudes, jump into the game loop! 2707 NET_MESSAGE, // Here's a message 2708 NET_PING, // I'm pinging you to take a time measurement 2709 } NetCommandType; 2710 2711 2712 /**************************************************************************** 2713 ** These is the structure sent over the network Global Channel. 2714 */ 2715 typedef struct { 2716 NetCommandType Command; // One of the enum's defined above 2717 char Name[MPLAYER_NAME_MAX]; // Player or Game Name 2718 union { 2719 struct { 2720 int Version; // game's version number 2721 unsigned int IsOpen : 1; // 1 = game is open for joining 2722 } GameInfo; 2723 struct { 2724 HousesType House; // player's House 2725 unsigned int Color; // player's color 2726 unsigned long NameCRC; // CRC of player's game's name 2727 } PlayerInfo; 2728 struct { 2729 unsigned char Scenario; // Scenario # 2730 unsigned int Credits; // player's credits 2731 unsigned int IsBases : 1; // 1 = bases are allowed 2732 unsigned int IsTiberium : 1; // 1 = tiberium is allowed 2733 unsigned int IsGoodies : 1; // 1 = goodies are allowed 2734 unsigned int IsGhosties : 1; // 1 = ghosts are allowed 2735 unsigned char BuildLevel; // buildable level 2736 unsigned char UnitCount; // max # units 2737 int Seed; // random number seed 2738 SpecialClass Special; // command-line options 2739 unsigned int GameSpeed; // Game Speed 2740 } ScenarioInfo; 2741 struct { 2742 char Buf[COMPAT_MESSAGE_LENGTH]; // inter-user message 2743 unsigned char ID; // ID of sender of message 2744 unsigned long NameCRC; // CRC of sender's Game Name 2745 } Message; 2746 struct { 2747 int OneWay; // one-way response time 2748 } ResponseTime; 2749 }; 2750 } GlobalPacketType; 2751 2752 2753 /**************************************************************************** 2754 ** This structure is for keeping score in multiplayer games. 2755 */ 2756 #define MAX_MULTI_NAMES 8 // max # names (rows) on the score screen 2757 #define MAX_MULTI_GAMES 4 // max # games (columns) on the score screen 2758 2759 typedef struct { 2760 char Name[MPLAYER_NAME_MAX]; 2761 int Wins; 2762 int Kills[MAX_MULTI_GAMES]; 2763 int Color; 2764 } MPlayerScoreType; 2765 2766 2767 typedef enum { 2768 KF_NUMBER = 0x08, 2769 KF_UNCOMP = 0x10, 2770 KF_DELTA = 0x20, 2771 KF_KEYDELTA = 0x40, 2772 KF_KEYFRAME = 0x80, 2773 KF_MASK = 0xF0 2774 } KeyFrameType; 2775 2776 2777 //-------------------------------------------------------------------- 2778 // New Config structure for .CFG files 2779 //-------------------------------------------------------------------- 2780 typedef struct { 2781 unsigned DigitCard; // SoundCardType. 2782 unsigned Port; // SoundCardType. 2783 unsigned IRQ; // SoundCardType. 2784 unsigned DMA; // SoundCardType. 2785 unsigned BitsPerSample; // bits per sound sample 2786 unsigned Channels; // stereo/mono sound card 2787 unsigned Speed; // stereo/mono sound card 2788 bool Reverse; // Reverse left/right speakers 2789 char Language[4]; 2790 } NewConfigType; 2791 2792 2793 /**************************************************************************** 2794 ** These are the types of dialogs that can pop up outside of the main loop, 2795 ** an call the game in the background. 2796 */ 2797 typedef enum { 2798 SDLG_NONE, 2799 SDLG_OPTIONS, 2800 SDLG_SURRENDER, 2801 SDLG_SPECIAL, 2802 } SpecialDialogType; 2803 2804 typedef enum : unsigned char { 2805 CC_GDI_COLOR = YELLOW, 2806 CC_NOD_COLOR = RED, 2807 CC_BLUE_GREEN = CYAN, 2808 CC_BLUE_GREY = LTBLUE, 2809 CC_ORANGE = PURPLE, 2810 CC_GREEN = GREEN, 2811 CC_TAN = BROWN, 2812 2813 CC_GREEN_SHADOW = 140, 2814 CC_GREEN_BKGD = 141, 2815 CC_GREEN_CORNERS = CC_GREEN_BKGD, 2816 CC_LIGHT_GREEN = 159, 2817 CC_GREEN_BOX = CC_LIGHT_GREEN, 2818 CC_BRIGHT_GREEN = 167, 2819 CC_UNDERLINE = CC_BRIGHT_GREEN, 2820 CC_GREEN_BAR = CC_BRIGHT_GREEN, 2821 } CCPaletteType; 2822 2823 2824 /**************************************************************************** 2825 ** These specify the shape numbers in the OPTIONS.SHP file. These shapes 2826 ** are used to dress up the dialog boxes. Many of these shapes come in pairs. 2827 ** For dialog box shapes, they are left image / right image paired. For buttons, 2828 ** they are up / down paired. 2829 */ 2830 typedef enum OptionControlType : char { 2831 OPTION_NONE=-1, // No fancy shmancy shape. 2832 OPTION_DIALOG=0, // Small dialog boxes. 2833 OPTION_CONTROLS=2, // Large dialog boxes, game controls. 2834 OPTION_DELETE=4, // Delete,Load,Save game. 2835 OPTION_SERIAL=6, // Serial dialog. 2836 OPTION_PHONE=8, // Phone dialog. 2837 OPTION_VISUAL=10, // Visual dialog. 2838 OPTION_NETWORK=12, // Network dialog. 2839 OPTION_JOIN_NETWORK=14, // Join network dialog. 2840 OPTION_SOUND=16, // Sound controls. 2841 OPTION_SMALL_THUMB=18, // Small slider thumb. 2842 OPTION_LARGE_THUMB=19, // Large slider thumb. 2843 OPTION_PLAY=20, // Play track. 2844 OPTION_STOP=22, // Stop track. 2845 OPTION_UP_ARROW=24, // Slider up arrow. 2846 OPTION_DOWN_ARROW=26, // Slider down arrow. 2847 OPTION_BUTTON_GDI=28, // Huh? 2848 OPTION_BUTTON_NOD=30, // Huh? 2849 2850 OPTION_COUNT 2851 } OptionControlType; 2852 2853 2854 /**************************************************************************** 2855 ** Used to store firing data for a unit. 2856 */ 2857 typedef struct { 2858 COORDINATE Center; 2859 int Distance; 2860 } FireDataType; 2861 2862 2863 #define TOTAL_CRATE_TYPES 15 2864 2865 #define size_of(typ,id) sizeof(((typ*)0)->id) 2866 2867 2868 2869 2870 /* 2871 ** 2872 ** Imports from Red Alert for AI. ST - 7/16/2019 11:44AM 2873 ** 2874 ** 2875 ** 2876 */ 2877 #ifdef USE_RA_AI 2878 2879 2880 /********************************************************************** 2881 ** A base is broken up into several zones. This type enumerates the 2882 ** various zones. 2883 */ 2884 typedef enum ZoneType : char { 2885 ZONE_CORE, // Center of base. 2886 ZONE_NORTH, // North section. 2887 ZONE_EAST, // East section. 2888 ZONE_SOUTH, // South section. 2889 ZONE_WEST, // West section. 2890 2891 ZONE_COUNT, 2892 ZONE_FIRST=0, 2893 ZONE_NONE=-1 2894 } ZoneType; 2895 2896 2897 /********************************************************************** 2898 ** The map is prescanned to mark of movement zones according to certain 2899 ** movement characteristics. This enum specifies those characteristics 2900 ** and movement zones kept track of. 2901 */ 2902 typedef enum MZoneType : unsigned char { 2903 MZONE_NORMAL, // Normal terrestrial objects (can't crush walls). 2904 MZONE_CRUSHER, // Can crush crushable wall types. 2905 MZONE_DESTROYER, // Can destroy walls. 2906 MZONE_WATER, // Water based objects. 2907 2908 MZONE_COUNT, 2909 MZONE_FIRST=0 2910 } MZoneType; 2911 2912 #define MZONEF_NORMAL (1<<MZONE_NORMAL) 2913 #define MZONEF_CRUSHER (1<<MZONE_CRUSHER) 2914 #define MZONEF_DESTROYER (1<<MZONE_DESTROYER) 2915 #define MZONEF_WATER (1<<MZONE_WATER) 2916 #define MZONEF_ALL (MZONEF_NORMAL|MZONEF_CRUSHER|MZONEF_DESTROYER|MZONEF_WATER) 2917 2918 2919 /********************************************************************** 2920 ** This records the current state of the computer controlled base. The 2921 ** AI will respond according to this state in order to control 2922 ** production and unit orders. 2923 */ 2924 typedef enum StateType : unsigned char { 2925 STATE_BUILDUP, // Base is building up (defensive buildup stage). 2926 STATE_BROKE, // Low on money, need cash or income source. 2927 STATE_THREATENED, // Enemy units are designated to move close by. 2928 STATE_ATTACKED, // Base is under direct attack. 2929 STATE_ENDGAME // Resistance is futile. 2930 } StateType; 2931 2932 2933 /********************************************************************** 2934 ** Urgency rating used to determine what action to perform. The greater 2935 ** the urgency the more likely the corresponding action will be chosen. 2936 ** These values are assigned to each potential desired action the house 2937 ** is to perform. 2938 */ 2939 typedef enum UrgencyType : unsigned char { 2940 URGENCY_NONE, // No action on this matter is needed or desired. 2941 URGENCY_LOW, // Minimal attention requested. 2942 URGENCY_MEDIUM, // Normal attention requested. 2943 URGENCY_HIGH, // High attention requested. 2944 URGENCY_CRITICAL, // This matter must be addressed immediately. 2945 2946 URGENCY_COUNT, 2947 URGENCY_FIRST=URGENCY_CRITICAL 2948 } UrgencyType; 2949 2950 2951 /********************************************************************** 2952 ** These are the various actions a house may perform. These actions refer 2953 ** to global events that encompass selling and production. Low level house 2954 ** specific actions of choosing targets is handled elsewhere. 2955 */ 2956 typedef enum StrategyType : unsigned char { 2957 STRATEGY_BUILD_POWER, // Power is low, build more. 2958 STRATEGY_BUILD_DEFENSE, // Defense needs boosting. 2959 STRATEGY_BUILD_INCOME, // Income is low or in jeopardy, raise it. 2960 STRATEGY_FIRE_SALE, // Situation hopeless, sell and attack. 2961 STRATEGY_BUILD_ENGINEER, // An engineer is needed. 2962 STRATEGY_BUILD_OFFENSE, // Offensive weapons are needed. 2963 STRATEGY_RAISE_MONEY, // Money is low, emergency raise cash. 2964 STRATEGY_RAISE_POWER, // Money is low, raise power by selling. 2965 STRATEGY_LOWER_POWER, // Too much power, sell power plants. 2966 STRATEGY_ATTACK, // General charge the enemy attack logic. 2967 2968 STRATEGY_COUNT, 2969 STRATEGY_FIRST=STRATEGY_BUILD_POWER 2970 } StrategyType; 2971 2972 #endif //USE_RA_AI 2973 2974 2975 2976 #pragma warning (pop) 2977 2978 #endif