Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/graphics/importer/resource_obj.h @ 9869

Last change on this file since 9869 was 9869, checked in by bensch, 18 years ago

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File size: 1.1 KB
RevLine 
[9781]1/*!
[9831]2 * @file resource_obj.h
3 * @brief Contains the ResourceOBJ class, that handles the Resource-specific loading part of the OBJ.
[9781]4 *
5 */
6
[9831]7#ifndef _RESOURCE_OBJ_H
8#define _RESOURCE_OBJ_H
[9781]9
10#include "util/loading/resource.h"
[9831]11#include "objModel.h"
[9781]12
[9847]13class ResourceOBJ : public StaticModel, public Resources::Resource
[9781]14{
[9785]15public:
[9854]16  ResourceOBJ(const std::string& imageName,
17              float scaling = 1.0f,
18              const Resources::KeepLevel& keepLevel = Resources::KeepLevel());
19  static ResourceOBJ createFromString(const std::string& loadString,
20                                      const Resources::KeepLevel& keepLevel = Resources::KeepLevel());
[9781]21
22private:
[9831]23class OBJResourcePointer : public Resources::StorePointer
[9781]24  {
25  public:
[9831]26    OBJResourcePointer(const std::string& loadString, const Resources::KeepLevel& keepLevel, const StaticModelData::Pointer& data);
27    inline const StaticModelData::Pointer& ptr() const { return pointer; }
[9846]28    virtual bool last() const { return pointer.count() == 1; }
[9823]29private:
[9831]30    StaticModelData::Pointer pointer;
[9781]31  };
32
[9785]33private:
[9831]34  static Resources::tType<ResourceOBJ> type;
[9781]35};
36
37
[9831]38#endif /* _RESOURCE_OBJ_H */
Note: See TracBrowser for help on using the repository browser.