nomlib
Loading...
Searching...
No Matches
IFont.hpp
1/******************************************************************************
2
3 nomlib - C++11 cross-platform game engine
4
5Copyright (c) 2013, 2014 Jeffrey Carpenter <i8degrees@gmail.com>
6All rights reserved.
7
8Redistribution and use in source and binary forms, with or without
9modification, are permitted provided that the following conditions are met:
10
111. Redistributions of source code must retain the above copyright notice, this
12 list of conditions and the following disclaimer.
132. Redistributions in binary form must reproduce the above copyright notice,
14 this list of conditions and the following disclaimer in the documentation
15 and/or other materials provided with the distribution.
16
17THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
21ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28******************************************************************************/
29#ifndef NOMLIB_GRAPHICS_FONTS_IFONT_HPP
30#define NOMLIB_GRAPHICS_FONTS_IFONT_HPP
31
32#include <iostream>
33#include <memory>
34
35#include "nomlib/config.hpp"
36
37namespace nom {
38
39// Forward declarations
40class Image;
41struct Glyph;
42struct FontMetrics;
43
45class IFont
46{
47 public:
48 typedef IFont self_type;
49
50 typedef self_type* raw_ptr;
51 typedef std::shared_ptr<self_type> shared_ptr;
52 typedef std::unique_ptr<self_type> unique_ptr;
53
54 enum FontType
55 {
56 NotDefined = 0,
57 BitmapFont,
58 TrueTypeFont,
59 BMFont
60 };
61
62 IFont( void )
63 {
64 // NOM_LOG_TRACE( NOM );
65 }
66
67 virtual ~IFont( void )
68 {
69 // NOM_LOG_TRACE( NOM );
70 }
71
72 virtual IFont::raw_ptr clone( void ) const = 0;
73 virtual bool valid ( void ) const = 0;
74
75 virtual const Image* image(uint32) const = 0;
76 virtual enum IFont::FontType type ( void ) const = 0;
77
78 virtual const Glyph& glyph ( uint32, uint32 ) const = 0;
79 virtual int newline( uint32 ) const = 0;
80 virtual sint spacing ( uint32 ) const = 0;
81 virtual int kerning( uint32, uint32, uint32 ) const = 0;
82 virtual int hinting( void ) const = 0;
83 virtual uint32 font_style( void ) const = 0;
84 virtual const FontMetrics& metrics( void ) const = 0;
85
86 virtual bool set_point_size( int ) = 0;
87
89 virtual bool set_hinting( int ) = 0;
90
92 virtual bool set_outline( int ) = 0;
93
94 virtual void set_font_style( uint32 style ) = 0;
95 virtual void set_font_kerning( bool state ) = 0;
96
98 virtual bool load( const std::string& filename ) = 0;
99};
100
101} // namespace nom
102
103#endif // include guard defined
104
virtual bool load(const std::string &filename)=0
virtual bool set_outline(int)=0
virtual bool set_hinting(int)=0
Bitmap storage container.
Definition Image.hpp:48
Container structure for global font metric data.
Container structure for font data.
Definition Glyph.hpp:44