CnC_Remastered_Collection

Command and Conquer: Red Alert
Log | Files | Refs | README | LICENSE

FUNCTION.H (38085B)


      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\function.h_v   2.21   16 Oct 1995 16:46:44   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 : FUNCTION.H                                                   *
     24  *                                                                                             *
     25  *                   Programmer : Joe L. Bostic                                                *
     26  *                                                                                             *
     27  *                   Start Date : May 27, 1994                                                 *
     28  *                                                                                             *
     29  *                  Last Update : May 27, 1994   [JLB]                                         *
     30  *                                                                                             *
     31  *---------------------------------------------------------------------------------------------*
     32  * Functions:                                                                                  *
     33  * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
     34 
     35 #ifndef FUNCTION_H
     36 #define FUNCTION_H
     37 
     38 #ifdef NEVER
     39 Map (screen) class heirarchy.
     40 
     41  MapeditClass (most derived class) -- scenario editor
     42     43    MouseClass -- handles mouse animation and display control
     44     45   ScrollClass -- map scroll handler
     46     47     HelpClass -- pop-up help text handler
     48     49      TabClass -- file folder tab screen mode control dispatcher
     50     51  SidebarClass -- displays and controls construction list sidebar
     52     53    PowerClass -- display power production/consumption bargraph
     54     55    RadarClass -- displays and controls radar map
     56     57  DisplayClass -- general tactical map display handler
     58     59      MapClass -- general tactical map data handler
     60     61  GScreenClass (pure virtual base class) -- generic screen control
     62 
     63                           AbstractClass
     64     65     66     67     68                             ObjectClass
     69     70        ����������������������������������������������������������������Ŀ
     71    AnimClass  �  TemplateClass    �        �� FuseClass     �    TerrainClass
     72               �                   �        �� FlyClass      �
     73               �                   �  BulletClass            �
     74        OverlayClass        MissionClass               SmudgeClass
     75     76                              RadioClass
     77     78                                   �� CrewClass
     79                                   �� FlasherClass
     80                                   �� StageClass
     81                                   �� CargoClass
     82                             TechnoClass
     83     84          �����������������������������������������������������Ŀ
     85      FootClass                                         BuildingClass
     86     87          ����������������������������Ŀ
     88     DriveClass  InfantryClass         �� FlyClass
     89          �                      AircraftClass
     90    TurretClass
     91     92    TarComClass
     93     94      UnitClass
     95 
     96 
     97                             AbstractTypeClass
     98     99                               ObjectTypeClass
    100    101              �����������������������������������������������������Ŀ
    102              �                      �            �                 �
    103        TechnoTypeClass              �            �                 �
    104              �                BulletTypeClass    �                 �
    105              �                           TemplateTypeClass         �
    106     �����������������������������������������Ŀ             TerrainTypeClass
    107     �              �           �              �
    108 UnitTypeClass      �   BuildingTypeClass      �
    109                    �                  InfantryTypeClass
    110            AircraftTypeClass
    111 #endif
    112 
    113 /*
    114 **	The "bool" integral type was defined by the C++ comittee in
    115 **	November of '94. Until the compiler supports this, use the following
    116 **	definition.
    117 */
    118 #if (0)
    119 #ifndef TRUE_FALSE_DEFINED
    120 enum {false=0,true=1};
    121 typedef int bool;
    122 #define TRUE_FALSE_DEFINED
    123 #endif	//TRUE_FALSE_DEFINED
    124 #endif
    125 
    126 //#define _WIN32
    127 //#define WIN32 =1	//_LEAN_AND_MEAN
    128 #include <windows.h>
    129 
    130 
    131 /**********************************************************************
    132 **	If the following define is enabled, then the memory checking code
    133 **	will be disabled.
    134 */
    135 #define NOMEMCHECK
    136 
    137 #include	"watcom.h"
    138 #define FILE_H
    139 #define WWMEM_H
    140 #include "compat.h"
    141 #include	"rawfile.h"
    142 #include "wwlib32.h"
    143 #include	"jshell.h"
    144 
    145 
    146 
    147 // Should be part of WWLIB.H. This is used in JSHELL.CPP.
    148 typedef struct {
    149 	unsigned char	SourceColor;
    150 	unsigned char	DestColor;
    151 	unsigned char	Fading;
    152 	unsigned char	reserved;
    153 } TLucentType;
    154 
    155 
    156 // Don't complain if these headers aren't referenced.
    157 #include	<string.h>
    158 #include	<stdlib.h>
    159 #include	<stdio.h>
    160 #include	<stddef.h>
    161 //#include	<mem.h>
    162 //#include	<dos.h>
    163 #include	<direct.h>
    164 #include	<stdarg.h>
    165 #include	<ctype.h>
    166 #include	<assert.h>
    167 #include	<process.h>
    168 //#include	<new.h>
    169 
    170 /*
    171 **	VQ player specific includes.
    172 */
    173 //#include <vqa32\vqaplay.h>
    174 //#include <vqa32\vqafile.h>
    175 
    176 extern bool GameActive;
    177 extern long LParam;
    178 
    179 #include	"vector.h"
    180 #include	"heap.h"
    181 #include	"ccfile.h"
    182 #include	"monoc.h"
    183 #include	"conquer.h"
    184 //#include	"debug.h"
    185 #include "special.h"
    186 #include	"defines.h"
    187 
    188 
    189 /*
    190 **	Greenleaf specific includes.
    191 */
    192 //#include <modem.h>
    193 //#include <fast.h>
    194 
    195 
    196 extern long Frame;
    197 inline CELL Coord_XCell(COORDINATE coord) {return (CELL)(*(((unsigned char*)&coord)+1));}
    198 inline CELL Coord_YCell(COORDINATE coord) {return (CELL)(*(((unsigned char*)&coord)+3));}
    199 //inline CELL Coord_Cell(COORD coord){return (CELL)(((*(((unsigned short *)&coord)+1) & 0xFF00) >> 2) | *(((unsigned char *)&coord)+1));}
    200 #if (0)
    201 __cdecl CELL Coord_Cell(COORDINATE coord);
    202 #pragma aux Coord_Cell parm [eax] \
    203 	modify [ebx] \
    204 	value [ax]		= 				\
    205 	"mov	ebx,eax"					\
    206 	"shr	eax,010h"				\
    207 	"xor	al,al"					\
    208 	"shr	eax,2"					\
    209 	"or	al,bh"
    210 #endif
    211 CELL __cdecl Coord_Cell(COORDINATE coord);
    212 
    213 #include	"rules.h"
    214 #include  "utracker.h"
    215 #include	"facing.h"
    216 #include	"ftimer.h"
    217 #include	"theme.h"
    218 #include	"link.h"
    219 #include	"gadget.h"
    220 #include	"control.h"
    221 #include	"toggle.h"
    222 #include	"checkbox.h"
    223 #include	"shapebtn.h"
    224 #include	"textbtn.h"
    225 #include	"slider.h"
    226 #include "list.h"
    227 #include "cheklist.h"
    228 #include "colrlist.h"
    229 #include	"edit.h"
    230 #include	"gauge.h"
    231 #include	"msgbox.h"
    232 #include	"dial8.h"
    233 #include	"txtlabel.h"
    234 #include	"super.h"
    235 #include	"house.h"
    236 #include	"gscreen.h"
    237 #include	"map.h"
    238 #include	"display.h"
    239 #include	"radar.h"
    240 #include	"power.h"
    241 #include	"sidebar.h"
    242 #include	"tab.h"
    243 #include	"help.h"
    244 #include	"mouse.h"
    245 //#include	"mapedit.h"
    246 #include	"help.h"
    247 #include	"target.h"
    248 #include	"theme.h"
    249 #include	"team.h"				// Team objects.
    250 #include	"teamtype.h"		// Team type objects.
    251 #include	"trigger.h"			// Trigger event objects.
    252 #include	"mapedit.h"			// ???
    253 #include	"abstract.h"
    254 #include "object.h"
    255 #include "mission.h"
    256 #include	"door.h"
    257 #include	"bullet.h"			// Bullet objects.
    258 #include	"terrain.h"			// Terrain objects.
    259 #include	"anim.h"				// Animation objects.
    260 #include	"template.h"		// Icon template objects.
    261 #include	"overlay.h"			// Overlay objects.
    262 #include	"smudge.h"			// Stains on the terrain objects.
    263 #include	"aircraft.h"		// Aircraft objects.
    264 #include	"unit.h"				// Ground unit objects.
    265 #include	"infantry.h"		// Infantry objects.
    266 #include	"credits.h"			// Credit counter class.
    267 #include	"score.h"			// Scoring system class.
    268 #include	"factory.h"			// Production manager class.
    269 #include "intro.h"
    270 #include "ending.h"
    271 #include	"logic.h"
    272 #include	"queue.h"
    273 #include	"event.h"
    274 #include "base.h"				// defines the AI's pre-built base
    275 #include "ipxmgr.h"
    276 #include	"combuf.h"
    277 #include	"connect.h"
    278 #include	"connmgr.h"
    279 #include	"noseqcon.h"
    280 #include "msglist.h"
    281 //#include	"nullconn.h"
    282 //#include	"nullmgr.h"
    283 //#include "phone.h"
    284 #include "loaddlg.h"
    285 #include	"ipxaddr.h"
    286 #include "FACINGFF.h"
    287 /****************************************************************************
    288 **	This is a "node", used for the lists of available games & players.  The
    289 **	'Game' structure is used for games; the 'Player' structure for players.
    290 */
    291 typedef struct NodeNameTag {
    292 	char Name[MPLAYER_NAME_MAX];
    293 	IPXAddressClass Address;
    294 	union {
    295 		struct {
    296 			int Version;
    297 			unsigned char IsOpen;
    298 			unsigned long LastTime;
    299 		} Game;
    300 		struct {
    301 			HousesType House;
    302 			unsigned char Color;
    303 		} Player;
    304 	};
    305 } NodeNameType;
    306 
    307 
    308 #include	"externs.h"
    309 
    310 
    311 extern int Get_CD_Drive(void);
    312 extern void Fatal(char const *message, ...);
    313 
    314 
    315 /*
    316 **	ANIM.CPP
    317 */
    318 void Shorten_Attached_Anims(ObjectClass * obj);
    319 
    320 /*
    321 **	AUDIO.CPP
    322 */
    323 int Sound_Effect(VocType voc, VolType volume, int variation=1, signed short panvalue=0);
    324 // void Speak(VoxType voice); // MBL 02.06.2020
    325 void Speak(VoxType voice, HouseClass *house=NULL, COORDINATE coord=0);
    326 void Speak_AI(void);
    327 void Stop_Speaking(void);
    328 void Sound_Effect(VocType voc, COORDINATE coord=NULL, int variation=1);
    329 bool Is_Speaking(void);
    330 
    331 /*
    332 **	COMBAT.CPP
    333 */
    334 int Modify_Damage(int damage, WarheadType warhead, ArmorType armor, int distance);
    335 void Explosion_Damage(COORDINATE coord, unsigned strength, TechnoClass * source, WarheadType warhead);
    336 
    337 /*
    338 **	CONQUER.CPP
    339 */
    340 void Center_About_Objects(void);
    341 bool Force_CD_Available(int cd);
    342 void Handle_View(int view, int action=0);
    343 void Handle_Team(int team, int action=0);
    344 TechnoTypeClass const * Fetch_Techno_Type(RTTIType type, int id);
    345 char const * Fading_Table_Name(char const * base, TheaterType theater);
    346 void Unselect_All(void);
    347 void Unselect_All_Except(ObjectClass* object);
    348 void Play_Movie(char const * name, ThemeType theme=THEME_NONE, bool clrscrn=true);
    349 bool Main_Loop();
    350 TheaterType Theater_From_Name(char const *name);
    351 //DirType Rotation_Calc(DirType current, DirType desired, int rate);
    352 void Main_Game(int argc, char *argv[]);
    353 long VQ_Call_Back(unsigned char * buffer=NULL, long frame=0);
    354 void Call_Back(void);
    355 char const *Language_Name(char const *basename);
    356 SourceType Source_From_Name(char const *name);
    357 char const *Name_From_Source(SourceType source);
    358 FacingType KN_To_Facing(int input);
    359 void const *Get_Radar_Icon(void const *shapefile, int shapenum, int frames, int zoomfactor);
    360 void CC_Draw_Shape(void const * shapefile, int shapenum, int x, int y, WindowNumberType window, ShapeFlags_Type flags, void const * fadingdata=0, void const * ghostdata=0);
    361 
    362 // Added for draw intercept. ST - 1/17/2019 12:31PM
    363 void CC_Draw_Shape(ObjectClass *object, void const * shapefile, int shapenum, int x, int y, WindowNumberType window, ShapeFlags_Type flags, void const * fadingdata=0, void const * ghostdata=0, int scale=0x100, int width=0, int height=0);
    364 void CC_Draw_Shape(ObjectClass *object, const char *shape_file_name, void const * shapefile, int shapenum, int x, int y, WindowNumberType window, ShapeFlags_Type flags, void const * fadingdata = 0, void const * ghostdata = 0, char override_owner = HOUSE_NONE);
    365 
    366 // Added for pip draw intercept - SKY
    367 void CC_Draw_Pip(ObjectClass *object, void const * shapefile, int shapenum, int x, int y, WindowNumberType window, ShapeFlags_Type flags, void const * fadingdata=0, void const * ghostdata=0);
    368 
    369 // Added for line draw intercept (ex. Obelisk laser) - SKY
    370 void CC_Draw_Line(int x, int y, int x1, int y1, unsigned char color, int frame, WindowNumberType window);
    371 
    372 void Go_Editor(bool flag);
    373 //long MixFileHandler(VQAHandle *vqa, long action, void *buffer, long nbytes);
    374 
    375 char *CC_Get_Shape_Filename(void const *shapeptr );
    376 void CC_Add_Shape_To_Global(void const *shapeptr, char *filename, char code );
    377 
    378 void Bubba_Print(char *format,...);
    379 
    380 void Heap_Dump_Check( char *string );
    381 void Dump_Heap_Pointers( void );
    382 unsigned long Disk_Space_Available(void);
    383 
    384 void Validate_Error(char *name);
    385 void const * Hires_Retrieve(char *name);
    386 int Get_Resolution_Factor(void);
    387 
    388 void Shake_The_Screen(int shakes, HousesType house = HOUSE_NONE);
    389 
    390 
    391 /*
    392 ** INTERPAL.CPP
    393 */
    394 #define SIZE_OF_PALETTE 256
    395 extern	"C" unsigned char *InterpolationPalette;
    396 extern	BOOL	InterpolationPaletteChanged;
    397 extern	void 	Interpolate_2X_Scale( GraphicBufferClass *source, GraphicViewPortClass *dest ,char const *palette_file_name);
    398 void Read_Interpolation_Palette (char const *palette_file_name);
    399 void Write_Interpolation_Palette (char const *palette_file_name);
    400 void Increase_Palette_Luminance(unsigned char *InterpolationPalette ,	int RedPercentage ,int GreenPercentage ,int BluePercentage ,int cap);
    401 extern "C"{
    402 	extern unsigned char PaletteInterpolationTable[SIZE_OF_PALETTE][SIZE_OF_PALETTE];
    403 	extern unsigned char *InterpolationPalette;
    404 	void __cdecl Asm_Create_Palette_Interpolation_Table(void);
    405 }
    406 
    407 
    408 /*
    409 **	COORD.CPP
    410 */
    411 void  Move_Point(short &x, short &y, register DirType dir, unsigned short distance);
    412 COORDINATE  Adjacent_Cell(COORDINATE coord, FacingType dir);
    413 COORDINATE  Coord_Move(COORDINATE start, DirType facing, unsigned short distance);
    414 COORDINATE  Coord_Scatter(COORDINATE coord, unsigned distance, bool lock=false);
    415 DirType  Direction(CELL cell1, CELL cell2);
    416 DirType  Direction(COORDINATE coord1, COORDINATE coord2);
    417 DirType  Direction256(COORDINATE coord1, COORDINATE coord2);
    418 DirType  Direction8(COORDINATE coord1, COORDINATE coord2);
    419 int  Distance(CELL coord1, CELL coord2);
    420 int  Distance(COORDINATE coord1, COORDINATE coord2);
    421 short const *  Coord_Spillage_List(COORDINATE coord, int maxsize);
    422 //void Move_Point(unsigned short &x, unsigned short &y, DirType dir, unsigned short distance);
    423 
    424 /*
    425 **	COORDA.CPP
    426 */
    427 //extern "C" {
    428 //unsigned Cardinal_To_Fixed(unsigned base, unsigned cardinal);
    429 //unsigned Fixed_To_Cardinal(unsigned base, unsigned fixed);
    430 //}
    431 
    432 /*
    433 **	DEBUG.CPP
    434 */
    435 void Log_Event(char const *text, ...);
    436 void Debug_Key(unsigned input);
    437 void Self_Regulate(void);
    438 
    439 /*
    440 **	DIALOG.CPP
    441 */
    442 int Format_Window_String(char * string, int maxlinelen, int & width, int & height);
    443 extern void Dialog_Box(int x, int y, int w, int h);
    444 void Conquer_Clip_Text_Print(char const *, unsigned x, unsigned y, unsigned fore, unsigned back=(unsigned)TBLACK, TextPrintType flag=TPF_8POINT|TPF_DROPSHADOW, unsigned width=-1, int const * tabs=0);
    445 void Draw_Box(int x, int y, int w, int h, BoxStyleEnum up, bool filled);
    446 int __cdecl Dialog_Message(char *errormsg, ...);
    447 void Window_Box(WindowNumberType window, BoxStyleEnum style);
    448 void Fancy_Text_Print(char const *text, unsigned x, unsigned y, unsigned fore, unsigned back, TextPrintType flag, ...);
    449 void Fancy_Text_Print(int text, unsigned x, unsigned y, unsigned fore, unsigned back, TextPrintType flag, ...);
    450 void Simple_Text_Print(char const *text, unsigned x, unsigned y, unsigned fore, unsigned back, TextPrintType flag);
    451 
    452 /*
    453 **	DISPLAY.CPP
    454 */
    455 ObjectClass* Best_Object_With_Action(DynamicVectorClass<ObjectClass*>& objects, ObjectClass* object);
    456 ObjectClass* Best_Object_With_Action(DynamicVectorClass<ObjectClass*>& objects, CELL cell);
    457 
    458 ActionType Best_Object_Action(DynamicVectorClass<ObjectClass*>& objects, ObjectClass* object);
    459 ActionType Best_Object_Action(DynamicVectorClass<ObjectClass*>& objects, CELL cell);
    460 
    461 ObjectClass* Best_Object_With_Action(ObjectClass* object);
    462 ObjectClass* Best_Object_With_Action(CELL cell);
    463 
    464 ActionType Best_Object_Action(ObjectClass* object);
    465 ActionType Best_Object_Action(CELL cell);
    466 
    467 /*
    468 **	ENDING.CPP
    469 */
    470 void GDI_Ending(void);
    471 void Nod_Ending(void);
    472 
    473 /*
    474 **	EXPAND.CPP
    475 */
    476 bool Expansion_Present(void);
    477 bool Expansion_Dialog(void);
    478 bool Bonus_Dialog(void);
    479 
    480 /*
    481 **	FINDPATH.CPP
    482 */
    483 //PathType * Find_Path(CELL source, CELL dest, FacingType *final_moves, int maxlen, int (*callback)(CELL, FacingType), int threshhold);
    484 int Optimize_Moves(PathType *path, int (*callback)(CELL, FacingType), int threshhold);
    485 
    486 /*
    487 **	GOPTIONS.CPP
    488 */
    489 void Draw_Caption(int text, int x, int y, int w);
    490 
    491 /*
    492 **	INI.CPP
    493 */
    494 void Set_Scenario_Name(char *buf, int scenario, ScenarioPlayerType player, ScenarioDirType dir = SCEN_DIR_NONE, ScenarioVarType var = SCEN_VAR_NONE);
    495 void Write_Scenario_Ini(char *root);
    496 bool Read_Scenario_Ini(char *root, bool fresh=true);
    497 bool Read_Scenario_Ini_File(char *scenario_file_name, char* bin_file_name, const char* root, bool fresh);
    498 int Scan_Place_Object(ObjectClass *obj, CELL cell);
    499 
    500 /*
    501 **	INIT.CPP
    502 */
    503 void Uninit_Game(void);
    504 long Obfuscate(char const * string);
    505 void Anim_Init(void);
    506 bool Init_Game(int argc, char *argv[]);
    507 bool Select_Game(bool fade = false);
    508 bool Parse_Command_Line(int argc, char *argv[]);
    509 void Parse_INI_File(void);
    510 int Version_Number(void);
    511 void Save_Recording_Values(void);
    512 void Load_Recording_Values(void);
    513 
    514 /*
    515 ** JSHELL.CPP
    516 */
    517 void * Small_Icon(void const * iconptr, int iconnum);
    518 void Set_Window(int window, int x, int y, int w, int h);
    519 void * Load_Alloc_Data(FileClass &file);
    520 long Load_Uncompress(FileClass &file, BuffType &uncomp_buff, BuffType &dest_buff, void *reserved_data);
    521 long Translucent_Table_Size(int count);
    522 void *Build_Translucent_Table(void const *palette, TLucentType const *control, int count, void *buffer);
    523 void *Conquer_Build_Translucent_Table(void const *palette, TLucentType const *control, int count, void *buffer);
    524 
    525 /*
    526 **	KEYFBUFF.ASM
    527 */
    528 #ifdef __cplusplus
    529 extern "C" {
    530 #endif
    531 long __cdecl Buffer_Frame_To_Page(int x, int y, int w, int h, void *Buffer, GraphicViewPortClass &view, int flags, ...);
    532 #ifdef __cplusplus
    533 }
    534 #endif
    535 
    536 /*
    537 **	KEYFRAME.CPP
    538 */
    539 int Get_Last_Frame_Length(void);
    540 unsigned long Build_Frame(void const *dataptr, unsigned short framenumber, void *buffptr);
    541 unsigned short Get_Build_Frame_Count(void const *dataptr);
    542 unsigned short Get_Build_Frame_X(void const *dataptr);
    543 unsigned short Get_Build_Frame_Y(void const *dataptr);
    544 unsigned short Get_Build_Frame_Width(void const *dataptr);
    545 unsigned short Get_Build_Frame_Height(void const *dataptr);
    546 bool Get_Build_Frame_Palette(void const *dataptr, void *palette);
    547 
    548 /*
    549 **	MAP.CPP
    550 */
    551 int Terrain_Cost(CELL cell, FacingType facing);
    552 int Coord_Spillage_Number(COORDINATE coord, int maxsize);
    553 
    554 /*
    555 **	MENUS.CPP
    556 */
    557 void Setup_Menu(int menu, char const *text[], unsigned long field, int index, int skip);
    558 int Check_Menu(int menu, char const *text[], char *selection, long field, int index);
    559 int Do_Menu(char const **strings, bool blue);
    560 extern int UnknownKey;
    561 int Main_Menu(unsigned long timeout);
    562 
    563 /*
    564 ** MPLAYER.CPP
    565 */
    566 GameType Select_MPlayer_Game (void);
    567 void Read_MultiPlayer_Settings (void);
    568 void Write_MultiPlayer_Settings (void);
    569 void Read_Scenario_Descriptions (void);
    570 void Free_Scenario_Descriptions(void);
    571 void Computer_Message(void);
    572 int Surrender_Dialog(void);
    573 
    574 /*
    575 ** NETDLG.CPP
    576 */
    577 bool Init_Network (void);
    578 void Shutdown_Network (void);
    579 bool Remote_Connect (void);
    580 void Destroy_Connection(int id, int error);
    581 bool Process_Global_Packet(GlobalPacketType *packet, IPXAddressClass *address);
    582 unsigned long Compute_Name_CRC(char *name);
    583 void Net_Reconnect_Dialog(int reconn, int fresh, int oldest_index, unsigned long timeval);
    584 
    585 /*
    586 ** NULLDLG.CPP
    587 */
    588 int Init_Null_Modem( SerialSettingsType *settings );
    589 void Shutdown_Modem( void );
    590 void Modem_Signoff( void );
    591 int Test_Null_Modem( void );
    592 int Reconnect_Modem( void );
    593 void Destroy_Null_Connection(int id, int error);
    594 GameType Select_Serial_Dialog( void );
    595 int Com_Scenario_Dialog(void);
    596 int Com_Show_Scenario_Dialog(void);
    597 
    598 void Smart_Printf( char *format, ... );
    599 void Hex_Dump_Data( char *buffer, int length );
    600 void itoh( int i, char *s);
    601 
    602 /*
    603 **	PROFILE.CPP
    604 */
    605 int WWGetPrivateProfileInt(char const *section, char const *entry, int def, char *profile);
    606 bool WWWritePrivateProfileInt(char const *section, char const *entry, int value, char *profile);
    607 bool WWWritePrivateProfileString(char const *section, char const *entry, char const *string, char *profile);
    608 char * WWGetPrivateProfileString(char const *section, char const *entry, char const *def, char *retbuffer, int retlen, char *profile);
    609 unsigned WWGetPrivateProfileHex (char const *section, char const *entry, char *profile);
    610 
    611 /*
    612 ** QUEUE.CPP
    613 */
    614 bool Queue_Target(TARGET whom, TARGET target);
    615 bool Queue_Destination(TARGET whom, TARGET target);
    616 bool Queue_Mission(TARGET whom, MissionType mission);
    617 bool Queue_Mission(TARGET whom, MissionType mission, TARGET target, TARGET destination);
    618 bool Queue_Options(void);
    619 bool Queue_Exit(void);
    620 void Queue_AI(void);
    621 void Add_CRC(unsigned long *crc, unsigned long val);
    622 
    623 /*
    624 **	RAND.CPP
    625 */
    626 int Sim_IRandom(int minval, int maxval);
    627 int Sim_Random(void);
    628 
    629 /*
    630 **	REINF.CPP
    631 */
    632 bool Do_Reinforcements(TeamTypeClass *team);
    633 bool Create_Special_Reinforcement(HouseClass * house, TechnoTypeClass const * type, TechnoTypeClass const * another, TeamMissionType mission = TMISSION_NONE, int argument =0);
    634 int Create_Air_Reinforcement(HouseClass *house, AircraftType air, int number, MissionType mission, TARGET tarcom, TARGET navcom);
    635 
    636 /*
    637 **	SAVELOAD.CPP
    638 */
    639 bool Load_Misc_Values(FileClass &file);
    640 bool Save_Misc_Values(FileClass &file);
    641 bool Get_Savefile_Info(int id, char *buf, unsigned *scenp, HousesType *housep);
    642 bool Load_Game(int id);
    643 bool Load_Game(const char *file_name);
    644 //bool Read_Object (void *ptr, int base_size, int class_size, FileClass & file, void * vtable);  // Original Read_Object prototype. ST - 9/17/2019 12:50PM		
    645 bool Read_Object(void *ptr, int class_size, FileClass & file, bool has_vtable);
    646 bool Save_Game(int id,char *descr);
    647 bool Save_Game(const char *file_name, const char *descr);
    648 bool Write_Object (void *ptr, int class_size, FileClass & file);
    649 TARGET TechnoType_To_Target(TechnoTypeClass const * ptr);
    650 TechnoTypeClass const * Target_To_TechnoType(TARGET target);
    651 void * Get_VTable(void *ptr, int base_size);
    652 void Code_All_Pointers(void);
    653 void Decode_All_Pointers(void);
    654 void Dump(void);
    655 void Set_VTable(void *ptr, int base_size, void *vtable);
    656 
    657 /*
    658 ** SCENARIO.CPP
    659 */
    660 bool End_Game(void);
    661 bool Read_Scenario(char *root);
    662 bool Start_Scenario(char *root, bool briefing=true);
    663 void Set_Scenario_Difficulty(int difficulty);
    664 HousesType Select_House(void);
    665 void Clear_Scenario(void);
    666 void Do_Briefing(char const * text);
    667 void Do_Lose(void);
    668 void Do_Win(void);
    669 void Do_Restart(void);
    670 void Fill_In_Data(void);
    671 bool Restate_Mission(char const * name, int button1, int button2);
    672 void Fixup_Scenario(void);
    673 
    674 /*
    675 **	SCORE.CPP
    676 */
    677 void Map_Selection(void);
    678 void Bit_It_In_Scale(int x, int y, int w, int h, GraphicBufferClass *src, GraphicBufferClass *dest, GraphicViewPortClass *seen , int delay=0, int dagger=0);
    679 void Bit_It_In(int x, int y, int w, int h, GraphicBufferClass *src, GraphicBufferClass *dest, int delay=0, int dagger=0);
    680 void Call_Back_Delay(int time);
    681 int Alloc_Object(ScoreAnimClass *obj);
    682 extern GraphicBufferClass *PseudoSeenBuff;
    683 
    684 void Window_Dialog_Box(HANDLE  hinst, LPCTSTR  lpszTemplate, HWND  hwndOwner, DLGPROC  dlgprc);
    685 
    686 /*
    687 **	SPECIAL.CPP
    688 */
    689 void Special_Dialog(void);
    690 
    691 /*
    692 **	SUPPORT.ASM
    693 */
    694 #ifdef	__cplusplus
    695 extern "C" {
    696 #endif
    697 void __cdecl Remove_From_List(void **list, int *index, void * ptr);
    698 void * __cdecl Conquer_Build_Fading_Table(void const *palette, void *dest, int color, int frac);
    699 void __cdecl Fat_Put_Pixel(int x, int y, int color, int size, GraphicViewPortClass &);
    700 void __cdecl strtrim(char *buffer);
    701 long __cdecl Get_EAX( void );
    702 #ifdef	__cplusplus
    703 }
    704 #endif
    705 
    706 /*
    707 **	TARCOM.CPP
    708 */
    709 
    710 /*
    711 ** TARGET.CPP
    712 */
    713 COORDINATE  As_Movement_Coord(TARGET target);
    714 AircraftClass *  As_Aircraft(TARGET target, bool check_active = true);
    715 AnimClass *  As_Animation(TARGET target, bool check_active = true);
    716 BuildingClass *  As_Building(TARGET target, bool check_active = true);
    717 BulletClass *  As_Bullet(TARGET target, bool check_active = true);
    718 CELL  As_Cell(TARGET target);
    719 COORDINATE  As_Coord(TARGET target);
    720 InfantryClass *  As_Infantry(TARGET target, bool check_active = true);
    721 TeamClass *  As_Team(TARGET target, bool check_active = true);
    722 TeamTypeClass *  As_TeamType(TARGET target);
    723 TechnoClass *  As_Techno(TARGET target, bool check_active = true);
    724 //TerrainClass * As_Terrain(TARGET target);
    725 TriggerClass *  As_Trigger(TARGET target, bool check_active = true);
    726 UnitClass *  As_Unit(TARGET target, bool check_active = true);
    727 bool  Target_Legal(TARGET target);
    728 ObjectClass *  As_Object(TARGET target, bool check_active = true);
    729 
    730 /*
    731 ** ULOGIC.CPP
    732 */
    733 int Terrain_Cost(CELL cell, FacingType facing);
    734 
    735 /*
    736 **	Inline miscellaneous functions.
    737 */
    738 #define	XYP_COORD(x,y)	(unsigned long)(((x)*ICON_LEPTON_W)/CELL_PIXEL_W + ((((y)*ICON_LEPTON_H)/CELL_PIXEL_H)<<16))
    739 inline FacingType Dir_Facing(DirType facing) {return (FacingType)(((unsigned char)(facing+0x10)&0xFF)>>5);}
    740 inline DirType Facing_Dir(FacingType facing) {return (DirType)((int)facing << 5);}
    741 inline int Cell_To_Lepton(int cell) {return cell<<8;}
    742 inline int Lepton_To_Cell(int lepton) {return ((unsigned)(lepton + 0x0080))>>8;}
    743 inline CELL XY_Cell(int x, int y) {return ((CELL)(((y)<<6)|(x)));}
    744 inline COORDINATE XY_Coord(int x, int y) {return ((COORDINATE)MAKE_LONG(y, x));}
    745 inline int Coord_X(COORDINATE coord) {return (short)(LOW_WORD(coord));}
    746 inline int Coord_Y(COORDINATE coord) {return (short)(HIGH_WORD(coord));}
    747 inline int Cell_X(CELL cell) {return (int)(((unsigned)cell) & 0x3F);}
    748 inline int Cell_Y(CELL cell) {return (int)(((unsigned)cell) >> 6);}
    749 inline int Dir_Diff(DirType dir1, DirType dir2) {return (int)(*((signed char*)&dir2) - *((signed char*)&dir1));}
    750 inline CELL Coord_XLepton(COORDINATE coord) {return (CELL)(*((unsigned char*)&coord));}
    751 inline CELL Coord_YLepton(COORDINATE coord) {return (CELL)(*(((unsigned char*)&coord)+2));}
    752 //inline COORD CellXY_Coord(unsigned x, unsigned y) {return (COORD)(MAKE_LONG(y<<8, x<<8));}
    753 inline COORDINATE Coord_Add(COORDINATE coord1, COORDINATE coord2) {return (COORDINATE)MAKE_LONG((*((short*)(&coord1)+1) + *((short*)(&coord2)+1)), (*((short*)(&coord1)) + *((short*)(&coord2))));}
    754 inline COORDINATE Coord_Sub(COORDINATE coord1, COORDINATE coord2) {return (COORDINATE)MAKE_LONG((*((short*)(&coord1)+1) - *((short*)(&coord2)+1)), (*((short*)(&coord1)) - *((short*)(&coord2))));}
    755 inline COORDINATE Coord_Snap(COORDINATE coord) {return (COORDINATE)MAKE_LONG((((*(((unsigned short *)&coord)+1))&0xFF00)|0x80), (((*((unsigned short *)&coord))&0xFF00)|0x80));}
    756 inline COORDINATE Coord_Mid(COORDINATE coord1, COORDINATE coord2) {return (COORDINATE)MAKE_LONG((*((unsigned short *)(&coord1)+1) + *((unsigned short *)(&coord2)+1))>>1, (*((unsigned short *)(&coord1)) + *((unsigned short *)(&coord2)))>>1);}
    757 inline COORDINATE Cell_Coord(CELL cell) {return (COORDINATE) MAKE_LONG( (((cell & 0x0FC0)<<2)|0x80), ((((cell & 0x003F)<<1)+1)<<7) );}
    758 inline COORDINATE XYPixel_Coord(int x, int y) {return ((COORDINATE)MAKE_LONG((int)(((long)y*(long)ICON_LEPTON_H)/(long)ICON_PIXEL_H)/*+LEPTON_OFFSET_Y*/, (int)(((long)x*(long)ICON_LEPTON_W)/(long)ICON_PIXEL_W)/*+LEPTON_OFFSET_X*/));}
    759 //inline int Facing_To_16(int facing) {return Facing16[facing];}
    760 inline int Facing_To_32(DirType facing) {return Facing32[facing];}
    761 inline DirType Direction256(COORDINATE coord1, COORDINATE coord2) {return ((DirType)Desired_Facing256(Coord_X(coord1), Coord_Y(coord1), Coord_X(coord2), Coord_Y(coord2)));}
    762 inline DirType Direction(COORDINATE coord1, COORDINATE coord2) {return ((DirType)Desired_Facing256(Coord_X(coord1), Coord_Y(coord1), Coord_X(coord2), Coord_Y(coord2)));}
    763 inline DirType Direction8(COORDINATE coord1, COORDINATE coord2) {return ((DirType)Desired_Facing8(Coord_X(coord1), Coord_Y(coord1), Coord_X(coord2), Coord_Y(coord2)));}
    764 //inline int Direction16(COORDINATE coord1, COORD coord2) {return (Desired_Facing16(Coord_X(coord1), Coord_Y(coord1), Coord_X(coord2), Coord_Y(coord2)));}
    765 inline DirType Direction(CELL cell1, CELL cell2) {return (DirType)(Desired_Facing8(Cell_X(cell1), Cell_Y(cell1), Cell_X(cell2), Cell_Y(cell2)));}
    766 inline COORDINATE Adjacent_Cell(COORDINATE coord, FacingType dir) {return (Coord_Snap(Coord_Add(AdjacentCoord[dir & 0x07], coord)));}
    767 inline COORDINATE Adjacent_Cell(COORDINATE coord, DirType dir) {return Adjacent_Cell(coord, Dir_Facing(dir));}
    768 inline CELL Adjacent_Cell(CELL cell, FacingType dir) {return (CELL)(cell + AdjacentCell[dir]);}
    769 inline CELL Adjacent_Cell(CELL cell, DirType dir) {return (CELL)(cell + AdjacentCell[Dir_Facing(dir)]);}
    770 inline int Lepton_To_Pixel(int lepton) {return ((lepton * ICON_PIXEL_W) + (ICON_LEPTON_W / 2) - ((lepton < 0) ? (ICON_LEPTON_W - 1) : 0)) / ICON_LEPTON_W;}
    771 inline int Pixel_To_Lepton(int pixel) {return ((pixel * ICON_LEPTON_W) + (ICON_PIXEL_W / 2) - ((pixel < 0) ? (ICON_PIXEL_W - 1) : 0)) / ICON_PIXEL_W;}
    772 //inline FacingType Facing_To_8(DirType facing) {return (FacingType)(((unsigned char)(facing|0x10))>>5);}
    773 inline COORDINATE XYP_Coord(int x,int y) {return XY_Coord(Pixel_To_Lepton(x), Pixel_To_Lepton(y));};
    774 inline char const * Text_String(int string) {return(Extract_String(SystemStrings, string));};
    775 
    776 //
    777 // We need to know when the visible page changes
    778 // ST - 1/4/2019 10:31AM
    779 //
    780 void Blit_Hid_Page_To_Seen_Buff(void);
    781 extern bool RunningAsDLL;
    782 
    783 
    784 template<class T> inline T Random_Picky(T a, T b, char *sfile, int line)
    785 {
    786 	sfile = sfile;
    787 	line = line;
    788 	return (T)IRandom((int)a, (int)b);	//, sfile, line);
    789 };
    790 
    791 #define Random_Pick(low, high) Random_Picky ( (low), (high), __FILE__, __LINE__)
    792 
    793 
    794 template<class T> inline T Sim_Random_Pick(T a, T b)
    795 {
    796 	return (T)Sim_IRandom((int)a, (int)b);
    797 };
    798 
    799 
    800 #ifdef CHEAT_KEYS
    801 #define Check_Ptr(ptr,file,line)  \
    802 { \
    803 	if (!ptr) { \
    804 		Mono_Clear_Screen(); \
    805 		Mono_Printf("NULL Pointer, Module:%s, line:%d!\n",file,line); \
    806 		Prog_End(); \
    807 		exit(EXIT_SUCCESS); \
    808 	} \
    809 }
    810 #else
    811 #define	Check_Ptr(ptr,file,line)
    812 #endif
    813 
    814 /*
    815 ** These routines are for coding & decoding multiplayer ID's
    816 */
    817 inline PlayerColorType MPlayerID_To_ColorIndex(unsigned short id) {return (PlayerColorType)(id >> 4);}
    818 inline HousesType MPlayerID_To_HousesType(unsigned short id) {return ((HousesType)(id & 0x000f)); }
    819 inline unsigned short Build_MPlayerID(int c_idx, HousesType htype) { return ((c_idx << 4) | htype); }
    820 
    821 
    822 
    823 
    824 //
    825 //  True if we are the currently in focus windows app
    826 //
    827 extern bool GameInFocus;
    828 
    829 extern	int	ScreenWidth;
    830 extern	int	ScreenHeight;
    831 extern "C" void ModeX_Blit (GraphicBufferClass *source);
    832 extern	void Colour_Debug (int call_number);
    833 
    834 
    835 extern	unsigned char 	*InterpolatedPalettes[100];
    836 extern BOOL				PalettesRead;
    837 extern unsigned			PaletteCounter;
    838 
    839 extern "C"{
    840 	extern unsigned char PaletteInterpolationTable[SIZE_OF_PALETTE][SIZE_OF_PALETTE];
    841 	extern unsigned char *InterpolationPalette;
    842 }
    843 
    844 extern void Free_Interpolated_Palettes(void);
    845 extern int Load_Interpolated_Palettes(char const *filename, BOOL add=FALSE);
    846 
    847 
    848 #define	CELL_BLIT_ONLY	1
    849 #define	CELL_DRAW_ONLY	2
    850 
    851 /***********************************************************************************************
    852  * Distance -- Determines the lepton distance between two coordinates.                         *
    853  *                                                                                             *
    854  *    This routine is used to determine the distance between two coordinates. It uses the      *
    855  *    Dragon Strike method of distance determination and thus it is very fast.                 *
    856  *                                                                                             *
    857  * INPUT:   coord1   -- First coordinate.                                                      *
    858  *                                                                                             *
    859  *          coord2   -- Second coordinate.                                                     *
    860  *                                                                                             *
    861  * OUTPUT:  Returns the lepton distance between the two coordinates.                           *
    862  *                                                                                             *
    863  * WARNINGS:   none                                                                            *
    864  *                                                                                             *
    865  * HISTORY:                                                                                    *
    866  *   05/27/1994 JLB : Created.                                                                 *
    867  *=============================================================================================*/
    868 int Distance_Coord(COORDINATE coord1, COORDINATE coord2);
    869 
    870 #if (0)
    871 #pragma aux Distance_Coord parm [eax] [ebx] \
    872 	modify [edx ebx] \
    873 	value [eax]		= 				\
    874 	"mov	dx,ax"			\
    875 	"sub	dx,bx"			\
    876 	"jg	okx"				\
    877 	"neg	dx"				\
    878 	"okx:"					\
    879 	"shr	eax,16"			\
    880 	"shr	ebx,16"			\
    881 	"sub	ax,bx"			\
    882 	"jg	oky"				\
    883 	"neg	ax"				\
    884 	"oky:"					\
    885 	"cmp	ax,dx"			\
    886 	"jg	ok"				\
    887 	"xchg	ax,dx"			\
    888 	"ok:"						\
    889 	"shr	dx,1"				\
    890 	"add	ax,dx"
    891 #endif
    892 
    893 inline int Distance(COORDINATE coord1, COORDINATE coord2)
    894 {
    895 #ifdef NEVER
    896 	int	diff1, diff2;
    897 
    898 	diff1 = Coord_Y(coord1) - Coord_Y(coord2);
    899 	if (diff1 < 0) diff1 = -diff1;
    900 	diff2 = Coord_X(coord1) - Coord_X(coord2);
    901 	if (diff2 < 0) diff2 = -diff2;
    902 	if (diff1 > diff2) {
    903 		return(diff1 + (diff2>>1));
    904 	}
    905 	return(diff2 + (diff1>>1));
    906 #else
    907 	return(Distance_Coord(coord1, coord2));
    908 #endif
    909 }
    910 
    911 
    912 
    913 /***********************************************************************************************
    914  * Distance -- Determines the cell distance between two cells.                                 *
    915  *                                                                                             *
    916  *    Use this routine to determine the distance between the two cells specified. The distance *
    917  *    is returned in cells.                                                                    *
    918  *                                                                                             *
    919  * INPUT:   cell1, cell2   -- The two cells to determine the distance between.                 *
    920  *                                                                                             *
    921  * OUTPUT:  Returns with the distance between the two cells in units of cell size.             *
    922  *                                                                                             *
    923  * WARNINGS:   none                                                                            *
    924  *                                                                                             *
    925  * HISTORY:                                                                                    *
    926  *   12/23/1994 JLB : Created.                                                                 *
    927  *=============================================================================================*/
    928 inline int Distance(CELL coord1, CELL coord2)
    929 {
    930 	int	diff1, diff2;
    931 
    932 	diff1 = Cell_Y(coord1) - Cell_Y(coord2);
    933 	if (diff1 < 0) diff1 = -diff1;
    934 	diff2 = Cell_X(coord1) - Cell_X(coord2);
    935 	if (diff2 < 0) diff2 = -diff2;
    936 	if (diff1 > diff2) {
    937 		return(diff1 + (diff2>>1));
    938 	}
    939 	return(diff2 + (diff1>>1));
    940 }
    941 
    942 
    943 /***********************************************************************************************
    944  * CellClass::Cell_Number -- Returns the cell ID number for this cell object.                  *
    945  *                                                                                             *
    946  *    Call this routine if you wish to determine what the cell number ID is for the currrent   *
    947  *    cell object. This ID number is the index number into the cell array.                     *
    948  *                                                                                             *
    949  * INPUT:   none                                                                               *
    950  *                                                                                             *
    951  * OUTPUT:  Returns with the cell number for this cell object.                                 *
    952  *                                                                                             *
    953  * WARNINGS:   none                                                                            *
    954  *                                                                                             *
    955  * HISTORY:                                                                                    *
    956  *   03/19/1995 JLB : Created.                                                                 *
    957  *=============================================================================================*/
    958 inline CELL CellClass::Cell_Number(void) const
    959 {
    960 	return(Map.ID(this));
    961 }
    962 #if(0)
    963 #ifndef NOMEMCHECK
    964 #define NO_INTERCEPT
    965 #include	"memcheck.h"
    966 #endif
    967 #endif
    968 
    969 void WWDOS_Shutdown(void);
    970 
    971 #endif
    972 
    973 
    974 
    975 /*
    976 ** Debug output. ST - 6/27/2019 10:00PM
    977 */
    978 void GlyphX_Debug_Print(const char *debug_text);
    979 
    980 /*
    981 ** Achievement event. ST - 11/11/2019 11:39AM
    982 */
    983 void On_Achievement_Event(const HouseClass* player_ptr, const char *achievement_type, const char *achievement_reason);