1 | /* |
---|
2 | orxonox - the future of 3D-vertical-scrollers |
---|
3 | |
---|
4 | Copyright (C) 2004 orx |
---|
5 | |
---|
6 | This program is free software; you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation; either version 2, or (at your option) |
---|
9 | any later version. |
---|
10 | |
---|
11 | ### File Specific: |
---|
12 | main-programmer: Patrick Boenzli |
---|
13 | co-programmer: ... |
---|
14 | */ |
---|
15 | |
---|
16 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WEAPON |
---|
17 | |
---|
18 | #include "text_element.h" |
---|
19 | |
---|
20 | #include "util/loading/load_param.h" |
---|
21 | #include "util/loading/factory.h" |
---|
22 | |
---|
23 | #include "graphics_engine.h" |
---|
24 | #include "state.h" |
---|
25 | |
---|
26 | |
---|
27 | using namespace std; |
---|
28 | |
---|
29 | |
---|
30 | CREATE_FACTORY(TextElement, CL_TEXT_ELEMENT); |
---|
31 | |
---|
32 | |
---|
33 | /** |
---|
34 | * standart constructor |
---|
35 | */ |
---|
36 | TextElement::TextElement (const TiXmlElement* root) |
---|
37 | { |
---|
38 | this->setClassID(CL_TEXT_ELEMENT, "TextElement"); |
---|
39 | this->setName("TextElement"); |
---|
40 | |
---|
41 | this->setLayer(E2D_LAYER_TOP); |
---|
42 | this->setSize(GraphicsEngine::getInstance()->getResolutionX()/10.0); |
---|
43 | |
---|
44 | this->setSize(20); |
---|
45 | this->setFont("fonts/earth.ttf"); |
---|
46 | this->setAlignment(TEXT_ALIGN_CENTER); |
---|
47 | |
---|
48 | if(root != NULL) |
---|
49 | this->loadParams(root); |
---|
50 | } |
---|
51 | |
---|
52 | |
---|
53 | /** |
---|
54 | * destroys a TextElement |
---|
55 | */ |
---|
56 | TextElement::~TextElement () |
---|
57 | { |
---|
58 | } |
---|
59 | |
---|
60 | |
---|
61 | void TextElement::loadParams(const TiXmlElement* root) |
---|
62 | { |
---|
63 | Element2D::loadParams(root); |
---|
64 | |
---|
65 | LoadParam(root, "size", this, Text, setSize); |
---|
66 | |
---|
67 | LoadParam(root, "text", this, TextElement, setText); |
---|
68 | |
---|
69 | LoadParam(root, "font", this, TextElement, setFont); |
---|
70 | } |
---|
71 | |
---|
72 | void TextElement::setText(const std::string& text) |
---|
73 | { |
---|
74 | Text::setText(text); |
---|
75 | } |
---|
76 | |
---|
77 | void TextElement::setFont(const std::string& font) |
---|
78 | { |
---|
79 | Text::setFont(font, (unsigned int)this->getSizeY2D()); |
---|
80 | } |
---|