X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsetup.h;h=59173924a7bcad6a9c8b94f9a99bb2724d9ce428;hb=512f7bbfa113ed92bebc8a3a7d436b38c0227d59;hp=a60585993513299d880294c761173fd9bc3fc496;hpb=7270af24b41bc33fbb89a97227a7696e343eacbb;p=rocksndiamonds.git diff --git a/src/libgame/setup.h b/src/libgame/setup.h index a6058599..59173924 100644 --- a/src/libgame/setup.h +++ b/src/libgame/setup.h @@ -4,7 +4,7 @@ // (c) 1995-2014 by Artsoft Entertainment // Holger Schemel // info@artsoft.org -// http://www.artsoft.org/ +// https://www.artsoft.org/ // ---------------------------------------------------------------------------- // setup.h // ============================================================================ @@ -42,15 +42,16 @@ #define TYPE_EMPTY (1 << 20) #define TYPE_SKIPPABLE (1 << 21) #define TYPE_KEYTEXT (1 << 22) +#define TYPE_HEADLINE (1 << 23) -#define TYPE_GHOSTED (1 << 23) -#define TYPE_QUERY (1 << 24) +#define TYPE_GHOSTED (1 << 24) +#define TYPE_QUERY (1 << 25) // additional values for internal purposes -#define TYPE_BITFIELD (1 << 25) -#define TYPE_CONTENT (1 << 26) -#define TYPE_ELEMENT_LIST (1 << 27) -#define TYPE_CONTENT_LIST (1 << 28) +#define TYPE_BITFIELD (1 << 26) +#define TYPE_CONTENT (1 << 27) +#define TYPE_ELEMENT_LIST (1 << 28) +#define TYPE_CONTENT_LIST (1 << 29) // derived values for setup file handling #define TYPE_BOOLEAN_STYLE (TYPE_BOOLEAN | \ @@ -74,6 +75,7 @@ TYPE_SKIPPABLE | \ TYPE_KEY | \ TYPE_STRING | \ + TYPE_HEADLINE | \ TYPE_GHOSTED) #define TYPE_ENTER (TYPE_ENTER_SCREEN | \ @@ -322,6 +324,10 @@ int GetZipFileTreeType(char *); char *ExtractZipFileIntoDirectory(char *, char *, int); boolean AdjustGraphicsForEMC(void); +boolean AdjustSoundsForEMC(void); + +void SetCurrentArtwork(int); +void ChangeCurrentArtworkIfNeeded(int); void LoadLevelInfo(void); void LoadArtworkInfo(void);