Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 379


Ignore:
Timestamp:
Dec 4, 2007, 8:21:47 PM (16 years ago)
Author:
rgrieder
Message:
  • converted loader library to be compilable as a DLL
    • added loader_platform.h and loader_prereq.h to do that
Location:
code/branches/FICN
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/bin

    • Property svn:ignore
      •  

        old new  
        66benixonox
        77core
         8release
         9debug
  • code/branches/FICN/src/loader/LevelLoader.h

    r341 r379  
    99#include <iostream>
    1010
     11#include "loader_platform.h"
    1112#include "xml/xmlParser.h"
    1213
     
    1819namespace loader
    1920{
    20         class LevelLoader
     21        class _LoaderExport LevelLoader
    2122        {
    2223        private:
    2324               
    2425                // XML Nodes
    25                 XMLNode rootNode; 
     26                XMLNode rootNode;
    2627                XMLNode worldNode;
    2728                XMLNode scriptNode;
  • code/branches/FICN/src/loader/Light.h

    r346 r379  
    11
     2#include "loader_platform.h"
    23#include "xml/xmlParser.h"
    34
     
    78namespace light
    89{
    9         class Light
     10        class _LoaderExport Light
    1011        {
    1112        public:     
  • code/branches/FICN/src/loader/LightManager.h

    r346 r379  
    11#include <vector>
    22
     3#include "loader_platform.h"
    34#include "xml/xmlParser.h"
    45#include "Light.h"
     
    910namespace light
    1011{
    11         class LightManager
     12        class _LoaderExport LightManager
    1213        {     
    1314        public:
  • code/branches/FICN/src/orxonox/orxonox.cc

    r368 r379  
    3131 */
    3232
    33 #include <Ogre.h>
     33//#include <Ogre.h>
     34// 40% speed up: (instead of Ogre.h)
     35#include <OgreSceneNode.h>
     36#include <OgreSceneManager.h>
     37#include <OgreRoot.h>
     38#include <OgreFrameListener.h>
     39#include <OgreConfigFile.h>
     40#include <OgreTextureManager.h>
     41#include <OgreEntity.h>
     42#include <OgreRenderWindow.h>
     43
    3444#include <OIS/OIS.h>
    3545//#include <CEGUI/CEGUI.h>
  • code/branches/FICN/src/orxonox/spaceship_steering.cc

    r337 r379  
    1 #include "Ogre.h"
     1#include "OgreSceneNode.h"
    22#include "spaceship_steering.h"
    33using namespace Ogre;
Note: See TracChangeset for help on using the changeset viewer.