summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2010-12-25 03:33:38 +0200
committerPerttu Ahola <celeron55@gmail.com>2010-12-25 03:33:38 +0200
commitc1e0d3e031d8fec376f30a3af771201eb9ced6cf (patch)
tree8471f256b958fea8bf38b0445c10cc1d9cb81a7d /src/main.cpp
parenta5c62045ed5e47710ce47175cb1c3b3b2da4cdec (diff)
downloadminetest-c1e0d3e031d8fec376f30a3af771201eb9ced6cf.tar.gz
minetest-c1e0d3e031d8fec376f30a3af771201eb9ced6cf.tar.bz2
minetest-c1e0d3e031d8fec376f30a3af771201eb9ced6cf.zip
some tinkering around
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp41
1 files changed, 37 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 03d194d71..bea0d8e62 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -245,6 +245,7 @@ TODO: Transferring of the table from server to client
#include "guiInventoryMenu.h"
#include "guiTextInputMenu.h"
#include "materials.h"
+//#include "guiMessageMenu.h"
IrrlichtWrapper *g_irrlicht;
@@ -1537,10 +1538,15 @@ int main(int argc, char *argv[])
// Test the text input system
/*(new GUITextInputMenu(guienv, guiroot, -1, &g_active_menu_count,
NULL))->drop();*/
-
+ /*GUIMessageMenu *menu =
+ new GUIMessageMenu(guienv, guiroot, -1,
+ &g_active_menu_count,
+ L"Asd");
+ menu->drop();*/
+
// Launch pause menu
- (new GUIPauseMenu(guienv, guiroot, -1, g_device,
- &g_active_menu_count))->drop();
+ /*(new GUIPauseMenu(guienv, guiroot, -1, g_device,
+ &g_active_menu_count))->drop();*/
// First line of debug text
gui::IGUIStaticText *guitext = guienv->addStaticText(
@@ -1565,6 +1571,7 @@ int main(int argc, char *argv[])
L"Chat here\nOther line\nOther line\nOther line\nOther line",
core::rect<s32>(70, 60, 795, 150),
false, true);
+ chat_guitext->setBackgroundColor(video::SColor(96,0,0,0));
core::list<ChatLine> chat_lines;
/*
@@ -1574,6 +1581,9 @@ int main(int argc, char *argv[])
u32 beginscenetime = 0;
u32 scenetime = 0;
u32 endscenetime = 0;
+
+ // A test
+ //throw con::PeerNotFoundException("lol");
/*
Main loop
@@ -2353,7 +2363,7 @@ int main(int argc, char *argv[])
i != chat_lines.end(); i++)
{
(*i).age += dtime;
- if((*i).age > 60.0)
+ if((*i).age > 300.0)
{
to_be_removed_count++;
continue;
@@ -2530,6 +2540,29 @@ int main(int argc, char *argv[])
catch(con::PeerNotFoundException &e)
{
dstream<<DTIME<<"Connection timed out."<<std::endl;
+
+ /*if(g_device)
+ {
+ GUIMessageMenu *menu =
+ new GUIMessageMenu(guienv, guiroot, -1,
+ &g_active_menu_count,
+ L"Connection timed out");
+
+ video::IVideoDriver* driver = g_device->getVideoDriver();
+
+ dstream<<"Created menu"<<std::endl;
+
+ while(g_device->run() && menu->getStatus() == false)
+ {
+ driver->beginScene(true, true, video::SColor(255,0,0,0));
+ guienv->drawAll();
+ driver->endScene();
+ }
+
+ dstream<<"Dropping menu"<<std::endl;
+
+ menu->drop();
+ }*/
}
#if CATCH_UNHANDLED_EXCEPTIONS
/*