TDME2
1.9.121
src
tdme
gui
renderer
GUICharacter.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
tdme/tdme.h
>
4
5
/**
6
* The definition of a single character as defined in the AngelCode file format
7
* @author kevin, Andreas Drewke
8
* @version $Id$
9
*/
10
class
tdme::gui::renderer::GUICharacter
final
11
{
12
public
:
13
/**
14
* Public constructor
15
* @param id id
16
* @param x x location on the sprite sheet
17
* @param y y location on the sprite sheet
18
* @param width width of the character image
19
* @param height height of the character image
20
* @param xOffset the amount the x position should be offset when drawing the image
21
* @param yOffset the amount the y position should be offset when drawing the image
22
* @param xAdvance the amount to move the current position after drawing the character
23
*/
24
inline
GUICharacter
(
25
float
id
,
26
float
x
,
27
float
y
,
28
float
width
,
29
float
height
,
30
float
xOffset
,
31
float
yOffset
,
32
float
xAdvance
33
):
34
id
(
id
),
35
x
(
x
),
36
y
(
y
),
37
width
(
width
),
38
height
(
height
),
39
xOffset
(
xOffset
),
40
yOffset
(
yOffset
),
41
xAdvance
(
xAdvance
)
42
{
43
//
44
}
45
46
/**
47
* @return id
48
*/
49
float
getId
() {
50
return
id
;
51
}
52
53
/**
54
* @return x location on the sprite sheet
55
*/
56
float
getX
() {
57
return
x
;
58
}
59
60
/**
61
* @return y location on the sprite sheet
62
*/
63
float
getY
() {
64
return
y
;
65
}
66
67
/**
68
* @return width of the character image
69
*/
70
float
getWidth
() {
71
return
width
;
72
}
73
74
/**
75
* @return height of the character image
76
*/
77
float
getHeight
() {
78
return
height
;
79
}
80
81
/**
82
* @return the amount the x position should be offset when drawing the image
83
*/
84
float
getXOffset
() {
85
return
xOffset
;
86
}
87
88
/**
89
* @return the amount the y position should be offset when drawing the image
90
*/
91
float
getYOffset
() {
92
return
yOffset
;
93
}
94
95
/**
96
* @return the amount to move the current position after drawing the character
97
*/
98
float
getXAdvance
() {
99
return
xAdvance
;
100
}
101
102
private
:
103
float
id
;
104
float
x
;
105
float
y
;
106
float
width
;
107
float
height
;
108
float
xOffset
;
109
float
yOffset
;
110
float
xAdvance
;
111
};
tdme::gui::renderer::GUICharacter
The definition of a single character as defined in the AngelCode file format.
Definition:
GUICharacter.h:11
tdme::gui::renderer::GUICharacter::getYOffset
float getYOffset()
Definition:
GUICharacter.h:91
tdme::gui::renderer::GUICharacter::getXOffset
float getXOffset()
Definition:
GUICharacter.h:84
tdme::gui::renderer::GUICharacter::getHeight
float getHeight()
Definition:
GUICharacter.h:77
tdme::gui::renderer::GUICharacter::GUICharacter
GUICharacter(float id, float x, float y, float width, float height, float xOffset, float yOffset, float xAdvance)
Public constructor.
Definition:
GUICharacter.h:24
tdme::gui::renderer::GUICharacter::height
float height
Definition:
GUICharacter.h:107
tdme::gui::renderer::GUICharacter::xOffset
float xOffset
Definition:
GUICharacter.h:108
tdme::gui::renderer::GUICharacter::yOffset
float yOffset
Definition:
GUICharacter.h:109
tdme::gui::renderer::GUICharacter::xAdvance
float xAdvance
Definition:
GUICharacter.h:110
tdme::gui::renderer::GUICharacter::getXAdvance
float getXAdvance()
Definition:
GUICharacter.h:98
tdme::gui::renderer::GUICharacter::getY
float getY()
Definition:
GUICharacter.h:63
tdme::gui::renderer::GUICharacter::y
float y
Definition:
GUICharacter.h:105
tdme::gui::renderer::GUICharacter::getWidth
float getWidth()
Definition:
GUICharacter.h:70
tdme::gui::renderer::GUICharacter::x
float x
Definition:
GUICharacter.h:104
tdme::gui::renderer::GUICharacter::id
float id
Definition:
GUICharacter.h:103
tdme::gui::renderer::GUICharacter::getId
float getId()
Definition:
GUICharacter.h:49
tdme::gui::renderer::GUICharacter::width
float width
Definition:
GUICharacter.h:106
tdme::gui::renderer::GUICharacter::getX
float getX()
Definition:
GUICharacter.h:56
tdme.h
Generated by
1.9.3