Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / util / log.cpp
1 //  SuperTux Debug Helper Functions
2 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "util/log.hpp"
18
19 #include "math/rect.hpp"
20 #include "supertux/console.hpp"
21
22 #ifdef DEBUG
23
24 std::ostream& log_debug_f(const char* file, int line) 
25 {
26   Console::output << "[DEBUG] " << file << ":" << line << " ";
27   return Console::output;
28 }
29
30 std::ostream& log_info_f(const char* file, int line) 
31 {
32   Console::output << "[INFO] " << file << ":" << line << " ";
33   return Console::output;
34 }
35
36 std::ostream& log_warning_f(const char* file, int line) 
37 {
38   Console::output << "[WARNING] " << file << ":" << line << " ";
39   return Console::output;
40 }
41
42 std::ostream& log_fatal_f(const char* file, int line) 
43 {
44   Console::output << "[FATAL] " << file << ":" << line << " ";
45   return Console::output;
46 }
47
48 #else
49
50 std::ostream& log_fatal_f() 
51 {
52   Console::output << "Fatal: ";
53   return Console::output;
54 }
55
56 #endif
57
58 std::ostream& operator<<(std::ostream& out, const Vector& vector)
59 {
60   out << '[' << vector.x << ',' << vector.y << ']';
61   return out;
62 }
63
64 std::ostream& operator<<(std::ostream& out, const Rect& rect)
65 {
66   out << "[" << rect.get_left() << "," << rect.get_top() << "   "
67       << rect.get_right() << "," << rect.get_bottom() << "]";
68   return out;
69 }
70
71 /* EOF */