Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1024


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
Files:
28 deleted
46 edited
39 copied

Legend:

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

    r871 r1024  
    66ADD_SUBDIRECTORY(audio)
    77ADD_SUBDIRECTORY(network)
    8 #ADD_SUBDIRECTORY(loader)
    98ADD_SUBDIRECTORY(orxonox)
  • code/trunk/src/audio/AudioPrereqs.h

    r790 r1024  
    2727
    2828/**
    29  @file  AudioPrereqs.h
    30  @brief Contains all the necessary forward declarations for all classes, structs and enums.
    31  */
     29  @file
     30  @brief Contains all the necessary forward declarations for all classes and structs.
     31*/
    3232
    3333#ifndef _AudioPrereqs_H__
  • code/trunk/src/network/NetworkPrereqs.h

    r1021 r1024  
    2727
    2828/**
    29  @file  NetworkPrereqs.h
    30  @brief Contains all the necessary forward declarations for all classes, structs and enums.
    31  */
     29  @file
     30  @brief Contains all the necessary forward declarations for all classes and structs.
     31*/
    3232
    3333#ifndef _NetworkPrereqs_H__
     
    8484  struct PacketEnvelope;
    8585  struct QueueItem;
    86   struct synchData;
     86  struct syncData;
    8787  struct synchronisableVariable;
    8888}
  • code/trunk/src/orxonox/CMakeLists.txt

    r1021 r1024  
    11SET( ORXONOX_SRC_FILES
    22  GraphicsEngine.cc
    3   InputEventListener.cc
    4   InputHandler.cc
    53  Main.cc
    64  Orxonox.cc
  • code/trunk/src/orxonox/GraphicsEngine.cc

    r1021 r1024  
    3535#include <OgreException.h>
    3636#include <OgreConfigFile.h>
     37#include <OgreLogManager.h>
    3738#include <OgreTextureManager.h>
    3839#include <OgreRenderWindow.h>
     
    6263  GraphicsEngine::~GraphicsEngine()
    6364  {
    64     if (!this->root_)
     65    if (this->root_)
    6566      delete this->root_;
     67    // delete the ogre log and the logManager (sine we have created it).
     68    if (LogManager::getSingletonPtr() != 0)
     69    {
     70      LogManager::getSingleton().getDefaultLog()->removeListener(this);
     71      LogManager::getSingleton().destroyLog(LogManager::getSingleton().getDefaultLog());
     72      delete LogManager::getSingletonPtr();
     73    }
    6674  }
    6775
    6876  void GraphicsEngine::setConfigValues()
    6977  {
    70     SetConfigValue(dataPath_, dataPath_).description("relative path to media data");
    71 
    72   }
    73 
     78    SetConfigValue(dataPath_, "../../media/").description("relative path to media data");
     79    SetConfigValue(ogreLogfile_, "ogre.log").description("Logfile for messages from Ogre. Use \"\" to suppress log file creation.");
     80    SetConfigValue(ogreLogLevelTrivial_ , 5).description("relative path to media data");
     81    SetConfigValue(ogreLogLevelNormal_  , 4).description("relative path to media data");
     82    SetConfigValue(ogreLogLevelCritical_, 2).description("relative path to media data");
     83  }
     84
     85  /**
     86    @brief Creates the Ogre Root object and sets up the ogre log.
     87  */
    7488  void GraphicsEngine::setup()
    7589  {
     
    86100    std::string plugin_filename = "plugins.cfg";
    87101#endif
     102
     103    // create a logManager
     104    LogManager *logger;
     105                if(LogManager::getSingletonPtr() == 0)
     106                        logger = new LogManager();
     107    else
     108      logger = LogManager::getSingletonPtr();
     109
     110    // create our own log that we can listen to
     111    Log *myLog;
     112    if (this->ogreLogfile_ == "")
     113      myLog = logger->createLog("ogre.log", true, false, true);
     114    else
     115      myLog = logger->createLog(this->ogreLogfile_, true, false, false);
     116
     117    myLog->setLogDetail(LL_BOREME);
     118    myLog->addListener(this);
     119
     120    // Root will detect that we've already created a Log
    88121    root_ = new Root(plugin_filename);
    89122  }
     
    106139    // temporary overwrite of dataPath, change ini file for permanent change
    107140    if( dataPath != "" )
    108       dataPath_ = dataPath;
     141      dataPath_ = dataPath + "/";
    109142    loadRessourceLocations(this->dataPath_);
    110143    if (!root_->restoreConfig() && !root_->showConfigDialog())
     
    196229  }
    197230
     231  /**
     232    @brief Method called by the LogListener interface from Ogre.
     233    We use it to capture Ogre log messages and handle it ourselves.
     234    @param message The message to be logged
     235    @param lml The message level the log is using
     236    @param maskDebug If we are printing to the console or not
     237    @param logName the name of this log (so you can have several listeners
     238                   for different logs, and identify them)
     239  */
     240  void GraphicsEngine::messageLogged(const std::string& message,
     241    LogMessageLevel lml, bool maskDebug, const std::string &logName)
     242  {
     243    int orxonoxLevel;
     244    switch (lml)
     245    {
     246      case LML_TRIVIAL:
     247        orxonoxLevel = this->ogreLogLevelTrivial_;
     248        break;
     249      case LML_NORMAL:
     250        orxonoxLevel = this->ogreLogLevelNormal_;
     251        break;
     252      case LML_CRITICAL:
     253        orxonoxLevel = this->ogreLogLevelCritical_;
     254        break;
     255      default:
     256        orxonoxLevel = 0;
     257    }
     258    OutputHandler::getOutStream().setOutputLevel(orxonoxLevel)
     259        << "*** Ogre: " << message << std::endl;
     260  }
    198261}
  • code/trunk/src/orxonox/GraphicsEngine.h

    r1021 r1024  
    1111
    1212#include <OgrePrerequisites.h>
     13#include <OgreLog.h>
    1314#include <OgreRoot.h>
    1415#include <OgreSceneManager.h>
     
    2324   * graphics engine manager class
    2425 */
    25   class _OrxonoxExport GraphicsEngine : public OrxonoxClass
     26  class _OrxonoxExport GraphicsEngine : public OrxonoxClass, public Ogre::LogListener
    2627  {
    2728    public:
    2829      GraphicsEngine();
    29       inline void setConfigPath(std::string path) { this->configPath_ = path; };
     30      void setConfigPath(std::string path) { this->configPath_ = path; };
    3031      // find a better way for this
    3132      //inline Ogre::Root* getRoot() { return root_; };
     
    5455
    5556    private:
     57      //! Method called by the LogListener from Ogre
     58      void messageLogged(const std::string& message, Ogre::LogMessageLevel lml,
     59                         bool maskDebug, const std::string &logName);
     60
    5661      Ogre::Root*         root_;        //!< Ogre's root
    5762      std::string         configPath_;  //!< path to config file
     
    6065      Ogre::RenderWindow* renderWindow_;//!< the current render window
    6166      //bool               bOverwritePath_; //!< overwrites path
     67      std::string         ogreLogfile_; //!< log file name for Ogre log messages
     68      int ogreLogLevelTrivial_;         //!< Corresponding Orxonx debug level for LL_TRIVIAL
     69      int ogreLogLevelNormal_;          //!< Corresponding Orxonx debug level for LL_NORMAL
     70      int ogreLogLevelCritical_;        //!< Corresponding Orxonx debug level for LL_CRITICAL
    6271
    6372  };
  • code/trunk/src/orxonox/Main.cc

    r1021 r1024  
    8484
    8585    orx->start();
    86     orx->destroy();
     86    orx->destroySingleton();
    8787  }
    8888  catch (std::exception &ex)
  • code/trunk/src/orxonox/Orxonox.cc

    r1021 r1024  
    5050//misc
    5151//#include "util/Sleep.h"
     52#include "util/ArgReader.h"
    5253
    5354// audio
     
    6162
    6263// objects
    63 #include "core/ArgReader.h"
    6464#include "core/Debug.h"
    6565#include "core/Factory.h"
     
    7070#include "objects/weapon/BulletManager.h"
    7171
    72 #include "InputHandler.h"
     72#include "core/InputManager.h"
    7373
    7474#include "Orxonox.h"
     
    108108      delete this->orxonoxHUD_;
    109109    Loader::close();
    110     InputHandler::destroy();
     110    InputManager::destroySingleton();
    111111    if (this->auMan_)
    112112      delete this->auMan_;
     
    147147      singletonRef_s = new Orxonox();
    148148    return singletonRef_s;
    149     //static Orxonox theOnlyInstance;
    150     //return &theOnlyInstance;
    151149  }
    152150
     
    154152    @brief Destroys the Orxonox singleton.
    155153  */
    156   void Orxonox::destroy()
     154  void Orxonox::destroySingleton()
    157155  {
    158156    if (singletonRef_s)
     
    174172    std::string mode;
    175173
    176     ArgReader ar = ArgReader(argc, argv);
     174    ArgReader ar(argc, argv);
    177175    ar.checkArgument("mode", mode, false);
    178176    ar.checkArgument("data", this->dataPath_, false);
     
    327325  void Orxonox::setupInputSystem()
    328326  {
    329     inputHandler_ = InputHandler::getSingleton();
     327    inputHandler_ = InputManager::getSingleton();
    330328    if (!inputHandler_->initialise(ogre_->getWindowHandle(),
    331329          ogre_->getWindowWidth(), ogre_->getWindowHeight()))
    332330      abortImmediate();
     331    inputHandler_->setInputMode(IM_INGAME);
    333332  }
    334333
  • code/trunk/src/orxonox/Orxonox.h

    r1021 r1024  
    1717
    1818#include "GraphicsEngine.h"
    19 #include "InputEventListener.h"
     19#include "core/InputEventListener.h"
    2020
    2121
     
    4444
    4545      static Orxonox* getSingleton();
    46       static void destroy();
     46      static void destroySingleton();
    4747
    4848   private:
     
    7575      audio::AudioManager*  auMan_;         //!< audio manager
    7676      BulletManager*        bulletMgr_;     //!< Keeps track of the thrown bullets
    77       InputHandler*         inputHandler_;  //!< Handles input with key bindings
     77      InputManager*         inputHandler_;  //!< Handles input with key bindings
    7878      Ogre::Root*           root_;          //!< Holy grail of Ogre
    7979      Ogre::Timer*          timer_;         //!< Main loop timer
  • code/trunk/src/orxonox/OrxonoxPlatform.h

    r1021 r1024  
    190190
    191191// Integer formats of fixed bit width
    192 typedef unsigned int uint32;
     192// FIXME: consider 64 bit platforms!
     193/*typedef unsigned int uint32;
    193194typedef unsigned short uint16;
    194 typedef unsigned char uint8;
     195typedef unsigned char uint8;*/
    195196
    196197#ifdef ORXONOX_DOUBLE_PRECISION
     
    232233// disable: 'MultiTypeString' : multiple assignment operators specified
    233234// Used in MultiType and works fine so far
    234 #   pragma warning (disable : 4522)
     235//#   pragma warning (disable : 4522)
    235236
    236237// disable: "non dll-interface class used as base for dll-interface class"
     
    270271} /* namespace orxonox */
    271272
     273// include visual leak detector to search for memory links
     274//#include <vld.h>
     275
    272276#endif /* _OrxonoxPlatform_H__ */
  • code/trunk/src/orxonox/OrxonoxPrereqs.h

    r1021 r1024  
    2727
    2828/**
    29  @file  OrxonoxPrereqs.h
    30  @brief Contains all the necessary forward declarations for all classes and structs.
    31  */
     29  @file
     30  @brief Contains all the necessary forward declarations for all classes and structs.
     31*/
    3232
    3333#ifndef _OrxonoxPrereqs_H__
     
    5959//-----------------------------------------------------------------------
    6060
    61 // classes that have not yet been put into a namespace
    62 class InputManager;
    63 class SpaceShipSteering;
     61namespace orxonox {
     62  class GraphicsEngine;
     63  class Orxonox;
    6464
    65 namespace orxonox {
     65  // objects
    6666  class Ambient;
    67   class BaseObject;
    6867  class Camera;
    69   class GraphicsEngine;
    70   struct InputEvent;
    71   class InputEventListener;
    72   class InputHandler;
    73   class Mesh;
     68  class Explosion;
     69  class Fighter;
    7470  class Model;
    7571  class NPC;
    76   class OrxListener;
    77   class Orxonox;
     72  class Projectile;
    7873  class Skybox;
    7974  class SpaceShip;
    80   class Tickable;
    81   class TickFrameListener;
    82   template <class T>
    83   class Timer;
    84   class TimerBase;
    85   class TimerFrameListener;
    8675  class WorldEntity;
    8776
     
    9382  class WeaponStation;
    9483
     84  // tools
     85  class BillboardSet;
     86  class Light;
     87  class Mesh;
     88  template <class T>
     89  class Timer;
     90  class TimerBase;
     91
     92  // particle
    9593  class ParticleInterface;
     94
     95  // hud
    9696  class HUD;
    9797}
  • code/trunk/src/orxonox/OrxonoxStableHeaders.h

    r1021 r1024  
    4040// including std headers here is useless since they're already precompiled
    4141
    42 // not including the entire Ogre.h doesn't exceed the default heap size for pch
    4342#ifndef WIN32_LEAN_AND_MEAN
    4443// prevent Ogre from including winsock.h that messes with winsock2.h from enet
    4544#  define WIN32_LEAN_AND_MEAN
    4645#endif
     46// not including the entire Ogre.h doesn't exceed the default heap size for pch
    4747//#include <Ogre.h>
    4848#include <OgreBillboardSet.h>
  • 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
  • code/trunk/src/orxonox/objects/Fighter.cc

    r1021 r1024  
    3939#include "core/CoreIncludes.h"
    4040#include "Orxonox.h"
    41 #include "InputHandler.h"
     41#include "core/InputManager.h"
    4242#include "particle/ParticleInterface.h"
    4343#include "weapon/AmmunitionDump.h"
     
    255255        if (!this->setMouseEventCallback_)
    256256        {
    257             if (InputHandler::getSingleton()->getMouse())
     257            if (InputManager::getSingleton()->getMouse())
    258258            {
    259                 InputHandler::getSingleton()->getMouse()->setEventCallback(this);
     259                InputManager::getSingleton()->getMouse()->setEventCallback(this);
    260260                this->setMouseEventCallback_ = true;
    261261            }
     
    264264        WorldEntity::tick(dt);
    265265
    266         OIS::Keyboard* mKeyboard = InputHandler::getSingleton()->getKeyboard();
    267         OIS::Mouse* mMouse = InputHandler::getSingleton()->getMouse();
    268 
    269         mKeyboard->capture();
    270         mMouse->capture();
     266        OIS::Keyboard* mKeyboard = InputManager::getSingleton()->getKeyboard();
     267        OIS::Mouse* mMouse = InputManager::getSingleton()->getMouse();
     268
     269        //mKeyboard->capture();
     270        //mMouse->capture();
    271271
    272272        if (leftButtonPressed_)
  • code/trunk/src/orxonox/objects/Fighter.h

    r871 r1024  
    77
    88#include "Model.h"
    9 
    10 class TiXmlElement; // Forward declaration
    119
    1210namespace orxonox
  • code/trunk/src/orxonox/objects/Model.h

    r1021 r1024  
    66#include "WorldEntity.h"
    77#include "../tools/Mesh.h"
    8 
    9 class TiXmlElement; // Forward declaration
    108
    119namespace orxonox
  • code/trunk/src/orxonox/objects/NPC.h

    r871 r1024  
    1111
    1212#include "Model.h"
    13 
    14 class TiXmlElement; // Forward declaration
    1513
    1614namespace orxonox {
  • code/trunk/src/orxonox/objects/Projectile.h

    r871 r1024  
    1010namespace orxonox
    1111{
    12     class SpaceShip; // Forward declaration
    13 
    1412    class _OrxonoxExport Projectile : public WorldEntity
    1513    {
  • code/trunk/src/orxonox/objects/Skybox.h

    r871 r1024  
    55
    66#include "core/BaseObject.h"
    7 
    8 class TiXmlElement; // Forward declaration
    97
    108namespace orxonox
  • code/trunk/src/orxonox/objects/SpaceShip.cc

    r1021 r1024  
    4242#include "core/Debug.h"
    4343#include "Orxonox.h"
    44 #include "InputHandler.h"
     44#include "core/InputManager.h"
    4545#include "particle/ParticleInterface.h"
    4646#include "Projectile.h"
     
    417417    void SpaceShip::tick(float dt)
    418418    {
    419         if (!this->setMouseEventCallback_)
    420         {
    421             if (InputHandler::getSingleton()->getMouse())
     419      if (InputManager::getSingleton()->getMouse()->getEventCallback() != this)
     420        {
     421            if (InputManager::getSingleton()->getMouse())
    422422            {
    423                 InputHandler::getSingleton()->getMouse()->setEventCallback(this);
     423                InputManager::getSingleton()->getMouse()->setEventCallback(this);
    424424                this->setMouseEventCallback_ = true;
    425425            }
     
    446446        }
    447447
    448         OIS::Keyboard* mKeyboard = InputHandler::getSingleton()->getKeyboard();
    449         OIS::Mouse* mMouse = InputHandler::getSingleton()->getMouse();
    450 
    451         mKeyboard->capture();
    452         mMouse->capture();
     448        OIS::Keyboard* mKeyboard = InputManager::getSingleton()->getKeyboard();
     449        OIS::Mouse* mMouse = InputManager::getSingleton()->getMouse();
    453450
    454451
  • code/trunk/src/orxonox/objects/SpaceShip.h

    r1021 r1024  
    1010#include "../tools/BillboardSet.h"
    1111
    12 class TiXmlElement;          // Forward declaration
    13 
    1412namespace orxonox
    1513{
    16     class ParticleInterface; // Forward declaration
    17 
    1814    class _OrxonoxExport SpaceShip : public Model, public OIS::MouseListener
    1915    {
  • code/trunk/src/util/CMakeLists.txt

    r1021 r1024  
    55
    66SET (UTIL_SRC_FILES
     7  ArgReader.cc
    78  Math.cc
    89  String.cc
  • code/trunk/src/util/UtilPrereqs.h

    r871 r1024  
    2727
    2828/**
    29  @file  UtilPrereq.h
    30  @brief Contains all the necessary forward declarations for all classes, structs and enums.
    31  */
     29  @file
     30  @brief Contains all the necessary forward declarations for all classes and structs.
     31*/
    3232
    3333#ifndef _UtilPrereqs_H__
     
    5959// Forward declarations
    6060//-----------------------------------------------------------------------
     61class ArgReader;
    6162class Convert;
    6263template <typename FromType, typename ToType>
  • code/trunk/visual_studio/audio_properties.vsprops

    r790 r1024  
    99                Name="VCCLCompilerTool"
    1010                PreprocessorDefinitions="AUDIO_SHARED_BUILD"
     11                DisableSpecificWarnings="4244"
    1112        />
    1213        <Tool
  • code/trunk/visual_studio/base_properties.vsprops

    r1021 r1024  
    99                Name="VCCLCompilerTool"
    1010                AdditionalIncludeDirectories="&quot;$(RootDir)src&quot;;&quot;$(RootDir)src\orxonox&quot;;&quot;$(DependencyDir)include&quot;"
    11                 PreprocessorDefinitions="WIN32;__WIN32__;_WIN32;BOOST_ALL_DYN_LINK"
     11                PreprocessorDefinitions="WIN32;__WIN32__;_WIN32;BOOST_ALL_DYN_LINK;OIS_DYNAMIC_LIB; ZLIB_WINAPI"
    1212                WarningLevel="3"
    13                 DisableSpecificWarnings="4244;4251"
     13                DisableSpecificWarnings="4522;4251"
    1414        />
    1515        <Tool
     
    2323                OutputFile="$(OutDir)$(ProjectName)$(CS).dll"
    2424                AdditionalLibraryDirectories="$(DependencyDir)lib"
    25                 SubSystem="2"
     25                SubSystem="1"
    2626                ImportLibrary="$(LibOutDir)$(TargetName).lib"
    2727                TargetMachine="1"
     
    3333        <UserMacro
    3434                Name="DependencyDir"
    35                 Value="D:\orxonox\dependencies\orxonox\"
     35                Value="$(RootDir)..\dependencies\"
    3636        />
    3737        <UserMacro
     
    4141        <UserMacro
    4242                Name="CSS"
    43                 Value="$(CS)"
     43                Value=""
    4444        />
    4545</VisualStudioPropertySheet>
  • code/trunk/visual_studio/base_properties_debug.vsprops

    r790 r1024  
    2626        <UserMacro
    2727                Name="CSS"
    28                 Value="$(CS)"
     28                Value="_d"
    2929        />
    3030</VisualStudioPropertySheet>
  • code/trunk/visual_studio/base_properties_release.vsprops

    r790 r1024  
    1212                PreprocessorDefinitions="NDEBUG"
    1313                RuntimeLibrary="2"
    14                 DebugInformationFormat="0"
     14                DebugInformationFormat="3"
    1515        />
    1616        <Tool
     
    2727        <UserMacro
    2828                Name="CSS"
    29                 Value="$(CS)"
     29                Value=""
    3030        />
    3131</VisualStudioPropertySheet>
  • code/trunk/visual_studio/base_properties_release_sse.vsprops

    r790 r1024  
    1 <?xml version="1.0" encoding="Windows-1252"?>
    2 <VisualStudioPropertySheet
    3         ProjectType="Visual C++"
    4         Version="8.00"
    5         Name="base_properties_release_sse"
    6         InheritedPropertySheets=".\base_properties_release.vsprops"
    7         >
    8         <Tool
    9                 Name="VCCLCompilerTool"
    10                 PreprocessorDefinitions="NDEBUG"
    11                 EnableEnhancedInstructionSet="1"
    12         />
    13         <UserMacro
    14                 Name="CS"
    15                 Value="_sse"
    16         />
    17         <UserMacro
    18                 Name="CSS"
    19                 Value=""
    20         />
    21 </VisualStudioPropertySheet>
  • code/trunk/visual_studio/base_properties_release_sse2.vsprops

    r790 r1024  
    1 <?xml version="1.0" encoding="Windows-1252"?>
    2 <VisualStudioPropertySheet
    3         ProjectType="Visual C++"
    4         Version="8.00"
    5         Name="base_properties_release_sse2"
    6         InheritedPropertySheets=".\base_properties_release.vsprops"
    7         >
    8         <Tool
    9                 Name="VCCLCompilerTool"
    10                 EnableEnhancedInstructionSet="2"
    11         />
    12         <UserMacro
    13                 Name="CS"
    14                 Value="_sse2"
    15         />
    16         <UserMacro
    17                 Name="CSS"
    18                 Value=""
    19         />
    20 </VisualStudioPropertySheet>
  • code/trunk/visual_studio/core_properties.vsprops

    r790 r1024  
    1212        <Tool
    1313                Name="VCLinkerTool"
    14                 AdditionalDependencies="OgreMain$(CS).lib"
     14                AdditionalDependencies="OgreMain$(CS).lib OIS$(CSS).lib lua$(CS).lib"
    1515        />
    1616</VisualStudioPropertySheet>
  • code/trunk/visual_studio/network_properties.vsprops

    r1021 r1024  
    88        <Tool
    99                Name="VCCLCompilerTool"
    10                 PreprocessorDefinitions="NETWORK_SHARED_BUILD; ZLIB_WINAPI;WIN32_LEAN_AND_MEAN"
     10                PreprocessorDefinitions="NETWORK_SHARED_BUILD;WIN32_LEAN_AND_MEAN"
    1111        />
    1212        <Tool
  • code/trunk/visual_studio/orxonox_properties.vsprops

    r790 r1024  
    88        <Tool
    99                Name="VCCLCompilerTool"
    10                 PreprocessorDefinitions="ORXONOX_SHARED_BUILD; LOADER_STATIC_BUILD"
     10                PreprocessorDefinitions="ORXONOX_SHARED_BUILD"
    1111                UsePrecompiledHeader="2"
    1212                PrecompiledHeaderThrough="OrxonoxStableHeaders.h"
  • code/trunk/visual_studio/orxonox_vc8.sln

    r1021 r1024  
    77        EndProjectSection
    88        ProjectSection(ProjectDependencies) = postProject
     9                {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}
    910                {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86}
    10                 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}
    1111        EndProjectSection
    1212EndProject
     
    1717        EndProjectSection
    1818        ProjectSection(ProjectDependencies) = postProject
     19                {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626} = {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626}
    1920                {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}
    2021                {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F}
     
    2728        EndProjectSection
    2829        ProjectSection(ProjectDependencies) = postProject
     30                {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}
    2931                {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86}
    30                 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}
    3132        EndProjectSection
    3233EndProject
     
    3738        EndProjectSection
    3839        ProjectSection(ProjectDependencies) = postProject
     40                {4733BD1A-E04C-458D-8BFB-5010250EA497} = {4733BD1A-E04C-458D-8BFB-5010250EA497}
     41                {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F}
     42                {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86}
     43                {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}
    3944                {35575B59-E1AE-40E8-89C4-2862B5B09B68} = {35575B59-E1AE-40E8-89C4-2862B5B09B68}
    40                 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}
    41                 {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86}
    42                 {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F}
    43                 {4733BD1A-E04C-458D-8BFB-5010250EA497} = {4733BD1A-E04C-458D-8BFB-5010250EA497}
    4445        EndProjectSection
    4546EndProject
     
    5657        EndProjectSection
    5758EndProject
     59Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tolua++", "vc8\tolua++.vcproj", "{35E36A06-0A5C-4A0D-9AB6-5A05EAA87626}"
     60        ProjectSection(WebsiteProperties) = preProject
     61                Debug.AspNetCompiler.Debug = "True"
     62                Release.AspNetCompiler.Debug = "False"
     63        EndProjectSection
     64EndProject
    5865Global
    5966        GlobalSection(SolutionConfigurationPlatforms) = preSolution
    6067                Debug|Win32 = Debug|Win32
    61                 Release_SSE|Win32 = Release_SSE|Win32
    62                 Release_SSE2|Win32 = Release_SSE2|Win32
    6368                Release|Win32 = Release|Win32
    6469        EndGlobalSection
     
    6671                {4733BD1A-E04C-458D-8BFB-5010250EA497}.Debug|Win32.ActiveCfg = Debug|Win32
    6772                {4733BD1A-E04C-458D-8BFB-5010250EA497}.Debug|Win32.Build.0 = Debug|Win32
    68                 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win32
    69                 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release_SSE|Win32.Build.0 = Release_SSE|Win32
    70                 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win32
    71                 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win32
    7273                {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release|Win32.ActiveCfg = Release|Win32
    7374                {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release|Win32.Build.0 = Release|Win32
    7475                {271715F3-5B90-4110-A552-70C788084A86}.Debug|Win32.ActiveCfg = Debug|Win32
    7576                {271715F3-5B90-4110-A552-70C788084A86}.Debug|Win32.Build.0 = Debug|Win32
    76                 {271715F3-5B90-4110-A552-70C788084A86}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win32
    77                 {271715F3-5B90-4110-A552-70C788084A86}.Release_SSE|Win32.Build.0 = Release_SSE|Win32
    78                 {271715F3-5B90-4110-A552-70C788084A86}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win32
    79                 {271715F3-5B90-4110-A552-70C788084A86}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win32
    8077                {271715F3-5B90-4110-A552-70C788084A86}.Release|Win32.ActiveCfg = Release|Win32
    8178                {271715F3-5B90-4110-A552-70C788084A86}.Release|Win32.Build.0 = Release|Win32
    8279                {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Debug|Win32.ActiveCfg = Debug|Win32
    8380                {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Debug|Win32.Build.0 = Debug|Win32
    84                 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win32
    85                 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release_SSE|Win32.Build.0 = Release_SSE|Win32
    86                 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win32
    87                 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win32
    8881                {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release|Win32.ActiveCfg = Release|Win32
    8982                {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release|Win32.Build.0 = Release|Win32
    9083                {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Debug|Win32.ActiveCfg = Debug|Win32
    9184                {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Debug|Win32.Build.0 = Debug|Win32
    92                 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win32
    93                 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release_SSE|Win32.Build.0 = Release_SSE|Win32
    94                 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win32
    95                 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win32
    9685                {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release|Win32.ActiveCfg = Release|Win32
    9786                {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release|Win32.Build.0 = Release|Win32
    9887                {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Debug|Win32.ActiveCfg = Debug|Win32
    9988                {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Debug|Win32.Build.0 = Debug|Win32
    100                 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win32
    101                 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release_SSE|Win32.Build.0 = Release_SSE|Win32
    102                 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win32
    103                 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win32
    10489                {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release|Win32.ActiveCfg = Release|Win32
    10590                {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release|Win32.Build.0 = Release|Win32
    10691                {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Debug|Win32.ActiveCfg = Debug|Win32
    107                 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Debug|Win32.Build.0 = Debug|Win32
    108                 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win32
    109                 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release_SSE|Win32.Build.0 = Release_SSE|Win32
    110                 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win32
    111                 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win32
    11292                {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release|Win32.ActiveCfg = Release|Win32
    113                 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release|Win32.Build.0 = Release|Win32
     93                {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626}.Debug|Win32.ActiveCfg = Debug|Win32
     94                {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626}.Release|Win32.ActiveCfg = Release|Win32
    11495        EndGlobalSection
    11596        GlobalSection(SolutionProperties) = preSolution
  • code/trunk/visual_studio/tixml_properties.vsprops

    r890 r1024  
    33        ProjectType="Visual C++"
    44        Version="8.00"
    5         Name="util_properties"
     5        Name="tixml_properties"
    66        InheritedPropertySheets=".\directory_properties.vsprops"
    77        >
    8         <Tool
    9                 Name="VCCLCompilerTool"
    10                 PreprocessorDefinitions="UTIL_SHARED_BUILD"
    11         />
    12         <Tool
    13                 Name="VCLinkerTool"
    14                 AdditionalDependencies="OgreMain$(CS).lib"
    15         />
    168</VisualStudioPropertySheet>
  • code/trunk/visual_studio/vc8/audio.vcproj

    r790 r1024  
    139139                        />
    140140                </Configuration>
    141                 <Configuration
    142                         Name="Release_SSE|Win32"
    143                         ConfigurationType="2"
    144                         InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\audio_properties.vsprops"
    145                         CharacterSet="1"
    146                         WholeProgramOptimization="1"
    147                         >
    148                         <Tool
    149                                 Name="VCPreBuildEventTool"
    150                         />
    151                         <Tool
    152                                 Name="VCCustomBuildTool"
    153                         />
    154                         <Tool
    155                                 Name="VCXMLDataGeneratorTool"
    156                         />
    157                         <Tool
    158                                 Name="VCWebServiceProxyGeneratorTool"
    159                         />
    160                         <Tool
    161                                 Name="VCMIDLTool"
    162                         />
    163                         <Tool
    164                                 Name="VCCLCompilerTool"
    165                         />
    166                         <Tool
    167                                 Name="VCManagedResourceCompilerTool"
    168                         />
    169                         <Tool
    170                                 Name="VCResourceCompilerTool"
    171                         />
    172                         <Tool
    173                                 Name="VCPreLinkEventTool"
    174                         />
    175                         <Tool
    176                                 Name="VCLinkerTool"
    177                         />
    178                         <Tool
    179                                 Name="VCALinkTool"
    180                         />
    181                         <Tool
    182                                 Name="VCManifestTool"
    183                         />
    184                         <Tool
    185                                 Name="VCXDCMakeTool"
    186                         />
    187                         <Tool
    188                                 Name="VCBscMakeTool"
    189                         />
    190                         <Tool
    191                                 Name="VCFxCopTool"
    192                         />
    193                         <Tool
    194                                 Name="VCAppVerifierTool"
    195                         />
    196                         <Tool
    197                                 Name="VCWebDeploymentTool"
    198                         />
    199                         <Tool
    200                                 Name="VCPostBuildEventTool"
    201                         />
    202                 </Configuration>
    203                 <Configuration
    204                         Name="Release_SSE2|Win32"
    205                         ConfigurationType="2"
    206                         InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\audio_properties.vsprops"
    207                         CharacterSet="1"
    208                         WholeProgramOptimization="1"
    209                         >
    210                         <Tool
    211                                 Name="VCPreBuildEventTool"
    212                         />
    213                         <Tool
    214                                 Name="VCCustomBuildTool"
    215                         />
    216                         <Tool
    217                                 Name="VCXMLDataGeneratorTool"
    218                         />
    219                         <Tool
    220                                 Name="VCWebServiceProxyGeneratorTool"
    221                         />
    222                         <Tool
    223                                 Name="VCMIDLTool"
    224                         />
    225                         <Tool
    226                                 Name="VCCLCompilerTool"
    227                         />
    228                         <Tool
    229                                 Name="VCManagedResourceCompilerTool"
    230                         />
    231                         <Tool
    232                                 Name="VCResourceCompilerTool"
    233                         />
    234                         <Tool
    235                                 Name="VCPreLinkEventTool"
    236                         />
    237                         <Tool
    238                                 Name="VCLinkerTool"
    239                         />
    240                         <Tool
    241                                 Name="VCALinkTool"
    242                         />
    243                         <Tool
    244                                 Name="VCManifestTool"
    245                         />
    246                         <Tool
    247                                 Name="VCXDCMakeTool"
    248                         />
    249                         <Tool
    250                                 Name="VCBscMakeTool"
    251                         />
    252                         <Tool
    253                                 Name="VCFxCopTool"
    254                         />
    255                         <Tool
    256                                 Name="VCAppVerifierTool"
    257                         />
    258                         <Tool
    259                                 Name="VCWebDeploymentTool"
    260                         />
    261                         <Tool
    262                                 Name="VCPostBuildEventTool"
    263                         />
    264                 </Configuration>
    265141        </Configurations>
    266142        <References>
     
    273149                        >
    274150                        <File
    275                                 RelativePath="..\..\src\audio\_AudioObject.cc"
    276                                 >
    277                                 <FileConfiguration
    278                                         Name="Debug|Win32"
    279                                         ExcludedFromBuild="true"
    280                                         >
    281                                         <Tool
    282                                                 Name="VCCLCompilerTool"
    283                                         />
    284                                 </FileConfiguration>
    285                                 <FileConfiguration
    286                                         Name="Release|Win32"
    287                                         ExcludedFromBuild="true"
    288                                         >
    289                                         <Tool
    290                                                 Name="VCCLCompilerTool"
    291                                         />
    292                                 </FileConfiguration>
    293                                 <FileConfiguration
    294                                         Name="Release_SSE|Win32"
    295                                         ExcludedFromBuild="true"
    296                                         >
    297                                         <Tool
    298                                                 Name="VCCLCompilerTool"
    299                                         />
    300                                 </FileConfiguration>
    301                                 <FileConfiguration
    302                                         Name="Release_SSE2|Win32"
    303                                         ExcludedFromBuild="true"
    304                                         >
    305                                         <Tool
    306                                                 Name="VCCLCompilerTool"
    307                                         />
    308                                 </FileConfiguration>
    309                         </File>
    310                         <File
    311151                                RelativePath="..\..\src\audio\AudioBuffer.cc"
    312152                                >
  • code/trunk/visual_studio/vc8/core.vcproj

    r1021 r1024  
    139139                        />
    140140                </Configuration>
    141                 <Configuration
    142                         Name="Release_SSE|Win32"
    143                         ConfigurationType="2"
    144                         InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\core_properties.vsprops"
    145                         CharacterSet="1"
    146                         WholeProgramOptimization="1"
    147                         >
    148                         <Tool
    149                                 Name="VCPreBuildEventTool"
    150                         />
    151                         <Tool
    152                                 Name="VCCustomBuildTool"
    153                         />
    154                         <Tool
    155                                 Name="VCXMLDataGeneratorTool"
    156                         />
    157                         <Tool
    158                                 Name="VCWebServiceProxyGeneratorTool"
    159                         />
    160                         <Tool
    161                                 Name="VCMIDLTool"
    162                         />
    163                         <Tool
    164                                 Name="VCCLCompilerTool"
    165                         />
    166                         <Tool
    167                                 Name="VCManagedResourceCompilerTool"
    168                         />
    169                         <Tool
    170                                 Name="VCResourceCompilerTool"
    171                         />
    172                         <Tool
    173                                 Name="VCPreLinkEventTool"
    174                         />
    175                         <Tool
    176                                 Name="VCLinkerTool"
    177                         />
    178                         <Tool
    179                                 Name="VCALinkTool"
    180                         />
    181                         <Tool
    182                                 Name="VCManifestTool"
    183                         />
    184                         <Tool
    185                                 Name="VCXDCMakeTool"
    186                         />
    187                         <Tool
    188                                 Name="VCBscMakeTool"
    189                         />
    190                         <Tool
    191                                 Name="VCFxCopTool"
    192                         />
    193                         <Tool
    194                                 Name="VCAppVerifierTool"
    195                         />
    196                         <Tool
    197                                 Name="VCWebDeploymentTool"
    198                         />
    199                         <Tool
    200                                 Name="VCPostBuildEventTool"
    201                         />
    202                 </Configuration>
    203                 <Configuration
    204                         Name="Release_SSE2|Win32"
    205                         ConfigurationType="2"
    206                         InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\core_properties.vsprops"
    207                         CharacterSet="1"
    208                         WholeProgramOptimization="1"
    209                         >
    210                         <Tool
    211                                 Name="VCPreBuildEventTool"
    212                         />
    213                         <Tool
    214                                 Name="VCCustomBuildTool"
    215                         />
    216                         <Tool
    217                                 Name="VCXMLDataGeneratorTool"
    218                         />
    219                         <Tool
    220                                 Name="VCWebServiceProxyGeneratorTool"
    221                         />
    222                         <Tool
    223                                 Name="VCMIDLTool"
    224                         />
    225                         <Tool
    226                                 Name="VCCLCompilerTool"
    227                         />
    228                         <Tool
    229                                 Name="VCManagedResourceCompilerTool"
    230                         />
    231                         <Tool
    232                                 Name="VCResourceCompilerTool"
    233                         />
    234                         <Tool
    235                                 Name="VCPreLinkEventTool"
    236                         />
    237                         <Tool
    238                                 Name="VCLinkerTool"
    239                         />
    240                         <Tool
    241                                 Name="VCALinkTool"
    242                         />
    243                         <Tool
    244                                 Name="VCManifestTool"
    245                         />
    246                         <Tool
    247                                 Name="VCXDCMakeTool"
    248                         />
    249                         <Tool
    250                                 Name="VCBscMakeTool"
    251                         />
    252                         <Tool
    253                                 Name="VCFxCopTool"
    254                         />
    255                         <Tool
    256                                 Name="VCAppVerifierTool"
    257                         />
    258                         <Tool
    259                                 Name="VCWebDeploymentTool"
    260                         />
    261                         <Tool
    262                                 Name="VCPostBuildEventTool"
    263                         />
    264                 </Configuration>
    265141        </Configurations>
    266142        <References>
     
    273149                        >
    274150                        <File
    275                                 RelativePath="..\..\src\orxonox\core\ArgReader.cc"
    276                                 >
    277                         </File>
    278                         <File
    279151                                RelativePath="..\..\src\orxonox\core\BaseObject.cc"
    280152                                >
     
    313185                        </File>
    314186                        <File
     187                                RelativePath="..\..\src\orxonox\core\InputEventListener.cc"
     188                                >
     189                        </File>
     190                        <File
     191                                RelativePath="..\..\src\orxonox\core\InputHandler.cc"
     192                                >
     193                        </File>
     194                        <File
     195                                RelativePath="..\..\src\orxonox\core\InputManager.cc"
     196                                >
     197                        </File>
     198                        <File
    315199                                RelativePath="..\..\src\orxonox\core\Language.cc"
    316200                                >
     
    330214                        <File
    331215                                RelativePath="..\..\src\orxonox\core\OutputHandler.cc"
     216                                >
     217                        </File>
     218                        <File
     219                                RelativePath="..\..\src\orxonox\core\Script.cc"
    332220                                >
    333221                        </File>
     
    351239                        >
    352240                        <File
    353                                 RelativePath="..\..\src\orxonox\core\ArgReader.h"
    354                                 >
    355                         </File>
    356                         <File
    357241                                RelativePath="..\..\src\orxonox\core\BaseObject.h"
    358242                                >
     
    415299                        </File>
    416300                        <File
     301                                RelativePath="..\..\src\orxonox\core\InputEvent.h"
     302                                >
     303                        </File>
     304                        <File
     305                                RelativePath="..\..\src\orxonox\core\InputEventListener.h"
     306                                >
     307                        </File>
     308                        <File
     309                                RelativePath="..\..\src\orxonox\core\InputHandler.h"
     310                                >
     311                        </File>
     312                        <File
     313                                RelativePath="..\..\src\orxonox\core\InputManager.h"
     314                                >
     315                        </File>
     316                        <File
    417317                                RelativePath="..\..\src\orxonox\core\Iterator.h"
    418318                                >
     
    444344                        <File
    445345                                RelativePath="..\..\src\orxonox\core\OutputHandler.h"
     346                                >
     347                        </File>
     348                        <File
     349                                RelativePath="..\..\src\orxonox\core\Script.h"
    446350                                >
    447351                        </File>
  • code/trunk/visual_studio/vc8/network.vcproj

    r790 r1024  
    139139                        />
    140140                </Configuration>
    141                 <Configuration
    142                         Name="Release_SSE|Win32"
    143                         ConfigurationType="2"
    144                         InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\network_properties.vsprops"
    145                         CharacterSet="1"
    146                         WholeProgramOptimization="1"
    147                         >
    148                         <Tool
    149                                 Name="VCPreBuildEventTool"
    150                         />
    151                         <Tool
    152                                 Name="VCCustomBuildTool"
    153                         />
    154                         <Tool
    155                                 Name="VCXMLDataGeneratorTool"
    156                         />
    157                         <Tool
    158                                 Name="VCWebServiceProxyGeneratorTool"
    159                         />
    160                         <Tool
    161                                 Name="VCMIDLTool"
    162                         />
    163                         <Tool
    164                                 Name="VCCLCompilerTool"
    165                         />
    166                         <Tool
    167                                 Name="VCManagedResourceCompilerTool"
    168                         />
    169                         <Tool
    170                                 Name="VCResourceCompilerTool"
    171                         />
    172                         <Tool
    173                                 Name="VCPreLinkEventTool"
    174                         />
    175                         <Tool
    176                                 Name="VCLinkerTool"
    177                         />
    178                         <Tool
    179                                 Name="VCALinkTool"
    180                         />
    181                         <Tool
    182                                 Name="VCManifestTool"
    183                         />
    184                         <Tool
    185                                 Name="VCXDCMakeTool"
    186                         />
    187                         <Tool
    188                                 Name="VCBscMakeTool"
    189                         />
    190                         <Tool
    191                                 Name="VCFxCopTool"
    192                         />
    193                         <Tool
    194                                 Name="VCAppVerifierTool"
    195                         />
    196                         <Tool
    197                                 Name="VCWebDeploymentTool"
    198                         />
    199                         <Tool
    200                                 Name="VCPostBuildEventTool"
    201                         />
    202                 </Configuration>
    203                 <Configuration
    204                         Name="Release_SSE2|Win32"
    205                         ConfigurationType="2"
    206                         InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\network_properties.vsprops"
    207                         CharacterSet="1"
    208                         WholeProgramOptimization="1"
    209                         >
    210                         <Tool
    211                                 Name="VCPreBuildEventTool"
    212                         />
    213                         <Tool
    214                                 Name="VCCustomBuildTool"
    215                         />
    216                         <Tool
    217                                 Name="VCXMLDataGeneratorTool"
    218                         />
    219                         <Tool
    220                                 Name="VCWebServiceProxyGeneratorTool"
    221                         />
    222                         <Tool
    223                                 Name="VCMIDLTool"
    224                         />
    225                         <Tool
    226                                 Name="VCCLCompilerTool"
    227                         />
    228                         <Tool
    229                                 Name="VCManagedResourceCompilerTool"
    230                         />
    231                         <Tool
    232                                 Name="VCResourceCompilerTool"
    233                         />
    234                         <Tool
    235                                 Name="VCPreLinkEventTool"
    236                         />
    237                         <Tool
    238                                 Name="VCLinkerTool"
    239                         />
    240                         <Tool
    241                                 Name="VCALinkTool"
    242                         />
    243                         <Tool
    244                                 Name="VCManifestTool"
    245                         />
    246                         <Tool
    247                                 Name="VCXDCMakeTool"
    248                         />
    249                         <Tool
    250                                 Name="VCBscMakeTool"
    251                         />
    252                         <Tool
    253                                 Name="VCFxCopTool"
    254                         />
    255                         <Tool
    256                                 Name="VCAppVerifierTool"
    257                         />
    258                         <Tool
    259                                 Name="VCWebDeploymentTool"
    260                         />
    261                         <Tool
    262                                 Name="VCPostBuildEventTool"
    263                         />
    264                 </Configuration>
    265141        </Configurations>
    266142        <References>
     
    307183                                        />
    308184                                </FileConfiguration>
    309                                 <FileConfiguration
    310                                         Name="Release_SSE|Win32"
    311                                         ExcludedFromBuild="true"
    312                                         >
    313                                         <Tool
    314                                                 Name="VCCLCompilerTool"
    315                                         />
    316                                 </FileConfiguration>
    317                                 <FileConfiguration
    318                                         Name="Release_SSE2|Win32"
    319                                         ExcludedFromBuild="true"
    320                                         >
    321                                         <Tool
    322                                                 Name="VCCLCompilerTool"
    323                                         />
    324                                 </FileConfiguration>
    325185                        </File>
    326186                        <File
     
    343203                                        />
    344204                                </FileConfiguration>
    345                                 <FileConfiguration
    346                                         Name="Release_SSE|Win32"
    347                                         ExcludedFromBuild="true"
    348                                         >
    349                                         <Tool
    350                                                 Name="VCCLCompilerTool"
    351                                         />
    352                                 </FileConfiguration>
    353                                 <FileConfiguration
    354                                         Name="Release_SSE2|Win32"
    355                                         ExcludedFromBuild="true"
    356                                         >
    357                                         <Tool
    358                                                 Name="VCCLCompilerTool"
    359                                         />
    360                                 </FileConfiguration>
    361205                        </File>
    362206                        <File
     
    379223                                        />
    380224                                </FileConfiguration>
    381                                 <FileConfiguration
    382                                         Name="Release_SSE|Win32"
    383                                         ExcludedFromBuild="true"
    384                                         >
    385                                         <Tool
    386                                                 Name="VCCLCompilerTool"
    387                                         />
    388                                 </FileConfiguration>
    389                                 <FileConfiguration
    390                                         Name="Release_SSE2|Win32"
    391                                         ExcludedFromBuild="true"
    392                                         >
    393                                         <Tool
    394                                                 Name="VCCLCompilerTool"
    395                                         />
    396                                 </FileConfiguration>
    397225                        </File>
    398226                        <File
     
    415243                                        />
    416244                                </FileConfiguration>
    417                                 <FileConfiguration
    418                                         Name="Release_SSE|Win32"
    419                                         ExcludedFromBuild="true"
    420                                         >
    421                                         <Tool
    422                                                 Name="VCCLCompilerTool"
    423                                         />
    424                                 </FileConfiguration>
    425                                 <FileConfiguration
    426                                         Name="Release_SSE2|Win32"
    427                                         ExcludedFromBuild="true"
    428                                         >
    429                                         <Tool
    430                                                 Name="VCCLCompilerTool"
    431                                         />
    432                                 </FileConfiguration>
    433245                        </File>
    434246                        <File
     
    451263                                        />
    452264                                </FileConfiguration>
    453                                 <FileConfiguration
    454                                         Name="Release_SSE|Win32"
    455                                         ExcludedFromBuild="true"
    456                                         >
    457                                         <Tool
    458                                                 Name="VCCLCompilerTool"
    459                                         />
    460                                 </FileConfiguration>
    461                                 <FileConfiguration
    462                                         Name="Release_SSE2|Win32"
    463                                         ExcludedFromBuild="true"
    464                                         >
    465                                         <Tool
    466                                                 Name="VCCLCompilerTool"
    467                                         />
    468                                 </FileConfiguration>
    469265                        </File>
    470266                        <File
     
    479275                                RelativePath="..\..\src\network\PacketBuffer.cc"
    480276                                >
    481                         </File>
    482                         <File
    483                                 RelativePath="..\..\src\network\PacketBufferTestExt.cc"
    484                                 >
    485                                 <FileConfiguration
    486                                         Name="Debug|Win32"
    487                                         ExcludedFromBuild="true"
    488                                         >
    489                                         <Tool
    490                                                 Name="VCCLCompilerTool"
    491                                         />
    492                                 </FileConfiguration>
    493                                 <FileConfiguration
    494                                         Name="Release|Win32"
    495                                         ExcludedFromBuild="true"
    496                                         >
    497                                         <Tool
    498                                                 Name="VCCLCompilerTool"
    499                                         />
    500                                 </FileConfiguration>
    501                                 <FileConfiguration
    502                                         Name="Release_SSE|Win32"
    503                                         ExcludedFromBuild="true"
    504                                         >
    505                                         <Tool
    506                                                 Name="VCCLCompilerTool"
    507                                         />
    508                                 </FileConfiguration>
    509                                 <FileConfiguration
    510                                         Name="Release_SSE2|Win32"
    511                                         ExcludedFromBuild="true"
    512                                         >
    513                                         <Tool
    514                                                 Name="VCCLCompilerTool"
    515                                         />
    516                                 </FileConfiguration>
    517277                        </File>
    518278                        <File
  • code/trunk/visual_studio/vc8/orxonox.vcproj

    r1021 r1024  
    143143                        />
    144144                </Configuration>
    145                 <Configuration
    146                         Name="Release_SSE|Win32"
    147                         ConfigurationType="1"
    148                         InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\orxonox_properties.vsprops"
    149                         CharacterSet="1"
    150                         WholeProgramOptimization="1"
    151                         >
    152                         <Tool
    153                                 Name="VCPreBuildEventTool"
    154                         />
    155                         <Tool
    156                                 Name="VCCustomBuildTool"
    157                         />
    158                         <Tool
    159                                 Name="VCXMLDataGeneratorTool"
    160                         />
    161                         <Tool
    162                                 Name="VCWebServiceProxyGeneratorTool"
    163                         />
    164                         <Tool
    165                                 Name="VCMIDLTool"
    166                         />
    167                         <Tool
    168                                 Name="VCCLCompilerTool"
    169                                 AdditionalOptions="/Zm200"
    170                         />
    171                         <Tool
    172                                 Name="VCManagedResourceCompilerTool"
    173                         />
    174                         <Tool
    175                                 Name="VCResourceCompilerTool"
    176                         />
    177                         <Tool
    178                                 Name="VCPreLinkEventTool"
    179                         />
    180                         <Tool
    181                                 Name="VCLinkerTool"
    182                                 EntryPointSymbol=""
    183                         />
    184                         <Tool
    185                                 Name="VCALinkTool"
    186                         />
    187                         <Tool
    188                                 Name="VCManifestTool"
    189                         />
    190                         <Tool
    191                                 Name="VCXDCMakeTool"
    192                         />
    193                         <Tool
    194                                 Name="VCBscMakeTool"
    195                         />
    196                         <Tool
    197                                 Name="VCFxCopTool"
    198                         />
    199                         <Tool
    200                                 Name="VCAppVerifierTool"
    201                         />
    202                         <Tool
    203                                 Name="VCWebDeploymentTool"
    204                         />
    205                         <Tool
    206                                 Name="VCPostBuildEventTool"
    207                         />
    208                 </Configuration>
    209                 <Configuration
    210                         Name="Release_SSE2|Win32"
    211                         ConfigurationType="1"
    212                         InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\orxonox_properties.vsprops"
    213                         CharacterSet="1"
    214                         WholeProgramOptimization="1"
    215                         >
    216                         <Tool
    217                                 Name="VCPreBuildEventTool"
    218                         />
    219                         <Tool
    220                                 Name="VCCustomBuildTool"
    221                         />
    222                         <Tool
    223                                 Name="VCXMLDataGeneratorTool"
    224                         />
    225                         <Tool
    226                                 Name="VCWebServiceProxyGeneratorTool"
    227                         />
    228                         <Tool
    229                                 Name="VCMIDLTool"
    230                         />
    231                         <Tool
    232                                 Name="VCCLCompilerTool"
    233                                 AdditionalOptions="/Zm200"
    234                         />
    235                         <Tool
    236                                 Name="VCManagedResourceCompilerTool"
    237                         />
    238                         <Tool
    239                                 Name="VCResourceCompilerTool"
    240                         />
    241                         <Tool
    242                                 Name="VCPreLinkEventTool"
    243                         />
    244                         <Tool
    245                                 Name="VCLinkerTool"
    246                                 EntryPointSymbol=""
    247                         />
    248                         <Tool
    249                                 Name="VCALinkTool"
    250                         />
    251                         <Tool
    252                                 Name="VCManifestTool"
    253                         />
    254                         <Tool
    255                                 Name="VCXDCMakeTool"
    256                         />
    257                         <Tool
    258                                 Name="VCBscMakeTool"
    259                         />
    260                         <Tool
    261                                 Name="VCFxCopTool"
    262                         />
    263                         <Tool
    264                                 Name="VCAppVerifierTool"
    265                         />
    266                         <Tool
    267                                 Name="VCWebDeploymentTool"
    268                         />
    269                         <Tool
    270                                 Name="VCPostBuildEventTool"
    271                         />
    272                 </Configuration>
    273145        </Configurations>
    274146        <References>
     
    285157                        </File>
    286158                        <File
    287                                 RelativePath="..\..\src\orxonox\InputEventListener.cc"
    288                                 >
    289                         </File>
    290                         <File
    291                                 RelativePath="..\..\src\orxonox\InputHandler.cc"
    292                                 >
    293                         </File>
    294                         <File
    295                                 RelativePath="..\..\src\orxonox\InputManager.cc"
    296                                 >
    297                                 <FileConfiguration
    298                                         Name="Debug|Win32"
    299                                         ExcludedFromBuild="true"
    300                                         >
    301                                         <Tool
    302                                                 Name="VCCLCompilerTool"
    303                                         />
    304                                 </FileConfiguration>
    305                         </File>
    306                         <File
    307159                                RelativePath="..\..\src\orxonox\Main.cc"
    308160                                >
     
    331183                                        />
    332184                                </FileConfiguration>
    333                                 <FileConfiguration
    334                                         Name="Release_SSE|Win32"
    335                                         >
    336                                         <Tool
    337                                                 Name="VCCLCompilerTool"
    338                                                 UsePrecompiledHeader="1"
    339                                         />
    340                                 </FileConfiguration>
    341                                 <FileConfiguration
    342                                         Name="Release_SSE2|Win32"
    343                                         >
    344                                         <Tool
    345                                                 Name="VCCLCompilerTool"
    346                                                 UsePrecompiledHeader="1"
    347                                         />
    348                                 </FileConfiguration>
    349                         </File>
    350                         <File
    351                                 RelativePath="..\..\src\orxonox\SpaceshipSteering.cc"
    352                                 >
    353                                 <FileConfiguration
    354                                         Name="Debug|Win32"
    355                                         ExcludedFromBuild="true"
    356                                         >
    357                                         <Tool
    358                                                 Name="VCCLCompilerTool"
    359                                         />
    360                                 </FileConfiguration>
    361                                 <FileConfiguration
    362                                         Name="Release|Win32"
    363                                         ExcludedFromBuild="true"
    364                                         >
    365                                         <Tool
    366                                                 Name="VCCLCompilerTool"
    367                                         />
    368                                 </FileConfiguration>
    369                                 <FileConfiguration
    370                                         Name="Release_SSE|Win32"
    371                                         ExcludedFromBuild="true"
    372                                         >
    373                                         <Tool
    374                                                 Name="VCCLCompilerTool"
    375                                         />
    376                                 </FileConfiguration>
    377                                 <FileConfiguration
    378                                         Name="Release_SSE2|Win32"
    379                                         ExcludedFromBuild="true"
    380                                         >
    381                                         <Tool
    382                                                 Name="VCCLCompilerTool"
    383                                         />
    384                                 </FileConfiguration>
    385185                        </File>
    386186                        <Filter
     
    430230                                        RelativePath="..\..\src\orxonox\objects\SpaceShip.cc"
    431231                                        >
    432                                 </File>
    433                                 <File
    434                                         RelativePath="..\..\src\orxonox\objects\SpaceshipSteeringObject.cc"
    435                                         >
    436                                         <FileConfiguration
    437                                                 Name="Debug|Win32"
    438                                                 ExcludedFromBuild="true"
    439                                                 >
    440                                                 <Tool
    441                                                         Name="VCCLCompilerTool"
    442                                                 />
    443                                         </FileConfiguration>
    444                                         <FileConfiguration
    445                                                 Name="Release|Win32"
    446                                                 ExcludedFromBuild="true"
    447                                                 >
    448                                                 <Tool
    449                                                         Name="VCCLCompilerTool"
    450                                                 />
    451                                         </FileConfiguration>
    452                                         <FileConfiguration
    453                                                 Name="Release_SSE|Win32"
    454                                                 ExcludedFromBuild="true"
    455                                                 >
    456                                                 <Tool
    457                                                         Name="VCCLCompilerTool"
    458                                                 />
    459                                         </FileConfiguration>
    460                                         <FileConfiguration
    461                                                 Name="Release_SSE2|Win32"
    462                                                 ExcludedFromBuild="true"
    463                                                 >
    464                                                 <Tool
    465                                                         Name="VCCLCompilerTool"
    466                                                 />
    467                                         </FileConfiguration>
    468                                 </File>
    469                                 <File
    470                                         RelativePath="..\..\src\orxonox\objects\test1.cc"
    471                                         >
    472                                         <FileConfiguration
    473                                                 Name="Debug|Win32"
    474                                                 ExcludedFromBuild="true"
    475                                                 >
    476                                                 <Tool
    477                                                         Name="VCCLCompilerTool"
    478                                                         UsePrecompiledHeader="0"
    479                                                 />
    480                                         </FileConfiguration>
    481                                         <FileConfiguration
    482                                                 Name="Release|Win32"
    483                                                 ExcludedFromBuild="true"
    484                                                 >
    485                                                 <Tool
    486                                                         Name="VCCLCompilerTool"
    487                                                         UsePrecompiledHeader="0"
    488                                                 />
    489                                         </FileConfiguration>
    490                                         <FileConfiguration
    491                                                 Name="Release_SSE|Win32"
    492                                                 ExcludedFromBuild="true"
    493                                                 >
    494                                                 <Tool
    495                                                         Name="VCCLCompilerTool"
    496                                                         UsePrecompiledHeader="0"
    497                                                 />
    498                                         </FileConfiguration>
    499                                         <FileConfiguration
    500                                                 Name="Release_SSE2|Win32"
    501                                                 ExcludedFromBuild="true"
    502                                                 >
    503                                                 <Tool
    504                                                         Name="VCCLCompilerTool"
    505                                                         UsePrecompiledHeader="0"
    506                                                 />
    507                                         </FileConfiguration>
    508                                 </File>
    509                                 <File
    510                                         RelativePath="..\..\src\orxonox\objects\test2.cc"
    511                                         >
    512                                         <FileConfiguration
    513                                                 Name="Debug|Win32"
    514                                                 ExcludedFromBuild="true"
    515                                                 >
    516                                                 <Tool
    517                                                         Name="VCCLCompilerTool"
    518                                                         UsePrecompiledHeader="0"
    519                                                 />
    520                                         </FileConfiguration>
    521                                         <FileConfiguration
    522                                                 Name="Release|Win32"
    523                                                 ExcludedFromBuild="true"
    524                                                 >
    525                                                 <Tool
    526                                                         Name="VCCLCompilerTool"
    527                                                         UsePrecompiledHeader="0"
    528                                                 />
    529                                         </FileConfiguration>
    530                                         <FileConfiguration
    531                                                 Name="Release_SSE|Win32"
    532                                                 ExcludedFromBuild="true"
    533                                                 >
    534                                                 <Tool
    535                                                         Name="VCCLCompilerTool"
    536                                                         UsePrecompiledHeader="0"
    537                                                 />
    538                                         </FileConfiguration>
    539                                         <FileConfiguration
    540                                                 Name="Release_SSE2|Win32"
    541                                                 ExcludedFromBuild="true"
    542                                                 >
    543                                                 <Tool
    544                                                         Name="VCCLCompilerTool"
    545                                                         UsePrecompiledHeader="0"
    546                                                 />
    547                                         </FileConfiguration>
    548                                 </File>
    549                                 <File
    550                                         RelativePath="..\..\src\orxonox\objects\test3.cc"
    551                                         >
    552                                         <FileConfiguration
    553                                                 Name="Debug|Win32"
    554                                                 ExcludedFromBuild="true"
    555                                                 >
    556                                                 <Tool
    557                                                         Name="VCCLCompilerTool"
    558                                                         UsePrecompiledHeader="0"
    559                                                 />
    560                                         </FileConfiguration>
    561                                         <FileConfiguration
    562                                                 Name="Release|Win32"
    563                                                 ExcludedFromBuild="true"
    564                                                 >
    565                                                 <Tool
    566                                                         Name="VCCLCompilerTool"
    567                                                         UsePrecompiledHeader="0"
    568                                                 />
    569                                         </FileConfiguration>
    570                                         <FileConfiguration
    571                                                 Name="Release_SSE|Win32"
    572                                                 ExcludedFromBuild="true"
    573                                                 >
    574                                                 <Tool
    575                                                         Name="VCCLCompilerTool"
    576                                                         UsePrecompiledHeader="0"
    577                                                 />
    578                                         </FileConfiguration>
    579                                         <FileConfiguration
    580                                                 Name="Release_SSE2|Win32"
    581                                                 ExcludedFromBuild="true"
    582                                                 >
    583                                                 <Tool
    584                                                         Name="VCCLCompilerTool"
    585                                                         UsePrecompiledHeader="0"
    586                                                 />
    587                                         </FileConfiguration>
    588232                                </File>
    589233                                <File
     
    659303                        </File>
    660304                        <File
    661                                 RelativePath="..\..\src\orxonox\InputEvent.h"
    662                                 >
    663                         </File>
    664                         <File
    665                                 RelativePath="..\..\src\orxonox\InputEventListener.h"
    666                                 >
    667                         </File>
    668                         <File
    669                                 RelativePath="..\..\src\orxonox\InputHandler.h"
    670                                 >
    671                         </File>
    672                         <File
    673                                 RelativePath="..\..\src\orxonox\InputManager.h"
    674                                 >
    675                         </File>
    676                         <File
    677305                                RelativePath="..\..\src\orxonox\Orxonox.h"
    678306                                >
     
    690318                                >
    691319                        </File>
    692                         <File
    693                                 RelativePath="..\..\src\orxonox\SpaceshipSteering.h"
    694                                 >
    695                         </File>
    696320                        <Filter
    697321                                Name="hud"
     
    739363                                <File
    740364                                        RelativePath="..\..\src\orxonox\objects\SpaceShip.h"
    741                                         >
    742                                 </File>
    743                                 <File
    744                                         RelativePath="..\..\src\orxonox\objects\SpaceshipSteeringObject.h"
    745                                         >
    746                                 </File>
    747                                 <File
    748                                         RelativePath="..\..\src\orxonox\objects\Test.h"
    749                                         >
    750                                 </File>
    751                                 <File
    752                                         RelativePath="..\..\src\orxonox\objects\test1.h"
    753                                         >
    754                                 </File>
    755                                 <File
    756                                         RelativePath="..\..\src\orxonox\objects\test2.h"
    757                                         >
    758                                 </File>
    759                                 <File
    760                                         RelativePath="..\..\src\orxonox\objects\test3.h"
    761365                                        >
    762366                                </File>
     
    828432                        UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
    829433                        >
    830                         <File
    831                                 RelativePath="..\..\bin\media.cfg"
    832                                 >
    833                         </File>
    834                         <File
    835                                 RelativePath="..\..\bin\ogre.cfg"
    836                                 >
    837                         </File>
    838                         <File
    839                                 RelativePath="..\..\bin\ogre.cfg-init"
    840                                 >
    841                         </File>
    842                         <File
    843                                 RelativePath="..\..\bin\Ogre.log"
    844                                 >
    845                         </File>
    846                         <File
    847                                 RelativePath="..\..\bin\orxonox.bat"
    848                                 >
    849                         </File>
    850                         <File
    851                                 RelativePath="..\..\bin\orxonox.ini"
    852                                 >
    853                         </File>
    854                         <File
    855                                 RelativePath="..\..\bin\orxonox.log"
    856                                 >
    857                         </File>
    858                         <File
    859                                 RelativePath="..\..\bin\orxonox_d.bat"
    860                                 >
    861                         </File>
    862                         <File
    863                                 RelativePath="..\..\bin\plugins.cfg"
    864                                 >
    865                         </File>
    866                         <File
    867                                 RelativePath="..\..\bin\plugins.cfg-init"
    868                                 >
    869                         </File>
    870                         <File
    871                                 RelativePath="..\..\bin\plugins_d.cfg"
    872                                 >
    873                         </File>
    874                         <File
    875                                 RelativePath="..\..\bin\quake3settings.cfg"
    876                                 >
    877                         </File>
    878                         <File
    879                                 RelativePath="..\..\bin\resources.cfg"
    880                                 >
    881                         </File>
    882                         <File
    883                                 RelativePath="..\..\bin\run-script"
    884                                 >
    885                         </File>
    886                         <File
    887                                 RelativePath="..\..\bin\translation_default.lang"
    888                                 >
    889                         </File>
    890                         <File
    891                                 RelativePath="..\..\bin\translation_german.lang"
    892                                 >
    893                         </File>
    894434                </Filter>
    895435        </Files>
  • code/trunk/visual_studio/vc8/tixml.vcproj

    r890 r1024  
    1919                        Name="Debug|Win32"
    2020                        ConfigurationType="4"
    21                         InheritedPropertySheets="$(SolutionDir)base_properties_debug.vsprops;..\util_properties.vsprops"
     21                        InheritedPropertySheets="$(SolutionDir)base_properties_debug.vsprops;..\tixml_properties.vsprops"
    2222                        CharacterSet="1"
    2323                        >
     
    7171                        Name="Release|Win32"
    7272                        ConfigurationType="4"
    73                         InheritedPropertySheets="$(SolutionDir)base_properties_release.vsprops;..\util_properties.vsprops"
    74                         CharacterSet="1"
    75                         WholeProgramOptimization="1"
    76                         >
    77                         <Tool
    78                                 Name="VCPreBuildEventTool"
    79                         />
    80                         <Tool
    81                                 Name="VCCustomBuildTool"
    82                         />
    83                         <Tool
    84                                 Name="VCXMLDataGeneratorTool"
    85                         />
    86                         <Tool
    87                                 Name="VCWebServiceProxyGeneratorTool"
    88                         />
    89                         <Tool
    90                                 Name="VCMIDLTool"
    91                         />
    92                         <Tool
    93                                 Name="VCCLCompilerTool"
    94                         />
    95                         <Tool
    96                                 Name="VCManagedResourceCompilerTool"
    97                         />
    98                         <Tool
    99                                 Name="VCResourceCompilerTool"
    100                         />
    101                         <Tool
    102                                 Name="VCPreLinkEventTool"
    103                         />
    104                         <Tool
    105                                 Name="VCLibrarianTool"
    106                         />
    107                         <Tool
    108                                 Name="VCALinkTool"
    109                         />
    110                         <Tool
    111                                 Name="VCXDCMakeTool"
    112                         />
    113                         <Tool
    114                                 Name="VCBscMakeTool"
    115                         />
    116                         <Tool
    117                                 Name="VCFxCopTool"
    118                         />
    119                         <Tool
    120                                 Name="VCPostBuildEventTool"
    121                         />
    122                 </Configuration>
    123                 <Configuration
    124                         Name="Release_SSE|Win32"
    125                         ConfigurationType="4"
    126                         InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\util_properties.vsprops"
    127                         CharacterSet="1"
    128                         WholeProgramOptimization="1"
    129                         >
    130                         <Tool
    131                                 Name="VCPreBuildEventTool"
    132                         />
    133                         <Tool
    134                                 Name="VCCustomBuildTool"
    135                         />
    136                         <Tool
    137                                 Name="VCXMLDataGeneratorTool"
    138                         />
    139                         <Tool
    140                                 Name="VCWebServiceProxyGeneratorTool"
    141                         />
    142                         <Tool
    143                                 Name="VCMIDLTool"
    144                         />
    145                         <Tool
    146                                 Name="VCCLCompilerTool"
    147                         />
    148                         <Tool
    149                                 Name="VCManagedResourceCompilerTool"
    150                         />
    151                         <Tool
    152                                 Name="VCResourceCompilerTool"
    153                         />
    154                         <Tool
    155                                 Name="VCPreLinkEventTool"
    156                         />
    157                         <Tool
    158                                 Name="VCLibrarianTool"
    159                         />
    160                         <Tool
    161                                 Name="VCALinkTool"
    162                         />
    163                         <Tool
    164                                 Name="VCXDCMakeTool"
    165                         />
    166                         <Tool
    167                                 Name="VCBscMakeTool"
    168                         />
    169                         <Tool
    170                                 Name="VCFxCopTool"
    171                         />
    172                         <Tool
    173                                 Name="VCPostBuildEventTool"
    174                         />
    175                 </Configuration>
    176                 <Configuration
    177                         Name="Release_SSE2|Win32"
    178                         ConfigurationType="4"
    179                         InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\util_properties.vsprops"
     73                        InheritedPropertySheets="$(SolutionDir)base_properties_release.vsprops;..\tixml_properties.vsprops"
    18074                        CharacterSet="1"
    18175                        WholeProgramOptimization="1"
     
    278172                                >
    279173                        </File>
    280                         <File
    281                                 RelativePath="..\..\src\util\tinyxml\TinyXMLPrereqs.h"
    282                                 >
    283                         </File>
    284174                </Filter>
    285175        </Files>
  • code/trunk/visual_studio/vc8/tolua++.vcproj

    r1022 r1024  
    131131                        >
    132132                        <File
    133                                 RelativePath="..\..\src\util\tolua++\tolua.c"
     133                                RelativePath="..\..\src\util\tolua\tolua.c"
    134134                                >
    135135                        </File>
    136136                        <File
    137                                 RelativePath="..\..\src\util\tolua++\tolua_event.c"
     137                                RelativePath="..\..\src\util\tolua\tolua_bind.cc"
    138138                                >
    139139                        </File>
    140140                        <File
    141                                 RelativePath="..\..\src\util\tolua++\tolua_is.c"
     141                                RelativePath="..\..\src\util\tolua\tolua_event.c"
    142142                                >
    143143                        </File>
    144144                        <File
    145                                 RelativePath="..\..\src\util\tolua++\tolua_map.c"
     145                                RelativePath="..\..\src\util\tolua\tolua_is.c"
    146146                                >
    147147                        </File>
    148148                        <File
    149                                 RelativePath="..\..\src\util\tolua++\tolua_push.c"
     149                                RelativePath="..\..\src\util\tolua\tolua_map.c"
    150150                                >
    151151                        </File>
    152152                        <File
    153                                 RelativePath="..\..\src\util\tolua++\tolua_to.c"
     153                                RelativePath="..\..\src\util\tolua\tolua_push.c"
    154154                                >
    155155                        </File>
    156156                        <File
    157                                 RelativePath="..\..\src\util\tolua++\toluabind.c"
     157                                RelativePath="..\..\src\util\tolua\tolua_to.c"
     158                                >
     159                        </File>
     160                        <File
     161                                RelativePath="..\..\src\util\tolua\toluabind.c"
    158162                                >
    159163                        </File>
     
    165169                        >
    166170                        <File
    167                                 RelativePath="..\..\src\util\tolua++\tolua_event.h"
     171                                RelativePath="..\..\src\util\tolua\tolua++.h"
    168172                                >
    169173                        </File>
    170174                        <File
    171                                 RelativePath="..\..\src\util\tolua++\toluabind.h"
     175                                RelativePath="..\..\src\util\tolua\tolua_bind.h"
    172176                                >
    173177                        </File>
    174178                        <File
    175                                 RelativePath="..\..\src\util\tolua++\toluabind_default.h"
     179                                RelativePath="..\..\src\util\tolua\tolua_event.h"
     180                                >
     181                        </File>
     182                        <File
     183                                RelativePath="..\..\src\util\tolua\toluabind.h"
     184                                >
     185                        </File>
     186                        <File
     187                                RelativePath="..\..\src\util\tolua\toluabind_default.h"
    176188                                >
    177189                        </File>
  • code/trunk/visual_studio/vc8/util.vcproj

    r890 r1024  
    139139                        />
    140140                </Configuration>
    141                 <Configuration
    142                         Name="Release_SSE|Win32"
    143                         ConfigurationType="2"
    144                         InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\util_properties.vsprops"
    145                         CharacterSet="1"
    146                         WholeProgramOptimization="1"
    147                         >
    148                         <Tool
    149                                 Name="VCPreBuildEventTool"
    150                         />
    151                         <Tool
    152                                 Name="VCCustomBuildTool"
    153                         />
    154                         <Tool
    155                                 Name="VCXMLDataGeneratorTool"
    156                         />
    157                         <Tool
    158                                 Name="VCWebServiceProxyGeneratorTool"
    159                         />
    160                         <Tool
    161                                 Name="VCMIDLTool"
    162                         />
    163                         <Tool
    164                                 Name="VCCLCompilerTool"
    165                         />
    166                         <Tool
    167                                 Name="VCManagedResourceCompilerTool"
    168                         />
    169                         <Tool
    170                                 Name="VCResourceCompilerTool"
    171                         />
    172                         <Tool
    173                                 Name="VCPreLinkEventTool"
    174                         />
    175                         <Tool
    176                                 Name="VCLinkerTool"
    177                         />
    178                         <Tool
    179                                 Name="VCALinkTool"
    180                         />
    181                         <Tool
    182                                 Name="VCManifestTool"
    183                         />
    184                         <Tool
    185                                 Name="VCXDCMakeTool"
    186                         />
    187                         <Tool
    188                                 Name="VCBscMakeTool"
    189                         />
    190                         <Tool
    191                                 Name="VCFxCopTool"
    192                         />
    193                         <Tool
    194                                 Name="VCAppVerifierTool"
    195                         />
    196                         <Tool
    197                                 Name="VCWebDeploymentTool"
    198                         />
    199                         <Tool
    200                                 Name="VCPostBuildEventTool"
    201                         />
    202                 </Configuration>
    203                 <Configuration
    204                         Name="Release_SSE2|Win32"
    205                         ConfigurationType="2"
    206                         InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\util_properties.vsprops"
    207                         CharacterSet="1"
    208                         WholeProgramOptimization="1"
    209                         >
    210                         <Tool
    211                                 Name="VCPreBuildEventTool"
    212                         />
    213                         <Tool
    214                                 Name="VCCustomBuildTool"
    215                         />
    216                         <Tool
    217                                 Name="VCXMLDataGeneratorTool"
    218                         />
    219                         <Tool
    220                                 Name="VCWebServiceProxyGeneratorTool"
    221                         />
    222                         <Tool
    223                                 Name="VCMIDLTool"
    224                         />
    225                         <Tool
    226                                 Name="VCCLCompilerTool"
    227                         />
    228                         <Tool
    229                                 Name="VCManagedResourceCompilerTool"
    230                         />
    231                         <Tool
    232                                 Name="VCResourceCompilerTool"
    233                         />
    234                         <Tool
    235                                 Name="VCPreLinkEventTool"
    236                         />
    237                         <Tool
    238                                 Name="VCLinkerTool"
    239                         />
    240                         <Tool
    241                                 Name="VCALinkTool"
    242                         />
    243                         <Tool
    244                                 Name="VCManifestTool"
    245                         />
    246                         <Tool
    247                                 Name="VCXDCMakeTool"
    248                         />
    249                         <Tool
    250                                 Name="VCBscMakeTool"
    251                         />
    252                         <Tool
    253                                 Name="VCFxCopTool"
    254                         />
    255                         <Tool
    256                                 Name="VCAppVerifierTool"
    257                         />
    258                         <Tool
    259                                 Name="VCWebDeploymentTool"
    260                         />
    261                         <Tool
    262                                 Name="VCPostBuildEventTool"
    263                         />
    264                 </Configuration>
    265141        </Configurations>
    266142        <References>
     
    273149                        >
    274150                        <File
     151                                RelativePath="..\..\src\util\ArgReader.cc"
     152                                >
     153                        </File>
     154                        <File
    275155                                RelativePath="..\..\src\util\Math.cc"
    276156                                >
     
    293173                        </File>
    294174                        <File
    295                                 RelativePath="..\..\src\util\substring.cc"
     175                                RelativePath="..\..\src\util\SubString.cc"
    296176                                >
    297177                        </File>
     
    303183                        >
    304184                        <File
     185                                RelativePath="..\..\src\util\ArgReader.h"
     186                                >
     187                        </File>
     188                        <File
    305189                                RelativePath="..\..\src\util\Convert.h"
    306190                                >
     
    339223                        </File>
    340224                        <File
    341                                 RelativePath="..\..\src\util\substring.h"
     225                                RelativePath="..\..\src\util\SubString.h"
    342226                                >
    343227                        </File>
Note: See TracChangeset for help on using the changeset viewer.