Colobot
system_macosx.h
Go to the documentation of this file.
1 /*
2  * This file is part of the Colobot: Gold Edition source code
3  * Copyright (C) 2001-2016, Daniel Roux, EPSITEC SA & TerranovaTeam
4  * http://epsitec.ch; http://colobot.info; http://github.com/colobot
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  * See the GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see http://gnu.org/licenses
18  */
19 
25 #include "app/system.h"
26 #include "app/system_other.h"
27 
28 //@colobot-lint-exclude UndefinedFunctionRule
29 
31 {
32 public:
33  void Init() override;
34 
35  std::string GetDataPath() override;
36  std::string GetLangPath() override;
37  std::string GetSaveDir() override;
38 
39  void Usleep(int usec) override;
40 
41 private:
42  std::string m_ASPath;
43  std::string m_dataPath;
44 };
45 
46 //@end-colobot-lint-exclude
std::string GetSaveDir() override
Returns the save dir location.
Definition: system_macosx.cpp:103
void Init() override
Performs platform-specific initialization.
Definition: system_macosx.cpp:68
Fallback code for other systems.
Definition: system_other.h:43
std::string GetDataPath() override
Returns the data path (containing textures, levels, helpfiles, etc)
Definition: system_macosx.cpp:93
System functions: time stamps, info dialogs, etc.
Definition: system_macosx.h:30
std::string GetLangPath() override
Returns the translations path.
Definition: system_macosx.cpp:98
void Usleep(int usec) override
Sleep for given amount of microseconds.
Definition: system_macosx.cpp:111