X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Ftools.h;h=9ee53aa15ae7c241bb9d7d128c7edece9e4589ef;hp=459011a13212ef4559899c80a419e6e5b4221c34;hb=b2a0ff1ddd4430110b331129469dabb8ea7b6ba7;hpb=4b0c6356359ee52f98cee8fa578179c6c41d4ef1 diff --git a/src/tools.h b/src/tools.h index 459011a1..9ee53aa1 100644 --- a/src/tools.h +++ b/src/tools.h @@ -1,13 +1,12 @@ /*********************************************************** * Rocks'n'Diamonds -- McDuffin Strikes Back! * *----------------------------------------------------------* -* ©1995 Artsoft Development * -* Holger Schemel * -* 33659 Bielefeld-Senne * -* Telefon: (0521) 493245 * -* eMail: aeglos@valinor.owl.de * -* aeglos@uni-paderborn.de * -* q99492@pbhrzx.uni-paderborn.de * +* (c) 1995-98 Artsoft Entertainment * +* Holger Schemel * +* Oststrasse 11a * +* 33604 Bielefeld * +* phone: ++49 +521 290471 * +* email: aeglos@valinor.owl.de * *----------------------------------------------------------* * tools.h * ***********************************************************/ @@ -15,9 +14,8 @@ #ifndef TOOLS_H #define TOOLS_H -#include "main.h" - #include +#include "main.h" /* for SetDrawtoField */ #define DRAW_DIRECT 0 @@ -63,21 +61,25 @@ void FadeToFront(); void ClearWindow(); void DrawText(int, int, char *, int, int); void DrawTextExt(Drawable, GC, int, int, char *, int, int); -void DrawPlayerField(void); +void DrawAllPlayers(void); +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 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 DrawScreenElementThruMask(int, int, int); -void DrawLevelElementThruMask(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, 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);