Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 10, 2008, 5:35:49 PM (16 years ago)
Author:
rgrieder
Message:

merged input back into trunk
note: I have created an asylum with obsolete code, please check the files

Location:
code/trunk/src/orxonox/core
Files:
2 deleted
7 edited
7 copied

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/core/CMakeLists.txt

    r1021 r1024  
    55  Identifier.cc
    66  IdentifierDistributor.cc
     7  InputHandler.cc
     8  InputManager.cc
    79  MetaObjectList.cc
    810  ConfigValueContainer.cc
    911  Error.cc
    1012  SignalHandler.cc
    11   ArgReader.cc
    1213  DebugLevel.cc
    1314  OutputHandler.cc
  • code/trunk/src/orxonox/core/CorePrereqs.h

    r871 r1024  
    2727
    2828/**
    29     @file  CorePrereq.h
    30     @brief Contains all the necessary forward declarations for all classes, structs and enums.
     29  @file
     30  @brief Contains all the necessary forward declarations for all classes and structs.
    3131*/
    3232
     
    3636#include <string>
    3737
    38 #include "orxonox/OrxonoxPlatform.h"
     38#include "OrxonoxPlatform.h"
    3939
    4040//-----------------------------------------------------------------------
     
    6767  typedef std::string LanguageEntryLabel;
    6868
    69   class ArgReader;
    7069  class BaseFactory;
    7170  class BaseMetaObjectListElement;
     71  class BaseObject;
    7272  template <class T>
    7373  class ClassFactory;
     
    8686  class Identifier;
    8787  class IdentifierDistributor;
     88  class InputHandlerGame;
     89  class InputHandlerGUI;
     90  class InputManager;
    8891  template <class T>
    8992  class Iterator;
     
    103106  template <class T>
    104107  class SubclassIdentifier;
     108  class Tickable;
    105109  template <class T, class O>
    106110  class XMLPortClassObjectContainer;
  • code/trunk/src/orxonox/core/Factory.h

    r871 r1024  
    5151namespace orxonox
    5252{
    53     class BaseObject; // Forward declaration
    54 
    5553    // ###############################
    5654    // ###         Factory         ###
  • code/trunk/src/orxonox/core/Identifier.h

    r890 r1024  
    3333     - the name
    3434     - a list with all objects
    35      - parents and childs
     35     - parents and children
    3636     - the factory (if available)
    3737     - the networkID that can be synchronised with the server
     
    6565namespace orxonox
    6666{
    67     class BaseFactory; // Forward declaration
    68     class BaseObject;  // Forward declaration
    69 
    7067    // ###############################
    7168    // ###       Identifier        ###
  • code/trunk/src/orxonox/core/MetaObjectList.h

    r871 r1024  
    113113        This allows much faster deletion of objects because no iteration is needed.
    114114    */
    115     class MetaObjectList
     115    class _CoreExport MetaObjectList
    116116    {
    117117        public:
  • code/trunk/src/orxonox/core/Script.cc

    r1021 r1024  
    3838}
    3939
    40 #include "tolua++.h"
    41 #include "../../util/tolua/tolua_bind.h"
     40#include "util/tolua/tolua++.h"
     41#include "util/tolua/tolua_bind.h"
    4242
    4343namespace orxonox
     
    5757  {
    5858    output_ += str;
    59     COUT(0) << "Lua_output!:" << std::endl << str << std::endl << "***" << std::endl;
     59    COUT(4) << "Lua_output!:" << std::endl << str << std::endl << "***" << std::endl;
    6060  }
    6161
     
    8989
    9090    if (luaTags) luaSource_ = replaceLuaTags(levelString);
    91     COUT(0) << "ParsedSourceCode: " << luaSource_ << std::endl;
     91    COUT(4) << "ParsedSourceCode: " << luaSource_ << std::endl;
    9292  }
    9393
     
    100100    if (error == 0)
    101101      error = lua_pcall(luaState_, 0, 0, 0);
    102     if (error != 0) COUT(0) << "Error in Lua-script: " << lua_tostring(luaState_, -1) << std::endl;
     102    if (error != 0) COUT(2) << "Error in Lua-script: " << lua_tostring(luaState_, -1) << std::endl;
    103103  }
    104104
  • code/trunk/src/orxonox/core/Tickable.h

    r1021 r1024  
    4646namespace orxonox
    4747{
    48     //class TickFrameListener; // Forward declaration
    49 
    5048    //! The Tickable interface provides a tick(dt) function, that gets called every frame.
    5149    class _CoreExport Tickable : virtual public OrxonoxClass
Note: See TracChangeset for help on using the changeset viewer.