[682] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
[1502] | 3 | * > www.orxonox.net < |
---|
[682] | 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Reto Grieder |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
[1024] | 30 | @file |
---|
| 31 | @brief Contains all the necessary forward declarations for all classes and structs. |
---|
[871] | 32 | */ |
---|
[682] | 33 | |
---|
| 34 | #ifndef _CorePrereqs_H__ |
---|
| 35 | #define _CorePrereqs_H__ |
---|
| 36 | |
---|
[1502] | 37 | #include "util/OrxonoxPlatform.h" |
---|
[1062] | 38 | |
---|
[1024] | 39 | #include <string> |
---|
[682] | 40 | |
---|
[728] | 41 | //----------------------------------------------------------------------- |
---|
| 42 | // Shared library settings |
---|
| 43 | //----------------------------------------------------------------------- |
---|
| 44 | #if (ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32) && !defined( CORE_STATIC_BUILD ) |
---|
| 45 | # ifdef CORE_SHARED_BUILD |
---|
| 46 | # define _CoreExport __declspec(dllexport) |
---|
| 47 | # else |
---|
| 48 | # if defined( __MINGW32__ ) |
---|
| 49 | # define _CoreExport |
---|
| 50 | # else |
---|
| 51 | # define _CoreExport __declspec(dllimport) |
---|
| 52 | # endif |
---|
| 53 | # endif |
---|
| 54 | #elif defined ( ORXONOX_GCC_VISIBILITY ) |
---|
| 55 | # define _CoreExport __attribute__ ((visibility("default"))) |
---|
| 56 | #else |
---|
| 57 | # define _CoreExport |
---|
| 58 | #endif |
---|
[682] | 59 | |
---|
[728] | 60 | |
---|
[682] | 61 | //----------------------------------------------------------------------- |
---|
[728] | 62 | // Forward declarations |
---|
| 63 | //----------------------------------------------------------------------- |
---|
[682] | 64 | class SignalHandler; |
---|
| 65 | |
---|
[728] | 66 | namespace orxonox |
---|
[684] | 67 | { |
---|
[1052] | 68 | namespace XMLPort |
---|
| 69 | { |
---|
| 70 | enum Mode |
---|
| 71 | { |
---|
| 72 | LoadObject, |
---|
| 73 | SaveObject |
---|
| 74 | }; |
---|
| 75 | } |
---|
| 76 | |
---|
[1502] | 77 | namespace KeybindMode |
---|
| 78 | { |
---|
| 79 | enum Enum |
---|
| 80 | { |
---|
| 81 | OnPress, |
---|
| 82 | OnHold, |
---|
| 83 | OnRelease, |
---|
| 84 | None |
---|
| 85 | }; |
---|
| 86 | }; |
---|
[1349] | 87 | |
---|
[1024] | 88 | typedef std::string LanguageEntryLabel; |
---|
| 89 | |
---|
[1502] | 90 | class ArgumentCompleter; |
---|
| 91 | class ArgumentCompletionListElement; |
---|
[682] | 92 | class BaseFactory; |
---|
| 93 | class BaseMetaObjectListElement; |
---|
[1024] | 94 | class BaseObject; |
---|
[682] | 95 | template <class T> |
---|
| 96 | class ClassFactory; |
---|
| 97 | template <class T> |
---|
[1024] | 98 | class ClassIdentifier; |
---|
[871] | 99 | class ClassTreeMask; |
---|
[1024] | 100 | class ClassTreeMaskIterator; |
---|
| 101 | class ClassTreeMaskNode; |
---|
[1052] | 102 | class CommandEvaluation; |
---|
| 103 | class CommandExecutor; |
---|
| 104 | class ConfigFile; |
---|
| 105 | class ConfigFileEntry; |
---|
| 106 | class ConfigFileEntryComment; |
---|
| 107 | class ConfigFileEntryValue; |
---|
| 108 | class ConfigFileManager; |
---|
| 109 | class ConfigFileSection; |
---|
[682] | 110 | class ConfigValueContainer; |
---|
[1502] | 111 | class ConsoleCommand; |
---|
[1535] | 112 | class Core; |
---|
[1024] | 113 | class Error; |
---|
| 114 | class Executor; |
---|
[1052] | 115 | template <class T> |
---|
| 116 | class ExecutorMember; |
---|
| 117 | class ExecutorStatic; |
---|
[1024] | 118 | class Factory; |
---|
[1052] | 119 | class Functor; |
---|
| 120 | template <class T> |
---|
| 121 | class FunctorMember; |
---|
| 122 | class FunctorStatic; |
---|
[1024] | 123 | class Identifier; |
---|
[1502] | 124 | class IRC; |
---|
[682] | 125 | template <class T> |
---|
[728] | 126 | class Iterator; |
---|
| 127 | class Language; |
---|
[1024] | 128 | class LanguageEntry; |
---|
| 129 | class Level; |
---|
| 130 | class Loader; |
---|
[682] | 131 | class MetaObjectList; |
---|
| 132 | template <class T> |
---|
| 133 | class MetaObjectListElement; |
---|
[1052] | 134 | class Namespace; |
---|
| 135 | class NamespaceNode; |
---|
[682] | 136 | template <class T> |
---|
| 137 | class ObjectList; |
---|
| 138 | template <class T> |
---|
| 139 | class ObjectListElement; |
---|
[728] | 140 | class OrxonoxClass; |
---|
[1502] | 141 | class OutputBuffer; |
---|
| 142 | class OutputBufferListener; |
---|
[684] | 143 | class OutputHandler; |
---|
[1052] | 144 | class Shell; |
---|
[1502] | 145 | class ShellListener; |
---|
[682] | 146 | template <class T> |
---|
[1502] | 147 | class SubclassIdentifier; |
---|
[1214] | 148 | class TclBind; |
---|
[1502] | 149 | struct TclInterpreterBundle; |
---|
| 150 | class TclThreadManager; |
---|
[1024] | 151 | class Tickable; |
---|
| 152 | template <class T, class O> |
---|
| 153 | class XMLPortClassObjectContainer; |
---|
| 154 | template <class T> |
---|
| 155 | class XMLPortClassParamContainer; |
---|
| 156 | class XMLPortObjectContainer; |
---|
| 157 | class XMLPortParamContainer; |
---|
[1219] | 158 | |
---|
| 159 | // input |
---|
[1293] | 160 | //class GUIInputHandler; |
---|
[1535] | 161 | class BaseCommand; |
---|
| 162 | class BufferedParamCommand; |
---|
| 163 | class Button; |
---|
[1502] | 164 | class CalibratorCallback; |
---|
[1535] | 165 | class HalfAxis; |
---|
[1219] | 166 | class InputBuffer; |
---|
| 167 | class InputManager; |
---|
[1293] | 168 | class JoyStickHandler; |
---|
[1535] | 169 | class MouseHandler; |
---|
[1219] | 170 | class KeyBinder; |
---|
[1502] | 171 | class KeyDetector; |
---|
[1535] | 172 | class KeyHandler; |
---|
| 173 | class ParamCommand; |
---|
| 174 | class SimpleCommand; |
---|
[682] | 175 | } |
---|
| 176 | |
---|
| 177 | #endif /* _CorePrereqs_H__ */ |
---|