From 1de4ecd6690a0de808c079e4d3b6398574d189cb Mon Sep 17 00:00:00 2001 From: Eugenio Favalli Date: Thu, 14 Jul 2005 16:50:43 +0000 Subject: - Fixes and improvements to the update system - Added news (I know someone doesn't like it :P) --- src/gui/updatewindow.cpp | 89 ++++++++++++++++++++++++++++++++++++------------ src/gui/updatewindow.h | 13 ++++++- 2 files changed, 79 insertions(+), 23 deletions(-) (limited to 'src') diff --git a/src/gui/updatewindow.cpp b/src/gui/updatewindow.cpp index c27fdf8b..73efc102 100644 --- a/src/gui/updatewindow.cpp +++ b/src/gui/updatewindow.cpp @@ -26,28 +26,34 @@ #include "gui.h" #include "../main.h" #include "../log.h" +#include "../resources/resourcemanager.h" #include #include #include #include -#include "SDL_thread.h" +#include UpdaterWindow *updaterWindow; SDL_Thread *thread; std::string updateHost = "themanaworld.org/files"; +std::string currentFile = "news.txt"; bool downloadComplete = true; -int downloadStatus = UPDATE_RUN; +int downloadStatus = UPDATE_NEWS; UpdaterWindow::UpdaterWindow() : Window("Updating...") { - int h = 100; + int h = 300; int w = 320; setContentSize(w, h); - + + browserBox = new BrowserBox(); + browserBox->setOpaque(false); + scrollArea = new ScrollArea(browserBox); + scrollArea->setDimension(gcn::Rectangle(5, 5, 310, 190)); label = new gcn::Label("Connecting..."); - label->setPosition(5,5); - progressBar = new ProgressBar(0.0, 5, 25, w - 10, 40, 37, 70, 23); + label->setPosition(5,205); + progressBar = new ProgressBar(0.0, 5, 225, w - 10, 40, 37, 70, 23); cancelButton = new Button("Cancel"); cancelButton->setPosition(5, h - 5 - cancelButton->getHeight()); cancelButton->setEventId("cancel"); @@ -58,7 +64,8 @@ UpdaterWindow::UpdaterWindow() playButton->setEventId("play"); playButton->setEnabled(false); playButton->addActionListener(this); - + + add(scrollArea); add(label); add(progressBar); add(cancelButton); @@ -118,15 +125,40 @@ void UpdaterWindow::action(const std::string& eventId) } } +void UpdaterWindow::loadNews() +{ + browserBox->clearRows(); + ResourceManager *resman = ResourceManager::getInstance(); + int contentsLength; + std::ifstream newsFile("news.txt"); + if (!newsFile.is_open()) + { + logger->log("Couldn't load news.txt"); + browserBox->addRow("Error"); + return; + } + + // Tokenize and add each line separately + std::string line(""); + while (!newsFile.eof()) + { + getline(newsFile, line); + browserBox->addRow(line); + } + newsFile.close(); + scrollArea->setVerticalScrollAmount(0); + setVisible(true); +} + int updateProgress(void *ptr, double t, /* dltotal */ double d, /* dlnow */ double ultotal, double ulnow) { - std::string labelString((char *)ptr); + std::string labelString(currentFile); float progress = d/t; - std::stringstream progressString; + std::stringstream progressString(""); progressString << ((int)(progress*100)); labelString += " (" + progressString.str() + "%)"; updaterWindow->setLabel(labelString.c_str()); @@ -146,11 +178,9 @@ int downloadThread(void *ptr) CURL *curl; CURLcode res; FILE *outfile; - std::string fileName((char *)ptr); + std::string fileName(currentFile); std::string url(updateHost); url += "/" + fileName; - logger->log("Downloading: %s", url.c_str()); - logger->log(fileName.c_str()); curl = curl_easy_init(); if (curl) @@ -176,10 +206,10 @@ int downloadThread(void *ptr) return 0; } -int download(std::string url) +int download() { downloadComplete = false; - thread = SDL_CreateThread(downloadThread, (void *)url.c_str()); + thread = SDL_CreateThread(downloadThread, NULL); if (thread == NULL) { logger->log("Unable to create thread"); @@ -194,14 +224,14 @@ void checkFile(std::ifstream &in) { // WARNING: this way we can't use an XML file for resources listing if (!in.eof()) { - std::string line; + std::string line(""); getline(in, line); if (line[0] == '<') { logger->log("Error: resources.txt download error (404)"); downloadStatus = UPDATE_ERROR; } else { - // Return the pointer to the beginning of the file + // Move the pointer to the beginning of the file in.seekg (0, std::ios::beg); } } @@ -215,7 +245,7 @@ void updateData() std::string updateHost = config.getValue("updatehost", "themanaworld.org/files"); // Try to download the updates list - download("resources.txt"); + download(); std::ifstream in; while (state == UPDATE) @@ -247,12 +277,25 @@ void updateData() updaterWindow); downloadStatus = UPDATE_IDLE; break; - case UPDATE_RUN: - // If not alredy downloading another file + case UPDATE_NEWS: + // If not already downloading another file + if (downloadComplete) { + // Try to open news.txt + updaterWindow->loadNews(); + // Doesn't matter if it couldn't find news.txt, + // go to the next step + currentFile = "resources.txt"; + download(); + downloadStatus = UPDATE_RESOURCES; + } + break; + case UPDATE_RESOURCES: + // If not already downloading another file if (downloadComplete) { - // Try to open resources.txt + // Check if the list was already accessed if (!in.is_open()) { + // Try to open resources.txt in.open("resources.txt"); if (!in.is_open()) { @@ -267,9 +310,11 @@ void updateData() if (!in.eof()) { // Download each update - std::string line; + std::string line(""); getline(in, line); - download(line); + // TODO: it should check if file already exists + currentFile = line; + download(); } else { // Download of updates completed diff --git a/src/gui/updatewindow.h b/src/gui/updatewindow.h index e2d6201c..f5f7f747 100644 --- a/src/gui/updatewindow.h +++ b/src/gui/updatewindow.h @@ -28,12 +28,16 @@ #include "vbox.h" #include "progressbar.h" #include "button.h" +#include "browserbox.h" +#include "scrollarea.h" enum { UPDATE_ERROR, UPDATE_IDLE, UPDATE_RUN, - UPDATE_COMPLETE + UPDATE_COMPLETE, + UPDATE_NEWS, + UPDATE_RESOURCES }; /** @@ -50,6 +54,8 @@ class UpdaterWindow : public Window, public gcn::ActionListener Button *cancelButton; /**< Button to stop the update process */ Button *playButton; /**< Button to start playing */ ProgressBar *progressBar; /**< Update progress bar */ + BrowserBox* browserBox; /**< Box to display news */ + ScrollArea *scrollArea; /**< Used to scroll news box */ public: /** @@ -77,6 +83,11 @@ class UpdaterWindow : public Window, public gcn::ActionListener */ void enable(); + /** + * Loads and display news + */ + void loadNews(); + void action(const std::string& eventId); void draw(gcn::Graphics *); -- cgit v1.2.3-70-g09d2