summaryrefslogtreecommitdiff
path: root/src/gui/windows/debugwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-10-10 22:14:45 +0300
committerAndrei Karas <akaras@inbox.ru>2017-10-10 22:15:57 +0300
commitaa3f63fd497558a02feb3ddbc44f31eac091f39b (patch)
tree0e28b9b1f0501dd8be9e1a38db4ec1777fa3fbfa /src/gui/windows/debugwindow.cpp
parent7c10a6b61e9d06a4ae9cc9f942dfacb6fcfd9d3d (diff)
downloadplus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.gz
plus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.bz2
plus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.xz
plus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.zip
Remove most unused files.
Diffstat (limited to 'src/gui/windows/debugwindow.cpp')
-rw-r--r--src/gui/windows/debugwindow.cpp173
1 files changed, 0 insertions, 173 deletions
diff --git a/src/gui/windows/debugwindow.cpp b/src/gui/windows/debugwindow.cpp
deleted file mode 100644
index e10ad1b2c..000000000
--- a/src/gui/windows/debugwindow.cpp
+++ /dev/null
@@ -1,173 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2004-2009 The Mana World Development Team
- * Copyright (C) 2009-2010 The Mana Developers
- * Copyright (C) 2011-2017 The ManaPlus Developers
- *
- * This file is part of The ManaPlus Client.
- *
- * 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
- * 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, see <http://www.gnu.org/licenses/>.
- */
-
-#include "gui/windows/debugwindow.h"
-
-#include "being/localplayer.h"
-
-#include "gui/windows/setupwindow.h"
-
-#include "gui/widgets/createwidget.h"
-#include "gui/widgets/tabbedarea.h"
-
-#include "gui/widgets/tabs/debugwindowtabs.h"
-
-#include "utils/delete2.h"
-#include "utils/gettext.h"
-
-#include "debug.h"
-
-DebugWindow *debugWindow = nullptr;
-
-DebugWindow::DebugWindow(const std::string &name) :
- // TRANSLATORS: debug window name
- Window(_("Debug"), Modal_false, nullptr, "debug.xml"),
- mTabs(CREATEWIDGETR(TabbedArea, this)),
- mMapWidget(new MapDebugTab(this)),
- mTargetWidget(new TargetDebugTab(this)),
- mNetWidget(new NetDebugTab(this))
-{
- setWindowName(name);
- if (setupWindow != nullptr)
- setupWindow->registerWindowForReset(this);
-
- setResizable(true);
- setCloseButton(true);
- setSaveVisible(true);
- setStickyButtonLock(true);
-
- setDefaultSize(400, 300, ImagePosition::CENTER);
-
- mTabs->setSelectable(false);
- mTabs->getWidgetContainer()->setSelectable(false);
- mTabs->getTabContainer()->setSelectable(false);
- // TRANSLATORS: debug window tab
- mTabs->addTab(std::string(_("Map")), mMapWidget);
- // TRANSLATORS: debug window tab
- mTabs->addTab(std::string(_("Target")), mTargetWidget);
- // TRANSLATORS: debug window tab
- mTabs->addTab(std::string(_("Net")), mNetWidget);
-
- mTabs->setDimension(Rect(0, 0, 600, 300));
-
- const int w = mDimension.width;
- const int h = mDimension.height;
- mMapWidget->resize(w, h);
- mTargetWidget->resize(w, h);
- mNetWidget->resize(w, h);
- loadWindowState();
- enableVisibleSound(true);
-}
-
-DebugWindow::~DebugWindow()
-{
- delete2(mMapWidget);
- delete2(mTargetWidget);
- delete2(mNetWidget);
-}
-
-void DebugWindow::postInit()
-{
- Window::postInit();
- add(mTabs);
-}
-
-void DebugWindow::slowLogic()
-{
- BLOCK_START("DebugWindow::slowLogic")
- if (!isWindowVisible() || (mTabs == nullptr))
- {
- BLOCK_END("DebugWindow::slowLogic")
- return;
- }
-
- switch (mTabs->getSelectedTabIndex())
- {
- default:
- case 0:
- mMapWidget->logic();
- break;
- case 1:
- mTargetWidget->logic();
- break;
- case 2:
- mNetWidget->logic();
- break;
- }
-
- if (localPlayer != nullptr)
- localPlayer->tryPingRequest();
- BLOCK_END("DebugWindow::slowLogic")
-}
-
-void DebugWindow::draw(Graphics *const g)
-{
- BLOCK_START("DebugWindow::draw")
- Window::draw(g);
-
- if (localPlayer != nullptr)
- {
- const Being *const target = localPlayer->getTarget();
- if (target != nullptr)
- {
- target->draw(g, -target->getPixelX() + mapTileSize / 2
- + mDimension.width / 2, -target->getPixelY() + mapTileSize
- + mDimension.height / 2);
- }
- }
- BLOCK_END("DebugWindow::draw")
-}
-
-void DebugWindow::safeDraw(Graphics *const g)
-{
- BLOCK_START("DebugWindow::draw")
- Window::safeDraw(g);
-
- if (localPlayer != nullptr)
- {
- const Being *const target = localPlayer->getTarget();
- if (target != nullptr)
- {
- target->draw(g, -target->getPixelX() + mapTileSize / 2
- + mDimension.width / 2, -target->getPixelY() + mapTileSize
- + mDimension.height / 2);
- }
- }
- BLOCK_END("DebugWindow::draw")
-}
-
-void DebugWindow::widgetResized(const Event &event)
-{
- Window::widgetResized(event);
-
- mTabs->setDimension(Rect(0, 0,
- mDimension.width, mDimension.height));
-}
-
-#ifdef USE_PROFILER
-void DebugWindow::logicChildren()
-{
- BLOCK_START("DebugWindow::logicChildren")
- BasicContainer::logicChildren();
- BLOCK_END("DebugWindow::logicChildren")
-}
-#endif // USE_PROFILER