From 15b70d6b622ae2ba3cc4a605da20d307c13c1d76 Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Mon, 10 Oct 2005 12:11:46 +0000 Subject: Don't include debugwindow.h/cpp twice in Makefile.am --- src/gui/debugwindow.cpp | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) (limited to 'src/gui/debugwindow.cpp') diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp index 3823ab6a..2c125c62 100644 --- a/src/gui/debugwindow.cpp +++ b/src/gui/debugwindow.cpp @@ -22,14 +22,17 @@ */ #include "debugwindow.h" +#include "button.h" +#include "minimap.h" #include -#include "button.h" #include -#include "minimap.h" + #include "../game.h" #include "../graphics.h" #include "../engine.h" +#include "../map.h" + extern Graphics *graphics; extern Minimap *minimap; extern int frame; @@ -72,7 +75,8 @@ DebugWindow::~DebugWindow() delete closeButton; } -void DebugWindow::logic() +void +DebugWindow::logic() { // Get the current mouse position int mouseX, mouseY; @@ -80,7 +84,7 @@ void DebugWindow::logic() int mouseTileX = mouseX / 32 + camera_x; int mouseTileY = mouseY / 32 + camera_y; -std::stringstream updatedText; + std::stringstream updatedText; updatedText << "[" << fps << " FPS]"; FPSLabel->setCaption(updatedText.str()); FPSLabel->adjustSize(); @@ -92,21 +96,23 @@ std::stringstream updatedText; updatedText.str(""); mCurrentMap = engine->getCurrentMap(); + if (mCurrentMap != NULL) { - updatedText - << " [Music File: " << mCurrentMap->getProperty("music") << "]"; + updatedText << " [Music File: " + << mCurrentMap->getProperty("music") << "]"; musicFileLabel->setCaption(updatedText.str()); musicFileLabel->adjustSize(); updatedText.str(""); - updatedText - << " [MiniMap File: " << mCurrentMap->getProperty("minimap") << "]"; + updatedText << " [MiniMap File: " + << mCurrentMap->getProperty("minimap") << "]"; mapFileLabel->setCaption(updatedText.str()); mapFileLabel->adjustSize(); } } -void DebugWindow::action(const std::string& eventId) +void +DebugWindow::action(const std::string& eventId) { if (eventId == "close") { -- cgit v1.2.3-70-g09d2