pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src blitter.hxx,1.1,1.2 direction.hxx,1.1


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src blitter.hxx,1.1,1.2 direction.hxx,1.1,1.2 game_session.hxx,1.1,1.2 screen_manager.cxx,1.1,1.2 sound.cxx,1.2,1.3 sound.hxx,1.1,1.2 spot_map.hxx,1.1,1.2 world.hxx,1.1,1.2 xml_helper.hxx,1.1,1.2
Date: 13 Jun 2002 19:53:24 -0000

Update of /usr/local/cvsroot/Games/Pingus/src
In directory dark:/tmp/cvs-serv21737

Modified Files:
        blitter.hxx direction.hxx game_session.hxx screen_manager.cxx 
        sound.cxx sound.hxx spot_map.hxx world.hxx xml_helper.hxx 
Log Message:
fixed some Doxygen warnings (mostly due to bugs in Doxygen itself)


Index: blitter.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/blitter.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- blitter.hxx 12 Jun 2002 19:04:45 -0000      1.1
+++ blitter.hxx 13 Jun 2002 19:53:21 -0000      1.2
@@ -83,7 +83,7 @@
       @param width The new width of the surface. 
       @param height The new height of the surface. 
       @return A newly created surface, the caller is responsible to delete it. 
*/
-  static CL_Canvas* Blitter::scale_surface_to_canvas (const CL_Surface& sur, 
int width, int height);
+  static CL_Canvas* scale_surface_to_canvas (const CL_Surface& sur, int width, 
int height);
 };
 
 #endif 

Index: direction.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/direction.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- direction.hxx       12 Jun 2002 19:09:37 -0000      1.1
+++ direction.hxx       13 Jun 2002 19:53:21 -0000      1.2
@@ -30,7 +30,7 @@
   ///
   Direction();
   ///
-  Direction::Direction(const Direction& dir);
+  Direction(const Direction& dir);
   ///
   ~Direction();
   

Index: game_session.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/game_session.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- game_session.hxx    12 Jun 2002 19:09:37 -0000      1.1
+++ game_session.hxx    13 Jun 2002 19:53:21 -0000      1.2
@@ -53,7 +53,7 @@
 
 public:
   /** Create a new game session which is launched on start ()
-      @param filename The filename of a Pingus Level file 
+      @param arg_filename The filename of a Pingus Level file 
       FIXME: Absolute or relative filename? */
   PingusGameSession (std::string arg_filename);
 

Index: screen_manager.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/screen_manager.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- screen_manager.cxx  12 Jun 2002 19:09:38 -0000      1.1
+++ screen_manager.cxx  13 Jun 2002 19:53:21 -0000      1.2
@@ -17,7 +17,9 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#include "screen_manager.cxx"
+#include "screen_manager.hxx"
+
+using namespace Pingus;
 
 ScreenManager::ScreenManager ()
 {

Index: sound.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/sound.cxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- sound.cxx   13 Jun 2002 14:25:12 -0000      1.2
+++ sound.cxx   13 Jun 2002 19:53:21 -0000      1.3
@@ -43,7 +43,8 @@
 
 /** Load a sound file and play it immediately.
     
-    @param filename The complete filename */
+    @param filename The complete filename 
+    @param volume   volume */
     
 void 
 PingusSound::play_music(const std::string & filename, float volume)

Index: sound.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/sound.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- sound.hxx   12 Jun 2002 19:09:38 -0000      1.1
+++ sound.hxx   13 Jun 2002 19:53:21 -0000      1.2
@@ -35,7 +35,9 @@
 
   /** Load a sound file and play it immediately.
 
-      @param filename The complete filename  */
+      @param filename The complete filename 
+      @param volume   volume
+      @param panning  panning */
   static void play_sound(const std::string & filename, float volume = 0.5f, 
float panning = 0.0f);
   
   static void play_music(const std::string & filename, float volume = 0.5f);

Index: spot_map.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/spot_map.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- spot_map.hxx        12 Jun 2002 19:09:38 -0000      1.1
+++ spot_map.hxx        13 Jun 2002 19:53:21 -0000      1.2
@@ -74,7 +74,7 @@
   virtual ~PingusSpotMap();
 
   void generate_colmap();
-  ColMap* PingusSpotMap::get_colmap();
+  ColMap* get_colmap();
   void load(PLF* plf);
   void gen_tiles();
   void draw(int x, int y, int w, int h, int of_x, int of_y, float s);

Index: world.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/world.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- world.hxx   12 Jun 2002 19:09:38 -0000      1.1
+++ world.hxx   13 Jun 2002 19:53:21 -0000      1.2
@@ -87,10 +87,13 @@
   virtual ~World();
 
   /** Draws the world onto the screen
-      @param x1 The left corner of the drawing area.
-      @param y1 The upper corner of the drawing area.
-      @param w  The width of the drawing area.
-      @param h  The height of the drawing area. */
+      @param x1   The left corner of the drawing area.
+      @param y1   The upper corner of the drawing area.
+      @param w    The width of the drawing area.
+      @param h    The height of the drawing area.
+      @param x_of x_of
+      @param y_of y_of
+      @param s    s   */
   void    draw(int x1, int y1, int w, int h,
               int x_of, int y_of, float s);
   ///

Index: xml_helper.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/xml_helper.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- xml_helper.hxx      12 Jun 2002 19:09:38 -0000      1.1
+++ xml_helper.hxx      13 Jun 2002 19:53:21 -0000      1.2
@@ -61,7 +61,7 @@
 {
 
 public:
-  static std::string XMLhelper::encode_entities(const std::string& arg_str);
+  static std::string encode_entities(const std::string& arg_str);
 
   /// A set of function to parse an xml file
   //@{




reply via email to

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