X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Flibgame%2Ftoons.h;h=449687cd26f98a274d7236e61824f588b09973e4;hp=313458372e363252b52ed40af19317fc3125c83b;hb=30f5fd7b8f2235820dcbe638a18319d802317530;hpb=ea6e4698905d7440a265e323d03cf13fc323c44b diff --git a/src/libgame/toons.h b/src/libgame/toons.h index 31345837..449687cd 100644 --- a/src/libgame/toons.h +++ b/src/libgame/toons.h @@ -1,15 +1,13 @@ -/*********************************************************** -* Artsoft Retro-Game Library * -*----------------------------------------------------------* -* (c) 1995-2002 Artsoft Entertainment * -* Holger Schemel * -* Detmolder Strasse 189 * -* 33604 Bielefeld * -* Germany * -* e-mail: info@artsoft.org * -*----------------------------------------------------------* -* toons.h * -***********************************************************/ +// ============================================================================ +// Artsoft Retro-Game Library +// ---------------------------------------------------------------------------- +// (c) 1995-2014 by Artsoft Entertainment +// Holger Schemel +// info@artsoft.org +// http://www.artsoft.org/ +// ---------------------------------------------------------------------------- +// toons.h +// ============================================================================ #ifndef TOONS_H #define TOONS_H @@ -17,6 +15,12 @@ #include "system.h" +/* values for toon animation */ +#define ANIM_START 0 +#define ANIM_CONTINUE 1 +#define ANIM_STOP 2 + + struct ToonScreenInfo { Bitmap *save_buffer; @@ -35,27 +39,8 @@ struct ToonScreenInfo struct ToonInfo { -#if 0 - int graphic; - int width, height; - int src_x, src_y; - int anim_frames; - int step_delay; - int step_offset; - int anim_mode; - int direction; - int position; - - int anim_delay; - int anim_start_frame; - Bitmap *bitmap; /* dynamically initialized */ - - char *direction_str; - char *position_str; - -#else - Bitmap *bitmap; + int src_x, src_y; int width, height; int anim_frames; @@ -64,9 +49,9 @@ struct ToonInfo int anim_mode; int step_offset; int step_delay; + char *direction; char *position; -#endif }; @@ -76,8 +61,7 @@ void InitToonScreen(Bitmap *, void (*update_function)(void), void (*prepare_backbuffer_function)(void), boolean (*redraw_needed_function)(void), struct ToonInfo *, int, int, int, int, int, int); -void InitAnimation(void); -void StopAnimation(void); -void DoAnimation(void); + +void HandleAnimation(int); #endif /* TOONS_H */