Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6038


Ignore:
Timestamp:
Nov 5, 2009, 9:22:22 PM (14 years ago)
Author:
rgrieder
Message:

Synchronised sandbox with current code trunk. There should be a few bug fixes.

Location:
sandbox
Files:
7 deleted
40 edited
6 copied

Legend:

Unmodified
Added
Removed
  • sandbox

  • sandbox/bin/vld.ini.in

    r3196 r6038  
    5656;   Default: None.
    5757;
    58 ForceIncludeModules =
     58ForceIncludeModules = boost_date_time-vc80-mt-gd-1_39.dll, boost_filesystem-vc80-mt-gd-1_39.dll, boost_system-vc80-mt-gd-1_39.dll, boost_thread-vc80-mt-gd-1_39.dll, enet_d.dll, lua_d.dll, ogg_d.dll, vorbis_d.dll, vorbifile_d.dll
    5959
    6060; Maximum number of data bytes to display for each leaked block. If zero, then
     
    6666;   Default: 4294967295
    6767;
    68 MaxDataDump =
     68MaxDataDump = 0
    6969
    7070; Maximum number of call stack frames to trace back during leak detection.
  • sandbox/cmake/CompilerConfigMSVC.cmake

    r5695 r6038  
    7070
    7171# Overwrite CMake default flags here.
    72 SET_COMPILER_FLAGS("-MDd -Od -Zi -D_DEBUG -Gm -RTC1" Debug          CACHE)
    73 SET_COMPILER_FLAGS("-MD  -O2     -DNDEBUG -MP2"      Release        CACHE)
    74 SET_COMPILER_FLAGS("-MD  -O2 -Zi -DNDEBUG -MP2"      RelWithDebInfo CACHE)
    75 SET_COMPILER_FLAGS("-MD  -O1     -DNDEBUG -MP2"      MinSizeRel     CACHE)
     72SET_COMPILER_FLAGS("-MDd -Od -Zi -D_DEBUG -MP2 -RTC1" Debug          CACHE)
     73SET_COMPILER_FLAGS("-MD  -O2     -DNDEBUG -MP2"       Release        CACHE)
     74SET_COMPILER_FLAGS("-MD  -O2 -Zi -DNDEBUG -MP2"       RelWithDebInfo CACHE)
     75SET_COMPILER_FLAGS("-MD  -O1     -DNDEBUG -MP2"       MinSizeRel     CACHE)
    7676
    7777# Use Link time code generation for Release config if ORXONOX_RELEASE is defined
  • sandbox/cmake/LibraryConfig.cmake

    r5782 r6038  
    8989##### Boost #####
    9090# Expand the next statement if newer boost versions than 1.36.1 are released
    91 SET(Boost_ADDITIONAL_VERSIONS 1.37 1.37.0 1.38 1.38.0 1.39 1.39.0)
     91SET(Boost_ADDITIONAL_VERSIONS 1.37 1.37.0 1.38 1.38.0 1.39 1.39.0 1.40 1.40.0)
    9292FIND_PACKAGE(Boost 1.35 REQUIRED thread filesystem system date_time)
    9393# No auto linking, so this option is useless anyway
  • sandbox/cmake/PackageConfig.cmake

    r5782 r6038  
    2626
    2727# Check package version info
    28 # MAJOR: Interface breaking change somewhere (library version changed, etc.)
    29 # MINOR: Bug fix or small conformant changes
    30 SET(DEPENDENCY_VERSION_REQUIRED 3)
     28# MAJOR: Breaking change
     29# MINOR: No breaking changes by the dependency package
     30#        For example any code running on 3.0 should still run on 3.1
     31#        But you can specify that the code only runs on 3.1 and higher
     32#        or 4.0 and higher (so both 3.1 and 4.0 will work).
     33SET(ALLOWED_MINIMUM_VERSIONS 3.1 4.0)
     34
    3135IF(NOT EXISTS ${DEPENDENCY_PACKAGE_DIR}/version.txt)
    3236  SET(DEPENDENCY_VERSION 1.0)
     
    4448
    4549INCLUDE(CompareVersionStrings)
    46 COMPARE_VERSION_STRINGS(${DEPENDENCY_VERSION} ${DEPENDENCY_VERSION_REQUIRED} _result TRUE)
    47 IF(NOT _result EQUAL 0)
     50SET(_version_match FALSE)
     51FOREACH(_version ${ALLOWED_MINIMUM_VERSIONS})
     52  # Get major version
     53  STRING(REGEX REPLACE "^([0-9]+)\\..*$" "\\1" _major_version "${_version}")
     54  COMPARE_VERSION_STRINGS(${DEPENDENCY_VERSION} ${_major_version} _result TRUE)
     55  IF(_result EQUAL 0)
     56    COMPARE_VERSION_STRINGS(${DEPENDENCY_VERSION} ${_version} _result FALSE)
     57    IF(NOT _result LESS 0)
     58      SET(_version_match TRUE)
     59    ENDIF()
     60  ENDIF()
     61ENDFOREACH(_version)
     62IF(NOT _version_match)
    4863  MESSAGE(FATAL_ERROR "Your dependency package version is ${DEPENDENCY_VERSION}\n"
    49           "Required version: ${DEPENDENCY_VERSION_REQUIRED}\n"
    50           "You can get a new version from www.orxonox.net")
     64          "Possible required versions: ${ALLOWED_MINIMUM_VERSIONS}\n"
     65          "You can get a new version from www.orxonox.net")
    5166ENDIF()
    5267
  • sandbox/cmake/ParseMacroArguments.cmake

    r5695 r6038  
    3939  # Using LIST(FIND ...) speeds up the process
    4040  SET(_keywords ${_switches} ${_list_names})
     41
     42  # Reset all arguments
     43  FOREACH(_arg ${_switches} ${_list_names})
     44    SET(_arg_${_arg})
     45  ENDFOREACH(_arg)
    4146
    4247  # Parse all the arguments and set the corresponding variable
  • sandbox/cmake/PrecompiledHeaderFiles.cmake

    r3251 r6038  
    110110    GET_GCC_COMPILER_FLAGS(${_target_name} _pch_gcc_flags)
    111111    # Make sure we recompile the pch file even if only the flags change
    112     IF(NOT "${_pch_gcc_flags}" STREQUAL "${_INTERNAL_${_target_name}_PCH_GCC_FLAGS}")
     112    IF(NOT "${_pch_gcc_flags}" STREQUAL "${_INTERNAL_${_target_name}_PCH_GCC_FLAGS}" OR NOT EXISTS "${_pch_dep_helper_file}")
    113113      SET(_INTERNAL_${_target_name}_PCH_GCC_FLAGS "${_pch_gcc_flags}" CACHE INTERNAL "")
    114114      FILE(WRITE ${_pch_dep_helper_file} "/* ${_pch_gcc_flags} */")
  • sandbox/cmake/SourceFileUtilities.cmake

    r2710 r6038  
    2424 #    [ADD/SET]_SOURCE_FILES - Writes source files to the cache by force and
    2525 #                             adds the current directory.
    26  #    GET_ALL_HEADER_FILES - Finds all header files recursively.
     26 #                             Also compiles multiple source files into a single
     27 #                             one by including them
     28 #                             Use COMPILATION_[BEGIN|END] in
     29 #                             [ADD|SET]_SOURCE_FILES and specify the name of
     30 #                             the new source file after COMPILATION_BEGIN
     31 #    GET_ALL_HEADER_FILES   - Finds all header files recursively.
    2732 #    GENERATE_SOURCE_GROUPS - Set Visual Studio source groups.
    2833 #
    2934
     35FUNCTION(PREPARE_SOURCE_FILES)
     36  SET(_fullpath_sources)
     37  FOREACH(_file ${ARGN})
     38    IF(_file STREQUAL "COMPILATION_BEGIN")
     39      SET(_compile TRUE)
     40      # Next file is the name of the compilation
     41      SET(_get_name TRUE)
     42    ELSEIF(_get_name)
     43      SET(_get_name FALSE)
     44      SET(_compilation_name ${_file})
     45    ELSEIF(_file STREQUAL "COMPILATION_END")
     46      IF(NOT _compilation_name)
     47        MESSAGE(FATAL_ERROR "No name provided for source file compilation")
     48      ENDIF()
     49      IF(NOT DISABLE_COMPILATIONS)
     50        SET(_compilation_file ${CMAKE_CURRENT_BINARY_DIR}/${_compilation_name})
     51        SET(_include_string)
     52        FOREACH(_file2 ${_compilation})
     53          SET(_include_string "${_include_string}#include \"${_file2}\"\n")
     54        ENDFOREACH(_file2)
     55        IF(EXISTS )
     56          FILE(READ ${_compilation_file} _include_string_file)
     57        ENDIF()
     58        IF(NOT _include_string STREQUAL "${_include_string_file}")
     59          FILE(WRITE ${_compilation_file} "${_include_string}")
     60        ENDIF()
     61        LIST(APPEND _fullpath_sources ${_compilation_file})
     62        # MSVC hack that excludes the compilations from the intellisense database
     63        # (There is a bug with the "-" instead of "/". Only works for "Zm#" argument)
     64        IF(MSVC)
     65          SET_SOURCE_FILES_PROPERTIES(${_compilation_file} PROPERTIES COMPILE_FLAGS "-Zm1000")
     66        ENDIF()
     67      ENDIF()
     68      SET(_compilation_name)
     69      SET(_compilation)
     70      SET(_compile FALSE)
     71    ELSE()
     72      # Prefix the full path
     73      GET_SOURCE_FILE_PROPERTY(_filepath ${_file} LOCATION)
     74      LIST(APPEND _fullpath_sources ${_filepath})
     75      IF(_compile AND NOT DISABLE_COMPILATIONS)
     76        LIST(APPEND _compilation ${_filepath})
     77        LIST(APPEND _fullpath_sources "H")
     78      ENDIF()
     79    ENDIF()
     80  ENDFOREACH(_file)
     81  SET(_fullpath_sources ${_fullpath_sources} PARENT_SCOPE)
     82ENDFUNCTION(PREPARE_SOURCE_FILES)
     83
     84
    3085# Adds source files with the full path to a list
    3186FUNCTION(ADD_SOURCE_FILES _varname)
    32   # Prefix the full path
    33   SET(_fullpath_sources)
    34   FOREACH(_file ${ARGN})
    35     GET_SOURCE_FILE_PROPERTY(_filepath ${_file} LOCATION)
    36     LIST(APPEND _fullpath_sources ${_filepath})
    37   ENDFOREACH(_file)
     87  PREPARE_SOURCE_FILES(${ARGN})
    3888  # Write into the cache to avoid variable scoping in subdirs
    3989  SET(${_varname} ${${_varname}} ${_fullpath_sources} CACHE INTERNAL "Do not edit")
     
    4393# Sets source files with the full path
    4494FUNCTION(SET_SOURCE_FILES _varname)
    45   # Prefix the full path
    46   SET(_fullpath_sources)
    47   FOREACH(_file ${ARGN})
    48     GET_SOURCE_FILE_PROPERTY(_filepath ${_file} LOCATION)
    49     LIST(APPEND _fullpath_sources ${_filepath})
    50   ENDFOREACH(_file)
     95  PREPARE_SOURCE_FILES(${ARGN})
    5196  # Write into the cache to avoid variable scoping in subdirs
    5297  SET(${_varname} ${_fullpath_sources} CACHE INTERNAL "Do not edit")
     
    66111    GET_SOURCE_FILE_PROPERTY(_full_filepath ${_file} LOCATION)
    67112    FILE(RELATIVE_PATH _relative_path ${CMAKE_CURRENT_SOURCE_DIR} ${_full_filepath})
    68     GET_FILENAME_COMPONENT(_relative_path ${_relative_path} PATH)
    69     STRING(REPLACE "/" "\\\\" _group_path "${_relative_path}")
    70     SOURCE_GROUP("Source\\${_group_path}" FILES ${_file})
     113    IF(NOT _relative_path MATCHES "^\\.\\.")
     114      GET_FILENAME_COMPONENT(_relative_path ${_relative_path} PATH)
     115      STRING(REPLACE "/" "\\\\" _group_path "${_relative_path}")
     116      SOURCE_GROUP("Source\\${_group_path}" FILES ${_file})
     117    ELSE()
     118      # Has to be a compilation
     119      SOURCE_GROUP("Compilations" FILES ${_file})
     120    ENDIF()
    71121  ENDFOREACH(_file)
    72122
  • sandbox/cmake/TargetUtilities.cmake

    r5695 r6038  
    6767ENDIF()
    6868
    69 FUNCTION(ORXONOX_ADD_LIBRARY _target_name)
     69MACRO(ORXONOX_ADD_LIBRARY _target_name)
    7070  TU_ADD_TARGET(${_target_name} LIBRARY "STATIC;SHARED" ${ARGN})
    71 ENDFUNCTION(ORXONOX_ADD_LIBRARY)
    72 
    73 FUNCTION(ORXONOX_ADD_EXECUTABLE _target_name)
     71ENDMACRO(ORXONOX_ADD_LIBRARY)
     72
     73MACRO(ORXONOX_ADD_EXECUTABLE _target_name)
    7474  TU_ADD_TARGET(${_target_name} EXECUTABLE "WIN32" ${ARGN})
    75 ENDFUNCTION(ORXONOX_ADD_EXECUTABLE)
    76 
    77 
    78 FUNCTION(TU_ADD_TARGET _target_name _target_type _additional_switches)
     75ENDMACRO(ORXONOX_ADD_EXECUTABLE)
     76
     77
     78MACRO(TU_ADD_TARGET _target_name _target_type _additional_switches)
    7979  CAPITALISE_NAME(${_target_name} _target_name_capitalised)
    8080
     
    8888
    8989
    90   # GET_HEADER_FILES
     90  # Workaround: Source file properties get lost when leaving a subdirectory
     91  # Therefore an "H" after a file means we have to set it as HEADER_FILE_ONLY
     92  FOREACH(_file ${_arg_SOURCE_FILES})
     93    IF(_file STREQUAL "H")
     94      SET_SOURCE_FILES_PROPERTIES(${_last_file} PROPERTIES HEADER_FILE_ONLY TRUE)
     95    ELSE()
     96      SET(_last_file ${_file})
     97      LIST(APPEND _${_target_name}_source_files ${_file})
     98    ENDIF()
     99  ENDFOREACH(_file)
     100
     101  # Assemble all header files of the library
    91102  IF(_arg_FIND_HEADER_FILES)
    92     GET_ALL_HEADER_FILES(_${target_name}_header_files)
     103    GET_ALL_HEADER_FILES(_${_target_name}_header_files)
    93104  ENDIF()
    94105
    95106  # Remove potential duplicates
    96   SET(_${_target_name}_files ${_${target_name}_header_files} ${_arg_SOURCE_FILES})
     107  SET(_${_target_name}_files ${_${_target_name}_header_files} ${_${_target_name}_source_files})
    97108  LIST(REMOVE_DUPLICATES _${_target_name}_files)
    98109
     
    141152  ENDIF()
    142153
     154  # No warnings needed from third party libraries
     155  IF(_arg_ORXONOX_EXTERNAL)
     156    REMOVE_COMPILER_FLAGS("-W3 -W4" MSVC)
     157    ADD_COMPILER_FLAGS("-w")
     158  ENDIF()
     159
    143160  # Set default linking if required
    144161  IF(NOT _arg_SHARED AND NOT _arg_STATIC)
     
    156173    SET(_arg_STATIC)
    157174  ENDIF()
     175
     176  # Don't compile header files
     177  FOREACH(_file ${_${_target_name}_files})
     178    IF(NOT _file MATCHES "\\.(c|cc|cpp)")
     179      SET_SOURCE_FILES_PROPERTIES(${_file} PROPERTIES HEADER_FILE_ONLY TRUE)
     180    ENDIF()
     181  ENDFOREACH(_file)
     182
     183
    158184
    159185  # Add the library/executable
     
    164190    ADD_EXECUTABLE(${_target_name} ${_arg_WIN32} ${_arg_EXCLUDE_FROM_ALL}
    165191                   ${_${_target_name}_files})
     192  ENDIF()
     193
     194
     195
     196  # Change library prefix to "lib"
     197  IF(MSVC AND ${_target_type} STREQUAL "LIBRARY")
     198    SET_TARGET_PROPERTIES(${_target_name} PROPERTIES
     199      PREFIX "lib"
     200    )
     201  ENDIF()
     202
     203  # MSVC hack to exclude external library sources from the intellisense database
     204  # (IntelliSense stops working when adding "-Zm1000" as compile flag. "/Zm1000"
     205  # would not work because of the slash)
     206  IF(_arg_ORXONOX_EXTERNAL AND MSVC)
     207    SET_TARGET_PROPERTIES(${_target_name} PROPERTIES COMPILE_FLAGS "-Zm1000")
    166208  ENDIF()
    167209
     
    216258  ENDIF()
    217259
    218 ENDFUNCTION(TU_ADD_TARGET)
     260ENDMACRO(TU_ADD_TARGET)
    219261
    220262
  • sandbox/data/CMakeLists.txt

    r5782 r6038  
    2525 #
    2626
    27 # For dev runs we've got two data directory. The one from the other repository root folder
     27# For dev runs we've got two data directories. The one from the other repository root folder
    2828# is called EXTERNAL_DATA
    2929SET(DATA_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
  • sandbox/doc/api/doxy.config.in

    r3196 r6038  
    140140# explicit @brief command for a brief description.
    141141
    142 JAVADOC_AUTOBRIEF      = NO
     142JAVADOC_AUTOBRIEF      = YES
    143143
    144144# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
  • sandbox/src/Orxonox.cc

    r5752 r6038  
    6363        for (int i = 1; i < argc; ++i)
    6464            strCmdLine += argv[i] + std::string(" ");
     65#endif
    6566
    6667        return orxonox::main(strCmdLine);
    67 #endif
    6868    }
    6969    catch (...)
  • sandbox/src/OrxonoxConfig.cmake

    r5695 r6038  
    3838  OPTION(PCH_ENABLE "Global PCH switch" TRUE)
    3939ENDIF()
     40
     41# Global switch to disable multiple file compilations
     42OPTION(DISABLE_COMPILATIONS "Global multi-file compilation switch" FALSE)
    4043
    4144# Use WinMain() or main()?
  • sandbox/src/external/tolua/CMakeLists.txt

    r5738 r6038  
    2020################### Tolua++ library ###################
    2121
    22 SET(TOLUA++_FILES
     22SET_SOURCE_FILES(TOLUA++_FILES
    2323  tolua_event.h
    2424  tolua++.h
    25 
     25COMPILATION_BEGIN ToluaCompilation.c
    2626  tolua_event.c
    2727  tolua_is.c
     
    2929  tolua_push.c
    3030  tolua_to.c
     31COMPILATION_END
    3132)
    32 GENERATE_SOURCE_GROUPS(${TOLUA++_FILES})
    33 
    34 # No warnings needed from third party libraries
    35 REMOVE_COMPILER_FLAGS("-W3 -W4" MSVC)
    36 ADD_COMPILER_FLAGS("-w")
    3733
    3834ORXONOX_ADD_LIBRARY(tolua++_orxonox
  • sandbox/src/libraries/CMakeLists.txt

    r5782 r6038  
    2525################ Sub Directories ################
    2626
     27ADD_SUBDIRECTORY(util)
    2728ADD_SUBDIRECTORY(core)
    28 ADD_SUBDIRECTORY(util)
  • sandbox/src/libraries/core/CMakeLists.txt

    r5782 r6038  
    1919
    2020SET_SOURCE_FILES(CORE_SRC_FILES
    21   Clock.cc
    22   ConfigFileManager.cc
    2321  ConfigValueContainer.cc
    2422  Core.cc
     
    3331
    3432  # command
    35   CommandLine.cc
     33  CommandLineParser.cc
    3634  Executor.cc
    3735
    3836  # hierarchy
    39   Factory.cc
    4037  Identifier.cc
    4138  MetaObjectList.cc
     
    4340  # level
    4441  BaseObject.cc
     42
     43COMPILATION_BEGIN FilesystemCompilation.cc
     44  ConfigFileManager.cc
     45  PathConfig.cc
     46COMPILATION_END
    4547
    4648  # multithreading
  • sandbox/src/libraries/core/ClassFactory.h

    r5782 r6038  
    4242
    4343#include "util/Debug.h"
    44 #include "Factory.h"
    4544#include "Identifier.h"
    4645
    4746namespace orxonox
    4847{
     48    // ###########################
     49    // ###       Factory       ###
     50    // ###########################
     51    //! Base-class of ClassFactory.
     52    class _CoreExport Factory
     53    {
     54        public:
     55            virtual ~Factory() {};
     56            virtual BaseObject* fabricate(BaseObject* creator) = 0;
     57    };
     58
    4959    // ###############################
    5060    // ###      ClassFactory       ###
     
    5262    //! The ClassFactory is able to create new objects of a specific class.
    5363    template <class T>
    54     class ClassFactory : public BaseFactory
     64    class ClassFactory : public Factory
    5565    {
    5666        public:
    57             static bool create(const std::string& name);
    58             BaseObject* fabricate(BaseObject* creator);
     67            /**
     68                @brief Constructor: Adds the ClassFactory to the Identifier of the same type.
     69                @param name The name of the class
     70                @param bLoadable True if the class can be loaded through XML
     71            */
     72            ClassFactory(const std::string& name, bool bLoadable = true)
     73            {
     74                COUT(4) << "*** ClassFactory: Create entry for " << name << " in Factory." << std::endl;
     75                ClassIdentifier<T>::getIdentifier(name)->addFactory(this);
     76            }
    5977
    60         private:
    61             ClassFactory() {}                               // Don't create
    62             ClassFactory(const ClassFactory& factory) {}    // Don't copy
    63             virtual ~ClassFactory() {}                      // Don't delete
    64 
    65             static T* createNewObject(BaseObject* creator);
     78            /**
     79                @brief Creates and returns a new object of class T.
     80                @return The new object
     81            */
     82            inline BaseObject* fabricate(BaseObject* creator)
     83            {
     84                return static_cast<BaseObject*>(new T(creator));
     85            }
    6686    };
    67 
    68     /**
    69         @brief Adds the ClassFactory to the Identifier of the same type and the Identifier to the Factory.
    70         @param name The name of the class
    71         @param bLoadable True if the class can be loaded through XML
    72         @return Always true (this is needed because the compiler only allows assignments before main())
    73     */
    74     template <class T>
    75     bool ClassFactory<T>::create(const std::string& name)
    76     {
    77         COUT(4) << "*** ClassFactory: Create entry for " << name << " in Factory." << std::endl;
    78         ClassIdentifier<T>::getIdentifier(name)->addFactory(new ClassFactory<T>);
    79         Factory::add(name, ClassIdentifier<T>::getIdentifier());
    80 
    81         return true;
    82     }
    83 
    84     /**
    85         @brief Creates and returns a new object of class T.
    86         @return The new object
    87     */
    88     template <class T>
    89     inline BaseObject* ClassFactory<T>::fabricate(BaseObject* creator)
    90     {
    91         return ClassFactory<T>::createNewObject(creator);
    92     }
    93 
    94     /**
    95         @brief Creates and returns a new object of class T; this is a wrapper for the new operator.
    96         @return The new object
    97     */
    98     template <class T>
    99     inline T* ClassFactory<T>::createNewObject(BaseObject* creator)
    100     {
    101         return new T(creator);
    102     }
    10387}
    10488
  • sandbox/src/libraries/core/ConfigFileManager.cc

    r5782 r6038  
    3535#include "util/StringUtils.h"
    3636#include "ConfigValueContainer.h"
    37 #include "Core.h"
     37#include "PathConfig.h"
    3838
    3939namespace orxonox
     
    4141    bool config(const std::string& classname, const std::string& varname, const std::string& value)
    4242    {
    43         std::map<std::string, Identifier*>::const_iterator identifier = Identifier::getLowercaseIdentifierMap().find(getLowercase(classname));
    44         if (identifier != Identifier::getLowercaseIdentifierMapEnd())
     43        std::map<std::string, Identifier*>::const_iterator identifier = Identifier::getLowercaseStringIdentifierMap().find(getLowercase(classname));
     44        if (identifier != Identifier::getLowercaseStringIdentifierMapEnd())
    4545        {
    4646            std::map<std::string, ConfigValueContainer*>::const_iterator variable = (*identifier).second->getLowercaseConfigValueMap().find(getLowercase(varname));
     
    5353    bool tconfig(const std::string& classname, const std::string& varname, const std::string& value)
    5454    {
    55         std::map<std::string, Identifier*>::const_iterator identifier = Identifier::getLowercaseIdentifierMap().find(getLowercase(classname));
    56         if (identifier != Identifier::getLowercaseIdentifierMapEnd())
     55        std::map<std::string, Identifier*>::const_iterator identifier = Identifier::getLowercaseStringIdentifierMap().find(getLowercase(classname));
     56        if (identifier != Identifier::getLowercaseStringIdentifierMapEnd())
    5757        {
    5858            std::map<std::string, ConfigValueContainer*>::const_iterator variable = (*identifier).second->getLowercaseConfigValueMap().find(getLowercase(varname));
     
    215215
    216216        // Get default file if necessary and available
    217         boost::filesystem::path filepath(Core::getConfigPath() / this->filename_);
     217        boost::filesystem::path filepath(PathConfig::getConfigPath() / this->filename_);
    218218        if (!boost::filesystem::exists(filepath))
    219219        {
    220220            // Try to get default one from the data folder
    221             boost::filesystem::path defaultFilepath(Core::getDataPath() / "defaultConfig" / this->filename_);
     221            boost::filesystem::path defaultFilepath(PathConfig::getDataPath() / "defaultConfig" / this->filename_);
    222222            if (boost::filesystem::exists(defaultFilepath))
    223223            {
     
    329329    {
    330330        std::ofstream file;
    331         file.open((Core::getConfigPathString() + filename_).c_str(), std::fstream::out);
     331        file.open((PathConfig::getConfigPathString() + filename_).c_str(), std::fstream::out);
    332332        file.setf(std::ios::fixed, std::ios::floatfield);
    333333        file.precision(6);
     
    369369        for (std::list<ConfigFileSection*>::iterator it1 = this->sections_.begin(); it1 != this->sections_.end(); )
    370370        {
    371             std::map<std::string, Identifier*>::const_iterator it2 = Identifier::getIdentifierMap().find((*it1)->getName());
    372             if (it2 != Identifier::getIdentifierMapEnd() && (*it2).second->hasConfigValues())
     371            std::map<std::string, Identifier*>::const_iterator it2 = Identifier::getStringIdentifierMap().find((*it1)->getName());
     372            if (it2 != Identifier::getStringIdentifierMapEnd() && (*it2).second->hasConfigValues())
    373373            {
    374374                // The section exists, delete comment
     
    448448        if (this->type_ == ConfigFileType::Settings)
    449449        {
    450             for (std::map<std::string, Identifier*>::const_iterator it = Identifier::getIdentifierMapBegin(); it != Identifier::getIdentifierMapEnd(); ++it)
     450            for (std::map<std::string, Identifier*>::const_iterator it = Identifier::getStringIdentifierMapBegin(); it != Identifier::getStringIdentifierMapEnd(); ++it)
    451451            {
    452452                if (it->second->hasConfigValues())
  • sandbox/src/libraries/core/Core.cc

    r5782 r6038  
    3737
    3838#include <cassert>
    39 #include <fstream>
    40 #include <cstdlib>
    41 #include <cstdio>
    42 #include <boost/version.hpp>
    43 #include <boost/filesystem.hpp>
     39#include <vector>
    4440
    4541#ifdef ORXONOX_PLATFORM_WINDOWS
     
    5046#  undef min
    5147#  undef max
    52 #elif defined(ORXONOX_PLATFORM_APPLE)
    53 #  include <sys/param.h>
    54 #  include <mach-o/dyld.h>
    55 #else /* Linux */
    56 #  include <sys/types.h>
    57 #  include <unistd.h>
    58 #endif
    59 
    60 #include "SpecialConfig.h"
     48#endif
     49
     50#include "util/Clock.h"
    6151#include "util/Debug.h"
    6252#include "util/Exception.h"
    6353#include "util/SignalHandler.h"
    64 #include "Clock.h"
    65 #include "CommandLine.h"
     54#include "PathConfig.h"
     55#include "CommandLineParser.h"
    6656#include "ConfigFileManager.h"
    6757#include "ConfigValueIncludes.h"
    6858#include "CoreIncludes.h"
    6959#include "DynLibManager.h"
    70 #include "Factory.h"
    7160#include "Identifier.h"
    7261#include "Language.h"
    7362#include "LuaState.h"
    74 
    75 // Boost 1.36 has some issues with deprecated functions that have been omitted
    76 #if (BOOST_VERSION == 103600)
    77 #  define BOOST_LEAF_FUNCTION filename
    78 #else
    79 #  define BOOST_LEAF_FUNCTION leaf
    80 #endif
    8163
    8264namespace orxonox
     
    8567    Core* Core::singletonPtr_s  = 0;
    8668
    87     SetCommandLineArgument(externalDataPath, "").information("Path to the external data files");
    88     SetCommandLineOnlyArgument(writingPathSuffix, "").information("Additional subfolder for config and log files");
    8969    SetCommandLineArgument(settingsFile, "orxonox.ini").information("THE configuration file");
    9070#ifdef ORXONOX_PLATFORM_WINDOWS
     
    195175        std::string language_;                          //!< The language
    196176        bool bInitializeRandomNumberGenerator_;         //!< If true, srand(time(0)) is called
    197 
    198         //! Path to the parent directory of the ones above if program was installed with relativ pahts
    199         boost::filesystem::path rootPath_;
    200         boost::filesystem::path executablePath_;        //!< Path to the executable
    201         boost::filesystem::path modulePath_;            //!< Path to the modules
    202         boost::filesystem::path dataPath_;              //!< Path to the data file folder
    203         boost::filesystem::path configPath_;            //!< Path to the config file folder
    204         boost::filesystem::path logPath_;               //!< Path to the log file folder
    205177    };
    206178
     
    210182        : identifierDestroyer_(Identifier::destroyAllIdentifiers)
    211183        , configuration_(new CoreConfiguration()) // Don't yet create config values!
    212         , bDevRun_(false)
    213184    {
    214185        // Set the hard coded fixed paths
    215         this->setFixedPaths();
     186        this->pathConfig_.reset(new PathConfig());
    216187
    217188        // Create a new dynamic library manager
     
    219190
    220191        // Load modules
    221         try
    222         {
    223             // We search for helper files with the following extension
    224             std::string moduleextension = specialConfig::moduleExtension;
    225             size_t moduleextensionlength = moduleextension.size();
    226 
    227             // Search in the directory of our executable
    228             boost::filesystem::path searchpath = this->configuration_->modulePath_;
    229 
    230             // Add that path to the PATH variable in case a module depends on another one
    231             std::string pathVariable = getenv("PATH");
    232             putenv(const_cast<char*>(("PATH=" + pathVariable + ";" + configuration_->modulePath_.string()).c_str()));
    233 
    234             boost::filesystem::directory_iterator file(searchpath);
    235             boost::filesystem::directory_iterator end;
    236 
    237             // Iterate through all files
    238             while (file != end)
     192        const std::vector<std::string>& modulePaths = this->pathConfig_->getModulePaths();
     193        for (std::vector<std::string>::const_iterator it = modulePaths.begin(); it != modulePaths.end(); ++it)
     194        {
     195            try
    239196            {
    240                 std::string filename = file->BOOST_LEAF_FUNCTION();
    241 
    242                 // Check if the file ends with the exension in question
    243                 if (filename.size() > moduleextensionlength)
    244                 {
    245                     if (filename.substr(filename.size() - moduleextensionlength) == moduleextension)
    246                     {
    247                         // We've found a helper file - now load the library with the same name
    248                         std::string library = filename.substr(0, filename.size() - moduleextensionlength);
    249                         boost::filesystem::path librarypath = searchpath / library;
    250 
    251                         try
    252                         {
    253                             DynLibManager::getInstance().load(librarypath.string());
    254                         }
    255                         catch (...)
    256                         {
    257                             COUT(1) << "Couldn't load module \"" << librarypath.string() << "\": " << Exception::handleMessage() << std::endl;
    258                         }
    259                     }
    260                 }
    261 
    262                 ++file;
     197                this->dynLibManager_->load(*it);
    263198            }
    264         }
    265         catch (...)
    266         {
    267             COUT(1) << "An error occurred while loading modules: " << Exception::handleMessage() << std::endl;
     199            catch (...)
     200            {
     201                COUT(1) << "Couldn't load module \"" << *it << "\": " << Exception::handleMessage() << std::endl;
     202            }
    268203        }
    269204
    270205        // Parse command line arguments AFTER the modules have been loaded (static code!)
    271         CommandLine::parseCommandLine(cmdLine);
     206        CommandLineParser::parseCommandLine(cmdLine);
    272207
    273208        // Set configurable paths like log, config and media
    274         this->setConfigurablePaths();
     209        this->pathConfig_->setConfigurablePaths();
    275210
    276211        // create a signal handler (only active for linux)
    277212        // This call is placed as soon as possible, but after the directories are set
    278213        this->signalHandler_.reset(new SignalHandler());
    279         this->signalHandler_->doCatch(configuration_->executablePath_.string(), Core::getLogPathString() + "orxonox_crash.log");
     214        this->signalHandler_->doCatch(PathConfig::getExecutablePathString(), PathConfig::getLogPathString() + "orxonox_crash.log");
    280215
    281216        // Set the correct log path. Before this call, /tmp (Unix) or %TEMP% was used
    282         OutputHandler::getOutStream().setLogPath(Core::getLogPathString());
     217        OutputHandler::getOutStream().setLogPath(PathConfig::getLogPathString());
    283218
    284219        // Parse additional options file now that we know its path
    285         CommandLine::parseFile();
     220        CommandLineParser::parseFile();
    286221
    287222#ifdef ORXONOX_PLATFORM_WINDOWS
     
    289224        // do this after ogre has initialised. Somehow Ogre changes the settings again (not through
    290225        // the timer though).
    291         int limitToCPU = CommandLine::getValue("limitToCPU");
     226        int limitToCPU = CommandLineParser::getValue("limitToCPU");
    292227        if (limitToCPU > 0)
    293228            setThreadAffinity(static_cast<unsigned int>(limitToCPU));
     
    297232        this->configFileManager_.reset(new ConfigFileManager());
    298233        this->configFileManager_->setFilename(ConfigFileType::Settings,
    299             CommandLine::getValue("settingsFile").getString());
     234            CommandLineParser::getValue("settingsFile").getString());
    300235
    301236        // Required as well for the config values
     
    303238
    304239        // creates the class hierarchy for all classes with factories
    305         Factory::createClassHierarchy();
     240        Identifier::createClassHierarchy();
    306241
    307242        // Do this soon after the ConfigFileManager has been created to open up the
     
    376311    }
    377312
    378     /*static*/ const boost::filesystem::path& Core::getDataPath()
    379     {
    380         return getInstance().configuration_->dataPath_;
    381     }
    382     /*static*/ std::string Core::getDataPathString()
    383     {
    384         return getInstance().configuration_->dataPath_.string() + '/';
    385     }
    386 
    387     /*static*/ const boost::filesystem::path& Core::getConfigPath()
    388     {
    389         return getInstance().configuration_->configPath_;
    390     }
    391     /*static*/ std::string Core::getConfigPathString()
    392     {
    393         return getInstance().configuration_->configPath_.string() + '/';
    394     }
    395 
    396     /*static*/ const boost::filesystem::path& Core::getLogPath()
    397     {
    398         return getInstance().configuration_->logPath_;
    399     }
    400     /*static*/ std::string Core::getLogPathString()
    401     {
    402         return getInstance().configuration_->logPath_.string() + '/';
    403     }
    404 
    405     /*static*/ const boost::filesystem::path& Core::getRootPath()
    406     {
    407         return getInstance().configuration_->rootPath_;
    408     }
    409     /*static*/ std::string Core::getRootPathString()
    410     {
    411         return getInstance().configuration_->rootPath_.string() + '/';
    412     }
    413 
    414313    /**
    415314    @note
     
    458357    }
    459358
    460     /**
    461     @brief
    462         Retrievs the executable path and sets all hard coded fixed path (currently only the module path)
    463         Also checks for "orxonox_dev_build.keep_me" in the executable diretory.
    464         If found it means that this is not an installed run, hence we
    465         don't write the logs and config files to ~/.orxonox
    466     @throw
    467         GeneralException
    468     */
    469     void Core::setFixedPaths()
    470     {
    471         //////////////////////////
    472         // FIND EXECUTABLE PATH //
    473         //////////////////////////
    474 
    475 #ifdef ORXONOX_PLATFORM_WINDOWS
    476         // get executable module
    477         TCHAR buffer[1024];
    478         if (GetModuleFileName(NULL, buffer, 1024) == 0)
    479             ThrowException(General, "Could not retrieve executable path.");
    480 
    481 #elif defined(ORXONOX_PLATFORM_APPLE)
    482         char buffer[1024];
    483         unsigned long path_len = 1023;
    484         if (_NSGetExecutablePath(buffer, &path_len))
    485             ThrowException(General, "Could not retrieve executable path.");
    486 
    487 #else /* Linux */
    488         /* written by Nicolai Haehnle <prefect_@gmx.net> */
    489 
    490         /* Get our PID and build the name of the link in /proc */
    491         char linkname[64]; /* /proc/<pid>/exe */
    492         if (snprintf(linkname, sizeof(linkname), "/proc/%i/exe", getpid()) < 0)
    493         {
    494             /* This should only happen on large word systems. I'm not sure
    495                what the proper response is here.
    496                Since it really is an assert-like condition, aborting the
    497                program seems to be in order. */
    498             assert(false);
    499         }
    500 
    501         /* Now read the symbolic link */
    502         char buffer[1024];
    503         int ret;
    504         ret = readlink(linkname, buffer, 1024);
    505         /* In case of an error, leave the handling up to the caller */
    506         if (ret == -1)
    507             ThrowException(General, "Could not retrieve executable path.");
    508 
    509         /* Ensure proper NUL termination */
    510         buffer[ret] = 0;
    511 #endif
    512 
    513         configuration_->executablePath_ = boost::filesystem::path(buffer);
    514 #ifndef ORXONOX_PLATFORM_APPLE
    515         configuration_->executablePath_ = configuration_->executablePath_.branch_path(); // remove executable name
    516 #endif
    517 
    518         /////////////////////
    519         // SET MODULE PATH //
    520         /////////////////////
    521 
    522         if (boost::filesystem::exists(configuration_->executablePath_ / "orxonox_dev_build.keep_me"))
    523         {
    524             COUT(1) << "Running from the build tree." << std::endl;
    525             Core::bDevRun_ = true;
    526             configuration_->modulePath_ = specialConfig::moduleDevDirectory;
    527         }
    528         else
    529         {
    530 
    531 #ifdef INSTALL_COPYABLE // --> relative paths
    532 
    533             // Also set the root path
    534             boost::filesystem::path relativeExecutablePath(specialConfig::defaultRuntimePath);
    535             configuration_->rootPath_ = configuration_->executablePath_;
    536             while (!boost::filesystem::equivalent(configuration_->rootPath_ / relativeExecutablePath, configuration_->executablePath_)
    537                    && !configuration_->rootPath_.empty())
    538                 configuration_->rootPath_ = configuration_->rootPath_.branch_path();
    539             if (configuration_->rootPath_.empty())
    540                 ThrowException(General, "Could not derive a root directory. Might the binary installation directory contain '..' when taken relative to the installation prefix path?");
    541 
    542             // Module path is fixed as well
    543             configuration_->modulePath_ = configuration_->rootPath_ / specialConfig::defaultModulePath;
    544 
    545 #else
    546 
    547             // There is no root path, so don't set it at all
    548             // Module path is fixed as well
    549             configuration_->modulePath_ = specialConfig::moduleInstallDirectory;
    550 
    551 #endif
    552         }
    553     }
    554 
    555     /**
    556     @brief
    557         Sets config, log and media path and creates folders if necessary.
    558     @throws
    559         GeneralException
    560     */
    561     void Core::setConfigurablePaths()
    562     {
    563         if (Core::isDevelopmentRun())
    564         {
    565             configuration_->dataPath_  = specialConfig::dataDevDirectory;
    566             configuration_->configPath_ = specialConfig::configDevDirectory;
    567             configuration_->logPath_    = specialConfig::logDevDirectory;
    568         }
    569         else
    570         {
    571 
    572 #ifdef INSTALL_COPYABLE // --> relative paths
    573 
    574             // Using paths relative to the install prefix, complete them
    575             configuration_->dataPath_   = configuration_->rootPath_ / specialConfig::defaultDataPath;
    576             configuration_->configPath_ = configuration_->rootPath_ / specialConfig::defaultConfigPath;
    577             configuration_->logPath_    = configuration_->rootPath_ / specialConfig::defaultLogPath;
    578 
    579 #else
    580 
    581             configuration_->dataPath_  = specialConfig::dataInstallDirectory;
    582 
    583             // Get user directory
    584 #  ifdef ORXONOX_PLATFORM_UNIX /* Apple? */
    585             char* userDataPathPtr(getenv("HOME"));
    586 #  else
    587             char* userDataPathPtr(getenv("APPDATA"));
    588 #  endif
    589             if (userDataPathPtr == NULL)
    590                 ThrowException(General, "Could not retrieve user data path.");
    591             boost::filesystem::path userDataPath(userDataPathPtr);
    592             userDataPath /= ".orxonox";
    593 
    594             configuration_->configPath_ = userDataPath / specialConfig::defaultConfigPath;
    595             configuration_->logPath_    = userDataPath / specialConfig::defaultLogPath;
    596 
    597 #endif
    598 
    599         }
    600 
    601         // Option to put all the config and log files in a separate folder
    602         if (!CommandLine::getArgument("writingPathSuffix")->hasDefaultValue())
    603         {
    604             std::string directory(CommandLine::getValue("writingPathSuffix").getString());
    605             configuration_->configPath_ = configuration_->configPath_ / directory;
    606             configuration_->logPath_    = configuration_->logPath_    / directory;
    607         }
    608 
    609         // Create directories to avoid problems when opening files in non existent folders.
    610         std::vector<std::pair<boost::filesystem::path, std::string> > directories;
    611         directories.push_back(std::make_pair(boost::filesystem::path(configuration_->configPath_), "config"));
    612         directories.push_back(std::make_pair(boost::filesystem::path(configuration_->logPath_), "log"));
    613 
    614         for (std::vector<std::pair<boost::filesystem::path, std::string> >::iterator it = directories.begin();
    615             it != directories.end(); ++it)
    616         {
    617             if (boost::filesystem::exists(it->first) && !boost::filesystem::is_directory(it->first))
    618             {
    619                 ThrowException(General, std::string("The ") + it->second + " directory has been preoccupied by a file! \
    620                                          Please remove " + it->first.string());
    621             }
    622             if (boost::filesystem::create_directories(it->first)) // function may not return true at all (bug?)
    623             {
    624                 COUT(4) << "Created " << it->second << " directory" << std::endl;
    625             }
    626         }
    627     }
    628 
    629359    void Core::preUpdate(const Clock& time)
    630360    {
  • sandbox/src/libraries/core/Core.h

    r5782 r6038  
    2828 */
    2929
    30 /**
    31 @file
    32 @brief
    33     Declaration of the Core class.
    34 @details
    35     The Core class is a singleton, only used to configure some variables
    36     in the core through the config-file.
    37 */
    38 
    3930#ifndef _Core_H__
    4031#define _Core_H__
     
    5546    @brief
    5647        The Core class is a singleton used to configure the program basics.
    57     @details
    58         The class provides information about the data, config and log path.
    59         It determines those by the use of platform specific functions.
    6048    @remark
    6149        You should only create this singleton once because it destroys the identifiers!
     
    8573            static void  resetLanguage();
    8674
    87             //! Returns the path to the data files as boost::filesystem::path
    88             static const boost::filesystem::path& getDataPath();
    89             //! Returns the path to the config files as boost::filesystem::path
    90             static const boost::filesystem::path& getConfigPath();
    91             //! Returns the path to the log files as boost::filesystem::path
    92             static const boost::filesystem::path& getLogPath();
    93             //! Returns the path to the root folder as boost::filesystem::path
    94             static const boost::filesystem::path& getRootPath();
    95             //! Returns the path to the data files as std::string
    96             static std::string getDataPathString();
    97             //! Returns the path to the config files as std::string
    98             static std::string getConfigPathString();
    99             //! Returns the path to the log files as std::string
    100             static std::string getLogPathString();
    101             //! Returns the path to the root folder as std::string
    102             static std::string getRootPathString();
    103 
    104             static bool isDevelopmentRun() { return getInstance().bDevRun_; }
    105 
    10675        private:
    10776            Core(const Core&); //!< Don't use (undefined symbol)
     
    11079            void postUpdate(const Clock& time);
    11180
    112             void setFixedPaths();
    113             void setConfigurablePaths();
    11481            void setThreadAffinity(int limitToCPU);
    11582
    11683            // Mind the order for the destruction!
     84            scoped_ptr<PathConfig>        pathConfig_;
    11785            scoped_ptr<DynLibManager>     dynLibManager_;
    11886            scoped_ptr<SignalHandler>     signalHandler_;
     
    12290            scoped_ptr<CoreConfiguration> configuration_;
    12391
    124             bool                          bDevRun_;             //!< True for runs in the build directory (not installed)
    125 
    12692            static Core* singletonPtr_s;
    12793    };
  • sandbox/src/libraries/core/CoreIncludes.h

    r5782 r6038  
    2929/**
    3030    @file
    31     @brief Definition of macros for Identifier and Factory.
     31    @brief Definition of macros for Identifiers
    3232
    3333    Every class needs the RegisterObject(class) macro in its constructor. If the class is an interface
     
    4545#include "util/Debug.h"
    4646#include "Identifier.h"
    47 #include "Factory.h"
    4847#include "ClassFactory.h"
    4948#include "ObjectList.h"
     
    7675
    7776/**
    78     @brief Creates the entry in the Factory.
     77    @brief Creates the Factory.
    7978    @param ClassName The name of the class
    8079*/
    8180#define CreateFactory(ClassName) \
    82     bool bCreated##ClassName##Factory = orxonox::ClassFactory<ClassName>::create(#ClassName)
     81    Factory* _##ClassName##Factory = new orxonox::ClassFactory<ClassName>(#ClassName)
    8382
    8483/**
     
    9392{
    9493    /**
    95         @brief Returns the Identifier with a given name through the factory.
     94        @brief Returns the Identifier with a given name.
    9695        @param String The name of the class
    9796    */
    9897    inline Identifier* ClassByString(const std::string& name)
    9998    {
    100         return Factory::getIdentifier(name);
     99        return Identifier::getIdentifierByString(name);
    101100    }
    102101
    103102    /**
    104         @brief Returns the Identifier with a given network ID through the factory.
    105         @param networkID The network ID of the class
     103        @brief Returns the Identifier with a given lowercase name.
     104        @param String The lowercase name of the class
    106105    */
    107     inline Identifier* ClassByID(uint32_t id)
     106    inline Identifier* ClassByLowercaseString(const std::string& name)
    108107    {
    109         return Factory::getIdentifier(id);
     108        return Identifier::getIdentifierByLowercaseString(name);
    110109    }
    111110}
  • sandbox/src/libraries/core/CorePrereqs.h

    r5738 r6038  
    2828
    2929/**
    30   @file
    31   @brief Contains all the necessary forward declarations for all classes and structs.
     30@file
     31@brief
     32    Shared library macros, enums, constants and forward declarations for the core library
    3233*/
    3334
     
    4041// Shared library settings
    4142//-----------------------------------------------------------------------
     43
    4244#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined( CORE_STATIC_BUILD )
    4345#  ifdef CORE_SHARED_BUILD
     
    5658#endif
    5759
    58 
    59 //-----------------------------------------------------------------------
    60 // Forward declarations
    61 //-----------------------------------------------------------------------
     60//-----------------------------------------------------------------------
     61// Constants
     62//-----------------------------------------------------------------------
     63
     64namespace orxonox
     65{
     66    static const uint32_t OBJECTID_UNKNOWN = static_cast<uint32_t>(-1);
     67}
     68
     69//-----------------------------------------------------------------------
     70// Enums
     71//-----------------------------------------------------------------------
     72
    6273namespace orxonox
    6374{
     
    6677        enum Mode
    6778        {
     79            NOP,
    6880            LoadObject,
    6981            SaveObject,
    7082            ExpandObject
    7183        };
    72     }
     84}
    7385
    7486    namespace KeybindMode
     
    8294        };
    8395    };
    84 
     96}
     97
     98//-----------------------------------------------------------------------
     99// Forward declarations
     100//-----------------------------------------------------------------------
     101
     102namespace orxonox
     103{
    85104    typedef std::string LanguageEntryLabel;
    86105
    87106    class ArgumentCompleter;
    88107    class ArgumentCompletionListElement;
    89     class BaseFactory;
    90     class BaseMetaObjectListElement;
    91108    class BaseObject;
    92109    template <class T>
     
    98115    class ClassTreeMaskNode;
    99116    class ClassTreeMaskObjectIterator;
    100     class Clock;
    101117    class CommandEvaluation;
    102     class CommandExecutor;
    103     class CommandLine;
     118    class CommandLineParser;
    104119    class CommandLineArgument;
    105120    class ConfigFile;
     
    109124    class ConfigFileManager;
    110125    class ConfigFileSection;
     126    struct ConfigFileType;
    111127    class ConfigValueContainer;
    112128    class ConsoleCommand;
     
    115131    class DynLibManager;
    116132    struct Event;
    117     class EventContainer;
     133    class EventState;
    118134    class Executor;
    119135    template <class T>
     
    125141    class FunctorMember;
    126142    class FunctorStatic;
     143    class Game;
     144    class GameState;
     145    struct GameStateInfo;
     146    struct GameStateTreeNode;
    127147    class GraphicsManager;
    128148    class GUIManager;
     
    131151    template <class T>
    132152    class Iterator;
    133     class IteratorBase;
    134153    class Language;
    135     class LanguageEntry;
    136     class Loader;
    137154    class LuaState;
    138155    class MemoryArchive;
     
    152169    class OgreWindowEventListener;
    153170    class OrxonoxClass;
     171    class PathConfig;
    154172    struct ResourceInfo;
    155173    class Shell;
    156174    class ShellListener;
    157175    template <class T>
     176    class SmartPtr;
     177    template <class T>
    158178    class SubclassIdentifier;
    159179    class TclBind;
     
    163183    class TclThreadManager;
    164184    class Template;
     185    class Thread;
     186    class ThreadPool;
     187    template <class T>
     188    class WeakPtr;
    165189    class WindowEventListener;
    166190    class XMLFile;
     
    173197    class XMLPortParamContainer;
    174198
    175     // game states
    176     class Game;
    177     class GameState;
    178     struct GameStateInfo;
    179     struct GameStateTreeNode;
    180 
    181     // input
     199    // Input
    182200    class BaseCommand;
    183201    class BufferedParamCommand;
    184202    class Button;
    185     class CalibratorCallback;
    186203    class HalfAxis;
    187204    class InputBuffer;
     
    192209    class InputManager;
    193210    class InputState;
     211    struct InputStatePriority;
     212    class JoyStickQuantityListener;
    194213    class JoyStick;
     214    class KeyBinder;
     215    class KeyBinderManager;
     216    class Keyboard;
     217    class KeyDetector;
     218    class KeyEvent;
    195219    class Mouse;
    196     class Keyboard;
    197     class KeyBinder;
    198     class KeyDetector;
    199220    class ParamCommand;
    200221    class SimpleCommand;
    201 
    202 
    203     // multithreading
    204     class Thread;
    205     class ThreadPool;
    206222}
    207223
     
    282298namespace orxonox
    283299{
    284     using ticpp::Document;
    285300    using ticpp::Element;
    286     using ticpp::Declaration;
    287     using ticpp::StylesheetReference;
    288     using ticpp::Text;
    289     using ticpp::Comment;
    290     using ticpp::Attribute;
    291 }
    292 
     301}
    293302
    294303#endif /* _CorePrereqs_H__ */
  • sandbox/src/libraries/core/Functor.h

    r5738 r6038  
    191191
    192192
    193 #define FUNCTOR_TEMPLATE(ismember, returnvalue, numparams) FUNCTOR_TEMPLATE##ismember##returnvalue##numparams
    194 #define FUNCTOR_TEMPLATE000
    195 #define FUNCTOR_TEMPLATE001 template <class P1>
    196 #define FUNCTOR_TEMPLATE002 template <class P1, class P2>
    197 #define FUNCTOR_TEMPLATE003 template <class P1, class P2, class P3>
    198 #define FUNCTOR_TEMPLATE004 template <class P1, class P2, class P3, class P4>
    199 #define FUNCTOR_TEMPLATE005 template <class P1, class P2, class P3, class P4, class P5>
    200 #define FUNCTOR_TEMPLATE010 template <class R>
    201 #define FUNCTOR_TEMPLATE011 template <class R, class P1>
    202 #define FUNCTOR_TEMPLATE012 template <class R, class P1, class P2>
    203 #define FUNCTOR_TEMPLATE013 template <class R, class P1, class P2, class P3>
    204 #define FUNCTOR_TEMPLATE014 template <class R, class P1, class P2, class P3, class P4>
    205 #define FUNCTOR_TEMPLATE015 template <class R, class P1, class P2, class P3, class P4, class P5>
    206 #define FUNCTOR_TEMPLATE100 template <class T>
    207 #define FUNCTOR_TEMPLATE101 template <class T, class P1>
    208 #define FUNCTOR_TEMPLATE102 template <class T, class P1, class P2>
    209 #define FUNCTOR_TEMPLATE103 template <class T, class P1, class P2, class P3>
    210 #define FUNCTOR_TEMPLATE104 template <class T, class P1, class P2, class P3, class P4>
    211 #define FUNCTOR_TEMPLATE105 template <class T, class P1, class P2, class P3, class P4, class P5>
    212 #define FUNCTOR_TEMPLATE110 template <class T, class R>
    213 #define FUNCTOR_TEMPLATE111 template <class T, class R, class P1>
    214 #define FUNCTOR_TEMPLATE112 template <class T, class R, class P1, class P2>
    215 #define FUNCTOR_TEMPLATE113 template <class T, class R, class P1, class P2, class P3>
    216 #define FUNCTOR_TEMPLATE114 template <class T, class R, class P1, class P2, class P3, class P4>
    217 #define FUNCTOR_TEMPLATE115 template <class T, class R, class P1, class P2, class P3, class P4, class P5>
     193#define FUNCTOR_TEMPLATE(ismember, returnvalue, numparams, additionalobject) FUNCTOR_TEMPLATE##ismember##returnvalue##numparams(additionalobject)
     194#define FUNCTOR_TEMPLATE000(additionalobject)
     195#define FUNCTOR_TEMPLATE001(additionalobject) template <class P1>
     196#define FUNCTOR_TEMPLATE002(additionalobject) template <class P1, class P2>
     197#define FUNCTOR_TEMPLATE003(additionalobject) template <class P1, class P2, class P3>
     198#define FUNCTOR_TEMPLATE004(additionalobject) template <class P1, class P2, class P3, class P4>
     199#define FUNCTOR_TEMPLATE005(additionalobject) template <class P1, class P2, class P3, class P4, class P5>
     200#define FUNCTOR_TEMPLATE010(additionalobject) template <class R>
     201#define FUNCTOR_TEMPLATE011(additionalobject) template <class R, class P1>
     202#define FUNCTOR_TEMPLATE012(additionalobject) template <class R, class P1, class P2>
     203#define FUNCTOR_TEMPLATE013(additionalobject) template <class R, class P1, class P2, class P3>
     204#define FUNCTOR_TEMPLATE014(additionalobject) template <class R, class P1, class P2, class P3, class P4>
     205#define FUNCTOR_TEMPLATE015(additionalobject) template <class R, class P1, class P2, class P3, class P4, class P5>
     206#define FUNCTOR_TEMPLATE100(additionalobject) template <class T FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     207#define FUNCTOR_TEMPLATE101(additionalobject) template <class T, class P1 FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     208#define FUNCTOR_TEMPLATE102(additionalobject) template <class T, class P1, class P2 FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     209#define FUNCTOR_TEMPLATE103(additionalobject) template <class T, class P1, class P2, class P3 FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     210#define FUNCTOR_TEMPLATE104(additionalobject) template <class T, class P1, class P2, class P3, class P4 FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     211#define FUNCTOR_TEMPLATE105(additionalobject) template <class T, class P1, class P2, class P3, class P4, class P5 FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     212#define FUNCTOR_TEMPLATE110(additionalobject) template <class T, class R FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     213#define FUNCTOR_TEMPLATE111(additionalobject) template <class T, class R, class P1 FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     214#define FUNCTOR_TEMPLATE112(additionalobject) template <class T, class R, class P1, class P2 FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     215#define FUNCTOR_TEMPLATE113(additionalobject) template <class T, class R, class P1, class P2, class P3 FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     216#define FUNCTOR_TEMPLATE114(additionalobject) template <class T, class R, class P1, class P2, class P3, class P4 FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     217#define FUNCTOR_TEMPLATE115(additionalobject) template <class T, class R, class P1, class P2, class P3, class P4, class P5 FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) >
     218
     219
     220
     221#define FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT(additionalobject) FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT##additionalobject
     222#define FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT0
     223#define FUNCTOR_TEMPLATE_ADDITIONAL_OBJECT1 , class O
    218224
    219225
     
    317323
    318324#define CREATE_STATIC_FUNCTOR(returnvalue, numparams) \
    319     FUNCTOR_TEMPLATE(0, returnvalue, numparams) \
     325    FUNCTOR_TEMPLATE(0, returnvalue, numparams, 0) \
    320326    class FunctorStatic##returnvalue##numparams : public FunctorStatic \
    321327    { \
     
    347353    \
    348354    \
    349     FUNCTOR_TEMPLATE(0, returnvalue, numparams) \
     355    FUNCTOR_TEMPLATE(0, returnvalue, numparams, 0) \
    350356    inline FunctorStatic##returnvalue##numparams FUNCTOR_TEMPLATE_CLASSES(0, returnvalue, numparams)* createFunctor(FUNCTOR_FUNCTION_RETURNVALUE(returnvalue) (*functionPointer)(FUNCTOR_FUNCTION_PARAMS(numparams))) \
    351357    { \
     
    358364
    359365#define CREATE_MEMBER_FUNCTOR(returnvalue, numparams) \
    360     FUNCTOR_TEMPLATE(1, returnvalue, numparams) \
     366    FUNCTOR_TEMPLATE(1, returnvalue, numparams, 0) \
    361367    class FunctorMember##returnvalue##numparams : public FunctorMember<T> \
    362368    { \
     
    391397    \
    392398    \
    393     FUNCTOR_TEMPLATE(1, returnvalue, numparams) \
     399    FUNCTOR_TEMPLATE(1, returnvalue, numparams, 0) \
    394400    class FunctorConstMember##returnvalue##numparams : public FunctorMember<T> \
    395401    { \
     
    423429    \
    424430    \
    425     FUNCTOR_TEMPLATE(1, returnvalue, numparams) \
     431    FUNCTOR_TEMPLATE(1, returnvalue, numparams, 0) \
    426432    inline FunctorMember##returnvalue##numparams FUNCTOR_TEMPLATE_CLASSES(1, returnvalue, numparams)* createFunctor(FUNCTOR_FUNCTION_RETURNVALUE(returnvalue) (T::*functionPointer)(FUNCTOR_FUNCTION_PARAMS(numparams))) \
    427433    { \
     
    430436    \
    431437    \
    432     FUNCTOR_TEMPLATE(1, returnvalue, numparams) \
     438    FUNCTOR_TEMPLATE(1, returnvalue, numparams, 0) \
    433439    inline FunctorConstMember##returnvalue##numparams FUNCTOR_TEMPLATE_CLASSES(1, returnvalue, numparams)* createFunctor(FUNCTOR_FUNCTION_RETURNVALUE(returnvalue) (T::*functionPointer)(FUNCTOR_FUNCTION_PARAMS(numparams)) const) \
    434440    { \
    435441        return new FunctorConstMember##returnvalue##numparams FUNCTOR_TEMPLATE_CLASSES(1, returnvalue, numparams) (functionPointer); \
     442    } \
     443    \
     444    FUNCTOR_TEMPLATE(1, returnvalue, numparams, 1) \
     445    inline FunctorMember##returnvalue##numparams FUNCTOR_TEMPLATE_CLASSES(1, returnvalue, numparams)* createFunctor(FUNCTOR_FUNCTION_RETURNVALUE(returnvalue) (T::*functionPointer)(FUNCTOR_FUNCTION_PARAMS(numparams)), O* object) \
     446    { \
     447        FunctorMember##returnvalue##numparams FUNCTOR_TEMPLATE_CLASSES(1, returnvalue, numparams)* functor = new FunctorMember##returnvalue##numparams FUNCTOR_TEMPLATE_CLASSES(1, returnvalue, numparams) (functionPointer); \
     448        functor->setObject(object); \
     449        return functor; \
     450    } \
     451    \
     452    \
     453    FUNCTOR_TEMPLATE(1, returnvalue, numparams, 1) \
     454    inline FunctorConstMember##returnvalue##numparams FUNCTOR_TEMPLATE_CLASSES(1, returnvalue, numparams)* createFunctor(FUNCTOR_FUNCTION_RETURNVALUE(returnvalue) (T::*functionPointer)(FUNCTOR_FUNCTION_PARAMS(numparams)) const, O* object) \
     455    { \
     456        FunctorConstMember##returnvalue##numparams FUNCTOR_TEMPLATE_CLASSES(1, returnvalue, numparams)* functor = new FunctorConstMember##returnvalue##numparams FUNCTOR_TEMPLATE_CLASSES(1, returnvalue, numparams) (functionPointer); \
     457        functor->setObject(object); \
     458        return functor; \
    436459    }
    437460
  • sandbox/src/libraries/core/Game.cc

    r5782 r6038  
    3838#include <boost/weak_ptr.hpp>
    3939
     40#include "util/Clock.h"
    4041#include "util/Debug.h"
    4142#include "util/Exception.h"
     
    4344#include "util/Sleep.h"
    4445#include "util/SubString.h"
    45 #include "Clock.h"
    46 #include "CommandLine.h"
     46#include "CommandLineParser.h"
    4747#include "Core.h"
    4848#include "CoreIncludes.h"
     
    105105    Game::Game(const std::string& cmdLine)
    106106        // Destroy factories before the Core!
    107         : gsFactoryDestroyer_(Game::GameStateFactory::factories_s, &std::map<std::string, shared_ptr<GameStateFactory> >::clear)
     107        : gsFactoryDestroyer_(Game::GameStateFactory::getFactories(), &std::map<std::string, shared_ptr<GameStateFactory> >::clear)
    108108    {
    109109        this->bAbort_ = false;
     
    404404                requestedNodes.push_back(currentNode);
    405405            }
     406            if (currentNode == NULL)
     407                requestedNodes.clear();
    406408        }
    407409
     
    451453    {
    452454        // Split string into pieces of the form whitespacesText
    453         std::vector<std::pair<std::string, unsigned> > stateStrings;
     455        std::vector<std::pair<std::string, int> > stateStrings;
    454456        size_t pos = 0;
    455457        size_t startPos = 0;
    456458        while (pos < str.size())
    457459        {
    458             unsigned indentation = 0;
     460            int indentation = 0;
    459461            while(pos < str.size() && str[pos] == ' ')
    460462                ++indentation, ++pos;
     
    464466            stateStrings.push_back(std::make_pair(str.substr(startPos, pos - startPos), indentation));
    465467        }
    466         unsigned int currentLevel = 0;
    467         shared_ptr<GameStateTreeNode> currentNode = this->rootStateNode_;
    468         for (std::vector<std::pair<std::string, unsigned> >::const_iterator it = stateStrings.begin(); it != stateStrings.end(); ++it)
    469         {
    470             std::string newStateName = it->first;
    471             unsigned newLevel = it->second + 1; // empty root is 0
    472             if (!this->checkState(newStateName))
    473                 ThrowException(GameState, "GameState with name '" << newStateName << "' not found!");
    474             if (newStateName == this->rootStateNode_->name_)
     468        if (stateStrings.empty())
     469            ThrowException(GameState, "Emtpy GameState hierarchy provided, terminating.");
     470        // Add element with large identation to detect the last with just an iterator
     471        stateStrings.push_back(std::make_pair("", -1));
     472
     473        // Parse elements recursively
     474        std::vector<std::pair<std::string, int> >::const_iterator begin = stateStrings.begin();
     475        parseStates(begin, this->rootStateNode_);
     476    }
     477
     478    /*** Internal ***/
     479
     480    void Game::parseStates(std::vector<std::pair<std::string, int> >::const_iterator& it, shared_ptr<GameStateTreeNode> currentNode)
     481        {
     482        SubString tokens(it->first, ",");
     483        std::vector<std::pair<std::string, int> >::const_iterator startIt = it;
     484
     485        for (unsigned int i = 0; i < tokens.size(); ++i)
     486        {
     487            it = startIt; // Reset iterator to the beginning of the sub tree
     488            if (!this->checkState(tokens[i]))
     489                ThrowException(GameState, "GameState with name '" << tokens[i] << "' not found!");
     490            if (tokens[i] == this->rootStateNode_->name_)
    475491                ThrowException(GameState, "You shouldn't use 'emptyRootGameState' in the hierarchy...");
    476             shared_ptr<GameStateTreeNode> newNode(new GameStateTreeNode);
    477             newNode->name_ = newStateName;
    478 
    479             if (newLevel <= currentLevel)
    480             {
    481                 do
    482                     currentNode = currentNode->parent_.lock();
    483                 while (newLevel <= --currentLevel);
    484             }
    485             if (newLevel == currentLevel + 1)
    486             {
    487                 // Add the child
    488                 newNode->parent_ = currentNode;
    489                 currentNode->children_.push_back(newNode);
    490             }
     492            shared_ptr<GameStateTreeNode> node(new GameStateTreeNode());
     493            node->name_ = tokens[i];
     494            node->parent_ = currentNode;
     495            currentNode->children_.push_back(node);
     496
     497            int currentLevel = it->second;
     498            ++it;
     499            while (it->second != -1)
     500            {
     501                if (it->second <= currentLevel)
     502                    break;
     503                else if (it->second == currentLevel + 1)
     504                    parseStates(it, node);
    491505            else
    492506                ThrowException(GameState, "Indentation error while parsing the hierarchy.");
    493             currentNode = newNode;
    494             currentLevel = newLevel;
    495         }
    496     }
    497 
    498     /*** Internal ***/
     507        }
     508    }
     509    }
    499510
    500511    void Game::loadGraphics()
     
    566577    }
    567578
    568     std::map<std::string, shared_ptr<Game::GameStateFactory> > Game::GameStateFactory::factories_s;
     579    /*static*/ std::map<std::string, shared_ptr<Game::GameStateFactory> >& Game::GameStateFactory::getFactories()
     580    {
     581        static std::map<std::string, shared_ptr<GameStateFactory> > factories;
     582        return factories;
     583    }
    569584
    570585    /*static*/ shared_ptr<GameState> Game::GameStateFactory::fabricate(const GameStateInfo& info)
    571586    {
    572         std::map<std::string, shared_ptr<Game::GameStateFactory> >::const_iterator it = factories_s.find(info.className);
    573         assert(it != factories_s.end());
     587        std::map<std::string, shared_ptr<Game::GameStateFactory> >::const_iterator it = getFactories().find(info.className);
     588        assert(it != getFactories().end());
    574589        return it->second->fabricateInternal(info);
    575590    }
  • sandbox/src/libraries/core/Game.h

    r5747 r6038  
    117117            template <class T>
    118118            static void createFactory(const std::string& className)
    119                 { factories_s[className].reset(new TemplateGameStateFactory<T>()); }
     119                { getFactories()[className].reset(new TemplateGameStateFactory<T>()); }
    120120
    121121            virtual shared_ptr<GameState> fabricateInternal(const GameStateInfo& info) = 0;
    122             static std::map<std::string, shared_ptr<GameStateFactory> > factories_s;
     122            static std::map<std::string, shared_ptr<GameStateFactory> >& getFactories();
    123123        };
    124124        template <class T>
     
    143143        void unloadGraphics();
    144144
     145        void parseStates(std::vector<std::pair<std::string, int> >::const_iterator& it, shared_ptr<GameStateTreeNode> currentNode);
    145146        bool checkState(const std::string& name) const;
    146147        void loadState(const std::string& name);
  • sandbox/src/libraries/core/GameState.h

    r5738 r6038  
    4040#include <map>
    4141#include <string>
     42#include "util/UtilPrereqs.h"
    4243
    4344namespace orxonox
  • sandbox/src/libraries/core/Identifier.cc

    r5782 r6038  
    3737
    3838#include "util/StringUtils.h"
     39#include "BaseObject.h"
    3940#include "ConfigValueContainer.h"
    40 #include "Factory.h"
     41#include "ClassFactory.h"
    4142
    4243namespace orxonox
     
    6263        this->bHasConfigValues_ = false;
    6364
    64         this->children_ = new std::set<const Identifier*>();
    65         this->directChildren_ = new std::set<const Identifier*>();
    6665    }
    6766
     
    7170    Identifier::~Identifier()
    7271    {
    73         delete this->children_;
    74         delete this->directChildren_;
    7572        delete this->objects_;
    7673
     
    105102            // There is already an entry: return it and delete the proposal
    106103            delete proposal;
    107             return (*it).second;
     104            return it->second;
    108105        }
    109106        else
     
    152149            {
    153150                // Tell the parent we're one of it's children
    154                 (*it)->getChildrenIntern().insert((*it)->getChildrenIntern().end(), this);
     151                (*it)->children_.insert((*it)->children_.end(), this);
    155152
    156153                // Erase all parents of our parent from our direct-parent-list
     
    174171            {
    175172                // Tell the parent we're one of it's direct children
    176                 (*it)->getDirectChildrenIntern().insert((*it)->getDirectChildrenIntern().end(), this);
     173                (*it)->directChildren_.insert((*it)->directChildren_.end(), this);
    177174            }
    178175        }
     176    }
     177
     178    /**
     179        @brief Creates the class-hierarchy by creating and destroying one object of each type.
     180    */
     181    void Identifier::createClassHierarchy()
     182    {
     183        COUT(3) << "*** Identifier: Create class-hierarchy" << std::endl;
     184        Identifier::startCreatingHierarchy();
     185        for (std::map<std::string, Identifier*>::const_iterator it = Identifier::getStringIdentifierMap().begin(); it != Identifier::getStringIdentifierMap().end(); ++it)
     186        {
     187            // To create the new branch of the class-hierarchy, we create a new object and delete it afterwards.
     188            if (it->second->hasFactory())
     189            {
     190                BaseObject* temp = it->second->fabricate(0);
     191                delete temp;
     192            }
     193        }
     194        Identifier::stopCreatingHierarchy();
     195        COUT(3) << "*** Identifier: Finished class-hierarchy creation" << std::endl;
    179196    }
    180197
     
    198215            this->name_ = name;
    199216            this->bSetName_ = true;
    200             Identifier::getIdentifierMapIntern()[name] = this;
    201             Identifier::getLowercaseIdentifierMapIntern()[getLowercase(name)] = this;
     217            Identifier::getStringIdentifierMapIntern()[name] = this;
     218            Identifier::getLowercaseStringIdentifierMapIntern()[getLowercase(name)] = this;
    202219        }
    203220    }
     
    219236            COUT(1) << "Aborting..." << std::endl;
    220237            abort();
    221             return NULL;
     238            return 0;
    222239        }
    223240    }
     
    265282    bool Identifier::isParentOf(const Identifier* identifier) const
    266283    {
    267         return (this->children_->find(identifier) != this->children_->end());
     284        return (this->children_.find(identifier) != this->children_.end());
    268285    }
    269286
     
    274291    bool Identifier::isDirectParentOf(const Identifier* identifier) const
    275292    {
    276         return (this->directChildren_->find(identifier) != this->directChildren_->end());
    277     }
    278 
    279     /**
    280         @brief Returns the map that stores all Identifiers.
     293        return (this->directChildren_.find(identifier) != this->directChildren_.end());
     294    }
     295
     296    /**
     297        @brief Returns the map that stores all Identifiers with their names.
    281298        @return The map
    282299    */
    283     std::map<std::string, Identifier*>& Identifier::getIdentifierMapIntern()
     300    std::map<std::string, Identifier*>& Identifier::getStringIdentifierMapIntern()
    284301    {
    285302        static std::map<std::string, Identifier*> identifierMap;
     
    288305
    289306    /**
    290         @brief Returns the map that stores all Identifiers.
     307        @brief Returns the map that stores all Identifiers with their names in lowercase.
    291308        @return The map
    292309    */
    293     std::map<std::string, Identifier*>& Identifier::getLowercaseIdentifierMapIntern()
     310    std::map<std::string, Identifier*>& Identifier::getLowercaseStringIdentifierMapIntern()
    294311    {
    295312        static std::map<std::string, Identifier*> lowercaseIdentifierMap;
    296313        return lowercaseIdentifierMap;
     314    }
     315
     316    /**
     317        @brief Returns the map that stores all Identifiers with their network IDs.
     318        @return The map
     319    */
     320    std::map<uint32_t, Identifier*>& Identifier::getIDIdentifierMapIntern()
     321    {
     322        static std::map<uint32_t, Identifier*> identifierMap;
     323        return identifierMap;
     324    }
     325
     326    /**
     327        @brief Returns the Identifier with a given name.
     328        @param name The name of the wanted Identifier
     329        @return The Identifier
     330    */
     331    Identifier* Identifier::getIdentifierByString(const std::string& name)
     332    {
     333        std::map<std::string, Identifier*>::const_iterator it = Identifier::getStringIdentifierMapIntern().find(name);
     334        if (it != Identifier::getStringIdentifierMapIntern().end())
     335            return it->second;
     336        else
     337            return 0;
     338    }
     339
     340    /**
     341        @brief Returns the Identifier with a given name in lowercase.
     342        @param name The name of the wanted Identifier
     343        @return The Identifier
     344    */
     345    Identifier* Identifier::getIdentifierByLowercaseString(const std::string& name)
     346    {
     347        std::map<std::string, Identifier*>::const_iterator it = Identifier::getLowercaseStringIdentifierMapIntern().find(name);
     348        if (it != Identifier::getLowercaseStringIdentifierMapIntern().end())
     349            return it->second;
     350        else
     351            return 0;
    297352    }
    298353
     
    325380        std::map<std::string, ConfigValueContainer*>::const_iterator it = configValues_.find(varname);
    326381        if (it != configValues_.end())
    327             return ((*it).second);
     382            return it->second;
    328383        else
    329384            return 0;
     
    339394        std::map<std::string, ConfigValueContainer*>::const_iterator it = configValues_LC_.find(varname);
    340395        if (it != configValues_LC_.end())
    341             return ((*it).second);
     396            return it->second;
    342397        else
    343398            return 0;
     
    353408    {
    354409        for (std::set<const Identifier*>::const_iterator it = list.begin(); it != list.end(); ++it)
    355             out << (*it)->getName() << " ";
     410        {
     411            if (it != list.begin())
     412                out << " ";
     413            out << (*it)->getName();
     414        }
    356415
    357416        return out;
  • sandbox/src/libraries/core/Identifier.h

    r5782 r6038  
    2929/**
    3030    @file
    31     @brief Definition of the Identifier, ClassIdentifier and SubclassIdentifier classes, implementation of the ClassIdentifier and SubclassIdentifier classes.
     31    @brief Definition of the Identifier class, definition and implementation of the ClassIdentifier class.
    3232
    3333    The Identifier contains all needed information about the class it belongs to:
     
    4545
    4646    Every Identifier is in fact a ClassIdentifier, but they are derived from Identifier.
    47 
    48     SubclassIdentifier is a separated class, acting like an Identifier, but has a given class.
    49     You can only assign Identifiers of exactly the given class or of a derivative to a SubclassIdentifier.
    5047*/
    5148
     
    8986    class _CoreExport Identifier
    9087    {
    91         template <class T>
    92         friend class SubclassIdentifier;
    93 
    94         friend class Factory;
    95 
    9688        public:
     89            /** @brief Returns the name of the class the Identifier belongs to. @return The name */
     90            inline const std::string& getName() const { return this->name_; }
     91            void setName(const std::string& name);
     92
     93            /** @brief Returns the unique ID of the class */
     94            FORCEINLINE unsigned int getClassID() const { return this->classID_; }
     95
     96            /** @brief Returns the list of all existing objects of this class. @return The list */
     97            inline ObjectListBase* getObjects() const { return this->objects_; }
     98
    9799            /** @brief Sets the Factory. @param factory The factory to assign */
    98             inline void addFactory(BaseFactory* factory) { this->factory_ = factory; }
     100            inline void addFactory(Factory* factory) { this->factory_ = factory; }
     101            /** @brief Returns true if the Identifier has a Factory. */
     102            inline bool hasFactory() const { return (this->factory_ != 0); }
    99103
    100104            BaseObject* fabricate(BaseObject* creator);
     105
    101106            bool isA(const Identifier* identifier) const;
    102107            bool isExactlyA(const Identifier* identifier) const;
     
    106111            bool isDirectParentOf(const Identifier* identifier) const;
    107112
    108             /** @brief Returns the list of all existing objects of this class. @return The list */
    109             inline ObjectListBase* getObjects() const
    110                 { return this->objects_; }
    111 
    112             /** @brief Returns the name of the class the Identifier belongs to. @return The name */
    113             inline const std::string& getName() const { return this->name_; }
    114             void setName(const std::string& name);
    115 
    116             virtual void updateConfigValues(bool updateChildren = true) const = 0;
     113
     114            /////////////////////////////
     115            ////// Class Hierarchy //////
     116            /////////////////////////////
     117            static void createClassHierarchy();
     118
     119            /** @brief Returns true, if a branch of the class-hierarchy is being created, causing all new objects to store their parents. @return The status of the class-hierarchy creation */
     120            inline static bool isCreatingHierarchy() { return (hierarchyCreatingCounter_s > 0); }
    117121
    118122            /** @brief Returns the parents of the class the Identifier belongs to. @return The list of all parents */
     
    124128
    125129            /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */
    126             inline const std::set<const Identifier*>& getChildren() const { return (*this->children_); }
     130            inline const std::set<const Identifier*>& getChildren() const { return this->children_; }
    127131            /** @brief Returns the begin-iterator of the children-list. @return The begin-iterator */
    128             inline std::set<const Identifier*>::const_iterator getChildrenBegin() const { return this->children_->begin(); }
     132            inline std::set<const Identifier*>::const_iterator getChildrenBegin() const { return this->children_.begin(); }
    129133            /** @brief Returns the end-iterator of the children-list. @return The end-iterator */
    130             inline std::set<const Identifier*>::const_iterator getChildrenEnd() const { return this->children_->end(); }
     134            inline std::set<const Identifier*>::const_iterator getChildrenEnd() const { return this->children_.end(); }
    131135
    132136            /** @brief Returns the direct parents of the class the Identifier belongs to. @return The list of all direct parents */
     
    138142
    139143            /** @brief Returns the direct children the class the Identifier belongs to. @return The list of all direct children */
    140             inline const std::set<const Identifier*>& getDirectChildren() const { return (*this->directChildren_); }
     144            inline const std::set<const Identifier*>& getDirectChildren() const { return this->directChildren_; }
    141145            /** @brief Returns the begin-iterator of the direct-children-list. @return The begin-iterator */
    142             inline std::set<const Identifier*>::const_iterator getDirectChildrenBegin() const { return this->directChildren_->begin(); }
     146            inline std::set<const Identifier*>::const_iterator getDirectChildrenBegin() const { return this->directChildren_.begin(); }
    143147            /** @brief Returns the end-iterator of the direct-children-list. @return The end-iterator */
    144             inline std::set<const Identifier*>::const_iterator getDirectChildrenEnd() const { return this->directChildren_->end(); }
    145 
    146 
    147             /** @brief Returns the map that stores all Identifiers. @return The map */
    148             static inline const std::map<std::string, Identifier*>& getIdentifierMap() { return Identifier::getIdentifierMapIntern(); }
    149             /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers. @return The const_iterator */
    150             static inline std::map<std::string, Identifier*>::const_iterator getIdentifierMapBegin() { return Identifier::getIdentifierMap().begin(); }
    151             /** @brief Returns a const_iterator to the end of the map that stores all Identifiers. @return The const_iterator */
    152             static inline std::map<std::string, Identifier*>::const_iterator getIdentifierMapEnd() { return Identifier::getIdentifierMap().end(); }
     148            inline std::set<const Identifier*>::const_iterator getDirectChildrenEnd() const { return this->directChildren_.end(); }
     149
     150
     151            //////////////////////////
     152            ///// Identifier Map /////
     153            //////////////////////////
     154            static void destroyAllIdentifiers();
     155
     156            static Identifier* getIdentifierByString(const std::string& name);
     157            static Identifier* getIdentifierByLowercaseString(const std::string& name);
     158            static Identifier* getIdentifierByID(uint32_t id);
     159
     160            static void clearNetworkIDs();
     161
     162            /** @brief Returns the map that stores all Identifiers with their names. @return The map */
     163            static inline const std::map<std::string, Identifier*>& getStringIdentifierMap() { return Identifier::getStringIdentifierMapIntern(); }
     164            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their names. @return The const_iterator */
     165            static inline std::map<std::string, Identifier*>::const_iterator getStringIdentifierMapBegin() { return Identifier::getStringIdentifierMap().begin(); }
     166            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their names. @return The const_iterator */
     167            static inline std::map<std::string, Identifier*>::const_iterator getStringIdentifierMapEnd() { return Identifier::getStringIdentifierMap().end(); }
    153168
    154169            /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */
    155             static inline const std::map<std::string, Identifier*>& getLowercaseIdentifierMap() { return Identifier::getLowercaseIdentifierMapIntern(); }
     170            static inline const std::map<std::string, Identifier*>& getLowercaseStringIdentifierMap() { return Identifier::getLowercaseStringIdentifierMapIntern(); }
    156171            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */
    157             static inline std::map<std::string, Identifier*>::const_iterator getLowercaseIdentifierMapBegin() { return Identifier::getLowercaseIdentifierMap().begin(); }
     172            static inline std::map<std::string, Identifier*>::const_iterator getLowercaseStringIdentifierMapBegin() { return Identifier::getLowercaseStringIdentifierMap().begin(); }
    158173            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */
    159             static inline std::map<std::string, Identifier*>::const_iterator getLowercaseIdentifierMapEnd() { return Identifier::getLowercaseIdentifierMap().end(); }
    160 
     174            static inline std::map<std::string, Identifier*>::const_iterator getLowercaseStringIdentifierMapEnd() { return Identifier::getLowercaseStringIdentifierMap().end(); }
     175
     176            /** @brief Returns the map that stores all Identifiers with their IDs. @return The map */
     177            static inline const std::map<uint32_t, Identifier*>& getIDIdentifierMap() { return Identifier::getIDIdentifierMapIntern(); }
     178            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their IDs. @return The const_iterator */
     179            static inline std::map<uint32_t, Identifier*>::const_iterator getIDIdentifierMapBegin() { return Identifier::getIDIdentifierMap().begin(); }
     180            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their IDs. @return The const_iterator */
     181            static inline std::map<uint32_t, Identifier*>::const_iterator getIDIdentifierMapEnd() { return Identifier::getIDIdentifierMap().end(); }
     182
     183
     184            /////////////////////////
     185            ///// Config Values /////
     186            /////////////////////////
     187            virtual void updateConfigValues(bool updateChildren = true) const = 0;
     188
     189            /** @brief Returns true if this class has at least one config value. @return True if this class has at least one config value */
     190            inline bool hasConfigValues() const { return this->bHasConfigValues_; }
    161191
    162192            /** @brief Returns the map that stores all config values. @return The const_iterator */
     
    174204            inline std::map<std::string, ConfigValueContainer*>::const_iterator getLowercaseConfigValueMapEnd() const { return this->configValues_LC_.end(); }
    175205
    176 
    177             /** @brief Returns true if this class has at least one config value. @return True if this class has at least one config value */
    178             inline bool hasConfigValues() const { return this->bHasConfigValues_; }
    179 
    180             /** @brief Returns true, if a branch of the class-hierarchy is being created, causing all new objects to store their parents. @return The status of the class-hierarchy creation */
    181             inline static bool isCreatingHierarchy() { return (hierarchyCreatingCounter_s > 0); }
    182 
    183             /** @brief Returns the unique ID of the class */
    184             FORCEINLINE unsigned int getClassID() const { return this->classID_; }
    185 
    186206            void addConfigValueContainer(const std::string& varname, ConfigValueContainer* container);
    187207            ConfigValueContainer* getConfigValueContainer(const std::string& varname);
    188208            ConfigValueContainer* getLowercaseConfigValueContainer(const std::string& varname);
    189209
    190             void initializeClassHierarchy(std::set<const Identifier*>* parents, bool bRootClass);
    191 
    192             static void destroyAllIdentifiers();
    193210
    194211        protected:
     
    199216            static Identifier* getIdentifierSingleton(const std::string& name, Identifier* proposal);
    200217
    201             /** @brief Returns the map that stores all Identifiers. @return The map */
    202             static std::map<std::string, Identifier*>& getIdentifierMapIntern();
     218            void initializeClassHierarchy(std::set<const Identifier*>* parents, bool bRootClass);
     219
     220            /** @brief Returns the map that stores all Identifiers with their names. @return The map */
     221            static std::map<std::string, Identifier*>& getStringIdentifierMapIntern();
    203222            /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */
    204             static std::map<std::string, Identifier*>& getLowercaseIdentifierMapIntern();
     223            static std::map<std::string, Identifier*>& getLowercaseStringIdentifierMapIntern();
     224            /** @brief Returns the map that stores all Identifiers with their network IDs. @return The map */
     225            static std::map<uint32_t, Identifier*>& getIDIdentifierMapIntern();
    205226
    206227            /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */
    207             inline std::set<const Identifier*>& getChildrenIntern() const { return (*this->children_); }
     228            inline std::set<const Identifier*>& getChildrenIntern() const { return this->children_; }
    208229            /** @brief Returns the direct children of the class the Identifier belongs to. @return The list of all direct children */
    209             inline std::set<const Identifier*>& getDirectChildrenIntern() const { return (*this->directChildren_); }
     230            inline std::set<const Identifier*>& getDirectChildrenIntern() const { return this->directChildren_; }
    210231
    211232            ObjectListBase* objects_;                                      //!< The list of all objects of this class
    212233
    213234        private:
    214             /**
    215                 @brief Increases the hierarchyCreatingCounter_s variable, causing all new objects to store their parents.
    216             */
    217             inline static void startCreatingHierarchy()
    218             {
    219                 hierarchyCreatingCounter_s++;
    220                 COUT(4) << "*** Identifier: Increased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl;
    221             }
    222 
    223             /**
    224                 @brief Decreases the hierarchyCreatingCounter_s variable, causing the objects to stop storing their parents.
    225             */
    226             inline static void stopCreatingHierarchy()
    227             {
    228                 hierarchyCreatingCounter_s--;
    229                 COUT(4) << "*** Identifier: Decreased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl;
    230             }
     235            /** @brief Increases the hierarchyCreatingCounter_s variable, causing all new objects to store their parents. */
     236            inline static void startCreatingHierarchy() { hierarchyCreatingCounter_s++; }
     237            /** @brief Decreases the hierarchyCreatingCounter_s variable, causing the objects to stop storing their parents. */
     238            inline static void stopCreatingHierarchy()  { hierarchyCreatingCounter_s--; }
    231239
    232240            static std::map<std::string, Identifier*>& getTypeIDIdentifierMap();
     
    235243
    236244            std::set<const Identifier*> parents_;                          //!< The parents of the class the Identifier belongs to
    237             std::set<const Identifier*>* children_;                        //!< The children of the class the Identifier belongs to
     245            mutable std::set<const Identifier*> children_;                 //!< The children of the class the Identifier belongs to
    238246
    239247            std::set<const Identifier*> directParents_;                    //!< The direct parents of the class the Identifier belongs to
    240             std::set<const Identifier*>* directChildren_;                  //!< The direct children of the class the Identifier belongs to
     248            mutable std::set<const Identifier*> directChildren_;           //!< The direct children of the class the Identifier belongs to
    241249
    242250            bool bCreatedOneObject_;                                       //!< True if at least one object of the given type was created (used to determine the need of storing the parents)
    243251            bool bSetName_;                                                //!< True if the name is set
    244252            std::string name_;                                             //!< The name of the class the Identifier belongs to
    245             BaseFactory* factory_;                                         //!< The Factory, able to create new objects of the given class (if available)
     253            Factory* factory_;                                             //!< The Factory, able to create new objects of the given class (if available)
    246254            static int hierarchyCreatingCounter_s;                         //!< Bigger than zero if at least one Identifier stores its parents (its an int instead of a bool to avoid conflicts with multithreading)
    247255            const unsigned int classID_;                                   //!< Uniquely identifies a class (might not be the same as the networkID_)
     
    302310    inline ClassIdentifier<T>* ClassIdentifier<T>::getIdentifier()
    303311    {
    304         // check if the static field has already been filled
    305         if (ClassIdentifier<T>::classIdentifier_s == 0)
     312        // check if the Identifier already exists
     313        if (!ClassIdentifier<T>::classIdentifier_s)
    306314            ClassIdentifier<T>::initialiseIdentifier();
    307315
     
    430438#endif
    431439    }
    432 
    433 
    434     // ###############################
    435     // ###   SubclassIdentifier    ###
    436     // ###############################
    437     //! The SubclassIdentifier acts almost like an Identifier, but has some prerequisites.
    438     /**
    439         You can only assign an Identifier that belongs to a class T (or derived) to a SubclassIdentifier<T>.
    440         If you assign something else, the program aborts.
    441         Because we know the minimum type, a dynamic_cast is done, which makes it easier to create a new object.
    442     */
    443     template <class T>
    444     class SubclassIdentifier
    445     {
    446         public:
    447             /**
    448                 @brief Constructor: Automaticaly assigns the Identifier of the given class.
    449             */
    450             SubclassIdentifier()
    451             {
    452                 this->identifier_ = ClassIdentifier<T>::getIdentifier();
    453             }
    454 
    455             /**
    456                 @brief Copyconstructor: Assigns the given Identifier.
    457                 @param identifier The Identifier
    458             */
    459             SubclassIdentifier(Identifier* identifier)
    460             {
    461                 this->operator=(identifier);
    462             }
    463 
    464             /**
    465                 @brief Overloading of the = operator: assigns the identifier and checks its type.
    466                 @param identifier The Identifier to assign
    467                 @return The SubclassIdentifier itself
    468             */
    469             SubclassIdentifier<T>& operator=(Identifier* identifier)
    470             {
    471                 if (!identifier || !identifier->isA(ClassIdentifier<T>::getIdentifier()))
    472                 {
    473                     COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl;
    474                     if (identifier)
    475                     {
    476                         COUT(1) << "Error: Class " << identifier->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!" << std::endl;
    477                         COUT(1) << "Error: SubclassIdentifier<" << ClassIdentifier<T>::getIdentifier()->getName() << "> = Class(" << identifier->getName() << ") is forbidden." << std::endl;
    478                     }
    479                     else
    480                     {
    481                         COUT(1) << "Error: Can't assign NULL identifier" << std::endl;
    482                     }
    483                 }
    484                 else
    485                 {
    486                     this->identifier_ = identifier;
    487                 }
    488                 return *this;
    489             }
    490 
    491             /**
    492                 @brief Overloading of the * operator: returns the assigned identifier.
    493             */
    494             inline Identifier* operator*() const
    495             {
    496                 return this->identifier_;
    497             }
    498 
    499             /**
    500                 @brief Overloading of the -> operator: returns the assigned identifier.
    501             */
    502             inline Identifier* operator->() const
    503             {
    504                 return this->identifier_;
    505             }
    506 
    507             /**
    508                 @brief Returns the assigned identifier. This allows you to assign a SubclassIdentifier to a normal Identifier*.
    509             */
    510             inline operator Identifier*() const
    511             {
    512                 return this->identifier_;
    513             }
    514 
    515             /**
    516                 @brief Creates a new object of the type of the assigned Identifier and dynamic_casts it to the minimal type given by T.
    517                 @return The new object
    518             */
    519             T* fabricate(BaseObject* creator) const
    520             {
    521                 BaseObject* newObject = this->identifier_->fabricate(creator);
    522 
    523                 // Check if the creation was successful
    524                 if (newObject)
    525                 {
    526                     return orxonox_cast<T*>(newObject);
    527                 }
    528                 else
    529                 {
    530                     // Something went terribly wrong
    531                     if (this->identifier_)
    532                     {
    533                         COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl;
    534                         COUT(1) << "Error: Class " << this->identifier_->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!" << std::endl;
    535                         COUT(1) << "Error: Couldn't fabricate a new Object." << std::endl;
    536                         COUT(1) << "Aborting..." << std::endl;
    537                     }
    538                     else
    539                     {
    540                         COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl;
    541                         COUT(1) << "Error: Couldn't fabricate a new Object - Identifier is undefined." << std::endl;
    542                         COUT(1) << "Aborting..." << std::endl;
    543                     }
    544 
    545                     assert(false);
    546                     return 0;
    547                 }
    548             }
    549 
    550             /** @brief Returns the assigned identifier. @return The identifier */
    551             inline Identifier* getIdentifier() const
    552                 { return this->identifier_; }
    553 
    554         private:
    555             Identifier* identifier_;            //!< The assigned identifier
    556     };
    557440}
    558441
  • sandbox/src/libraries/core/Iterator.h

    r5738 r6038  
    167167
    168168                return (*this);
    169                 return *this;
    170169            }
    171170
     
    193192            inline const Iterator<T>& operator++()
    194193            {
    195                 if (this->element_)
    196                     this->element_ = this->element_->next_;
     194                this->element_ = this->element_->next_;
    197195                return *this;
    198196            }
     
    205203            {
    206204                Iterator<T> copy = *this;
    207                 if (this->element_)
    208                     this->element_ = this->element_->next_;
     205                this->element_ = this->element_->next_;
    209206                return copy;
    210207            }
     
    216213            inline const Iterator<T>& operator--()
    217214            {
    218                 if (this->element_)
    219                     this->element_ = this->element_->prev_;
     215                this->element_ = this->element_->prev_;
    220216                return *this;
    221217            }
     
    228224            {
    229225                Iterator<T> copy = *this;
    230                 if (this->element_)
    231                     this->element_ = this->element_->prev_;
     226                this->element_ = this->element_->prev_;
    232227                return copy;
    233228            }
     
    239234            inline T* operator*() const
    240235            {
    241                 if (this->element_)
    242                     return orxonox_cast<T*>(this->element_->objectBase_);
    243                 else
    244                     return 0;
     236                return orxonox_cast<T*>(this->element_->objectBase_);
    245237            }
    246238
     
    251243            inline T* operator->() const
    252244            {
    253                 if (this->element_)
    254                     return orxonox_cast<T*>(this->element_->objectBase_);
    255                 else
    256                     return 0;
     245                return orxonox_cast<T*>(this->element_->objectBase_);
    257246            }
    258247
  • sandbox/src/libraries/core/Language.cc

    r5738 r6038  
    3535
    3636#include <fstream>
    37 #include <boost/filesystem.hpp>
    38 
    3937#include "util/Debug.h"
    4038#include "Core.h"
     39#include "PathConfig.h"
    4140
    4241namespace orxonox
     
    200199        COUT(4) << "Read default language file." << std::endl;
    201200
    202         boost::filesystem::path filepath(Core::getConfigPath() / getFilename(this->defaultLanguage_));
     201        std::string filepath = PathConfig::getConfigPathString() + getFilename(this->defaultLanguage_);
    203202
    204203        // This creates the file if it's not existing
    205204        std::ofstream createFile;
    206         createFile.open(filepath.string().c_str(), std::fstream::app);
     205        createFile.open(filepath.c_str(), std::fstream::app);
    207206        createFile.close();
    208207
    209208        // Open the file
    210209        std::ifstream file;
    211         file.open(filepath.string().c_str(), std::fstream::in);
     210        file.open(filepath.c_str(), std::fstream::in);
    212211
    213212        if (!file.is_open())
     
    249248        COUT(4) << "Read translated language file (" << Core::getLanguage() << ")." << std::endl;
    250249
    251         boost::filesystem::path filepath(Core::getConfigPath() / getFilename(Core::getLanguage()));
     250        std::string filepath = PathConfig::getConfigPathString() + getFilename(Core::getLanguage());
    252251
    253252        // Open the file
    254253        std::ifstream file;
    255         file.open(filepath.string().c_str(), std::fstream::in);
     254        file.open(filepath.c_str(), std::fstream::in);
    256255
    257256        if (!file.is_open())
     
    303302        COUT(4) << "Language: Write default language file." << std::endl;
    304303
    305         boost::filesystem::path filepath(Core::getConfigPath() / getFilename(this->defaultLanguage_));
     304        std::string filepath = PathConfig::getConfigPathString() + getFilename(this->defaultLanguage_);
    306305
    307306        // Open the file
    308307        std::ofstream file;
    309         file.open(filepath.string().c_str(), std::fstream::out);
     308        file.open(filepath.c_str(), std::fstream::out);
    310309
    311310        if (!file.is_open())
  • sandbox/src/libraries/core/LuaState.cc

    r5782 r6038  
    3838
    3939#include "util/Debug.h"
    40 #include "Core.h"
     40#include "PathConfig.h"
    4141#include "ToluaBindCore.h"
    4242
     
    106106    shared_ptr<ResourceInfo> LuaState::getFileInfo(const std::string& filename)
    107107    {
    108         boost::filesystem::path filepath = Core::getDataPath() / "lua" / filename;
     108        boost::filesystem::path filepath = PathConfig::getDataPath() / "lua" / filename;
    109109        if (boost::filesystem::exists(filepath))
    110110        {
  • sandbox/src/libraries/core/ObjectListIterator.h

    r5738 r6038  
    123123            inline const ObjectListIterator<T>& operator++()
    124124            {
    125                 if (this->element_)
    126                     this->element_ = static_cast<ObjectListElement<T>*>(this->element_->next_);
     125                this->element_ = static_cast<ObjectListElement<T>*>(this->element_->next_);
    127126                return *this;
    128127            }
     
    135134            {
    136135                ObjectListIterator<T> copy = *this;
    137                 if (this->element_)
    138                     this->element_ = static_cast<ObjectListElement<T>*>(this->element_->next_);
     136                this->element_ = static_cast<ObjectListElement<T>*>(this->element_->next_);
    139137                return copy;
    140138            }
     
    146144            inline const ObjectListIterator<T>& operator--()
    147145            {
    148                 if (this->element_)
    149                     this->element_ = static_cast<ObjectListElement<T>*>(this->element_->prev_);
     146                this->element_ = static_cast<ObjectListElement<T>*>(this->element_->prev_);
    150147                return *this;
    151148            }
     
    158155            {
    159156                ObjectListIterator<T> copy = *this;
    160                 if (this->element_)
    161                     this->element_ = static_cast<ObjectListElement<T>*>(this->element_->prev_);
     157                this->element_ = static_cast<ObjectListElement<T>*>(this->element_->prev_);
    162158                return copy;
    163159            }
     
    169165            inline T* operator*() const
    170166            {
    171                 if (this->element_)
    172                     return this->element_->object_;
    173                 else
    174                     return 0;
     167                return this->element_->object_;
    175168            }
    176169
     
    181174            inline T* operator->() const
    182175            {
    183                 if (this->element_)
    184                     return this->element_->object_;
    185                 else
    186                     return 0;
     176                return this->element_->object_;
    187177            }
    188178
  • sandbox/src/libraries/core/OrxonoxClass.cc

    r5738 r6038  
    7878
    7979    /** @brief Returns true if the objects class is of the given type or a derivative. */
    80     template <class B> bool OrxonoxClass::isA(const SubclassIdentifier<B>* identifier)
    81         { return this->getIdentifier()->isA(identifier->getIdentifier()); }
    82     /** @brief Returns true if the objects class is exactly of the given type. */
    83     template <class B> bool OrxonoxClass::isExactlyA(const SubclassIdentifier<B>* identifier)
    84         { return this->getIdentifier()->isExactlyA(identifier->getIdentifier()); }
    85     /** @brief Returns true if the objects class is a child of the given type. */
    86     template <class B> bool OrxonoxClass::isChildOf(const SubclassIdentifier<B>* identifier)
    87         { return this->getIdentifier()->isChildOf(identifier->getIdentifier()); }
    88     /** @brief Returns true if the objects class is a direct child of the given type. */
    89     template <class B> bool OrxonoxClass::isDirectChildOf(const SubclassIdentifier<B>* identifier)
    90         { return this->getIdentifier()->isDirectChildOf(identifier->getIdentifier()); }
    91     /** @brief Returns true if the objects class is a parent of the given type. */
    92     template <class B> bool OrxonoxClass::isParentOf(const SubclassIdentifier<B>* identifier)
    93         { return this->getIdentifier()->isParentOf(identifier->getIdentifier()); }
    94     /** @brief Returns true if the objects class is a direct parent of the given type. */
    95     template <class B> bool OrxonoxClass::isDirectParentOf(const SubclassIdentifier<B>* identifier)
    96         { return this->getIdentifier()->isDirectParentOf(identifier->getIdentifier()); }
    97 
    98 
    99     /** @brief Returns true if the objects class is of the given type or a derivative. */
    100     template <class B> bool OrxonoxClass::isA(const SubclassIdentifier<B> identifier)
    101         { return this->getIdentifier()->isA(identifier.getIdentifier()); }
    102     /** @brief Returns true if the objects class is exactly of the given type. */
    103     template <class B> bool OrxonoxClass::isExactlyA(const SubclassIdentifier<B> identifier)
    104         { return this->getIdentifier()->isExactlyA(identifier.getIdentifier()); }
    105     /** @brief Returns true if the objects class is a child of the given type. */
    106     template <class B> bool OrxonoxClass::isChildOf(const SubclassIdentifier<B> identifier)
    107         { return this->getIdentifier()->isChildOf(identifier.getIdentifier()); }
    108     /** @brief Returns true if the objects class is a direct child of the given type. */
    109     template <class B> bool OrxonoxClass::isDirectChildOf(const SubclassIdentifier<B> identifier)
    110         { return this->getIdentifier()->isDirectChildOf(identifier.getIdentifier()); }
    111     /** @brief Returns true if the objects class is a parent of the given type. */
    112     template <class B> bool OrxonoxClass::isParentOf(const SubclassIdentifier<B> identifier)
    113         { return this->getIdentifier()->isParentOf(identifier.getIdentifier()); }
    114     /** @brief Returns true if the objects class is a direct parent of the given type. */
    115     template <class B> bool OrxonoxClass::isDirectParentOf(const SubclassIdentifier<B> identifier)
    116         { return this->getIdentifier()->isDirectParentOf(identifier.getIdentifier()); }
    117 
    118 
    119     /** @brief Returns true if the objects class is of the given type or a derivative. */
    12080    bool OrxonoxClass::isA(const OrxonoxClass* object)
    12181        { return this->getIdentifier()->isA(object->getIdentifier()); }
  • sandbox/src/libraries/core/OrxonoxClass.h

    r5738 r6038  
    7272            bool isDirectParentOf(const Identifier* identifier);
    7373
    74             template <class B> bool isA(const SubclassIdentifier<B>* identifier);
    75             template <class B> bool isExactlyA(const SubclassIdentifier<B>* identifier);
    76             template <class B> bool isChildOf(const SubclassIdentifier<B>* identifier);
    77             template <class B> bool isDirectChildOf(const SubclassIdentifier<B>* identifier);
    78             template <class B> bool isParentOf(const SubclassIdentifier<B>* identifier);
    79             template <class B> bool isDirectParentOf(const SubclassIdentifier<B>* identifier);
    80 
    81             template <class B> bool isA(const SubclassIdentifier<B> identifier);
    82             template <class B> bool isExactlyA(const SubclassIdentifier<B> identifier);
    83             template <class B> bool isChildOf(const SubclassIdentifier<B> identifier);
    84             template <class B> bool isDirectChildOf(const SubclassIdentifier<B> identifier);
    85             template <class B> bool isParentOf(const SubclassIdentifier<B> identifier);
    86             template <class B> bool isDirectParentOf(const SubclassIdentifier<B> identifier);
     74            template <class B> inline bool isA(const SubclassIdentifier<B>* identifier)
     75                { return this->isA(*identifier); }
     76            template <class B> inline bool isExactlyA(const SubclassIdentifier<B>* identifier)
     77                { return this->isExactlyA(*identifier); }
     78            template <class B> inline bool isChildOf(const SubclassIdentifier<B>* identifier)
     79                { return this->isChildOf(*identifier); }
     80            template <class B> inline bool isDirectChildOf(const SubclassIdentifier<B>* identifier)
     81                { return this->isDirectChildOf(*identifier); }
     82            template <class B> inline bool isParentOf(const SubclassIdentifier<B>* identifier)
     83                { return this->isParentOf(*identifier); }
     84            template <class B> inline bool isDirectParentOf(const SubclassIdentifier<B>* identifier)
     85                { return this->isDirectParentOf(*identifier); }
    8786
    8887            bool isA(const OrxonoxClass* object);
     
    10099                Returns NULL if the no pointer was found.
    101100            */
    102             template <class T>
    103             FORCEINLINE T* getDerivedPointer(unsigned int classID)
     101            FORCEINLINE void* getDerivedPointer(unsigned int classID)
    104102            {
    105103                for (int i = this->objectPointers_.size() - 1; i >= 0; --i)
    106104                {
    107105                    if (this->objectPointers_[i].first == classID)
    108                         return static_cast<T*>(this->objectPointers_[i].second);
     106                        return this->objectPointers_[i].second;
    109107                }
    110108                return NULL;
    111109            }
    112             //! Const version of getDerivedPointer
    113             template <class T>
    114             FORCEINLINE const T* getDerivedPointer(unsigned int classID) const
    115             {
    116                 return const_cast<OrxonoxClass*>(this)->getDerivedPointer<T>(classID);
    117             }
     110
     111            //! Version of getDerivedPointer with template
     112            template <class T> FORCEINLINE T* getDerivedPointer(unsigned int classID)
     113            {   return static_cast<T*>(this->getDerivedPointer(classID));   }
     114            //! Const version of getDerivedPointer with template
     115            template <class T> FORCEINLINE const T* getDerivedPointer(unsigned int classID) const
     116            {   return const_cast<OrxonoxClass*>(this)->getDerivedPointer<T>(classID);   }
    118117
    119118        private:
  • sandbox/src/libraries/core/PathConfig.cc

    r6035 r6038  
    7070    PathConfig* PathConfig::singletonPtr_s  = 0;
    7171
    72     SetCommandLineArgument(externalDataPath, "").information("Path to the external data files");
    7372    SetCommandLineOnlyArgument(writingPathSuffix, "").information("Additional subfolder for config and log files");
    7473
     
    7877        , modulePath_(*(new bf::path()))
    7978        , dataPath_(*(new bf::path()))
    80         , externalDataPath_(*(new bf::path()))
    8179        , configPath_(*(new bf::path()))
    8280        , logPath_(*(new bf::path()))
     
    172170        delete &modulePath_;
    173171        delete &dataPath_;
    174         delete &externalDataPath_;
    175172        delete &configPath_;
    176173        delete &logPath_;
     
    184181            configPath_       = specialConfig::configDevDirectory;
    185182            logPath_          = specialConfig::logDevDirectory;
    186 
    187             // Check for data path override by the command line
    188             if (!CommandLineParser::getArgument("externalDataPath")->hasDefaultValue())
    189                 externalDataPath_ = CommandLineParser::getValue("externalDataPath").getString();
    190             else
    191                 externalDataPath_ = specialConfig::externalDataDevDirectory;
    192183        }
    193184        else
     
    302293    }
    303294
    304     /*static*/ std::string PathConfig::getExternalDataPathString()
    305     {
    306         return getInstance().externalDataPath_.string() + '/';
    307     }
    308 
    309295    /*static*/ std::string PathConfig::getConfigPathString()
    310296    {
  • sandbox/src/libraries/core/PathConfig.h

    r6035 r6038  
    7777            static const boost::filesystem::path& getDataPath()
    7878                { return getInstance().dataPath_; }
    79             //! Returns the path to the external data files as boost::filesystem::path
    80             static const boost::filesystem::path& getExternalDataPath()
    81                 { return getInstance().externalDataPath_; }
    8279            //! Returns the path to the config files as boost::filesystem::path
    8380            static const boost::filesystem::path& getConfigPath()
     
    9693            //! Returns the path to the data files as std::string
    9794            static std::string getDataPathString();
    98             //! Returns the path to the external data files as std::string
    99             static std::string getExternalDataPathString();
    10095            //! Returns the path to the config files as std::string
    10196            static std::string getConfigPathString();
     
    126121            boost::filesystem::path& modulePath_;            //!< Path to the modules
    127122            boost::filesystem::path& dataPath_;              //!< Path to the data files folder
    128             boost::filesystem::path& externalDataPath_;      //!< Path to the external data files folder
    129123            boost::filesystem::path& configPath_;            //!< Path to the config files folder
    130124            boost::filesystem::path& logPath_;               //!< Path to the log files folder
  • sandbox/src/libraries/util/CMakeLists.txt

    r5782 r6038  
    1919
    2020SET_SOURCE_FILES(UTIL_SRC_FILES
    21   CRC32.cc
    2221  Exception.cc
    23   ExprParser.cc
    2422  Math.cc
    2523  MultiType.cc
     24  Scope.cc
     25  StringUtils.cc
     26COMPILATION_BEGIN StableCompilation.cc
     27  Clock.cc
     28  CRC32.cc
     29  ExprParser.cc
    2630  OutputBuffer.cc
    2731  OutputHandler.cc
    28   Scope.cc
    2932  SignalHandler.cc
    3033  Sleep.cc
    31   StringUtils.cc
    3234  SubString.cc
     35COMPILATION_END
    3336)
    3437
  • sandbox/src/libraries/util/Clock.h

    r6035 r6038  
    3131
    3232#include "UtilPrereqs.h"
    33 #include "OgreForwardRefs.h"
     33
     34namespace Ogre { class Timer; }
    3435
    3536namespace orxonox
  • sandbox/src/libraries/util/Scope.h

    r5738 r6038  
    3131
    3232#include "UtilPrereqs.h"
     33
    3334#include <cassert>
     35#include <map>
    3436#include <set>
    35 #include <map>
     37
    3638#include "Debug.h"
     39#include "ScopeGuard.h"
    3740
    3841namespace orxonox
    3942{
    40     namespace ScopeID
    41     {
    42         /**
    43             @brief A list of available scopes for the Scope template.
    44         */
    45         enum Value
    46         {
    47             GSRoot,
    48             GSGraphics,
    49             GSLevel
    50         };
    51     }
    52 
    53     class ScopeListener; // Forward declaration
    54 
    5543    /**
    5644        @brief The ScopeManager stores the variables of the scope templates in a statically linked context.
     
    7765        protected:
    7866            //! Constructor: Registers the instance.
    79             ScopeListener(ScopeID::Value scope) : scope_(scope)
     67            ScopeListener(ScopeID::Value scope) : scope_(scope), bActivated_(false)
    8068                { ScopeManager::listeners_s[this->scope_].insert(this); }
    8169            //! Destructor: Unregisters the instance.
     
    9078        private:
    9179            ScopeID::Value scope_; //!< Store the scope to unregister on destruction
     80            bool bActivated_;
    9281    };
    9382
     
    10594            Scope()
    10695            {
    107                 ScopeManager::instanceCounts_s[scope]++;
    108                 assert(ScopeManager::instanceCounts_s[scope] > 0);
    109                 if (ScopeManager::instanceCounts_s[scope] == 1)
     96                try
    11097                {
    111                     for (typename std::set<ScopeListener*>::iterator it = ScopeManager::listeners_s[scope].begin(); it != ScopeManager::listeners_s[scope].end(); )
    112                         (*(it++))->activated();
     98                    ScopeManager::instanceCounts_s[scope]++;
     99                    assert(ScopeManager::instanceCounts_s[scope] > 0);
     100                    if (ScopeManager::instanceCounts_s[scope] == 1)
     101                    {
     102                        Loki::ScopeGuard deactivator = Loki::MakeObjGuard(*this, &Scope::deactivateListeners);
     103                        for (typename std::set<ScopeListener*>::iterator it = ScopeManager::listeners_s[scope].begin(); it != ScopeManager::listeners_s[scope].end(); )
     104                        {
     105                            (*it)->activated();
     106                            (*(it++))->bActivated_ = true;
     107                        }
     108                        deactivator.Dismiss();
     109                    }
     110                }
     111                catch (...)
     112                {
     113                    ScopeManager::instanceCounts_s[scope]--;
     114                    throw;
    113115                }
    114116            }
     
    125127
    126128                if (ScopeManager::instanceCounts_s[scope] == 0)
     129                    this->deactivateListeners();
     130            }
     131
     132            void deactivateListeners()
     133            {
     134                for (typename std::set<ScopeListener*>::iterator it = ScopeManager::listeners_s[scope].begin(); it != ScopeManager::listeners_s[scope].end(); )
    127135                {
    128                     for (typename std::set<ScopeListener*>::iterator it = ScopeManager::listeners_s[scope].begin(); it != ScopeManager::listeners_s[scope].end(); )
    129                         (*(it++))->deactivated();
     136                    if ((*it)->bActivated_)
     137                    {
     138                        try
     139                            { (*it)->deactivated(); }
     140                        catch (...)
     141                            { COUT(0) << "ScopeListener::deactivated() failed! This MUST NOT happen, fix it!" << std::endl; }
     142                        (*(it++))->bActivated_ = false;
     143                    }
     144                    else
     145                        ++it;
    130146                }
    131147            }
  • sandbox/src/libraries/util/UtilPrereqs.h

    r5738 r6038  
    2828
    2929/**
    30   @file
    31   @brief Contains all the necessary forward declarations for all classes and structs.
     30@file
     31@brief
     32    Shared library macros, enums, constants and forward declarations for the util library
    3233*/
    3334
     
    4041// Shared library settings
    4142//-----------------------------------------------------------------------
     43
    4244#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined( UTIL_STATIC_BUILD )
    4345#  ifdef UTIL_SHARED_BUILD
     
    5658#endif
    5759
     60//-----------------------------------------------------------------------
     61// Enums
     62//-----------------------------------------------------------------------
     63
     64namespace orxonox
     65{
     66    namespace ScopeID
     67    {
     68        //!A list of available scopes for the Scope template.
     69        enum Value
     70        {
     71            Root,
     72            Graphics
     73        };
     74    }
     75}
    5876
    5977//-----------------------------------------------------------------------
     
    6381namespace orxonox
    6482{
     83    class Clock;
    6584    class Exception;
    6685    class ExprParser;
     
    7190    class OutputBufferListener;
    7291    class OutputHandler;
     92    template <ScopeID::Value>
     93    class Scope;
     94    template <class, ScopeID::Value>
     95    class ScopedSingleton;
     96    class ScopeListener;
    7397    class SignalHandler;
     98    template <class T>
     99    class Singleton;
    74100    class SubString;
    75101}
  • sandbox/src/orxonox/GSRoot.cc

    r5782 r6038  
    2929#include "GSRoot.h"
    3030
    31 #include "core/Clock.h"
     31#include "util/Clock.h"
    3232#include "core/Game.h"
    3333
  • sandbox/src/orxonox/Main.cc

    r5782 r6038  
    3131@file
    3232@brief
    33     The main function of Orxonox.
     33    The main function of Orxonox (but not the entry point of the program!)
    3434*/
    3535
    3636#include "OrxonoxPrereqs.h"
    37 #include "SpecialConfig.h"
    3837
    39 #include "util/Exception.h"
    40 #include "core/CommandLine.h"
     38#include "core/CommandLineParser.h"
    4139#include "core/Game.h"
    4240#include "core/LuaState.h"
     
    4745    /**
    4846    @brief
    49         Main method. Game starts here (except for static initialisations).
     47        Starting point of orxonox (however not the entry point of the program!)
    5048    */
    5149    int main(const std::string& strCmdLine)
  • sandbox/src/orxonox/OrxonoxPrereqs.h

    r5782 r6038  
    2828
    2929/**
    30   @file
    31   @brief Contains all the necessary forward declarations for all classes and structs.
     30@file
     31@brief
     32    Shared library macros, enums, constants and forward declarations for the orxonox library
    3233*/
    3334
     
    3637
    3738#include "OrxonoxConfig.h"
    38 
    3939//-----------------------------------------------------------------------
    4040// Shared library settings
    4141//-----------------------------------------------------------------------
     42
    4243#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined(ORXONOX_STATIC_BUILD)
    4344#  ifdef ORXONOX_SHARED_BUILD
     
    6364{
    6465    class CameraManager;
     66    class Level;
    6567    class LevelManager;
    6668    class PawnManager;
    6769    class PlayerManager;
    68 
    69     class Level;
     70    class Radar;
    7071    class Scene;
    71     class Tickable;
     72
     73    // collisionshapes
     74    class CollisionShape;
     75    class CompoundCollisionShape;
     76    class WorldEntityCollisionShape;
     77
     78    // controllers
     79    class AIController;
     80    class ArtificialController;
     81    class Controller;
     82    class HumanController;
     83    class ScriptController;
     84    class WaypointController;
     85    class WaypointPatrolController;
     86
     87    // gametypes
     88    class Asteroids;
     89    class Deathmatch;
     90    class Gametype;
     91    class TeamBaseMatch;
     92    class TeamDeathmatch;
     93    class UnderAttack;
     94
     95    // graphics
     96    class Backlight;
     97    class Billboard;
     98    class BlinkingBillboard;
     99    class Camera;
     100    class FadingBillboard;
     101    class GlobalShader;
     102    class Light;
     103    class Model;
     104    class ParticleEmitter;
     105    class ParticleSpawner;
     106
     107    // infos
     108    class Bot;
     109    class GametypeInfo;
     110    class HumanPlayer;
     111    class Info;
     112    class PlayerInfo;
    72113
    73114    // interfaces
    74115    class GametypeMessageListener;
    75116    class NotificationListener;
    76     class PawnListener;
    77117    class PlayerTrigger;
    78118    class RadarListener;
    79119    class RadarViewable;
    80120    class Rewardable;
    81     class Teamcolourable;
    82 
    83     // worldentities
    84     class WorldEntity;
    85     class StaticEntity;
    86     class MobileEntity;
    87     class ControllableEntity;
    88     class MovableEntity;
    89 
    90     // graphics
    91     class Model;
    92     class Billboard;
    93     class BlinkingBillboard;
    94     class BigExplosion;
    95     class ExplosionChunk;
    96     class FadingBillboard;
    97     class GlobalShader;
    98     class Light;
    99     class Backlight;
    100     class ParticleEmitter;
    101     class ParticleSpawner;
    102     class Camera;
    103 
    104     // mixed
    105     class SpawnPoint;
    106     class TeamSpawnPoint;
    107 
    108     class CameraPosition;
    109     class Sublevel;
    110     class Radar;
    111 
    112     class Test;
    113 
    114     // pawns
    115     class Spectator;
    116     class Pawn;
    117     class SpaceShip;
    118     class TeamBaseMatchBase;
    119     class Destroyer;
    120 
    121     // gametypes
    122     class Gametype;
    123     class Deathmatch;
    124     class TeamDeathmatch;
    125     class Asteroids;
    126     class TeamBaseMatch;
    127     class UnderAttack;
    128 
    129     // pickups
     121    class TeamColourable;
     122
     123    // items
     124    class Engine;
     125    class Item;
     126    class MultiStateEngine;
     127
     128    // overlays
     129    class InGameConsole;
     130    class Map;
     131    class OrxonoxOverlay;
     132    class OverlayGroup;
     133
     134    // pickup
    130135    class BaseItem;
    131136    class DroppedItem;
     
    137142    class PickupSpawner;
    138143    class UsableItem;
    139 
     144    // pickup, items
     145    class HealthImmediate;
     146    class HealthUsable;
    140147    class Jump;
    141     class HealthUsable;
    142     class PassiveItem;
    143 
    144     // items
    145     class Item;
    146     class Engine;
    147     class MultiStateEngine;
    148     class RotatingEngine;
     148
     149    //sound
     150    class AmbientSound;
     151    class BaseSound;
     152    class SoundManager;
     153    class WorldSound;
    149154
    150155    // weaponsystem
    151     class WeaponSystem;
     156    class DefaultWeaponmodeLink;
     157    class Munition;
     158    class Weapon;
     159    class WeaponMode;
     160    class WeaponPack;
    152161    class WeaponSet;
    153162    class WeaponSlot;
    154     class WeaponPack;
    155     class Weapon;
    156     class WeaponMode;
    157     class DefaultWeaponmodeLink;
    158     class Munition;
    159 
    160     // controller
    161     class Controller;
    162     class HumanController;
    163     class ArtificialController;
    164     class AIController;
    165     class ScriptController;
    166     class WaypointController;
    167     class WaypointPatrolController;
    168 
    169     // infos
    170     class Info;
    171     class PlayerInfo;
    172     class HumanPlayer;
    173     class Bot;
    174     class GametypeInfo;
    175 
    176     // collision
    177     class CollisionShape;
    178     class CompoundCollisionShape;
    179     class WorldEntityCollisionShape;
    180 
    181     // overlays
    182     class OverlayGroup;
    183     class OrxonoxOverlay;
    184     class Notification;
    185     class NotificationManager;
    186     class InGameConsole;
    187     class Map;
    188 
    189     //sound
    190     class SoundBase;
    191     class SoundManager;
    192     class SoundMainMenu;
     163    class WeaponSystem;
     164
     165    // worldentities
     166    class BigExplosion;
     167    class CameraPosition;
     168    class ControllableEntity;
     169    class ExplosionChunk;
     170    class MobileEntity;
     171    class MovableEntity;
     172    class SpawnPoint;
     173    class StaticEntity;
     174    class TeamSpawnPoint;
     175    class WorldEntity;
     176    // worldentities, pawns
     177    class Destroyer;
     178    class Pawn;
     179    class SpaceShip;
     180    class Spectator;
     181    class TeamBaseMatchBase;
    193182}
    194183
Note: See TracChangeset for help on using the changeset viewer.