Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2014-12-07 23:27:31 +0000
committerStijn Buys <ingar@osirion.org>2014-12-07 23:27:31 +0000
commit493e4317e19725e2de2d51753e5c1906bf9c64ba (patch)
treec46831d6d661a79b5da6580d4472d39a615fedea /src/core/application.cc
parent941c64546ca22b87a9153d36e9e3fe59c18abafe (diff)
Implemented messageboxes and the ability for the game module to send them to remote clients,
send a messagebox if the player's ship is destroyed, this fixes having to press the respawn button twice. added messageboxes on network connection failures.
Diffstat (limited to 'src/core/application.cc')
-rw-r--r--src/core/application.cc22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/core/application.cc b/src/core/application.cc
index 14bb9f3..b181178 100644
--- a/src/core/application.cc
+++ b/src/core/application.cc
@@ -469,10 +469,30 @@ void Application::notify_message(const core::Message::Channel channel, const std
}
}
+void Application::messagebox(const char *text, const char *label1, const char *command1, const char *label2, const char *command2)
+{
+ std::string str_text(text ? text : "" );
+
+ std::string str_label1(label1 ? label1 : "" );
+ std::string str_command1(command1 ? command1 : "" );
+
+ std::string str_label2(label2 ? label2 : "" );
+ std::string str_command2(command2 ? command2 : "" );
+
+ notify_messagebox(str_text, str_label1, str_command1, str_label2, str_command2);
+}
+
+
+void Application::notify_messagebox(const std::string & text, const std::string &label1, const std::string command1, const std::string &label2, const std::string command2)
+{
+ // the default implementation does nothing
+ // used by the client to show messageboxes
+}
+
void Application::notify_loader(const std::string &message)
{
// the default implementation does nothing.
- // used by the client to udpate the loader screen
+ // used by the client to update the loader screen
}
void Application::notify_zonechange()