Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10051 in orxonox.OLD


Ignore:
Timestamp:
Dec 12, 2006, 11:54:07 PM (17 years ago)
Author:
patrick
Message:

added the oif ground classes including their resource management system

Location:
branches/mount_points/src/lib/graphics/importer
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/mount_points/src/lib/graphics/importer/Makefile.am

    r10050 r10051  
    2727                \
    2828                oif/object_information_file.cc \
     29                oif/resource_oif.cc \
    2930                \
    3031                bsp/bsp_manager.cc \
     
    8283                \
    8384                oif/object_information_file.h \
     85                oif/resource_oif.h \
    8486                \
    8587                md2/md2Model.h \
  • branches/mount_points/src/lib/graphics/importer/oif/object_information_file.cc

    r10050 r10051  
    1818#include "object_information_file.h"
    1919
    20 
     20#include "resource_oif.h"
    2121
    2222
     
    2525 * @todo this constructor is not jet implemented - do it
    2626*/
    27 ObjectInformationFile::ObjectInformationFile(float sizeX, float sizeY, unsigned int rows, unsigned int columns)
     27ObjectInformationFile::ObjectInformationFile()
    2828{
     29  this->data = ResourceOIF("adsf").data;
     30
    2931}
    3032
  • branches/mount_points/src/lib/graphics/importer/oif/object_information_file.h

    r10050 r10051  
    99#include "vertex_array_model.h"
    1010
     11#include "count_pointer.h"
    1112
     13
     14//! A class for object informations
     15class OIFData : BaseObject
     16{
     17public:
     18  typedef CountPointer<OIFData>    Pointer;
     19
     20public:
     21  OIFData();
     22  virtual ~OIFData();
     23
     24
     25
     26private:
     27
     28};
    1229
    1330//! A class for object informations
     
    2239
    2340private:
     41  CountPointer<OIFData>          data;                           //!< the oif data pointer
    2442
    2543};
Note: See TracChangeset for help on using the changeset viewer.