Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/elements/text_element.cc @ 7221

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

orxonox/trunk: merged the std-branche back, it runs on windows and Linux

svn merge https://svn.orxonox.net/orxonox/branches/std . -r7202:HEAD

File size: 1.6 KB
Line 
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
27using namespace std;
28
29
30CREATE_FACTORY(TextElement, CL_TEXT_ELEMENT);
31
32
33/**
34 * standart constructor
35 */
36TextElement::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*/
56TextElement::~TextElement ()
57{
58}
59
60
61void 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
72void TextElement::setText(const std::string& text)
73{
74  Text::setText(text);
75}
76
77void TextElement::setFont(const std::string& font)
78{
79  Text::setFont(font, (unsigned int)this->getSizeY2D());
80}
Note: See TracBrowser for help on using the repository browser.