summaryrefslogtreecommitdiff
path: root/src/guiDeathScreen.h
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-10-15 14:46:59 +0300
committerPerttu Ahola <celeron55@gmail.com>2011-10-15 14:46:59 +0300
commit74febd5c31c20369a35a82e9a36e50f18562ce9f (patch)
treeabb8a5357eb6da74138aa985afa4af1867d113de /src/guiDeathScreen.h
parent857fe0551cea38b6f3b62982dea4933b09c85d8e (diff)
downloadminetest-74febd5c31c20369a35a82e9a36e50f18562ce9f.tar.gz
minetest-74febd5c31c20369a35a82e9a36e50f18562ce9f.tar.bz2
minetest-74febd5c31c20369a35a82e9a36e50f18562ce9f.zip
Handle death and respawn better
Diffstat (limited to 'src/guiDeathScreen.h')
-rw-r--r--src/guiDeathScreen.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/guiDeathScreen.h b/src/guiDeathScreen.h
new file mode 100644
index 000000000..10a97d7e8
--- /dev/null
+++ b/src/guiDeathScreen.h
@@ -0,0 +1,60 @@
+/*
+Minetest-c55
+Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
+
+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.,
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+*/
+
+#ifndef GUIMESSAGEMENU_HEADER
+#define GUIMESSAGEMENU_HEADER
+
+#include "common_irrlicht.h"
+#include "modalMenu.h"
+#include "utility.h"
+#include <string>
+
+class IRespawnInitiator
+{
+public:
+ virtual void respawn() = 0;
+};
+
+class GUIDeathScreen : public GUIModalMenu
+{
+public:
+ GUIDeathScreen(gui::IGUIEnvironment* env,
+ gui::IGUIElement* parent, s32 id,
+ IMenuManager *menumgr, IRespawnInitiator *respawner);
+ ~GUIDeathScreen();
+
+ void removeChildren();
+ /*
+ Remove and re-add (or reposition) stuff
+ */
+ void regenerateGui(v2u32 screensize);
+
+ void drawMenu();
+
+ bool OnEvent(const SEvent& event);
+
+ void respawn();
+
+private:
+ IRespawnInitiator *m_respawner;
+ v2u32 m_screensize;
+};
+
+#endif
+