pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] CVS: Games/Pingus/src/actions angel.hxx,1.13,1.14 basher.hx


From: grumbel
Subject: [Pingus-CVS] CVS: Games/Pingus/src/actions angel.hxx,1.13,1.14 basher.hxx,1.15,1.16 blocker.hxx,1.13,1.14 boarder.hxx,1.12,1.13 bomber.hxx,1.18,1.19 climber.hxx,1.13,1.14 digger.hxx,1.13,1.14 drown.hxx,1.11,1.12 exiter.hxx,1.12,1.13 faller.hxx,1.18,1.19 floater.hxx,1.13,1.14 jumper.hxx,1.11,1.12 laser_kill.hxx,1.12,1.13 miner.hxx,1.12,1.13 rocket_launcher.hxx,1.11,1.12 slider.hxx,1.11,1.12 smashed.hxx,1.13,1.14 splashed.hxx,1.13,1.14 superman.hxx,1.12,1.13 teleported.hxx,1.12,1.13 waiter.hxx,1.12,1.13 walker.hxx,1.12,1.13
Date: 18 Apr 2003 17:08:58 -0000

Update of /var/lib/cvs/Games/Pingus/src/actions
In directory dark:/tmp/cvs-serv23734/actions

Modified Files:
        angel.hxx basher.hxx blocker.hxx boarder.hxx bomber.hxx 
        climber.hxx digger.hxx drown.hxx exiter.hxx faller.hxx 
        floater.hxx jumper.hxx laser_kill.hxx miner.hxx 
        rocket_launcher.hxx slider.hxx smashed.hxx splashed.hxx 
        superman.hxx teleported.hxx waiter.hxx walker.hxx 
Log Message:
cleaned up the action_to_string stuff

Index: angel.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/angel.hxx,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- angel.hxx   13 Oct 2002 16:39:59 -0000      1.13
+++ angel.hxx   18 Apr 2003 17:08:56 -0000      1.14
@@ -36,7 +36,6 @@
 public:
   Angel (Pingu* p);
 
-  std::string get_name () const { return "Angel"; }
   ActionName get_type () const { return Actions::Angel; }
     
   void  update ();

Index: basher.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/basher.hxx,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- basher.hxx  14 Oct 2002 11:15:15 -0000      1.15
+++ basher.hxx  18 Apr 2003 17:08:56 -0000      1.16
@@ -59,7 +59,6 @@
 public:
   Basher (Pingu* p);
     
-  std::string get_name () const { return "Basher"; }
   ActionName get_type () const { return Actions::Basher; }
     
   void draw (GraphicContext& gc);

Index: blocker.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/blocker.hxx,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- blocker.hxx 13 Oct 2002 16:40:01 -0000      1.13
+++ blocker.hxx 18 Apr 2003 17:08:56 -0000      1.14
@@ -35,7 +35,6 @@
 
   int   y_offset ();
   
-  std::string get_name () const { return "Blocker"; }
   ActionName get_type() const { return Actions::Blocker; }
  
   void  draw (GraphicContext& gc);

Index: boarder.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/boarder.hxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- boarder.hxx 13 Oct 2002 16:40:01 -0000      1.12
+++ boarder.hxx 18 Apr 2003 17:08:56 -0000      1.13
@@ -37,7 +37,6 @@
 public:
   Boarder (Pingu* p);
   
-  std::string get_name () const { return "Boarder"; }
   ActionName get_type () const { return Actions::Boarder; }
   
   void  draw (GraphicContext& gc);

Index: bomber.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/bomber.hxx,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- bomber.hxx  21 Mar 2003 22:08:06 -0000      1.18
+++ bomber.hxx  18 Apr 2003 17:08:56 -0000      1.19
@@ -45,7 +45,6 @@
 public:
   Bomber (Pingu* p);
 
-  std::string get_name () const { return "Bomber"; }
   ActionName get_type() const { return Actions::Bomber; }
   ActionType get_activation_mode() const { return COUNTDOWN_TRIGGERED; }
 

