1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
7 // https://www.artsoft.org/
8 // ----------------------------------------------------------------------------
10 // ============================================================================
18 #define LEVEL_PACKED_START 100
19 #define PACKED_LEVELS(x) (LEVEL_PACKED_START + x)
21 #define LEVEL_FILE_TYPE_RND_PACKED PACKED_LEVELS(LEVEL_FILE_TYPE_RND)
22 #define LEVEL_FILE_TYPE_EM_PACKED PACKED_LEVELS(LEVEL_FILE_TYPE_EM)
24 #define IS_SINGLE_LEVEL_FILE(x) (x < LEVEL_PACKED_START)
25 #define IS_PACKED_LEVEL_FILE(x) (x > LEVEL_PACKED_START)
28 void setElementChangePages(struct ElementInfo *, int);
29 void setElementChangeInfoToDefaults(struct ElementChangeInfo *);
30 void copyElementInfo(struct ElementInfo *, struct ElementInfo *);
32 char *getDefaultLevelFilename(int);
33 char *getLocalLevelTemplateFilename(void);
34 char *getGlobalLevelTemplateFilename(void);
36 int getMappedElement(int);
38 void LoadLevelFromFilename(struct LevelInfo *, char *);
40 void LoadLevelTemplate(int);
41 void LoadLevelInfoOnly(int);
42 void LoadNetworkLevel(struct NetworkLevelInfo *);
44 void SaveLevelTemplate(void);
45 void SaveNativeLevel(struct LevelInfo *);
46 void DumpLevel(struct LevelInfo *);
47 void DumpLevels(void);
48 boolean SaveLevelChecked(int);
50 void CopyNativeLevel_RND_to_Native(struct LevelInfo *);
51 void CopyNativeLevel_Native_to_RND(struct LevelInfo *);
53 void LoadTapeFromFilename(char *);
55 void LoadSolutionTape(int);
56 void LoadScoreTape(char *, int);
57 void LoadScoreCacheTape(char *, int);
58 void SaveTapeToFilename(char *);
60 void SaveScoreTape(int);
61 void DumpTape(struct TapeInfo *);
63 boolean SaveTapeChecked(int);
64 boolean SaveTapeChecked_LevelSolved(int);
69 void LoadServerScore(int, boolean);
70 void SaveServerScore(int, boolean);
71 void SaveServerScoreFromFile(int, boolean, char *);
73 void LoadLocalAndServerScore(int, boolean);
75 void PrepareScoreTapesForUpload(char *);
77 void LoadUserNames(void);
79 void LoadSetupFromFilename(char *);
80 void LoadSetup_Default(void);
81 void SaveSetup_Default(void);
83 void LoadSetup_AutoSetup(void);
84 void SaveSetup_AutoSetup(void);
86 void LoadSetup_ServerSetup(void);
87 void SaveSetup_ServerSetup(void);
89 void LoadSetup_EditorCascade(void);
90 void SaveSetup_EditorCascade(void);
95 void SaveSetup_AddGameControllerMapping(char *);
97 void setHideSetupEntry(void *);
98 void removeHideSetupEntry(void *);
99 boolean hideSetupEntry(void *);
101 void LoadCustomElementDescriptions(void);
102 void InitMenuDesignSettings_FromHash(SetupFileHash *, boolean);
103 void InitMenuDesignSettings_Static(void);
104 void LoadMenuDesignSettings(void);
105 void LoadMenuDesignSettings_AfterGraphics(void);
106 void InitSoundSettings_FromHash(SetupFileHash *, boolean);
107 void InitSoundSettings_Static(void);
108 void LoadSoundSettings(void);
109 void LoadUserDefinedEditorElementList(int **, int *);
110 void LoadMusicInfo(void);
111 void LoadHelpAnimInfo(void);
112 void LoadHelpTextInfo(void);
114 void ConvertLevels(void);
115 void CreateLevelSketchImages(void);
116 void CreateCollectElementImages(void);
117 void CreateCustomElementImages(char *);
119 void FreeGlobalAnimEventInfo(void);
120 int GetGlobalAnimEventValue(int, int);
121 int GetGlobalAnimEventValueCount(int);
123 int get_parameter_value(char *, char *, int);