TDME2 1.9.121
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 */
11{
12public:
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 */
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),
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
102private:
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};
The definition of a single character as defined in the AngelCode file format.
Definition: GUICharacter.h:11
GUICharacter(float id, float x, float y, float width, float height, float xOffset, float yOffset, float xAdvance)
Public constructor.
Definition: GUICharacter.h:24