home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Inne / Gry / Atomic_Tanks / Atomic-Tanks-5.1.exe / src / floattext.h < prev    next >
C/C++ Source or Header  |  2009-11-13  |  2KB  |  96 lines

  1. #ifndef    FLOATTEXT_DEFINE
  2. #define    FLOATTEXT_DEFINE
  3.  
  4. /*
  5.  * atanks - obliterate each other with oversize weapons
  6.  * Copyright (C) 2003  Thomas Hudson
  7.  *
  8.  * This program is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version 2
  11.  * of the License, or (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  21.  * */
  22.  
  23.  
  24. #include "virtobj.h"
  25. #include "main.h"
  26. #include "environment.h"
  27.  
  28. #define newmakecol(r,g,b) makecol((int)(r),(int)(g),(int)(b))
  29.  
  30. #define NO_SWAY 0
  31. #define NORMAL_SWAY 42
  32.  
  33. #define SPEED_RANGE 6
  34.  
  35. #ifndef TRUE
  36. #define TRUE 1
  37. #endif
  38. #ifndef FALSE
  39. #define FALSE 0
  40. #endif
  41.  
  42. class FLOATTEXT: public VIRTUAL_OBJECT
  43.   {
  44.   private:
  45.     // empty ctor, copy-ctor and assign operator are private, so the compiler won't create implicit ones!
  46.     // inline const FLOATTEXT& operator= (const FLOATTEXT &sourceText) { return(sourceText); }
  47.  
  48.     char *_text;
  49.     int    _color;
  50.     int _halfColor; // for shadowd text!
  51.     int original_x;
  52.     int delta_x;
  53.  
  54.   public:
  55.     int sway;
  56.  
  57.     /* --- constructor --- */
  58.     FLOATTEXT (GLOBALDATA *global, ENVIRONMENT *env, char *text, int xpos, int ypos, int color, alignType alignment);
  59.    
  60.     /* --- destructor --- */
  61.     ~FLOATTEXT ();
  62.     void setEnvironment(ENVIRONMENT *env);
  63.    
  64.     inline virtual void        initialise ()
  65.     {
  66.       VIRTUAL_OBJECT::initialise ();
  67.     }
  68.  
  69.     int    applyPhysics ();
  70.     void draw (BITMAP *dest);
  71.     int set_text (char * text);
  72.     void set_pos (int x, int y);
  73.     void set_color (int color);
  74.     void set_speed(double x_speed, double y_speed);
  75.     
  76.  
  77.     inline virtual int        isSubClass (int classNum)
  78.     {
  79.       if (classNum != FLOATTEXT_CLASS)
  80.         return (FALSE);
  81.       //return (VIRTUAL_OBJECT::isSubClass (classNum));
  82.       else
  83.         return (TRUE);
  84.     }
  85.  
  86.     inline virtual int        getClass ()
  87.     {
  88.       return (FLOATTEXT_CLASS);
  89.     }
  90.  
  91.     void newRound();
  92.  
  93.   };
  94.  
  95. #endif
  96.