ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
game_init.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 //=============================================================================
23 //
24 // This unit provides game initialization routine, which takes place after
25 // main game file was successfully loaded.
26 //
27 //=============================================================================
28 
29 #ifndef AGS_ENGINE_GAME_GAME_INIT_H
30 #define AGS_ENGINE_GAME_GAME_INIT_H
31 
32 #include "ags/shared/game/main_game_file.h"
33 #include "ags/shared/util/string.h"
34 
35 namespace AGS3 {
36 namespace AGS {
37 namespace Engine {
38 
39 using namespace Shared;
40 
41 // Error codes for initializing the game
42 enum GameInitErrorType {
43  kGameInitErr_NoError,
44  // currently AGS requires at least one font to be present in game
45  kGameInitErr_NoFonts,
46  kGameInitErr_TooManyAudioTypes,
47  kGameInitErr_EntityInitFail,
48  kGameInitErr_PluginNameInvalid,
49  kGameInitErr_NoGlobalScript,
50  kGameInitErr_ScriptLinkFailed
51 };
52 
53 String GetGameInitErrorText(GameInitErrorType err);
54 
55 typedef TypedCodeError<GameInitErrorType, GetGameInitErrorText> GameInitError;
56 typedef ErrorHandle<GameInitError> HGameInitError;
57 
58 // Sets up game state for play using preloaded data
59 HGameInitError InitGameState(const LoadedGameEntities &ents, GameDataVersion data_ver);
60 
61 } // namespace Engine
62 } // namespace AGS
63 } // namespace AGS3
64 
65 #endif
Definition: achievements_tables.h:27
Definition: engine.h:144
Definition: ags.h:40