Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3456 in orxonox.OLD for orxonox/trunk/src/sfont/fontset.cc


Ignore:
Timestamp:
Mar 4, 2005, 10:01:43 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: FontSet addapted the fontset some more
doxygen-tags
name

File:
1 moved

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/sfont/fontset.cc

    r3455 r3456  
     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: Benjamin Grauer
     13   co-programmer: ...
     14
     15   ***
     16   * This file is extended to the needs of the orxonox-project.         *
     17   * The main difference to the version of Marius is, that textures get *
     18   * loaded by orxonox Texture-class, and that the comments are set up, *
     19   * in doxygen style                                                   *
     20   * the Copyright of the original file is below this copyright, and we *
     21   * hope not to offend Marius through this.                            *
     22                                                                      ***
     23
     24*/
     25
    126/***************************************************************************
    227                          cone3dfont.cpp  -  description
     
    1641 ***************************************************************************/
    1742
    18 #include "cone3dfont.h"
     43
     44#include "fontset.h"
    1945#include <stdarg.h>
    2046
    2147#include "../importer/texture.h"
    2248
    23 int Cone3DFont::SetSize(float x, float y)       // Set the size of the font
     49/**
     50    \brief initializes a new fontset
     51*/
     52FontSet::FontSet()
     53{
     54  this->sizex=1.0f;
     55  this->sizey=1.0f;
     56  this->font = NULL;
     57}
     58
     59/**
     60    \brief initializes a new fontset with a texture for the font
     61    \param fontFile The fontfile to load
     62*/
     63FontSet::FontSet(char* fontFile)
     64{
     65  this->sizex=1.0f;
     66  this->sizey=1.0f;
     67  this->font = NULL;
     68 
     69}
     70
     71/**
     72   \brief deletes the Fontset by freeing all allocated space
     73   and then deleting the Texture.
     74*/
     75FontSet::~FontSet()
     76{
     77  killFont();
     78  // delete the texture;
     79  delete font;
     80}
     81
     82/**
     83   \brief sets the size of the font
     84   \param x the width of the font
     85   \param y the height of the font
     86*/
     87int FontSet::setSize(float x, float y)
    2488{
    2589  sizex=x;
     
    2993}
    3094
    31 int Cone3DFont::BuildFont(char *file)          // Build Our Font Display List
     95/**
     96   \brief builds the fontset
     97   \param file the name of the file to get the fontset from.
     98*/
     99int FontSet::buildFont(char *file)
    32100{
    33101  int loop1;
    34102  float cx, cy;
    35103 
     104  if (!font)
     105    delete font;
    36106  font = new Texture();
    37107  font->loadImage(file);
     
    61131}
    62132
    63 int Cone3DFont::KillFont(GLvoid)                          // Delete The Font From Memory
     133/**
     134   \brief deletes the display lists.
     135*/
     136int FontSet::killFont(void)                          // Delete The Font From Memory
    64137{
    65138  glDeleteLists(base,256);                       // Delete All 256 Display Lists
     
    67140}
    68141
    69 int Cone3DFont::PrintText(GLint x, GLint y, char type, char *fmt,...)// Where The Printing Happens
     142/**
     143   \brief prints out some text
     144   \param x most left coordinate of the text.
     145   \param y the top coordinate of the text
     146   \param type Type of text
     147   \param fmt The text to display
     148   \param ... more text
     149*/
     150int FontSet::printText(int x, int y, char type, char *fmt,...)// Where The Printing Happens
    70151{
    71152  char    text[1024];                            // Holds Our String
Note: See TracChangeset for help on using the changeset viewer.