| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- /*
- ** Command & Conquer Red Alert(tm)
- ** Copyright 2025 Electronic Arts Inc.
- **
- ** This program is free software: you can redistribute it and/or modify
- ** it under the terms of the GNU General Public License as published by
- ** the Free Software Foundation, either version 3 of the License, or
- ** (at your option) any later version.
- **
- ** This program is distributed in the hope that it will be useful,
- ** but WITHOUT ANY WARRANTY; without even the implied warranty of
- ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ** GNU General Public License for more details.
- **
- ** You should have received a copy of the GNU General Public License
- ** along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /***************************************************************************
- ** 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 **
- ***************************************************************************
- * *
- * Project Name : 32 bit library *
- * *
- * File Name : MISC.H *
- * *
- * Programmer : Scott K. Bowen *
- * *
- * Start Date : August 3, 1994 *
- * *
- * Last Update : August 3, 1994 [SKB] *
- * *
- *-------------------------------------------------------------------------*
- * Functions: *
- * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
- #ifndef MISC_H
- #define MISC_H
- /*========================= C++ Routines ==================================*/
- /*=========================================================================*/
- /* The following prototypes are for the file: EXIT.CPP */
- /* Prog_End Must be supplied by the user program in startup.cpp */
- /*=========================================================================*/
- VOID cdecl Prog_End(VOID);
- VOID cdecl Exit(INT errorval, const BYTE *message, ...);
- /*=========================================================================*/
- /* The following prototypes are for the file: DELAY.CPP */
- /*=========================================================================*/
- void Delay(int duration);
- void Vsync(void);
- /*=========================================================================*/
- /* The following prototypes are for the file: FINDARGV.CPP */
- /*=========================================================================*/
- BYTE *cdecl Find_Argv(BYTE const *str);
- /*=========================================================================*/
- /* The following prototypes are for the file: LIB.CPP */
- /*=========================================================================*/
- //char *Find_Argv(char const *str);
- void Mono_Mem_Dump(void const *databuf, int bytes, int y);
- void Convert_RGB_To_HSV(unsigned int r, unsigned int g, unsigned int b, unsigned int *h, unsigned int *s, unsigned int *v);
- void Convert_HSV_To_RGB(unsigned int h, unsigned int s, unsigned int v, unsigned int *r, unsigned int *g, unsigned int *b);
- /*=========================================================================*/
- /* The following prototypes are for the file: VERSION.CPP */
- /*=========================================================================*/
- BYTE *cdecl Version(VOID);
- /*=========================================================================*/
- /* The following prototypes are for the file: IRANDOM.CPP */
- /*=========================================================================*/
- int IRandom(int minval, int maxval);
- /*========================= Assembly Routines ==============================*/
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*=========================================================================*/
- /* The following prototypes are for the file: PROC.ASM */
- /* Prog_End Must be supplied by the user program in startup.cpp */
- /*=========================================================================*/
- int Get_CPU(VOID);
- /*=========================================================================*/
- /* The following prototypes are for the file: RANDOM.ASM */
- /*=========================================================================*/
- UBYTE Random(VOID);
- int Get_Random_Mask(int maxval);
- /*=========================================================================*/
- /* The following prototype is for the file: SHAKESCR.ASM */
- /*=========================================================================*/
- void Shake_Screen(int shakes);
- /*=========================================================================*/
- /* The following prototypes are for the file: REVERSE.ASM */
- /*=========================================================================*/
- LONG Reverse_LONG(LONG number);
- WORD Reverse_WORD(WORD number);
- LONG Swap_LONG(LONG number);
- /*=========================================================================*/
- /* The following prototype is for the file: FACING8.ASM */
- /*=========================================================================*/
- //int Desired_Facing8(int x1, int y1, int x2, int y2);
- /*=========================================================================*/
- /* The following prototype is for the file: FACING16.ASM */
- /*=========================================================================*/
- int Desired_Facing16(int x1, int y1, int x2, int y2);
- /*=========================================================================*/
- /* The following prototype is for the file: FACINGFF.ASM */
- /*=========================================================================*/
- //int Desired_Facing256(int x1, int y1, int x2, int y2);
- /*=========================================================================*/
- /* The following prototype is for the file: FADING.ASM */
- /*=========================================================================*/
- void *Build_Fading_Table(void const *palette, void const *dest, long int color, long int frac);
- /*=========================================================================*/
- /* The following prototype is for the file: CRC.ASM */
- /*=========================================================================*/
- long Calculate_CRC(void *buffer, long length);
- /*=========================================================================*/
- /* The following prototypes are for the file: DETPROC.ASM */
- /*=========================================================================*/
- extern WORD Processor(VOID);
- extern WORD Operating_System(VOID);
- extern ULONG random ( ULONG mod ) ;
- extern void randomize ( void ) ;
- extern int Clip_Rect ( int * x , int * y , int * dw , int * dh ,
- int width , int height ) ;
- extern int Confine_Rect ( int * x , int * y , int dw , int dh ,
- int width , int height ) ;
- /*=========================================================================*/
- /* The following prototypes are for the file: OPSYS.ASM */
- /*=========================================================================*/
- extern WORD OperationgSystem;
- #ifdef __cplusplus
- }
- #endif
- /*=========================================================================*/
- #endif // MISC_H
|