minetest/src/gui/mainmenumanager.h

153 lines
3.2 KiB
C
Raw Permalink Normal View History

2011-10-12 10:53:38 +00:00
/*
2013-02-24 17:40:43 +00:00
Minetest
2013-02-24 18:38:45 +00:00
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
2011-10-12 10:53:38 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
2011-10-12 10:53:38 +00:00
(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 Lesser General Public License for more details.
2011-10-12 10:53:38 +00:00
You should have received a copy of the GNU Lesser General Public License along
2011-10-12 10:53:38 +00:00
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#pragma once
2011-10-12 10:53:38 +00:00
/*
All kinds of stuff that needs to be exposed from main.cpp
*/
#include "modalMenu.h"
#include <cassert>
2012-12-20 17:19:49 +00:00
#include <list>
2011-10-12 10:53:38 +00:00
class IGameCallback
{
public:
virtual void exitToOS() = 0;
2014-09-21 03:21:11 +00:00
virtual void keyConfig() = 0;
virtual void disconnect() = 0;
virtual void changePassword() = 0;
virtual void changeVolume() = 0;
virtual void signalKeyConfigChange() = 0;
};
extern gui::IGUIEnvironment *guienv;
2011-10-12 10:53:38 +00:00
extern gui::IGUIStaticText *guiroot;
// Handler for the modal menus
class MainMenuManager : public IMenuManager
{
public:
2016-02-27 20:51:09 +00:00
virtual void createdMenu(gui::IGUIElement *menu)
2011-10-12 10:53:38 +00:00
{
#ifndef NDEBUG
for (gui::IGUIElement *i : m_stack) {
assert(i != menu);
2011-10-12 10:53:38 +00:00
}
#endif
2011-10-12 10:53:38 +00:00
if(!m_stack.empty())
2012-12-20 17:19:49 +00:00
m_stack.back()->setVisible(false);
2011-10-12 10:53:38 +00:00
m_stack.push_back(menu);
}
2016-02-27 20:51:09 +00:00
virtual void deletingMenu(gui::IGUIElement *menu)
2011-10-12 10:53:38 +00:00
{
// Remove all entries if there are duplicates
m_stack.remove(menu);
2011-10-12 10:53:38 +00:00
/*core::list<GUIModalMenu*>::Iterator i = m_stack.getLast();
assert(*i == menu);
m_stack.erase(i);*/
if(!m_stack.empty())
2012-12-20 17:19:49 +00:00
m_stack.back()->setVisible(true);
2011-10-12 10:53:38 +00:00
}
2013-08-19 09:26:51 +00:00
// Returns true to prevent further processing
virtual bool preprocessEvent(const SEvent& event)
{
2016-02-27 20:51:09 +00:00
if (m_stack.empty())
2013-08-19 09:26:51 +00:00
return false;
2016-02-27 20:51:09 +00:00
GUIModalMenu *mm = dynamic_cast<GUIModalMenu*>(m_stack.back());
return mm && mm->preprocessEvent(event);
2013-08-19 09:26:51 +00:00
}
2011-10-12 10:53:38 +00:00
u32 menuCount()
{
return m_stack.size();
}
bool pausesGame()
{
for (gui::IGUIElement *i : m_stack) {
GUIModalMenu *mm = dynamic_cast<GUIModalMenu*>(i);
2016-02-27 20:51:09 +00:00
if (mm && mm->pausesGame())
return true;
}
return false;
}
2016-02-27 20:51:09 +00:00
std::list<gui::IGUIElement*> m_stack;
2011-10-12 10:53:38 +00:00
};
extern MainMenuManager g_menumgr;
extern bool isMenuActive();
2011-10-12 10:53:38 +00:00
class MainGameCallback : public IGameCallback
{
public:
MainGameCallback() = default;
virtual ~MainGameCallback() = default;
2011-10-12 10:53:38 +00:00
virtual void exitToOS()
{
shutdown_requested = true;
2011-10-12 10:53:38 +00:00
}
virtual void disconnect()
{
disconnect_requested = true;
}
virtual void changePassword()
{
changepassword_requested = true;
}
virtual void changeVolume()
{
changevolume_requested = true;
}
2014-09-21 03:21:11 +00:00
virtual void keyConfig()
{
keyconfig_requested = true;
}
virtual void signalKeyConfigChange()
{
keyconfig_changed = true;
}
bool disconnect_requested = false;
bool changepassword_requested = false;
bool changevolume_requested = false;
bool keyconfig_requested = false;
bool shutdown_requested = false;
bool keyconfig_changed = false;
2011-10-12 10:53:38 +00:00
};
extern MainGameCallback *g_gamecallback;