X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ftools.h;h=82372ce9cb0676affafae4156bee7fdebff1528f;hb=fffaec4e69e54c74cf5eea689191e81b8c19b85a;hp=90f7f81e2f9e6576ad3b41bc8b0f1ea910624e1c;hpb=bf7f1c667ad861d6cadacd0b9d6fe517be977a6e;p=rocksndiamonds.git diff --git a/src/tools.h b/src/tools.h index 90f7f81e..82372ce9 100644 --- a/src/tools.h +++ b/src/tools.h @@ -1,7 +1,7 @@ /*********************************************************** * Rocks'n'Diamonds -- McDuffin Strikes Back! * *----------------------------------------------------------* -* (c) 1995-2001 Artsoft Entertainment * +* (c) 1995-2002 Artsoft Entertainment * * Holger Schemel * * Detmolder Strasse 189 * * 33604 Bielefeld * @@ -45,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) @@ -58,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,7 +73,7 @@ void DrawPlayer(struct PlayerInfo *); void DrawGraphicAnimationExt(int, int, int, int, int, int, int); void DrawGraphicAnimation(int, int, int, 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 DrawGraphicExt(DrawBuffer *, int, int, int); void DrawGraphicThruMask(int, int, int); @@ -103,6 +105,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();