Index: climber.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/climber.hxx,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- climber.hxx 26 Oct 2002 09:14:23 -0000      1.13
+++ climber.hxx 18 Apr 2003 17:08:56 -0000      1.14
@@ -35,7 +35,6 @@
 public:
   Climber (Pingu*);
     
-  std::string get_name () const { return "Climber"; }
   ActionName get_type () const { return Actions::Climber; }
   ActionType get_activation_mode () const { return WALL_TRIGGERED; }
     

Index: digger.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/digger.hxx,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- digger.hxx  20 Oct 2002 18:28:49 -0000      1.13
+++ digger.hxx  18 Apr 2003 17:08:56 -0000      1.14
@@ -48,7 +48,6 @@
 public:
   Digger(Pingu*);
     
-  std::string get_name () const { return "Digger"; }
   ActionName get_type () const { return Actions::Digger; }
     
   bool have_something_to_dig ();

Index: drown.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/drown.hxx,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- drown.hxx   13 Oct 2002 16:40:01 -0000      1.11
+++ drown.hxx   18 Apr 2003 17:08:56 -0000      1.12
@@ -33,7 +33,6 @@
 public:
   Drown (Pingu* p);
     
-  std::string get_name () const { return "Drown"; }
   ActionName get_type () const { return Actions::Drown; }
     
   void draw (GraphicContext& gc);

Index: exiter.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/exiter.hxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- exiter.hxx  5 Mar 2003 17:31:29 -0000       1.12
+++ exiter.hxx  18 Apr 2003 17:08:56 -0000      1.13
@@ -34,7 +34,6 @@
 public:
   Exiter(Pingu*);
   void init(void);
-  std::string get_name () const { return "Exiter"; }
   ActionName get_type() const { return Actions::Exiter; }
 
   void draw (GraphicContext& gc);

Index: faller.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/faller.hxx,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- faller.hxx  12 Feb 2003 22:40:47 -0000      1.18
+++ faller.hxx  18 Apr 2003 17:08:56 -0000      1.19
@@ -42,7 +42,6 @@
 
   bool change_allowed (Actions::ActionName new_action);
   
-  std::string get_name() const { return "Faller"; }
   ActionName get_type() const { return Actions::Faller; }
   bool is_tumbling () const;
   

Index: floater.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/floater.hxx,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- floater.hxx 13 Oct 2002 16:40:01 -0000      1.13
+++ floater.hxx 18 Apr 2003 17:08:56 -0000      1.14
@@ -34,7 +34,6 @@
 public:
   Floater(Pingu* p);
 
-  std::string get_name() const { return "Floater"; }
   ActionName get_type() const { return Actions::Floater; }
   ActionType get_activation_mode() const { return FALL_TRIGGERED; }
     

Index: jumper.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/jumper.hxx,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- jumper.hxx  13 Oct 2002 16:40:01 -0000      1.11
+++ jumper.hxx  18 Apr 2003 17:08:56 -0000      1.12
@@ -32,7 +32,6 @@
 public:
   Jumper(Pingu*);
 
-  std::string get_name() const { return "Jumper"; }
   ActionName get_type() const { return Actions::Jumper; }
 
   void  draw (GraphicContext& gc);

Index: laser_kill.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/laser_kill.hxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- laser_kill.hxx      13 Oct 2002 16:40:01 -0000      1.12
+++ laser_kill.hxx      18 Apr 2003 17:08:56 -0000      1.13
@@ -35,7 +35,6 @@
 public:
   LaserKill (Pingu*);
 
-  std::string get_name () const { return "LaserKill"; }
   ActionName get_type () const { return Actions::Laserkill; }
   void init (void);
 

Index: miner.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/miner.hxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- miner.hxx   22 Oct 2002 00:07:56 -0000      1.12
+++ miner.hxx   18 Apr 2003 17:08:56 -0000      1.13
@@ -43,7 +43,6 @@
   Miner (Pingu* p);
   virtual ~Miner () {}
 
