CELL.H (11146B)
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\cell.h_v 2.20 16 Oct 1995 16:45:36 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 : CELL.H * 24 * * 25 * Programmer : Joe L. Bostic * 26 * * 27 * Start Date : April 29, 1994 * 28 * * 29 * Last Update : April 29, 1994 [JLB] * 30 * * 31 *---------------------------------------------------------------------------------------------* 32 * Functions: * 33 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ 34 35 #ifndef CELL_H 36 #define CELL_H 37 38 #include "building.h" 39 #include "unit.h" 40 #include "template.h" 41 42 43 /**************************************************************************** 44 ** Each cell on the map is controlled by the following structure. 45 */ 46 class CellClass 47 { 48 public: 49 /* 50 ** Does this cell need to be updated on the radar map? If something changes in the cell 51 ** that might change the radar map imagery, then this flag will be set. It gets cleared 52 ** when the cell graphic is updated to the radar map. 53 */ 54 unsigned IsPlot:1; 55 56 /* 57 ** Does this cell contain the special placement cursor graphic? This graphic is 58 ** present when selecting a site for building placement. 59 */ 60 unsigned IsCursorHere:1; 61 62 /* 63 ** Is this cell mapped by the player? A mapped cell is visible. An unmapped cell 64 ** is covered in a dark shroud. In addition to visibility, mapped cells are the only 65 ** legal place for transports to land. 66 */ 67 unsigned IsMapped:1; 68 69 /* 70 ** If any part of this cell is visible (even just peeking out from under the shadow), 71 ** this this flag will be true. Mapped cells always have this flag set, but unmapped 72 ** cells might not -- it depends on where the shadow edge is located. 73 */ 74 unsigned IsVisible:1; 75 76 /* 77 ** Every cell can be assigned a trigger. The same trigger can be assigned to 78 ** multiple cells. This bitflag indicates whether this cell has a trigger. 79 ** The trigger pointers for all cells must be stored elsewhere. 80 */ 81 unsigned IsTrigger:1; 82 83 /* 84 ** Every cell can be assigned a waypoint. A waypoint can only be assigned 85 ** to one cell, and vice-versa. This bit simply indicates whether this 86 ** cell is assigned a waypoint or not. 87 */ 88 unsigned IsWaypoint:1; 89 90 /* 91 ** Is this cell currently under the radar map cursor? If so then it 92 ** needs to be updated whenever the map is updated. 93 */ 94 unsigned IsRadarCursor:1; 95 96 /* 97 ** If this cell contains a house flag, then this will be true. The actual house 98 ** flag it contains is specified by the Owner field. 99 */ 100 unsigned IsFlagged:1; 101 102 /* 103 ** This contains the icon number and set to use for the base 104 ** of the terrain. All rendering on an icon occurs AFTER the icon 105 ** specified by this element is rendered. It is the lowest of the low. 106 */ 107 TemplateType TType; 108 unsigned char TIcon; 109 110 /* 111 ** The second layer of 'terrain' icons is represented by a simple 112 ** type number and a value byte. This is sufficient for handling 113 ** concrete and walls. 114 */ 115 OverlayType Overlay; 116 unsigned char OverlayData; 117 118 /* 119 ** This is used to specify any special 'stain' overlay icon. This 120 ** typically includes infantry bodies or other temporary marks. 121 */ 122 SmudgeType Smudge; 123 unsigned char SmudgeData; 124 125 /* 126 ** Smudges and walls need to record ownership values. For walls, this 127 ** allows adjacent building placement logic to work. For smudges, it 128 ** allows building over smudges that are no longer attached to buildings 129 ** in addition to fixing the adjacent placement logic. 130 */ 131 HousesType Owner; 132 133 /* 134 ** This flag tells you what type of infantry currently occupy the 135 ** cell or are moving into it. 136 */ 137 HousesType InfType; 138 139 /* 140 ** These point to the object(s) that are located in this cell or overlap 141 ** this cell. 142 */ 143 ObjectClass *OccupierPtr; 144 ObjectClass *Overlapper[3]; 145 146 147 /* 148 ** Per-player view of whether a cell is mapped. One bit for each house type. ST - 3/5/2019 3:00PM 149 */ 150 unsigned int IsMappedByPlayerMask; 151 152 /* 153 ** Per-player view of whether a cell is visible. One bit for each house type. ST - 3/5/2019 3:00PM 154 */ 155 unsigned int IsVisibleByPlayerMask; 156 157 158 /* 159 ** This array of bit flags is used to indicate which sub positions 160 ** within the cell are either occupied or are soon going to be 161 ** occupied. For vehicles, the cells that the vehicle is passing over 162 ** will be flagged with the vehicle bit. For infantry, the the sub 163 ** position the infantry is stopped at or headed toward will be marked. 164 ** The sub positions it passes over will NOT be marked. 165 */ 166 union { 167 struct { 168 unsigned Center:1; 169 unsigned NW:1; 170 unsigned NE:1; 171 unsigned SW:1; 172 unsigned SE:1; 173 unsigned Vehicle:1; // Reserved for vehicle occupation. 174 unsigned Monolith:1; // Some immovable blockage is in cell. 175 unsigned Building:1; // A building of some time (usually blocks movement). 176 } Occupy; 177 unsigned char Composite; 178 } Flag; 179 180 //---------------------------------------------------------------- 181 CellClass(void); 182 ~CellClass(void) {}; 183 184 int operator == (CellClass const & cell) const {return &cell == this;}; 185 186 /* 187 ** Query functions. 188 */ 189 ObjectClass * Cell_Occupier(void) const; 190 static int Spot_Index(COORDINATE coord); 191 bool Is_Spot_Free(int spot_index) const {return (! (Flag.Composite & (1 << spot_index)) ); } 192 COORDINATE Closest_Free_Spot(COORDINATE coord, bool any=false) const; 193 COORDINATE Free_Spot(void) const {return Closest_Free_Spot(Cell_Coord());}; 194 bool Is_Generally_Clear(bool ignore_cloaked = false) const; 195 TARGET As_Target(void) const {return ::As_Target(Cell_Number());}; 196 BuildingClass * Cell_Building(void) const; 197 CellClass const * Adjacent_Cell(FacingType face) const; 198 CellClass * Adjacent_Cell(FacingType face) {return (CellClass *)((*((CellClass const *)this)).Adjacent_Cell(face));}; 199 COORDINATE Cell_Coord(void) const; 200 int Cell_Color(bool override=false) const; 201 CELL Cell_Number(void) const; 202 LandType Land_Type(void) const {return((OverrideLand != LAND_COUNT) ? OverrideLand : Land);}; 203 ObjectClass * Cell_Find_Object(RTTIType rtti) const; 204 ObjectClass * Cell_Object(int x=0, int y=0) const; 205 TechnoClass * Cell_Techno(int x=0, int y=0) const; 206 TerrainClass * Cell_Terrain(void) const; 207 UnitClass * Cell_Unit(void) const; 208 InfantryClass * Cell_Infantry(void) const; 209 TriggerClass * Get_Trigger(void) const; 210 int Clear_Icon(void) const; 211 bool Goodie_Check(FootClass * object, bool check_steel = false); 212 ObjectClass * Fetch_Occupier(void) const; 213 bool Get_Template_Info(char *template_name, int &icon, void *&image_data); 214 215 /* 216 ** Object placement and removal flag operations. 217 */ 218 void Occupy_Down(ObjectClass * object); 219 void Occupy_Up(ObjectClass * object); 220 void Overlap_Down(ObjectClass * object); 221 void Overlap_Up(ObjectClass * object); 222 bool Flag_Place(HousesType house); 223 bool Flag_Remove(void); 224 void Flag_Update(void); 225 void Flag_Create(void); 226 void Flag_Destroy(void); 227 228 /* 229 ** File I/O. 230 */ 231 bool Should_Save(void) const; 232 bool Save(FileClass & file); 233 bool Load(FileClass & file); 234 void Code_Pointers(void); 235 void Decode_Pointers(void); 236 237 /* 238 ** Display and rendering controls. 239 */ 240 void Draw_It(int x, int y, int draw_flags = 0) const; 241 void Redraw_Objects(bool forced=false); 242 void Shimmer(void); 243 244 /* 245 ** Maintenance calculation support. 246 */ 247 long Tiberium_Adjust(bool pregame=false); 248 void Wall_Update(void); 249 void Concrete_Calc(void); 250 void Recalc_Attributes(void); 251 int Reduce_Tiberium(int levels); 252 int Reduce_Wall(int damage); 253 void Incoming(COORDINATE threat=0, bool forced = false, bool nokidding = false); 254 void Adjust_Threat(HousesType house, int threat_value); 255 256 int operator != (CellClass const &) const {return 0;}; 257 258 int Validate(void) const; 259 260 261 /* 262 ** Additional per-player functionality is needed for multiplayer. ST - 3/5/2019 3:03PM 263 */ 264 void Set_Mapped(HousesType house, bool set = true); 265 void Set_Mapped(HouseClass *player, bool set = true); 266 bool Is_Mapped(HousesType house) const; 267 bool Is_Mapped(HouseClass *player) const; 268 void Set_Visible(HousesType house, bool set = true); 269 void Set_Visible(HouseClass *player, bool set = true); 270 bool Is_Visible(HousesType house) const; 271 bool Is_Visible(HouseClass *player) const; 272 273 /* 274 ** Override land type to fix passability issues on some maps 275 */ 276 void Override_Land_Type(LandType type); 277 278 #ifdef USE_RA_AI 279 /* 280 ** Imported from RA for AI. ST - 7/24/2019 5:36PM 281 */ 282 bool Is_Clear_To_Move(bool ignoreinfantry, bool ignorevehicles) const; 283 #endif 284 285 private: 286 CellClass (CellClass const &) {}; 287 288 LandType Land; // The land type of this cell. 289 290 LandType OverrideLand; // The overriden land type of this cell. 291 292 /* 293 ** Points to the flag animation on this cell in CTF games. 294 */ 295 AnimClass* CTFFlag; 296 297 /* 298 ** Some additional padding in case we need to add data to the class and maintain backwards compatibility for save/load 299 */ 300 unsigned char SaveLoadPadding[28]; 301 }; 302 303 #endif