Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/world_entities/elements/text_element.cc @ 9715

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

renamed newclassid to classid and newobjectlist to objectlist

File size: 1.6 KB
RevLine 
[6514]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
[7019]18#include "text_element.h"
[6514]19
[7193]20#include "util/loading/load_param.h"
21#include "util/loading/factory.h"
[6514]22
23#include "graphics_engine.h"
24#include "state.h"
25
26
27
28
[9709]29#include "class_id.h"
[9715]30ObjectListDefinitionID(TextElement, CL_TEXT_ELEMENT);
[9709]31CREATE_FACTORY(TextElement);
[9406]32
[6514]33
34/**
35 * standart constructor
36 */
[7019]37TextElement::TextElement (const TiXmlElement* root)
[6514]38{
[9709]39  this->registerObject(this, TextElement::_objectList);
[7019]40  this->setName("TextElement");
41
42  this->setLayer(E2D_LAYER_TOP);
43  this->setSize(GraphicsEngine::getInstance()->getResolutionX()/10.0);
44
45  this->setSize(20);
46  this->setFont("fonts/earth.ttf");
[7021]47  this->setAlignment(TEXT_ALIGN_CENTER);
[7019]48
[6852]49  if(root != NULL)
[6841]50    this->loadParams(root);
[6514]51}
52
53
54/**
[7019]55 * destroys a TextElement
[6514]56*/
[7019]57TextElement::~TextElement ()
[6514]58{
59}
60
61
[7019]62void TextElement::loadParams(const TiXmlElement* root)
[6514]63{
[6851]64  Element2D::loadParams(root);
[6514]65
[7019]66  LoadParam(root, "size", this, Text, setSize);
[6514]67
[7019]68  LoadParam(root, "text", this, TextElement, setText);
[6514]69
[7019]70  LoadParam(root, "font", this, TextElement, setFont);
[6514]71}
72
[7221]73void TextElement::setText(const std::string& text)
[6514]74{
[7019]75  Text::setText(text);
[6514]76}
77
[7221]78void TextElement::setFont(const std::string& font)
[6514]79{
[7019]80  Text::setFont(font, (unsigned int)this->getSizeY2D());
[6514]81}
Note: See TracBrowser for help on using the repository browser.