X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ftools.h;h=2769015c2553744f2626a2429e6cc074a1d53cbe;hb=8afc6199767a6fcb7451efd2b3d5b070f6c99efb;hp=63ae5c593425e5c677878d53065c133dc48d0464;hpb=1100054eec7c45458359fd56072341bd661f4a9c;p=rocksndiamonds.git diff --git a/src/tools.h b/src/tools.h index 63ae5c59..2769015c 100644 --- a/src/tools.h +++ b/src/tools.h @@ -1,20 +1,19 @@ /*********************************************************** -* Rocks'n'Diamonds -- McDuffin Strikes Back! * +* Rocks'n'Diamonds -- McDuffin Strikes Back! * *----------------------------------------------------------* -* (c) 1995-98 Artsoft Entertainment * -* Holger Schemel * -* Oststrasse 11a * -* 33604 Bielefeld * -* phone: ++49 +521 290471 * -* email: aeglos@valinor.owl.de * +* (c) 1995-2002 Artsoft Entertainment * +* Holger Schemel * +* Detmolder Strasse 189 * +* 33604 Bielefeld * +* Germany * +* e-mail: info@artsoft.org * *----------------------------------------------------------* -* tools.h * +* tools.h * ***********************************************************/ #ifndef TOOLS_H #define TOOLS_H -#include #include "main.h" /* for SetDrawtoField */ @@ -46,6 +45,7 @@ #define DOOR_COPY_BACK (1 << 4) #define DOOR_NO_DELAY (1 << 5) #define DOOR_GET_STATE (1 << 6) +#define DOOR_SET_STATE (1 << 7) /* for Request */ #define REQ_ASK (1 << 0) @@ -59,6 +59,7 @@ #define REQUEST_WAIT_FOR (REQ_ASK | REQ_CONFIRM | REQ_PLAYER) void SetDrawtoField(int); +void RedrawPlayfield(boolean, int, int, int, int); void BackToFront(); void FadeToFront(); void ClearWindow(); @@ -71,12 +72,17 @@ void DrawPlayerField(int, int); void DrawPlayer(struct PlayerInfo *); void DrawGraphicAnimationExt(int, int, int, int, int, int, int); void DrawGraphicAnimation(int, int, int, int, int, int); +void DrawNewGraphicAnimation(int, int, int); void DrawGraphicAnimationThruMask(int, int, int, int, int, int); -void getGraphicSource(int, int *, int *, int *); +void getGraphicSource(int, Bitmap **, int *, int *); void DrawGraphic(int, int, int); +void DrawNewGraphic(int, int, int, int); void DrawGraphicExt(DrawBuffer *, int, int, int); +void DrawNewGraphicExt(DrawBuffer *, int, int, int, int); void DrawGraphicThruMask(int, int, int); +void DrawNewGraphicThruMask(int, int, int, int); void DrawGraphicThruMaskExt(DrawBuffer *, int, int, int); +void DrawNewGraphicThruMaskExt(DrawBuffer *, int, int, int, int); void DrawMiniGraphic(int, int, int); void getMiniGraphicSource(int, Bitmap **, int *, int *); void DrawMiniGraphicExt(DrawBuffer *, int, int, int); @@ -104,6 +110,7 @@ boolean Request(char *, unsigned int); unsigned int OpenDoor(unsigned int); unsigned int CloseDoor(unsigned int); unsigned int GetDoorState(void); +unsigned int SetDoorState(unsigned int); unsigned int MoveDoor(unsigned int); void DrawSpecialEditorDoor(); void UndrawSpecialEditorDoor(); @@ -111,6 +118,7 @@ int ReadPixel(DrawBuffer *, int, int); void CreateToolButtons(); +int get_next_element(int); int el2gfx(int); #endif /* TOOLS_H */