X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ftools.h;h=4b7edaf10449bdecd1007157c5893fa54cd840ee;hb=c4baa69cc8d5e8398425e67498b49f4b77f8e477;hp=2d31f211ff5a6026c43b2da824c1ac2c206d73f1;hpb=5335fd9e893a7af87a72fb78609c2eb281bd7f63;p=rocksndiamonds.git diff --git a/src/tools.h b/src/tools.h index 2d31f211..4b7edaf1 100644 --- a/src/tools.h +++ b/src/tools.h @@ -19,19 +19,23 @@ #include -/* für SetDrawtoField */ +/* for SetDrawtoField */ #define DRAW_DIRECT 0 #define DRAW_BUFFERED 1 #define DRAW_BACKBUFFER 2 -/* für DrawElementShifted */ -#define CUT_NO_CUTTING 0 +/* for DrawElementShifted */ +#define NO_CUTTING 0 #define CUT_ABOVE 1 #define CUT_BELOW 2 #define CUT_LEFT 4 #define CUT_RIGHT 8 -/* für MoveDoor */ +/* for masking functions */ +#define NO_MASKING 0 +#define USE_MASKING 1 + +/* for MoveDoor */ #define DOOR_OPEN_1 1 #define DOOR_OPEN_2 2 #define DOOR_CLOSE_1 4 @@ -45,7 +49,7 @@ #define DOOR_NO_DELAY 32 #define DOOR_GET_STATE 64 -/* für AreYouSure */ +/* for AreYouSure */ #define AYS_ASK 1 #define AYS_OPEN 2 #define AYS_CLOSE 4 @@ -60,18 +64,22 @@ void ClearWindow(); void DrawText(int, int, char *, int, int); void DrawTextExt(Drawable, GC, int, int, char *, int, int); void DrawPlayerField(void); +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 DrawGraphic(int, int, int); void DrawGraphicExt(Drawable, GC, int, int, int); -void DrawGraphicExtHiRes(Drawable, GC, int, int, int); void DrawGraphicThruMask(int, int, int); -void DrawElementThruMask(int, int, int); void DrawMiniGraphic(int, int, int); void DrawMiniGraphicExt(Drawable, GC, int, int, int); -void DrawMiniGraphicExtHiRes(Drawable, GC, int, int, int); -void DrawGraphicShifted(int, int, int, int, int, int); -void DrawElementShifted(int, int, int, int, int, int); +void DrawGraphicShifted(int, int, int, int, int, int, int); void DrawGraphicShiftedThruMask(int, int, int, int, int, int); +void DrawScreenElementExt(int, int, int, int, int, int, int); +void DrawLevelElementExt(int, int, int, int, int, int, int); +void DrawScreenElementShifted(int, int, int, int, int, int); +void DrawLevelElementShifted(int, int, int, int, int, int); +void DrawScreenElementThruMask(int, int, int); +void DrawLevelElementThruMask(int, int, int); void ErdreichAnbroeckeln(int, int); void DrawScreenElement(int, int, int); void DrawLevelElement(int, int, int);