Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/lib/graphics/text_engine/resource_font.h @ 9839

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

Font completely ported to the new Resource-Format.
Now all the Basic Resources previously loaded from a central ResourceManager are Distributed over the Resource-Types

File size: 875 bytes
RevLine 
[9781]1/*!
[9837]2 * @file resource_font.h
3 * @brief Contains the ResourceFont class, that handles the Resource-specific loading part of the Font.
[9781]4 *
5 */
6
[9837]7#ifndef _RESOURCE_FONT_H
8#define _RESOURCE_FONT_H
[9781]9
10#include "util/loading/resource.h"
[9837]11#include "font.h"
[9781]12
13
[9837]14class ResourceFont : public Font, public Resources::NewResource
[9781]15{
[9785]16public:
[9839]17  ResourceFont(const std::string& fontName, unsigned int renderSize);
[9837]18  static ResourceFont createFromString(const std::string& loadString);
[9781]19
20private:
[9837]21class FontResourcePointer : public Resources::StorePointer
[9781]22  {
23  public:
[9837]24    FontResourcePointer(const std::string& loadString, const Resources::KeepLevel& keepLevel, const FontData::Pointer& data);
25    inline const FontData::Pointer& ptr() const { return pointer; }
[9823]26private:
[9837]27    FontData::Pointer pointer;
[9781]28  };
29
[9785]30private:
[9837]31  static Resources::tType<ResourceFont> type;
[9781]32};
33
34
[9837]35#endif /* _RESOURCE_FONT_H */
Note: See TracBrowser for help on using the repository browser.