X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Fmain.h;h=61bc328e52c81c014ac2a560c07985d0746ef7c5;hp=faf24a99a057b426d5411c8f517246d260bfabfa;hb=6f5b701331e07bdd3e02eeb61f66bfa14d5b530f;hpb=c3fa9fcf03db2a48bbd8fa343b79a94c42d4cac3 diff --git a/src/main.h b/src/main.h index faf24a99..61bc328e 100644 --- a/src/main.h +++ b/src/main.h @@ -2051,6 +2051,11 @@ #define NUM_ENGINE_TYPES 4 +/* values for automatically playing tapes */ +#define AUTOPLAY_TEST 0 +#define AUTOPLAY_PLAY 1 +#define AUTOPLAY_FFWD 2 + struct BorderInfo { @@ -2322,6 +2327,11 @@ struct EditorPaletteInfo struct EditorPaletteElementInfo element_right; }; +struct EditorDrawingAreaInfo +{ + int tile_size; +}; + struct EditorInfo { struct EditorSettingsInfo settings; @@ -2329,6 +2339,7 @@ struct EditorInfo struct EditorButtonInfo button; struct EditorInputInfo input; struct EditorPaletteInfo palette; + struct EditorDrawingAreaInfo drawingarea; }; struct ViewportInfo @@ -2516,6 +2527,7 @@ struct GlobalInfo char *autoplay_leveldir; int autoplay_level[MAX_TAPES_PER_SET]; boolean autoplay_all; + boolean autoplay_mode; char *convert_leveldir; int convert_level_nr;