Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 31, 2005, 3:16:40 AM (19 years ago)
Author:
bensch
Message:

orxonox/brnaches/textEngine: working with some default text, but far from finished

Location:
orxonox/branches/textEngine/src/story_entities
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/textEngine/src/story_entities/world.cc

    r3681 r3693  
    3939#include "glmenu_imagescreen.h"
    4040#include "fontset.h"
     41#include "glfont.h"
    4142#include "list.h"
    4243
     
    202203      testFont = new FontSet();
    203204      testFont->buildFont("../data/pictures/font.tga");
     205      tmpFont = new GLFont("Alpha Sentry.ttf", 20);
    204206      this->glmis->step();
    205207
     
    594596
    595597  testFont->printText(0, 0, 1, "orxonox_" PACKAGE_VERSION);
     598  tmpFont->draw();
    596599
    597600  lightMan->draw(); // must be at the end of the drawing procedure, otherwise Light cannot be handled as PNodes //
  • orxonox/branches/textEngine/src/story_entities/world.h

    r3681 r3693  
    2222class LightManager;
    2323class FontSet;
     24class GLFont;
    2425class Terrain;
    2526class GarbageCollector;
     
    9697
    9798  FontSet* testFont;            //!< A test Font. \todo fix this, so it is for real.
     99  GLFont* tmpFont;              //!< tmpFont \todo fix
    98100  GLMenuImageScreen* glmis;     //!< The Level-Loader Display
    99101
Note: See TracChangeset for help on using the changeset viewer.