AIRCRAFT.H (10012B)
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\aircraft.h_v 2.17 16 Oct 1995 16:47:48 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 : AIRCRAFT.H * 24 * * 25 * Programmer : Joe L. Bostic * 26 * * 27 * Start Date : July 22, 1994 * 28 * * 29 * Last Update : November 28, 1994 [JLB] * 30 * * 31 *---------------------------------------------------------------------------------------------* 32 * Functions: * 33 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ 34 35 #ifndef AIRCRAFT_H 36 #define AIRCRAFT_H 37 38 #include "radio.h" 39 #include "fly.h" 40 #include "target.h" 41 42 43 class AircraftClass : public FootClass, public FlyClass 44 { 45 public: 46 /* 47 ** This is a pointer to the class control structure for the aircraft. 48 */ 49 AircraftTypeClass const * const Class; 50 51 //----------------------------------------------------------------------------- 52 void * operator new(size_t); 53 void operator delete(void *); 54 operator AircraftType(void) const {return Class->Type;}; 55 AircraftClass(void) : Class(0) {}; 56 AircraftClass(AircraftType classid, HousesType house); 57 virtual ~AircraftClass(void); 58 virtual RTTIType What_Am_I(void) const {return RTTI_AIRCRAFT;}; 59 60 static void Init(void); 61 enum {FLIGHT_LEVEL=24}; 62 63 virtual int Mission_Attack(void); 64 virtual int Mission_Unload(void); 65 virtual int Mission_Hunt(void); 66 virtual int Mission_Retreat(void); 67 virtual int Mission_Move(void); 68 virtual int Mission_Enter(void); 69 virtual int Mission_Guard(void); 70 virtual int Mission_Guard_Area(void); 71 72 /* 73 ** State machine support routines. 74 */ 75 bool Process_Take_Off(void); 76 bool Process_Landing(void); 77 int Process_Fly_To(bool slowdown); 78 79 /* 80 ** Query functions. 81 */ 82 virtual int Threat_Range(int control) const; 83 virtual int Rearm_Delay(bool second) const; 84 virtual MoveType Can_Enter_Cell(CELL cell, FacingType facing=FACING_NONE) const; 85 virtual LayerType In_Which_Layer(void) const; 86 virtual ObjectTypeClass const & Class_Of(void) const {return *Class;}; 87 virtual ActionType What_Action(ObjectClass * target) const; 88 virtual ActionType What_Action(CELL cell) const; 89 virtual DirType Desired_Load_Dir(ObjectClass * passenger, CELL & moveto) const; 90 virtual int Pip_Count(void) const; 91 TARGET Good_Fire_Location(TARGET target) const; 92 bool Cell_Seems_Ok(CELL cell, bool landing=false) const; 93 DirType Pose_Dir(void) const; 94 TARGET Good_LZ(void) const; 95 virtual DirType Fire_Direction(void) const; 96 97 /* 98 ** Landing zone support functionality. 99 */ 100 bool Is_LZ_Clear(TARGET target) const; 101 TARGET New_LZ(TARGET oldlz, bool stable = false) const; 102 103 /* 104 ** Coordinate inquiry functions. These are used for both display and 105 ** combat purposes. 106 */ 107 virtual COORDINATE Sort_Y(void) const; 108 virtual COORDINATE Fire_Coord(int which) const; 109 virtual COORDINATE Target_Coord(void) const; 110 111 /* 112 ** Object entry and exit from the game system. 113 */ 114 virtual bool Unlimbo(COORDINATE , DirType facing = DIR_N); 115 116 /* 117 ** Display and rendering support functionality. Supports imagery and how 118 ** object interacts with the map and thus indirectly controls rendering. 119 */ 120 virtual int Exit_Object(TechnoClass *); 121 virtual bool Mark(MarkType mark=MARK_CHANGE); 122 virtual short const * Overlap_List(void) const; 123 virtual void Draw_It(int x, int y, WindowNumberType window); 124 virtual void Set_Speed(int speed); 125 126 /* 127 ** User I/O. 128 */ 129 virtual void Active_Click_With(ActionType action, ObjectClass * object); 130 virtual void Active_Click_With(ActionType action, CELL cell); 131 virtual void Player_Assign_Mission(MissionType mission, TARGET target=TARGET_NONE, TARGET destination=TARGET_NONE); 132 virtual void Response_Select(void); 133 virtual void Response_Move(void); 134 virtual void Response_Attack(void); 135 136 /* 137 ** Combat related. 138 */ 139 // virtual bool Target_Something_Nearby(ThreatType threat=THREAT_NORMAL); 140 virtual ResultType Take_Damage(int & damage, int distance, WarheadType warhead, TechnoClass * source); 141 virtual BulletClass * Fire_At(TARGET target, int which); 142 virtual TARGET As_Target(void) const; 143 144 /* 145 ** AI. 146 */ 147 virtual void AI(void); 148 virtual void Enter_Idle_Mode(bool initial = false); 149 virtual RadioMessageType Receive_Message(RadioClass * from, RadioMessageType message, long & param); 150 virtual void Scatter(COORDINATE threat, bool forced=false, bool nokidding=false); 151 void Set_Reinforcement_Delay(long delay); 152 153 /* 154 ** Scenario and debug support. 155 */ 156 #ifdef CHEAT_KEYS 157 virtual void Debug_Dump(MonoClass *mono) const; 158 #endif 159 160 /* 161 ** File I/O. 162 */ 163 static void Read_INI(char *buffer); 164 static void Write_INI(char *buffer); 165 static char * INI_Name(void) {return "AIRCRAFT";}; 166 bool Load(FileClass & file); 167 bool Save(FileClass & file); 168 virtual void Code_Pointers(void); 169 virtual void Decode_Pointers(void); 170 171 /* 172 ** Dee-buggin' support. 173 */ 174 int Validate(void) const; 175 176 public: 177 178 /* 179 ** This is the facing used for the body of the aircraft. Typically, this is the same 180 ** as the PrimaryFacing, but in the case of helicopters, it can be different. 181 */ 182 FacingClass SecondaryFacing; 183 184 private: 185 186 /* 187 ** Aircraft can be in either state of landing, taking off, or in steady altitude. 188 ** These flags are used to control transition between flying and landing. It is 189 ** necessary to handle the transition in this manner so that it occurs smoothly 190 ** during the graphic processing section. 191 */ 192 unsigned IsLanding:1; 193 unsigned IsTakingOff:1; 194 195 /* 196 ** It is very common for aircraft to be homing in on a target. When this flag is 197 ** true, the aircraft will constantly adjust its facing toward the TarCom. When the 198 ** target is very close (one cell away or less), then this flag is automatically cleared. 199 ** This is because the homing algorithm is designed to get the aircraft to the destination 200 ** but no more. Checking when this flag is cleared is a way of flagging transition into 201 ** a new mode. Example: Transport helicopters go into a hovering into correct position 202 ** mode when the target is reached. 203 */ 204 unsigned IsHoming:1; 205 206 /* 207 ** Helicopters that are about to land must hover into a position exactly above the landing 208 ** zone. When this flag is true, the aircraft will be adjusted so that it is exactly over 209 ** the TarCom. The facing of the aircraft is not altered by this movement. The affect 210 ** like the helicopter is hovering and shifting sideways to position over the landing 211 ** zone. When the position is over the landing zone, then this flag is set to false. 212 */ 213 unsigned IsHovering:1; 214 215 /* 216 ** This is the jitter tracker to be used when the aircraft is a helicopter and 217 ** is flying. It is most noticable when the helicopter is hovering. 218 */ 219 unsigned char Jitter; 220 221 public: 222 /* 223 ** This is the altitude of the aircraft. It is expressed in pixels that 224 ** the shadow is offset to the south. If the altitude reaches zero, then 225 ** the aircraft has landed. The altitude for normal aircraft is at 226 ** Flight_Level(). 227 */ 228 int Altitude; 229 230 private: 231 232 /* 233 ** This timer controls when the aircraft will reveal the terrain around itself. 234 ** When this timer expires and this aircraft has a sight range, then the 235 ** look around process will occur. 236 */ 237 TCountDownTimerClass SightTimer; 238 239 /* 240 ** Most attack aircraft can make several attack runs. This value contains the 241 ** number of attack runs the aircraft has left. When this value reaches 242 ** zero then the aircraft is technically out of ammo. 243 */ 244 char AttacksRemaining; 245 246 /* 247 ** Cargo planes will wait a certain number of ticks before flying in. 248 */ 249 long ReinforcementStart; 250 251 /* 252 ** Some additional padding in case we need to add data to the class and maintain backwards compatibility for save/load 253 */ 254 unsigned char SaveLoadPadding[28]; 255 256 /* 257 ** This contains the value of the Virtual Function Table Pointer 258 */ 259 static void * VTable; 260 }; 261 262 #endif