home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************
- * thromp.h - headers for the corresponding cpp file
- *
- * Copyright (C) 2006 - 2008 Florian Richter
- ***************************************************************************/
- /*
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
- #ifndef SMC_THROMP_H
- #define SMC_THROMP_H
-
- #include "../enemies/enemy.h"
-
- /* *** *** *** *** *** cThromp *** *** *** *** *** *** *** *** *** *** *** *** */
-
- /* Thromp
- * The falling Stone
- */
- class cThromp : public cEnemy
- {
- public:
- // constructor
- cThromp( float x, float y );
- // create from stream
- cThromp( CEGUI::XMLAttributes &attributes );
- // destructor
- virtual ~cThromp( void );
-
- // init defaults
- void Init( void );
- // copy
- virtual cThromp *Copy( void );
-
- // create from stream
- virtual void Create_from_Stream( CEGUI::XMLAttributes &attributes );
- // save to stream
- virtual void Save_to_Stream( ofstream &file );
-
- // load from savegame
- virtual void Load_from_Savegame( cSave_Level_Object *save_object );
- // save to savegame
- virtual cSave_Level_Object *Save_to_Savegame( void );
-
- // Set the image directory
- void Set_Image_Dir( string filename );
- // Set Direction
- void Set_Direction( ObjectDirection dir );
- // Set Max Distance
- void Set_Max_Distance( float nmax_distance );
- // Set the Speed
- void Set_Speed( float val );
-
- // Move to destination direction
- void Activate( void );
- // Move back to the original position
- void Move_Back( void );
-
- /* downgrade state ( if already the weakest state it dies )
- * force : usually dies or a complete downgrade
- */
- virtual void DownGrade( bool force = 0 );
- virtual void DieStep( void );
-
- // update
- virtual void Update( void );
- // draw
- virtual void Draw( cSurfaceRequest *request = NULL );
-
- // update images
- void Update_Images( void );
- // update destination velocity from the speed
- void Update_dest_vel( void );
- // update the distance rect
- void Update_Distance_rect( void );
- // Get the final distance rect
- GL_rect Get_Final_Distance_Rect( void );
-
- // Generates Smoke Particles
- void Generate_Smoke( unsigned int power = 10 );
-
- // if update is valid for the current state
- virtual bool Is_Update_Valid( void );
- // if draw is valid for the current state and position
- virtual bool Is_Draw_Valid( void );
-
- // ignore onground check
- virtual void Check_on_Ground( void ) {};
- /* Validate the given collision object
- * returns 1 if an internal collision with this object is valid
- * returns 2 if the given object collides with this object (blocking)
- */
- virtual unsigned int Validate_Collision( cSprite *obj );
- // collision from player
- virtual void Handle_Collision_Player( cObjectCollision *collision );
- // collision from an enemy
- virtual void Handle_Collision_Enemy( cObjectCollision *collision );
- // collision with massive
- virtual void Handle_Collision_Massive( cObjectCollision *collision );
-
- // editor activation
- virtual void Editor_Activate( void );
- // editor image dir key up event
- bool Editor_Image_Dir_Key( const CEGUI::EventArgs &event );
- // editor max distance key up event
- bool Editor_Max_Distance_Key( const CEGUI::EventArgs &event );
- // editor speed key up event
- bool Editor_Speed_Key( const CEGUI::EventArgs &event );
-
- // image directory
- string img_dir;
- // speed
- float speed;
- // destination direction velocity
- float dest_velx, dest_vely;
- // maximum distance from the startposition
- float max_distance;
-
- // moving back to the original position
- bool move_back;
- // distance rect to end position
- GL_rect distance_rect;
-
- private:
- // Create the Name from the current settings
- void Create_Name( void );
- };
-
- /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-
- #endif
-