X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_mm%2Fmm_tools.h;h=28ba5c331eef1df5c9ec52750ffacfe205cffb54;hb=HEAD;hp=d491c4274b7775c64f68970dd1f0a89d02f0ccd8;hpb=115ce6f2da1914d68b0fe0e5f9082973190dacdd;p=rocksndiamonds.git diff --git a/src/game_mm/mm_tools.h b/src/game_mm/mm_tools.h index d491c427..28ba5c33 100644 --- a/src/game_mm/mm_tools.h +++ b/src/game_mm/mm_tools.h @@ -1,15 +1,13 @@ -/*********************************************************** -* Mirror Magic -- McDuffin's Revenge * -*----------------------------------------------------------* -* (c) 1994-2001 Artsoft Entertainment * -* Holger Schemel * -* Detmolder Strasse 189 * -* 33604 Bielefeld * -* Germany * -* e-mail: info@artsoft.org * -*----------------------------------------------------------* -* tools.h * -***********************************************************/ +// ============================================================================ +// Mirror Magic -- McDuffin's Revenge +// ---------------------------------------------------------------------------- +// (c) 1994-2017 by Artsoft Entertainment +// Holger Schemel +// info@artsoft.org +// https://www.artsoft.org/ +// ---------------------------------------------------------------------------- +// mm_tools.h +// ============================================================================ #ifndef MM_TOOLS_H #define MM_TOOLS_H @@ -17,18 +15,18 @@ #include "main_mm.h" -/* for DrawElementShifted */ +// for DrawElementShifted #define NO_CUTTING 0 #define CUT_ABOVE (1 << 0) #define CUT_BELOW (1 << 1) #define CUT_LEFT (1 << 2) #define CUT_RIGHT (1 << 3) -/* for masking functions */ +// for masking functions #define NO_MASKING 0 #define USE_MASKING 1 -/* for MoveDoor */ +// for MoveDoor #define DOOR_OPEN_1 (1 << 0) #define DOOR_OPEN_2 (1 << 1) #define DOOR_CLOSE_1 (1 << 2) @@ -42,7 +40,7 @@ #define DOOR_NO_DELAY (1 << 5) #define DOOR_GET_STATE (1 << 6) -/* for Request */ +// for Request #define REQ_ASK (1 << 0) #define REQ_OPEN (1 << 1) #define REQ_CLOSE (1 << 2) @@ -50,16 +48,10 @@ #define REQ_STAY_CLOSED (1 << 4) #define REQ_STAY_OPEN (1 << 5) -#define REQUEST_WAIT_FOR (REQ_ASK | REQ_CONFIRM) - -/* font types */ -#define FS_SMALL 0 -#define FS_BIG 1 -#define FS_MEDIUM 2 - void SetDrawtoField_MM(int); -void BackToFront(void); +void BackToFront_MM(void); + void FadeToFront(void); void ClearWindow(void); @@ -72,23 +64,17 @@ void DrawGraphicAnimation_MM(int, int, int, int); void DrawGraphic_MM(int, int, int); void DrawGraphicExt_MM(DrawBuffer *, int, int, int); -void DrawGraphicThruMask_MM(int, int, int); -void DrawGraphicThruMaskExt_MM(DrawBuffer *, int, int, int); +void DrawGraphicThruMask_MM(int, int, int, int); +void DrawGraphicThruMaskExt_MM(DrawBuffer *, int, int, int, int); void DrawMiniGraphic_MM(int, int, int); void getMiniGraphicSource(int, Bitmap **, int *, int *); void DrawMiniGraphicExt_MM(DrawBuffer *, int, int, int); void DrawGraphicShifted_MM(int, int, int, int, int, int, int); -void DrawGraphicShiftedThruMask_MM(int, int, int, int, int, int); void DrawScreenElementExt_MM(int, int, int, int, int, int, int); void DrawLevelElementExt_MM(int, int, int, int, int, int, int); void DrawScreenElementShifted_MM(int, int, int, int, int, int); -void DrawLevelElementShifted_MM(int, int, int, int, int, int); -void DrawScreenElementThruMask_MM(int, int, int); -void DrawLevelElementThruMask_MM(int, int, int); -void DrawLevelFieldThruMask_MM(int, int); void ErdreichAnbroeckeln(int, int); void DrawScreenElement_MM(int, int, int); -void DrawLevelElement_MM(int, int, int); void DrawScreenField_MM(int, int); void DrawLevelField_MM(int, int); void DrawMiniElement_MM(int, int, int); @@ -101,8 +87,8 @@ void DrawElement_MM(int, int, int); void DrawWallsExt_MM(int, int, int, int); void DrawWalls_MM(int, int, int); void DrawWallsAnimation_MM(int, int, int, int, int); -void DrawMiniLevel_MM(int, int, int, int); void DrawMicroLevel_MM(int, int, boolean); +void DrawTileCursor_MM(int, int, boolean); boolean Request(char *, unsigned int); unsigned int OpenDoor(unsigned int); @@ -112,7 +98,6 @@ unsigned int MoveDoor(unsigned int); void DrawSpecialEditorDoor_MM(void); void UndrawSpecialEditorDoor(void); Pixel ReadPixel(DrawBuffer *, int, int); -void SetRGB(unsigned int, unsigned short, unsigned short, unsigned short); void CreateToolButtons(void); @@ -121,6 +106,10 @@ int get_element_phase(int); int get_num_elements(int); int get_rotated_element(int, int); +int map_wall_from_base_element(int); +int map_wall_to_base_element(int); + int el2gfx(int); +int el_act2gfx(int, int); #endif