-  std::string get_name () const { return "Miner"; }
   ActionName get_type () const { return Actions::Miner; }
 
   void draw (GraphicContext& gc);

Index: rocket_launcher.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/rocket_launcher.hxx,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- rocket_launcher.hxx 13 Oct 2002 16:40:01 -0000      1.11
+++ rocket_launcher.hxx 18 Apr 2003 17:08:56 -0000      1.12
@@ -34,7 +34,6 @@
   RocketLauncher(Pingu*);
   ~RocketLauncher() {}
   
-  std::string get_name () const { return "RocketLauncher"; }
   ActionName get_type () const { return Actions::Rocketlauncher; }
   
   void draw (GraphicContext& gc);

Index: slider.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/slider.hxx,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- slider.hxx  13 Oct 2002 16:40:01 -0000      1.11
+++ slider.hxx  18 Apr 2003 17:08:56 -0000      1.12
@@ -33,7 +33,6 @@
 public:
   Slider (Pingu* p);
 
-  std::string get_name() const { return "Slider"; }
   ActionName get_type() const { return Actions::Slider; }
 
   void draw (GraphicContext& gc);

Index: smashed.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/smashed.hxx,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- smashed.hxx 13 Oct 2002 20:25:00 -0000      1.13
+++ smashed.hxx 18 Apr 2003 17:08:56 -0000      1.14
@@ -36,7 +36,6 @@
 public:
   Smashed (Pingu*);
 
-  std::string get_name () const { return "Smashed"; }
   ActionName get_type () const { return Actions::Smashed; }
 
   void draw (GraphicContext& gc);

Index: splashed.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/splashed.hxx,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- splashed.hxx        13 Oct 2002 20:25:00 -0000      1.13
+++ splashed.hxx        18 Apr 2003 17:08:56 -0000      1.14
@@ -34,7 +34,6 @@
 public:
   Splashed (Pingu*);
   
-  std::string get_name () const { return "Splashed"; }
   ActionName get_type () const { return Actions::Splashed; }
   
   void draw (GraphicContext& gc);

Index: superman.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/superman.hxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- superman.hxx        13 Oct 2002 16:40:01 -0000      1.12
+++ superman.hxx        18 Apr 2003 17:08:56 -0000      1.13
@@ -35,7 +35,6 @@
 public:
   Superman (Pingu*);
 
-  std::string get_name () const { return "Superman"; }
   ActionName get_type () const { return Actions::Superman; }
   
   void draw (GraphicContext& gc);

Index: teleported.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/teleported.hxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- teleported.hxx      13 Oct 2002 20:25:00 -0000      1.12
+++ teleported.hxx      18 Apr 2003 17:08:56 -0000      1.13
@@ -32,7 +32,6 @@
 public:
   Teleported (Pingu*);
 
-  std::string get_name() const { return "Teleported"; }
   ActionName get_type() const { return Actions::Teleported; }
 
   void draw (GraphicContext& gc);

Index: waiter.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/waiter.hxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- waiter.hxx  13 Oct 2002 20:25:00 -0000      1.12
+++ waiter.hxx  18 Apr 2003 17:08:56 -0000      1.13
@@ -37,7 +37,6 @@
 public:
   Waiter (Pingu*);
   
-  std::string get_name () const { return "Waiter"; }
   ActionName get_type () const { return Actions::Waiter; }
   
   void draw (GraphicContext& gc);

Index: walker.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/walker.hxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- walker.hxx  4 Mar 2003 11:26:18 -0000       1.12
+++ walker.hxx  18 Apr 2003 17:08:56 -0000      1.13
@@ -39,7 +39,6 @@
   void draw (GraphicContext& gc);
   void update ();
 
-  std::string get_name () const { return "Walker"; }
   ActionName get_type () const { return Actions::Walker; }
   
 private:





reply via email to

[Prev in Thread] Current Thread [Next in Thread]