Made SpriteParticle work around possible bug in Sprite::set_action. /
[supertux.git] / src / object / anchor_point.cpp
index c7f82ac..110fb42 100644 (file)
@@ -1,10 +1,29 @@
+//  $Id$
+//
+//  SuperTux
+//  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
+//
+//  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 2
+//  of the License, or (at your option) any later version.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+
 #include <config.h>
 
 #include <stdexcept>
 #include <sstream>
 #include "anchor_point.hpp"
 #include "math/rect.hpp"
-#include "msg.hpp"
+#include "log.hpp"
 
 std::string anchor_point_to_string(AnchorPoint point)
 {
@@ -74,9 +93,9 @@ Vector get_anchor_pos(const Rect& rect, AnchorPoint point)
       break;
     default:
 #ifdef DEBUG
-      throw new std::runtime_error("Invalid anchor point found");
+      throw std::runtime_error("Invalid anchor point found");
 #endif
-      msg_warning("Invalid anchor point found");
+      log_warning << "Invalid anchor point found" << std::endl;
       result.x = rect.get_left();
       break;
   }
@@ -93,9 +112,9 @@ Vector get_anchor_pos(const Rect& rect, AnchorPoint point)
       break;
     default:
 #ifdef DEBUG
-      throw new std::runtime_error("Invalid anchor point found");
+      throw std::runtime_error("Invalid anchor point found");
 #endif
-      msg_warning("Invalid anchor point found");
+      log_warning << "Invalid anchor point found" << std::endl;
       result.y = rect.get_top();
       break;
   }
@@ -120,9 +139,9 @@ Vector get_anchor_pos(const Rect& destrect, float width, float height,
       break;
     default:
 #ifdef DEBUG
-      throw new std::runtime_error("Invalid anchor point found");
+      throw std::runtime_error("Invalid anchor point found");
 #endif
-      msg_warning("Invalid anchor point found");
+      log_warning << "Invalid anchor point found" << std::endl;
       result.x = destrect.get_left();
       break;
   }
@@ -139,9 +158,9 @@ Vector get_anchor_pos(const Rect& destrect, float width, float height,
       break;
     default:
 #ifdef DEBUG
-      throw new std::runtime_error("Invalid anchor point found");
+      throw std::runtime_error("Invalid anchor point found");
 #endif
-      msg_warning("Invalid anchor point found");
+      log_warning << "Invalid anchor point found" << std::endl;
       result.y = destrect.get_top();
       break;
   }