diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-03-21 01:22:32 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-03-21 01:22:32 +0000 |
commit | fbc67846eabc8edf2e58e3535362ce505b7fb664 (patch) | |
tree | dca417c5b2d4b075538ba4c5f885df5692152c0b | |
parent | abd8cda8455dbd13c7335d6bca2620b651e1b54f (diff) | |
download | mana-fbc67846eabc8edf2e58e3535362ce505b7fb664.tar.gz mana-fbc67846eabc8edf2e58e3535362ce505b7fb664.tar.bz2 mana-fbc67846eabc8edf2e58e3535362ce505b7fb664.tar.xz mana-fbc67846eabc8edf2e58e3535362ce505b7fb664.zip |
Display a progress bar and connecting status for each server and display the
version using a gcn::Label.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/main.cpp | 62 |
2 files changed, 52 insertions, 12 deletions
@@ -6,6 +6,8 @@ software mode. * src/gui/login.cpp: Fixed small issue where default server didn't fit in the server entry field properly. + * src/main.cpp: Display a progress bar and connecting status for each + server and display the version using a gcn::Label. 2007-03-20 David Athay <ko2fan@gmail.com> diff --git a/src/main.cpp b/src/main.cpp index d067cfdc..2c8e970f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -31,8 +31,8 @@ #include <SDL_image.h> #include <guichan/actionlistener.hpp> - #include <guichan/sdl/sdlinput.hpp> +#include <guichan/widgets/label.hpp> #include <libxml/parser.h> @@ -58,10 +58,10 @@ #include "gui/char_server.h" #include "gui/char_select.h" -#include "gui/connection.h" #include "gui/gui.h" #include "gui/login.h" #include "gui/ok_dialog.h" +#include "gui/progressbar.h" #include "gui/register.h" #include "gui/updatewindow.h" #include "gui/textfield.h" @@ -454,11 +454,12 @@ void accountLogin(Network *network, LoginData *loginData) // Clear the password, avoids auto login when returning to login loginData->password = ""; - //remove _M or _F from username after a login for registration purpose + // Remove _M or _F from username after a login for registration purpose if (loginData->registerLogin) { loginData->registerLogin = false; - loginData->username = loginData->username.substr(0, loginData->username.length() - 2); + loginData->username = loginData->username.substr(0, + loginData->username.length() - 2); } // TODO This is not the best place to save the config, but at least better // than the login gui window @@ -560,9 +561,21 @@ int main(int argc, char *argv[]) unsigned int oldstate = !state; // We start with a status change. + Game *game = NULL; Window *currentDialog = NULL; Image *login_wallpaper = NULL; - Game *game = NULL; + + gcn::Container *top = static_cast<gcn::Container*>(gui->getTop()); +#ifdef PACKAGE_VERSION + gcn::Label *versionLabel = new gcn::Label(PACKAGE_VERSION); + top->add(versionLabel, 2, 2); +#endif + ProgressBar *progressBar = new ProgressBar(0.0f, 100, 20); + gcn::Label *progressLabel = new gcn::Label(); + top->add(progressBar, 5, top->getHeight() - 5 - progressBar->getHeight()); + top->add(progressLabel, 15 + progressBar->getWidth(), + progressBar->getY() + 4); + progressBar->setVisible(false); sound.playMusic(TMW_DATADIR "data/music/Magick - Real.ogg"); @@ -620,11 +633,14 @@ int main(int argc, char *argv[]) } } + if (progressBar->isVisible()) + { + progressBar->setProgress(progressBar->getProgress() + 0.005f); + if (progressBar->getProgress() == 1.0f) + progressBar->setProgress(0.0f); + } + graphics->drawImage(login_wallpaper, 0, 0); -#ifdef PACKAGE_VERSION - graphics->setFont(gui->getFont()); - graphics->drawText(PACKAGE_VERSION, 0, 0); -#endif gui->draw(); graphics->updateScreen(); @@ -641,9 +657,13 @@ int main(int argc, char *argv[]) // Those states don't cause a network disconnect case LOADDATA_STATE: + break; + case ACCOUNT_STATE: case CHAR_CONNECT_STATE: case CONNECTING_STATE: + progressBar->setVisible(false); + progressLabel->setCaption(""); break; default: @@ -664,7 +684,7 @@ int main(int argc, char *argv[]) case LOADDATA_STATE: logger->log("State: LOADDATA"); - //add customdata directory + // Add customdata directory ResourceManager::getInstance()->searchAndAddArchives( "customdata/", "zip", @@ -721,6 +741,14 @@ int main(int argc, char *argv[]) case GAME_STATE: sound.fadeOutMusic(1000); +#ifdef PACKAGE_VERSION + delete versionLabel; + versionLabel = NULL; +#endif + delete progressBar; + delete progressLabel; + progressBar = NULL; + progressLabel = NULL; currentDialog = NULL; login_wallpaper->decRef(); login_wallpaper = NULL; @@ -748,17 +776,27 @@ int main(int argc, char *argv[]) case CONNECTING_STATE: logger->log("State: CONNECTING"); + progressBar->setVisible(true); + progressLabel->setCaption("Connecting to map server..."); + progressLabel->adjustSize(); mapLogin(network, &loginData); - currentDialog = new ConnectionDialog(); break; case CHAR_CONNECT_STATE: logger->log("Char: %i\n", loginData.sex); + progressBar->setVisible(true); + progressLabel->setCaption( + "Connecting to character server..."); + progressLabel->adjustSize(); charLogin(network, &loginData); break; case ACCOUNT_STATE: - logger->log("Account: %i\n", loginData.sex); + logger->log("Account: %i", loginData.sex); + progressBar->setVisible(true); + progressLabel->setCaption( + "Connecting to account server..."); + progressLabel->adjustSize(); accountLogin(network, &loginData); break; |