diff --git a/source/glest_game/menu/main_menu.cpp b/source/glest_game/menu/main_menu.cpp index b7342b73b..4da5ad29c 100644 --- a/source/glest_game/menu/main_menu.cpp +++ b/source/glest_game/menu/main_menu.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "main_menu.h" @@ -31,488 +31,741 @@ #include "leak_dumper.h" -using namespace Shared::Sound; -using namespace Shared::Platform; -using namespace Shared::Util; -using namespace Shared::Graphics; -using namespace Shared::Xml; +using namespace + Shared::Sound; +using namespace + Shared::Platform; +using namespace + Shared::Util; +using namespace + Shared::Graphics; +using namespace + Shared::Xml; -namespace Glest{ namespace Game{ +namespace + Glest +{ + namespace + Game + { // ===================================================== -// class MainMenu +// class MainMenu // ===================================================== // ===================== PUBLIC ======================== -MenuState * MainMenu::oldstate=NULL; + MenuState * + MainMenu::oldstate = NULL; -MainMenu::MainMenu(Program *program) : ProgramState(program), menuBackgroundVideo(NULL) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); + MainMenu::MainMenu (Program * program): + ProgramState (program), + menuBackgroundVideo (NULL) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); - //printf("In MainMenu::MainMenu()\n"); + //printf("In MainMenu::MainMenu()\n"); - mouseX=100; - mouseY=100; + mouseX = 100; + mouseY = 100; - state= NULL; - this->program= program; + state = NULL; + this-> + program = program; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); - Config &config = Config::getInstance(); - if(config.getString("CustomMenuTextColor","") != "") { - string customMenuTextColor = config.getString("CustomMenuTextColor"); - Vec3f customTextColor = Vec3f::strToVec3(customMenuTextColor); - GraphicComponent::setCustomTextColor(customTextColor); - } + Config & + config = Config::getInstance (); + if (config.getString ("CustomMenuTextColor", "") != "") + { + string + customMenuTextColor = config.getString ("CustomMenuTextColor"); + Vec3f + customTextColor = Vec3f::strToVec3 (customMenuTextColor); + GraphicComponent::setCustomTextColor (customTextColor); + } - setState(new MenuStateRoot(program, this)); + setState (new MenuStateRoot (program, this)); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); -} + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); + } -void MainMenu::reloadUI() { - if(state) { - state->reloadUI(); - } -} + void + MainMenu::reloadUI () + { + if (state) + { + state->reloadUI (); + } + } -MainMenu::~MainMenu() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); + MainMenu::~MainMenu () + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); - //printf("In MainMenu::~MainMenu()\n"); + //printf("In MainMenu::~MainMenu()\n"); - if(menuBackgroundVideo != NULL) { - menuBackgroundVideo->closePlayer(); - delete menuBackgroundVideo; - menuBackgroundVideo = NULL; - } - delete state; - state = NULL; - delete oldstate; - oldstate = NULL; + if (menuBackgroundVideo != NULL) + { + menuBackgroundVideo->closePlayer (); + delete + menuBackgroundVideo; + menuBackgroundVideo = NULL; + } + delete + state; + state = NULL; + delete + oldstate; + oldstate = NULL; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); - Renderer::getInstance().endMenu(); + Renderer::getInstance ().endMenu (); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); - //SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - //soundRenderer.stopAllSounds(); - GraphicComponent::setCustomTextColor(Vec3f(1.0f,1.0f,1.0f)); + //SoundRenderer &soundRenderer= SoundRenderer::getInstance(); + //soundRenderer.stopAllSounds(); + GraphicComponent::setCustomTextColor (Vec3f (1.0f, 1.0f, 1.0f)); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); -} + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); + } -void MainMenu::init() { - Renderer::getInstance().initMenu(this); + void + MainMenu::init () + { + Renderer::getInstance ().initMenu (this); - initBackgroundVideo(); -} + initBackgroundVideo (); + } -void MainMenu::initBackgroundVideo() { - if(GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false && - ::Shared::Graphics::VideoPlayer::hasBackEndVideoPlayer() == true && - CoreData::getInstance().hasMainMenuVideoFilename() == true) { - string introVideoFile = CoreData::getInstance().getMainMenuVideoFilename(); - string introVideoFileFallback = CoreData::getInstance().getMainMenuVideoFilenameFallback(); + void + MainMenu::initBackgroundVideo () + { + if (GlobalStaticFlags::getIsNonGraphicalModeEnabled () == false + &&::Shared::Graphics::VideoPlayer::hasBackEndVideoPlayer () == true + && CoreData::getInstance ().hasMainMenuVideoFilename () == true) + { + string + introVideoFile = + CoreData::getInstance ().getMainMenuVideoFilename (); + string + introVideoFileFallback = + CoreData::getInstance ().getMainMenuVideoFilenameFallback (); - Context *c= GraphicsInterface::getInstance().getCurrentContext(); - PlatformContextGl *glCtx = static_cast(c)->getPlatformContextGlPtr(); - SDL_Window *window = glCtx->getScreenWindow(); - SDL_Surface *screen = glCtx->getScreenSurface(); + Context * + c = GraphicsInterface::getInstance ().getCurrentContext (); + PlatformContextGl * + glCtx = static_cast < ContextGl * >(c)->getPlatformContextGlPtr (); + SDL_Window * + window = glCtx->getScreenWindow (); + SDL_Surface * + screen = glCtx->getScreenSurface (); - string vlcPluginsPath = Config::getInstance().getString("VideoPlayerPluginsPath",""); - //printf("screen->w = %d screen->h = %d screen->format->BitsPerPixel = %d\n",screen->w,screen->h,screen->format->BitsPerPixel); - menuBackgroundVideo = new VideoPlayer( - &Renderer::getInstance(), - introVideoFile, - introVideoFileFallback, - window, - 0,0, - screen->w, - screen->h, - screen->format->BitsPerPixel, - true, - vlcPluginsPath, - SystemFlags::VERBOSE_MODE_ENABLED); - menuBackgroundVideo->initPlayer(); - } -} + string + vlcPluginsPath = + Config::getInstance ().getString ("VideoPlayerPluginsPath", ""); + //printf("screen->w = %d screen->h = %d screen->format->BitsPerPixel = %d\n",screen->w,screen->h,screen->format->BitsPerPixel); + menuBackgroundVideo = new VideoPlayer (&Renderer::getInstance (), + introVideoFile, + introVideoFileFallback, + window, + 0, 0, + screen->w, + screen->h, + screen->format->BitsPerPixel, + true, + vlcPluginsPath, + SystemFlags:: + VERBOSE_MODE_ENABLED); + menuBackgroundVideo->initPlayer (); + } + } //asynchronus render update -void MainMenu::render() { - Renderer &renderer= Renderer::getInstance(); + void + MainMenu::render () + { + Renderer & renderer = Renderer::getInstance (); - canRender(); - incrementFps(); + canRender (); + incrementFps (); - if(state->isMasterserverMode() == false) { - if(GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false) { + if (state->isMasterserverMode () == false) + { + if (GlobalStaticFlags::getIsNonGraphicalModeEnabled () == false) + { - if(state->isVideoPlaying() == true) { - if(menuBackgroundVideo != NULL) { - if(menuBackgroundVideo->isPlaying() == true) { - menuBackgroundVideo->closePlayer(); - delete menuBackgroundVideo; - menuBackgroundVideo = NULL; - } - } - } - else if(menuBackgroundVideo == NULL) { - initBackgroundVideo(); - } - renderer.clearBuffers(); + if (state->isVideoPlaying () == true) + { + if (menuBackgroundVideo != NULL) + { + if (menuBackgroundVideo->isPlaying () == true) + { + menuBackgroundVideo->closePlayer (); + delete + menuBackgroundVideo; + menuBackgroundVideo = NULL; + } + } + } + else if (menuBackgroundVideo == NULL) + { + initBackgroundVideo (); + } + renderer.clearBuffers (); - //3d - renderer.reset3dMenu(); - renderer.clearZBuffer(); + //3d + renderer.reset3dMenu (); + renderer.clearZBuffer (); - //printf("In [%s::%s Line: %d] menuBackgroundVideo [%p]\n",__FILE__,__FUNCTION__,__LINE__,menuBackgroundVideo); + //printf("In [%s::%s Line: %d] menuBackgroundVideo [%p]\n",__FILE__,__FUNCTION__,__LINE__,menuBackgroundVideo); - if(menuBackgroundVideo == NULL) { - renderer.loadCameraMatrix(menuBackground.getCamera()); - renderer.renderMenuBackground(&menuBackground); - renderer.renderParticleManager(rsMenu); - } + if (menuBackgroundVideo == NULL) + { + renderer.loadCameraMatrix (menuBackground.getCamera ()); + renderer.renderMenuBackground (&menuBackground); + renderer.renderParticleManager (rsMenu); + } - //2d - renderer.reset2d(); + //2d + renderer.reset2d (); - if(menuBackgroundVideo != NULL) { - if(menuBackgroundVideo->isPlaying() == true) { - menuBackgroundVideo->playFrame(false); - } - else { - menuBackgroundVideo->RestartVideo(); - } - } - } - state->render(); + if (menuBackgroundVideo != NULL) + { + if (menuBackgroundVideo->isPlaying () == true) + { + menuBackgroundVideo->playFrame (false); + } + else + { + menuBackgroundVideo->RestartVideo (); + } + } + } + state->render (); - if(GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false) { - renderer.renderMouse2d(mouseX, mouseY, mouse2dAnim); - renderer.renderFPSWhenEnabled(lastFps); - renderer.swapBuffers(); - } - } -} + if (GlobalStaticFlags::getIsNonGraphicalModeEnabled () == false) + { + renderer.renderMouse2d (mouseX, mouseY, mouse2dAnim); + renderer.renderFPSWhenEnabled (lastFps); + renderer.swapBuffers (); + } + } + } //syncronus update -void MainMenu::update(){ - if(menuBackgroundVideo == NULL) { - Renderer::getInstance().updateParticleManager(rsMenu); - } - mouse2dAnim= (mouse2dAnim +1) % Renderer::maxMouse2dAnim; - if(menuBackgroundVideo == NULL) { - menuBackground.update(); - } - state->update(); -} + void + MainMenu::update () + { + if (menuBackgroundVideo == NULL) + { + Renderer::getInstance ().updateParticleManager (rsMenu); + } + mouse2dAnim = (mouse2dAnim + 1) % Renderer::maxMouse2dAnim; + if (menuBackgroundVideo == NULL) + { + menuBackground.update (); + } + state->update (); + } //event magangement: mouse click -void MainMenu::mouseMove(int x, int y, const MouseState *ms){ - mouseX= x; mouseY= y; - state->mouseMove(x, y, ms); -} + void + MainMenu::mouseMove (int x, int y, const MouseState * ms) + { + mouseX = x; + mouseY = y; + state->mouseMove (x, y, ms); + } //returns if exiting -void MainMenu::mouseDownLeft(int x, int y){ - if(GraphicComponent::getFade()<0.2f) return; - state->mouseClick(x, y, mbLeft); -} + void + MainMenu::mouseDownLeft (int x, int y) + { + if (GraphicComponent::getFade () < 0.2f) + return; + state->mouseClick (x, y, mbLeft); + } -void MainMenu::mouseDownRight(int x, int y){ - if(GraphicComponent::getFade()<0.2f) return; - state->mouseClick(x, y, mbRight); -} + void + MainMenu::mouseDownRight (int x, int y) + { + if (GraphicComponent::getFade () < 0.2f) + return; + state->mouseClick (x, y, mbRight); + } -void MainMenu::mouseUpLeft(int x, int y){ - if(GraphicComponent::getFade()<0.2f) return; - state->mouseUp(x, y, mbLeft); -} + void + MainMenu::mouseUpLeft (int x, int y) + { + if (GraphicComponent::getFade () < 0.2f) + return; + state->mouseUp (x, y, mbLeft); + } -bool MainMenu::textInput(std::string text) { - return state->textInput(text); -} -void MainMenu::keyDown(SDL_KeyboardEvent key) { - state->keyDown(key); -} + bool + MainMenu::textInput (std::string text) + { + return state->textInput (text); + } + void + MainMenu::keyDown (SDL_KeyboardEvent key) + { + state->keyDown (key); + } -void MainMenu::keyUp(SDL_KeyboardEvent key) { - state->keyUp(key); -} + void + MainMenu::keyUp (SDL_KeyboardEvent key) + { + state->keyUp (key); + } -void MainMenu::keyPress(SDL_KeyboardEvent c) { - state->keyPress(c); -} + void + MainMenu::keyPress (SDL_KeyboardEvent c) + { + state->keyPress (c); + } -void MainMenu::setState(MenuState *newstate) { - //printf("In [%s::%s Line: %d] oldstate [%p] newstate [%p] this->state [%p]\n",__FILE__,__FUNCTION__,__LINE__,oldstate,newstate,this->state); + void + MainMenu::setState (MenuState * newstate) + { + //printf("In [%s::%s Line: %d] oldstate [%p] newstate [%p] this->state [%p]\n",__FILE__,__FUNCTION__,__LINE__,oldstate,newstate,this->state); - //printf("In MainMenu::setState() #1\n"); + //printf("In MainMenu::setState() #1\n"); - if(oldstate != NULL && oldstate != newstate) { - MenuState *oldstatePtr = oldstate; - delete oldstate; + if (oldstate != NULL && oldstate != newstate) + { + MenuState * + oldstatePtr = oldstate; + delete + oldstate; - //printf("In MainMenu::setState() #2\n"); + //printf("In MainMenu::setState() #2\n"); //printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(oldstatePtr != this->state) { - oldstate=this->state; - //printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - //printf("In MainMenu::setState() #3\n"); - } - else { - oldstate = NULL; - //printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - //printf("In MainMenu::setState() #4\n"); - } - } - else { - oldstate=this->state; - //printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - //printf("In MainMenu::setState() #5\n"); - } + if (oldstatePtr != this->state) + { + oldstate = this->state; + //printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + //printf("In MainMenu::setState() #3\n"); + } + else + { + oldstate = NULL; + //printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + //printf("In MainMenu::setState() #4\n"); + } + } + else + { + oldstate = this->state; + //printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + //printf("In MainMenu::setState() #5\n"); + } - if(this->state != NULL) { + if (this->state != NULL) + { - } + } - //printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - this->state= newstate; + //printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + this->state = newstate; - GraphicComponent::resetFade(); - if(newstate) { - menuBackground.setTargetCamera(newstate->getCamera()); - } -} + GraphicComponent::resetFade (); + if (newstate) + { + menuBackground.setTargetCamera (newstate->getCamera ()); + } + } -bool MainMenu::isInSpecialKeyCaptureEvent() { - return state->isInSpecialKeyCaptureEvent(); -} + bool + MainMenu::isInSpecialKeyCaptureEvent () + { + return state->isInSpecialKeyCaptureEvent (); + } -void MainMenu::consoleAddLine(string line) { - if(state != NULL) { - state->consoleAddLine(line); - } -} + void + MainMenu::consoleAddLine (string line) + { + if (state != NULL) + { + state->consoleAddLine (line); + } + } // ===================================================== -// class MenuState +// class MenuState // ===================================================== -MenuState::MenuState(Program *program, MainMenu *mainMenu, const string &stateName) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); - this->containerName = "MenuState"; - this->program= program; - this->mainMenu= mainMenu; - console.registerGraphicComponent(containerName, "menuStateConsole"); + MenuState::MenuState (Program * program, MainMenu * mainMenu, + const string & stateName) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); + this->containerName = "MenuState"; + this->program = program; + this->mainMenu = mainMenu; + console.registerGraphicComponent (containerName, "menuStateConsole"); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); - //switch on menu music again, it might be muted - Config &config = Config::getInstance(); - float configVolume = (config.getInt("SoundVolumeMusic") / 100.f); - CoreData::getInstance().getMenuMusic()->setVolume(configVolume); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); + //switch on menu music again, it might be muted + Config & config = Config::getInstance (); + float + configVolume = (config.getInt ("SoundVolumeMusic") / 100.f); + CoreData::getInstance ().getMenuMusic ()->setVolume (configVolume); - string data_path = getGameReadWritePath(GameConstants::path_data_CacheLookupKey); + string + data_path = + getGameReadWritePath (GameConstants::path_data_CacheLookupKey); - //camera - XmlTree xmlTree; - xmlTree.load(getGameCustomCoreDataPath(data_path, "data/core/menu/menu.xml"),Properties::getTagReplacementValues()); - const XmlNode *menuNode= xmlTree.getRootNode(); - const XmlNode *cameraNode= menuNode->getChild("camera"); + //camera + XmlTree + xmlTree; + xmlTree. + load (getGameCustomCoreDataPath + (data_path, "data/core/menu/menu.xml"), + Properties::getTagReplacementValues ()); + const XmlNode * + menuNode = xmlTree.getRootNode (); + const XmlNode * + cameraNode = menuNode->getChild ("camera"); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); - //position - const XmlNode *positionNode= cameraNode->getChild(stateName + "-position"); - Vec3f startPosition; - startPosition.x= positionNode->getAttribute("x")->getFloatValue(); - startPosition.y= positionNode->getAttribute("y")->getFloatValue(); - startPosition.z= positionNode->getAttribute("z")->getFloatValue(); - camera.setPosition(startPosition); + //position + const XmlNode * + positionNode = cameraNode->getChild (stateName + "-position"); + Vec3f + startPosition; + startPosition.x = positionNode->getAttribute ("x")->getFloatValue (); + startPosition.y = positionNode->getAttribute ("y")->getFloatValue (); + startPosition.z = positionNode->getAttribute ("z")->getFloatValue (); + camera.setPosition (startPosition); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); - //rotation - const XmlNode *rotationNode= cameraNode->getChild(stateName + "-rotation"); - Vec3f startRotation; - startRotation.x= rotationNode->getAttribute("x")->getFloatValue(); - startRotation.y= rotationNode->getAttribute("y")->getFloatValue(); - startRotation.z= rotationNode->getAttribute("z")->getFloatValue(); - camera.setOrientation(Quaternion(EulerAngles( - degToRad(startRotation.x), - degToRad(startRotation.y), - degToRad(startRotation.z)))); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); -} + //rotation + const XmlNode * + rotationNode = cameraNode->getChild (stateName + "-rotation"); + Vec3f + startRotation; + startRotation.x = rotationNode->getAttribute ("x")->getFloatValue (); + startRotation.y = rotationNode->getAttribute ("y")->getFloatValue (); + startRotation.z = rotationNode->getAttribute ("z")->getFloatValue (); + camera. + setOrientation (Quaternion + (EulerAngles + (degToRad (startRotation.x), + degToRad (startRotation.y), + degToRad (startRotation.z)))); -MenuState::~MenuState() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); - GraphicComponent::clearRegisteredComponents(this->containerName); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s %d]\n",__FILE__,__FUNCTION__,__LINE__); -} + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); + } -void MenuState::consoleAddLine(string line) { - bool onlyWantChatMsgs = console.getOnlyChatMessagesInStoredLines(); - if(onlyWantChatMsgs == true) { - console.setOnlyChatMessagesInStoredLines(false); - } - console.addLine(line); - if(onlyWantChatMsgs == true) { - console.setOnlyChatMessagesInStoredLines(true); - } -} + MenuState::~MenuState () + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); + GraphicComponent::clearRegisteredComponents (this->containerName); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s %d]\n", __FILE__, __FUNCTION__, + __LINE__); + } -void MenuState::reloadUI() { - //console.resetFonts(); -} + void + MenuState::consoleAddLine (string line) + { + bool + onlyWantChatMsgs = console.getOnlyChatMessagesInStoredLines (); + if (onlyWantChatMsgs == true) + { + console.setOnlyChatMessagesInStoredLines (false); + } + console.addLine (line); + if (onlyWantChatMsgs == true) + { + console.setOnlyChatMessagesInStoredLines (true); + } + } -void MenuState::setActiveInputLabel(GraphicLabel *newLabel, GraphicLabel **activeInputLabelPtr) { - GraphicLabel *activeInputLabelEdit = *activeInputLabelPtr; - if(newLabel != NULL) { - if(newLabel == activeInputLabelEdit) { - return; - } - string text= newLabel->getText(); - size_t found = text.find_last_of("_"); - if (found == string::npos || found != text.length()-1) { - text += "_"; - } - newLabel->setText(text); - //textCharLength = extractKeyPressedUnicodeLength(text); - newLabel->setTextCharLengthList(extractKeyPressedUnicodeLength(text)); - } - if(activeInputLabelEdit != NULL && activeInputLabelEdit->getText().empty() == false) { - string text= activeInputLabelEdit->getText(); - size_t found = text.find_last_of("_"); - if (found != string::npos && found == text.length()-1) { - //printf("Removing trailing edit char, found = %d [%d][%s]\n",found,text.length(),text.c_str()); - text = text.substr(0,found); - } - activeInputLabelEdit->setText(text); - //textCharLength = extractKeyPressedUnicodeLength(text); - activeInputLabelEdit->setTextCharLengthList(extractKeyPressedUnicodeLength(text)); - activeInputLabelEdit->setEditModeEnabled(false); - } - if(newLabel != NULL) { - *activeInputLabelPtr = newLabel; - newLabel->setEditModeEnabled(true); - } - else { - *activeInputLabelPtr = NULL; - } -} + void + MenuState::reloadUI () + { + //console.resetFonts(); + } + + void + MenuState::setActiveInputLabel (GraphicLabel * newLabel, + GraphicLabel ** activeInputLabelPtr) + { + GraphicLabel * + activeInputLabelEdit = *activeInputLabelPtr; + if (newLabel != NULL) + { + if (newLabel == activeInputLabelEdit) + { + return; + } + string + text = newLabel->getText (); + size_t + found = text.find_last_of ("_"); + if (found == string::npos || found != text.length () - 1) + { + text += "_"; + } + newLabel->setText (text); + //textCharLength = extractKeyPressedUnicodeLength(text); + newLabel-> + setTextCharLengthList (extractKeyPressedUnicodeLength (text)); + } + if (activeInputLabelEdit != NULL + && activeInputLabelEdit->getText ().empty () == false) + { + string + text = activeInputLabelEdit->getText (); + size_t + found = text.find_last_of ("_"); + if (found != string::npos && found == text.length () - 1) + { + //printf("Removing trailing edit char, found = %d [%d][%s]\n",found,text.length(),text.c_str()); + text = text.substr (0, found); + } + activeInputLabelEdit->setText (text); + //textCharLength = extractKeyPressedUnicodeLength(text); + activeInputLabelEdit-> + setTextCharLengthList (extractKeyPressedUnicodeLength (text)); + activeInputLabelEdit->setEditModeEnabled (false); + } + if (newLabel != NULL) + { + *activeInputLabelPtr = newLabel; + newLabel->setEditModeEnabled (true); + } + else + { + *activeInputLabelPtr = NULL; + } + } -bool MenuState::keyPressEditLabel(SDL_KeyboardEvent c, GraphicLabel **activeInputLabelPtr){ - if(isKeyPressed(SDLK_ESCAPE,c,false) == true || - isKeyPressed(SDLK_RETURN,c,false) == true ) { - GraphicLabel *activeInputLabel = *activeInputLabelPtr; - setActiveInputLabel(NULL,activeInputLabelPtr); - //textCharLength.clear(); - activeInputLabel->clearTextCharLengthList(); - return true; - } - return false; -} + bool + MenuState::keyPressEditLabel (SDL_KeyboardEvent c, + GraphicLabel ** activeInputLabelPtr) + { + if (isKeyPressed (SDLK_ESCAPE, c, false) == true || + isKeyPressed (SDLK_RETURN, c, false) == true) + { + GraphicLabel * + activeInputLabel = *activeInputLabelPtr; + setActiveInputLabel (NULL, activeInputLabelPtr); + //textCharLength.clear(); + activeInputLabel->clearTextCharLengthList (); + return true; + } + return false; + } -bool MenuState::textInputEditLabel(string input, GraphicLabel **activeInputLabelPtr) { - bool eventHandled = false; - GraphicLabel *activeInputLabel = *activeInputLabelPtr; - if(activeInputLabel != NULL) { - int maxTextSize= activeInputLabel->getMaxEditWidth(); + bool + MenuState::textInputEditLabel (string input, + GraphicLabel ** activeInputLabelPtr) + { + bool + eventHandled = false; + GraphicLabel * + activeInputLabel = *activeInputLabelPtr; + if (activeInputLabel != NULL) + { + int + maxTextSize = activeInputLabel->getMaxEditWidth (); - //if((c>='0' && c<='9') || (c>='a' && c<='z') || (c>='A' && c<='Z') || - // (c=='-') || (c=='(') || (c==')')) { - //if(isAllowedInputTextKey(key)) - { - if((int)activeInputLabel->getTextCharLengthList().size() < maxTextSize) { - string text= activeInputLabel->getText(); + //if((c>='0' && c<='9') || (c>='a' && c<='z') || (c>='A' && c<='Z') || + // (c=='-') || (c=='(') || (c==')')) { + //if(isAllowedInputTextKey(key)) + { + if ((int) activeInputLabel->getTextCharLengthList ().size () < + maxTextSize) + { + string + text = activeInputLabel->getText (); - if(text.size() > 0) { - size_t found = text.find_last_of("_"); - if (found == string::npos || found != text.length()-1) { - text += input; - activeInputLabel->addTextCharLengthToList(input.length()); - } - else { - text = text.substr(0,found) + input + "_"; - //int lastCharLen = activeInputLabel->getTextCharLengthList()[activeInputLabel->getTextCharLengthList().size()-1]; - activeInputLabel->deleteTextCharLengthFromList(); - activeInputLabel->addTextCharLengthToList(input.length()); - activeInputLabel->addTextCharLengthToList(1); - } - } - else { - text = input; - activeInputLabel->addTextCharLengthToList(input.length()); - } - //delete [] utfStr; + if (text.size () > 0) + { + size_t + found = text.find_last_of ("_"); + if (found == string::npos || found != text.length () - 1) + { + text += input; + activeInputLabel->addTextCharLengthToList (input.length ()); + } + else + { + text = text.substr (0, found) + input + "_"; + //int lastCharLen = activeInputLabel->getTextCharLengthList()[activeInputLabel->getTextCharLengthList().size()-1]; + activeInputLabel->deleteTextCharLengthFromList (); + activeInputLabel->addTextCharLengthToList (input.length ()); + activeInputLabel->addTextCharLengthToList (1); + } + } + else + { + text = input; + activeInputLabel->addTextCharLengthToList (input.length ()); + } + //delete [] utfStr; - activeInputLabel->setText(text); + activeInputLabel->setText (text); - eventHandled = true; - } - } - } - return eventHandled; -} + eventHandled = true; + } + } + } + return eventHandled; + } -bool MenuState::keyDownEditLabel(SDL_KeyboardEvent c, GraphicLabel **activeInputLabelPtr) { - bool eventHandled = false; - GraphicLabel *activeInputLabel = *activeInputLabelPtr; - if(activeInputLabel != NULL) { - string text = activeInputLabel->getText(); - if(isKeyPressed(SDLK_BACKSPACE,c) == true && text.length() > 0) { - //printf("BSPACE text [%s]\n",text.c_str()); + bool + MenuState::keyDownEditLabel (SDL_KeyboardEvent c, + GraphicLabel ** activeInputLabelPtr) + { + bool + eventHandled = false; + GraphicLabel * + activeInputLabel = *activeInputLabelPtr; + if (activeInputLabel != NULL) + { + string + text = activeInputLabel->getText (); + if (isKeyPressed (SDLK_BACKSPACE, c) == true && text.length () > 0) + { + //printf("BSPACE text [%s]\n",text.c_str()); - bool hasUnderscore = false; - bool delChar = false; - size_t found = text.find_last_of("_"); - if (found == string::npos || found != text.length()-1) { - //printf("A text.length() = %d textCharLength.size() = %d\n",text.length(),textCharLength.size()); - if(activeInputLabel->getTextCharLengthList()[activeInputLabel->getTextCharLengthList().size()-1] >= 1) { - delChar = true; - } - } - else { - //printf("B text.length() = %d textCharLength.size() = %d\n",text.length(),textCharLength.size()); - hasUnderscore = true; - if(activeInputLabel->getTextCharLengthList().size() >= 2 && activeInputLabel->getTextCharLengthList()[activeInputLabel->getTextCharLengthList().size()-2] >= 1) { - delChar = true; - } - } - if(delChar == true) { - if(hasUnderscore) { - //if(textCharLength.size() > 1) { - if(activeInputLabel->getTextCharLengthList().size() > 1) { - //printf("Underscore erase start\n"); - for(unsigned int i = 0; i < (unsigned int)activeInputLabel->getTextCharLengthList()[activeInputLabel->getTextCharLengthList().size()-2]; ++i) { - text.erase(text.end() -2); - } - //printf("AFTER DEL textCharLength.size() = %d textCharLength[textCharLength.size()-1] = %d text.length() = %d\n",textCharLength.size(),textCharLength[textCharLength.size()-1],text.length()); - activeInputLabel->deleteTextCharLengthFromList(); - activeInputLabel->deleteTextCharLengthFromList(); - activeInputLabel->addTextCharLengthToList(1); - } - } - else { - for(unsigned int i = 0; i < (unsigned int)activeInputLabel->getTextCharLengthList()[activeInputLabel->getTextCharLengthList().size()-1]; ++i) { - text.erase(text.end() -1); - } - activeInputLabel->deleteTextCharLengthFromList(); - } - } - activeInputLabel->setText(text); - eventHandled = true; - } - } - return eventHandled; -} + bool + hasUnderscore = false; + bool + delChar = false; + size_t + found = text.find_last_of ("_"); + if (found == string::npos || found != text.length () - 1) + { + //printf("A text.length() = %d textCharLength.size() = %d\n",text.length(),textCharLength.size()); + if (activeInputLabel-> + getTextCharLengthList ()[activeInputLabel-> + getTextCharLengthList ().size () - + 1] >= 1) + { + delChar = true; + } + } + else + { + //printf("B text.length() = %d textCharLength.size() = %d\n",text.length(),textCharLength.size()); + hasUnderscore = true; + if (activeInputLabel->getTextCharLengthList ().size () >= 2 + && activeInputLabel-> + getTextCharLengthList ()[activeInputLabel-> + getTextCharLengthList ().size () - + 2] >= 1) + { + delChar = true; + } + } + if (delChar == true) + { + if (hasUnderscore) + { + //if(textCharLength.size() > 1) { + if (activeInputLabel->getTextCharLengthList ().size () > 1) + { + //printf("Underscore erase start\n"); + for (unsigned int i = 0; + i < + (unsigned int) activeInputLabel-> + getTextCharLengthList ()[activeInputLabel-> + getTextCharLengthList (). + size () - 2]; ++i) + { + text.erase (text.end () - 2); + } + //printf("AFTER DEL textCharLength.size() = %d textCharLength[textCharLength.size()-1] = %d text.length() = %d\n",textCharLength.size(),textCharLength[textCharLength.size()-1],text.length()); + activeInputLabel->deleteTextCharLengthFromList (); + activeInputLabel->deleteTextCharLengthFromList (); + activeInputLabel->addTextCharLengthToList (1); + } + } + else + { + for (unsigned int i = 0; + i < + (unsigned int) activeInputLabel-> + getTextCharLengthList ()[activeInputLabel-> + getTextCharLengthList ().size () - + 1]; ++i) + { + text.erase (text.end () - 1); + } + activeInputLabel->deleteTextCharLengthFromList (); + } + } + activeInputLabel->setText (text); + eventHandled = true; + } + } + return eventHandled; + } -}}//end namespace + } +} //end namespace diff --git a/source/glest_game/menu/main_menu.h b/source/glest_game/menu/main_menu.h index bf8a5cb59..1d949b282 100644 --- a/source/glest_game/menu/main_menu.h +++ b/source/glest_game/menu/main_menu.h @@ -1,143 +1,199 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MAINMENU_H_ -#define _GLEST_GAME_MAINMENU_H_ +# define _GLEST_GAME_MAINMENU_H_ -#ifdef WIN32 - #include - #include -#endif +# ifdef WIN32 +# include +# include +# endif -#include "lang.h" -#include "console.h" -#include "vec.h" -#include "world.h" -#include "program.h" -#include "components.h" -#include "menu_background.h" -#include "game_settings.h" -#include "leak_dumper.h" +# include "lang.h" +# include "console.h" +# include "vec.h" +# include "world.h" +# include "program.h" +# include "components.h" +# include "menu_background.h" +# include "game_settings.h" +# include "leak_dumper.h" -namespace Shared { namespace Graphics { - class VideoPlayer; -}} +namespace Shared +{ + namespace Graphics + { + class VideoPlayer; + } +} -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { -class MenuState; + class MenuState; // ===================================================== -// class MainMenu +// class MainMenu // -/// Main menu ProgramState +/// Main menu ProgramState // ===================================================== -class MainMenu: public ProgramState { - -private: - static MenuState *oldstate; - //up - Program *program; - - //shared - GameSettings gameSettings; - MenuBackground menuBackground; - ::Shared::Graphics::VideoPlayer *menuBackgroundVideo; + class MainMenu:public ProgramState + { - MenuState *state; + private: + static MenuState *oldstate; + //up + Program *program; - //shared - int mouseX, mouseY; - int mouse2dAnim; + //shared + GameSettings gameSettings; + MenuBackground menuBackground; + ::Shared::Graphics::VideoPlayer * menuBackgroundVideo; - void initBackgroundVideo(); + MenuState *state; -public: - explicit MainMenu(Program *program); - virtual ~MainMenu(); + //shared + int mouseX, mouseY; + int mouse2dAnim; - MenuBackground *getMenuBackground() {return &menuBackground;} - const MenuBackground *getConstMenuBackground() const {return &menuBackground;} + void initBackgroundVideo (); - virtual void render(); - virtual void update(); - virtual void init(); - virtual void mouseMove(int x, int y, const MouseState *mouseState); - virtual void mouseDownLeft(int x, int y); - virtual void mouseDownRight(int x, int y); - virtual void mouseUpLeft(int x, int y); - virtual bool textInput(std::string text); - virtual void keyDown(SDL_KeyboardEvent key); - virtual void keyUp(SDL_KeyboardEvent key); - virtual void keyPress(SDL_KeyboardEvent key); - - void setState(MenuState *state); - virtual bool isInSpecialKeyCaptureEvent(); + public: + explicit MainMenu (Program * program); + virtual ~ MainMenu (); - int getMouseX() const {return mouseX;} - int getMouseY() const {return mouseY;} - int getMouse2dAnim() const {return mouse2dAnim;} - virtual void consoleAddLine(string line); - virtual void reloadUI(); -}; + MenuBackground *getMenuBackground () + { + return &menuBackground; + } + const MenuBackground *getConstMenuBackground () const + { + return &menuBackground; + } + + virtual void render (); + virtual void update (); + virtual void init (); + virtual void mouseMove (int x, int y, const MouseState * mouseState); + virtual void mouseDownLeft (int x, int y); + virtual void mouseDownRight (int x, int y); + virtual void mouseUpLeft (int x, int y); + virtual bool textInput (std::string text); + virtual void keyDown (SDL_KeyboardEvent key); + virtual void keyUp (SDL_KeyboardEvent key); + virtual void keyPress (SDL_KeyboardEvent key); + + void setState (MenuState * state); + virtual bool isInSpecialKeyCaptureEvent (); + + int getMouseX () const + { + return mouseX; + } + int getMouseY () const + { + return mouseY; + } + int getMouse2dAnim () const + { + return mouse2dAnim; + } + virtual void consoleAddLine (string line); + virtual void reloadUI (); + }; // =============================== -// class MenuState +// class MenuState // =============================== -class MenuState { -protected: - Program *program; + class MenuState + { + protected: + Program * program; - MainMenu *mainMenu; - Camera camera; + MainMenu *mainMenu; + Camera camera; - const char *containerName; - Console console; + const char *containerName; + Console console; - //vector textCharLength; + //vector textCharLength; -protected: + protected: - void setActiveInputLabel(GraphicLabel *newLabel, GraphicLabel **activeInputLabelPtr); - bool textInputEditLabel(string input, GraphicLabel **activeInputLabelPtr); - bool keyPressEditLabel(SDL_KeyboardEvent c, GraphicLabel **activeInputLabelPtr); - bool keyDownEditLabel(SDL_KeyboardEvent c, GraphicLabel **activeInputLabelPtr); + void setActiveInputLabel (GraphicLabel * newLabel, + GraphicLabel ** activeInputLabelPtr); + bool textInputEditLabel (string input, + GraphicLabel ** activeInputLabelPtr); + bool keyPressEditLabel (SDL_KeyboardEvent c, + GraphicLabel ** activeInputLabelPtr); + bool keyDownEditLabel (SDL_KeyboardEvent c, + GraphicLabel ** activeInputLabelPtr); -public: - MenuState(Program *program, MainMenu *mainMenu, const string &stateName); - virtual ~MenuState(); - virtual void mouseClick(int x, int y, MouseButton mouseButton)=0; - virtual void mouseUp(int x, int y, const MouseButton mouseButton){}; - virtual void mouseMove(int x, int y, const MouseState *mouseState)=0; - virtual void render()=0; - virtual void update(){}; + public: + MenuState (Program * program, MainMenu * mainMenu, + const string & stateName); + virtual ~ MenuState (); + virtual void mouseClick (int x, int y, MouseButton mouseButton) = 0; + virtual void mouseUp (int x, int y, const MouseButton mouseButton) + { + }; + virtual void mouseMove (int x, int y, const MouseState * mouseState) = + 0; + virtual void render () = 0; + virtual void update () + { + }; - virtual bool textInput(std::string text) {return false; } - virtual void keyDown(SDL_KeyboardEvent key){}; - virtual void keyPress(SDL_KeyboardEvent c){}; - virtual void keyUp(SDL_KeyboardEvent key){}; + virtual bool textInput (std::string text) + { + return false; + } + virtual void keyDown (SDL_KeyboardEvent key) + { + }; + virtual void keyPress (SDL_KeyboardEvent c) + { + }; + virtual void keyUp (SDL_KeyboardEvent key) + { + }; - virtual bool isMasterserverMode() const {return false;} - const Camera *getCamera() const {return &camera;} + virtual bool isMasterserverMode () const + { + return false; + } + const Camera *getCamera () const + { + return &camera; + } - virtual bool isInSpecialKeyCaptureEvent() { return false; } - virtual void consoleAddLine(string line); - virtual void reloadUI(); + virtual bool isInSpecialKeyCaptureEvent () + { + return false; + } + virtual void consoleAddLine (string line); + virtual void reloadUI (); - virtual bool isVideoPlaying() { return false; }; -}; + virtual bool isVideoPlaying () + { + return false; + }; + }; -}}//end namespace + } +} //end namespace #endif diff --git a/source/glest_game/menu/menu_background.cpp b/source/glest_game/menu/menu_background.cpp index d4128c432..2f53d9630 100644 --- a/source/glest_game/menu/menu_background.cpp +++ b/source/glest_game/menu/menu_background.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_background.h" @@ -22,216 +22,306 @@ #include "game_util.h" #include "leak_dumper.h" -using namespace Shared::Util; -using namespace Shared::Xml; -using namespace Shared::Graphics; +using namespace + Shared::Util; +using namespace + Shared::Xml; +using namespace + Shared::Graphics; -namespace Glest{ namespace Game{ +namespace + Glest +{ + namespace + Game + { // ===================================================== -// class MenuBackground +// class MenuBackground // ===================================================== -MenuBackground::MenuBackground() : rps(NULL) { - Renderer &renderer= Renderer::getInstance(); + MenuBackground::MenuBackground (): + rps (NULL) + { + Renderer & renderer = Renderer::getInstance (); - //load data - string data_path = getGameReadWritePath(GameConstants::path_data_CacheLookupKey); + //load data + string + data_path = + getGameReadWritePath (GameConstants::path_data_CacheLookupKey); - XmlTree xmlTree; - xmlTree.load(getGameCustomCoreDataPath(data_path, "data/core/menu/menu.xml"),Properties::getTagReplacementValues()); - const XmlNode *menuNode= xmlTree.getRootNode(); + XmlTree + xmlTree; + xmlTree. + load (getGameCustomCoreDataPath (data_path, "data/core/menu/menu.xml"), + Properties::getTagReplacementValues ()); + const XmlNode * + menuNode = xmlTree.getRootNode (); - //water - const XmlNode *waterNode= menuNode->getChild("water"); - water= waterNode->getAttribute("value")->getBoolValue(); - if(water){ - waterHeight= waterNode->getAttribute("height")->getFloatValue(); + //water + const XmlNode * + waterNode = menuNode->getChild ("water"); + water = waterNode->getAttribute ("value")->getBoolValue (); + if (water) + { + waterHeight = waterNode->getAttribute ("height")->getFloatValue (); - //water texture - waterTexture= renderer.newTexture2D(rsMenu); - if(waterTexture) { - waterTexture->getPixmap()->init(4); - waterTexture->getPixmap()->load(getGameCustomCoreDataPath(data_path, "data/core/menu/textures/water.tga")); - } - } + //water texture + waterTexture = renderer.newTexture2D (rsMenu); + if (waterTexture) + { + waterTexture->getPixmap ()->init (4); + waterTexture-> + getPixmap ()-> + load (getGameCustomCoreDataPath + (data_path, "data/core/menu/textures/water.tga")); + } + } - //fog - const XmlNode *fogNode= menuNode->getChild("fog"); - fog= fogNode->getAttribute("value")->getBoolValue(); - if(fog){ - fogDensity= fogNode->getAttribute("density")->getFloatValue(); - } + //fog + const XmlNode * + fogNode = menuNode->getChild ("fog"); + fog = fogNode->getAttribute ("value")->getBoolValue (); + if (fog) + { + fogDensity = fogNode->getAttribute ("density")->getFloatValue (); + } - //rain - bool withRainEffect = Config::getInstance().getBool("RainEffectMenu","true"); - if(withRainEffect == true) { - rain= menuNode->getChild("rain")->getAttribute("value")->getBoolValue(); - if(rain) { - createRainParticleSystem(); - } - } - else { - rain = false; - } + //rain + bool + withRainEffect = + Config::getInstance ().getBool ("RainEffectMenu", "true"); + if (withRainEffect == true) + { + rain = + menuNode->getChild ("rain")->getAttribute ("value")-> + getBoolValue (); + if (rain) + { + createRainParticleSystem (); + } + } + else + { + rain = false; + } - //camera - const XmlNode *cameraNode= menuNode->getChild("camera"); + //camera + const XmlNode * + cameraNode = menuNode->getChild ("camera"); - //position - const XmlNode *positionNode= cameraNode->getChild("start-position"); - Vec3f startPosition; - startPosition.x= positionNode->getAttribute("x")->getFloatValue(); - startPosition.y= positionNode->getAttribute("y")->getFloatValue(); - startPosition.z= positionNode->getAttribute("z")->getFloatValue(); - camera.setPosition(startPosition); + //position + const XmlNode * + positionNode = cameraNode->getChild ("start-position"); + Vec3f + startPosition; + startPosition.x = positionNode->getAttribute ("x")->getFloatValue (); + startPosition.y = positionNode->getAttribute ("y")->getFloatValue (); + startPosition.z = positionNode->getAttribute ("z")->getFloatValue (); + camera.setPosition (startPosition); - //rotation - const XmlNode *rotationNode= cameraNode->getChild("start-rotation"); - Vec3f startRotation; - startRotation.x= rotationNode->getAttribute("x")->getFloatValue(); - startRotation.y= rotationNode->getAttribute("y")->getFloatValue(); - startRotation.z= rotationNode->getAttribute("z")->getFloatValue(); - camera.setOrientation(Quaternion(EulerAngles( - degToRad(startRotation.x), - degToRad(startRotation.y), - degToRad(startRotation.z)))); + //rotation + const XmlNode * + rotationNode = cameraNode->getChild ("start-rotation"); + Vec3f + startRotation; + startRotation.x = rotationNode->getAttribute ("x")->getFloatValue (); + startRotation.y = rotationNode->getAttribute ("y")->getFloatValue (); + startRotation.z = rotationNode->getAttribute ("z")->getFloatValue (); + camera. + setOrientation (Quaternion + (EulerAngles + (degToRad (startRotation.x), + degToRad (startRotation.y), + degToRad (startRotation.z)))); - //load main model - string mainModelFile = "data/core/menu/main_model/menu_main.g3d"; - if(menuNode->hasChild("menu-background-model") == true) { + //load main model + string + mainModelFile = "data/core/menu/main_model/menu_main.g3d"; + if (menuNode->hasChild ("menu-background-model") == true) + { //mainModel->load(data_path + "data/core/menu/main_model/menu_main.g3d"); - const XmlNode *mainMenuModelNode= menuNode->getChild("menu-background-model"); - mainModelFile = mainMenuModelNode->getAttribute("value")->getRestrictedValue(); + const XmlNode * + mainMenuModelNode = menuNode->getChild ("menu-background-model"); + mainModelFile = + mainMenuModelNode->getAttribute ("value")->getRestrictedValue (); + } + mainModel = + renderer.newModel (rsMenu, + getGameCustomCoreDataPath (data_path, + mainModelFile)); + + //models + for (int i = 0; i < 5; ++i) + { + characterModels[i] = + renderer.newModel (rsMenu, + getGameCustomCoreDataPath (data_path, + "data/core/menu/about_models/character" + + intToStr (i) + + ".g3d")); + } + + //about position + positionNode = cameraNode->getChild ("about-position"); + aboutPosition.x = positionNode->getAttribute ("x")->getFloatValue (); + aboutPosition.y = positionNode->getAttribute ("y")->getFloatValue (); + aboutPosition.z = positionNode->getAttribute ("z")->getFloatValue (); + //rotationNode= cameraNode->getChild("about-rotation"); + + targetCamera = NULL; + t = 0.f; + fade = 0.f; + anim = 0.f; } - mainModel = renderer.newModel(rsMenu, getGameCustomCoreDataPath(data_path, mainModelFile)); - //models - for(int i=0; i<5; ++i) { - characterModels[i] = renderer.newModel(rsMenu, getGameCustomCoreDataPath(data_path, "data/core/menu/about_models/character"+intToStr(i)+".g3d")); - } + MenuBackground::~MenuBackground () + { + //printf("In ~MenuBackground() rps = %p\n",rps); - //about position - positionNode= cameraNode->getChild("about-position"); - aboutPosition.x= positionNode->getAttribute("x")->getFloatValue(); - aboutPosition.y= positionNode->getAttribute("y")->getFloatValue(); - aboutPosition.z= positionNode->getAttribute("z")->getFloatValue(); - //rotationNode= cameraNode->getChild("about-rotation"); + cleanup (); + } - targetCamera= NULL; - t= 0.f; - fade= 0.f; - anim= 0.f; -} + void + MenuBackground::cleanup () + { + //printf("In MenuBackground::cleanup() rps = %p\n",rps); -MenuBackground::~MenuBackground() { - //printf("In ~MenuBackground() rps = %p\n",rps); + if (rps != NULL) + { + Renderer & renderer = Renderer::getInstance (); + if (renderer.validateParticleSystemStillExists (rps, rsMenu) == true) + { + rps->fade (); + vector < ParticleSystem * >particleSystems; + particleSystems.push_back (rps); + renderer.cleanupParticleSystems (particleSystems, rsMenu); + } - cleanup(); -} + rps = NULL; + } + } -void MenuBackground::cleanup() { - //printf("In MenuBackground::cleanup() rps = %p\n",rps); + void + MenuBackground::createRainParticleSystem () + { + //printf("In MenuBackground::createRainParticleSystem() rps = %p\n",rps); - if(rps != NULL) { - Renderer &renderer= Renderer::getInstance(); - if(renderer.validateParticleSystemStillExists(rps,rsMenu) == true) { - rps->fade(); - vector particleSystems; - particleSystems.push_back(rps); - renderer.cleanupParticleSystems(particleSystems, rsMenu); - } + if (rps == NULL) + { + rps = new RainParticleSystem (); + rps->setSpeed (12.f / GameConstants::updateFps); + rps->setEmissionRate (25); + rps->setWind (-90.f, 4.f / GameConstants::updateFps); + rps->setPos (Vec3f (0.f, 25.f, 0.f)); + rps->setColor (Vec4f (1.f, 1.f, 1.f, 0.2f)); + rps->setRadius (30.f); - rps = NULL; - } -} + Renderer & renderer = Renderer::getInstance (); + renderer.manageParticleSystem (rps, rsMenu); -void MenuBackground::createRainParticleSystem() { - //printf("In MenuBackground::createRainParticleSystem() rps = %p\n",rps); + for (int i = 0; i < raindropCount; ++i) + { + raindropStates[i] = random.randRange (0.f, 1.f); + raindropPos[i] = computeRaindropPos (); + } + } + } - if(rps == NULL) { - rps= new RainParticleSystem(); - rps->setSpeed(12.f/GameConstants::updateFps); - rps->setEmissionRate(25); - rps->setWind(-90.f, 4.f/GameConstants::updateFps); - rps->setPos(Vec3f(0.f, 25.f, 0.f)); - rps->setColor(Vec4f(1.f, 1.f, 1.f, 0.2f)); - rps->setRadius(30.f); + void + MenuBackground::setTargetCamera (const Camera * targetCamera) + { + this->targetCamera = targetCamera; + this->lastCamera = camera; + t = 0.f; + } - Renderer &renderer= Renderer::getInstance(); - renderer.manageParticleSystem(rps, rsMenu); + void + MenuBackground::update () + { + //rain drops + bool + withRainEffect = + Config::getInstance ().getBool ("RainEffectMenu", "true"); + if (withRainEffect == true) + { + if (rain == false) + { + rain = true; + createRainParticleSystem (); + } - for(int i=0; i= 1.f) + { + raindropStates[i] = 0.f; + raindropPos[i] = computeRaindropPos (); + } + } + } + else if (rain == true) + { + rain = false; -void MenuBackground::setTargetCamera(const Camera *targetCamera){ - this->targetCamera= targetCamera; - this->lastCamera= camera; - t= 0.f; -} + cleanup (); + } -void MenuBackground::update() { - //rain drops - bool withRainEffect = Config::getInstance().getBool("RainEffectMenu","true"); - if(withRainEffect == true) { - if(rain == false) { - rain = true; - createRainParticleSystem(); - } + if (targetCamera != NULL) + { + t += + ((0.01f + + (1.f - t) / 10.f) / 20.f) * (60.f / GameConstants::updateFps); - for(int i=0; i=1.f){ - raindropStates[i]= 0.f; - raindropPos[i]= computeRaindropPos(); - } - } - } - else if(rain == true) { - rain = false; + //interpolate position + camera.setPosition (lastCamera.getPosition (). + lerp (t, targetCamera->getPosition ())); - cleanup(); - } + //interpolate orientation + Quaternion + q = + lastCamera.getOrientation ().lerp (t, + targetCamera->getOrientation ()); + camera.setOrientation (q); - if(targetCamera!=NULL){ - t+= ((0.01f+(1.f-t)/10.f)/20.f)*(60.f/GameConstants::updateFps); + if (t >= 1.f) + { + targetCamera = NULL; + t = 0.f; + } + } - //interpolate position - camera.setPosition(lastCamera.getPosition().lerp(t, targetCamera->getPosition())); + //fade + if (fade <= 1.f) + { + fade += 0.6f / GameConstants::updateFps; + if (fade > 1.f) + { + fade = 1.f; + } + } - //interpolate orientation - Quaternion q= lastCamera.getOrientation().lerp(t, targetCamera->getOrientation()); - camera.setOrientation(q); + //animation + anim += + (0.6f / GameConstants::updateFps) / 5 + random.randRange (0.f, + (0.6f / + GameConstants:: + updateFps) + / 5.f); + if (anim > 1.f) + { + anim = 0.f; + } + } - if(t>=1.f){ - targetCamera= NULL; - t= 0.f; - } - } - - //fade - if(fade<=1.f){ - fade+= 0.6f/GameConstants::updateFps; - if(fade>1.f){ - fade= 1.f; - } - } - - //animation - anim+=(0.6f/GameConstants::updateFps)/5+random.randRange(0.f, (0.6f/GameConstants::updateFps)/5.f); - if(anim>1.f){ - anim= 0.f; - } -} - -Vec2f MenuBackground::computeRaindropPos() { - float f= static_cast(meshSize); - return Vec2f(random.randRange(-f, f), random.randRange(-f, f)); -} - -}}//end namespace + Vec2f + MenuBackground::computeRaindropPos () + { + float + f = static_cast < float >(meshSize); + return Vec2f (random.randRange (-f, f), random.randRange (-f, f)); + } + } +} //end namespace diff --git a/source/glest_game/menu/menu_background.h b/source/glest_game/menu/menu_background.h index 5b685c6f9..3ed5a8ca0 100644 --- a/source/glest_game/menu/menu_background.h +++ b/source/glest_game/menu/menu_background.h @@ -1,117 +1,240 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUBACKGROUND_H_ -#define _GLEST_GAME_MENUBACKGROUND_H_ +# define _GLEST_GAME_MENUBACKGROUND_H_ -#ifdef WIN32 - #include - #include -#endif +# ifdef WIN32 +# include +# include +# endif -#include "particle.h" -#include "camera.h" -#include "vec.h" -#include "texture.h" -#include "model.h" -#include "randomgen.h" -#include "leak_dumper.h" +# include "particle.h" +# include "camera.h" +# include "vec.h" +# include "texture.h" +# include "model.h" +# include "randomgen.h" +# include "leak_dumper.h" -using Shared::Graphics::RainParticleSystem; -using Shared::Graphics::FireParticleSystem; -using Shared::Graphics::Camera; -using Shared::Graphics::Vec3f; -using Shared::Graphics::Vec2f; -using Shared::Graphics::Texture2D; -using Shared::Graphics::Model; -using Shared::Util::RandomGen; +using + Shared::Graphics::RainParticleSystem; +using + Shared::Graphics::FireParticleSystem; +using + Shared::Graphics::Camera; +using + Shared::Graphics::Vec3f; +using + Shared::Graphics::Vec2f; +using + Shared::Graphics::Texture2D; +using + Shared::Graphics::Model; +using + Shared::Util::RandomGen; -namespace Glest{ namespace Game{ +namespace + Glest +{ + namespace + Game + { // =========================================================== -// class MenuBackground +// class MenuBackground // -/// Holds the data to display the 3D environment +/// Holds the data to display the 3D environment /// in the MenuState // =========================================================== -class MenuBackground{ -public: - static const int meshSize= 32; - static const int raindropCount= 1000; - static const int characterCount= 5; + class + MenuBackground + { + public: + static const int + meshSize = 32; + static const int + raindropCount = 1000; + static const int + characterCount = 5; -private: - Model *mainModel; - - //water - bool water; - float waterHeight; - Texture2D *waterTexture; - - //fog - bool fog; - float fogDensity; - - //rain - bool rain; - Vec2f raindropPos[raindropCount]; - float raindropStates[raindropCount]; + private: + Model * + mainModel; - //camera - Camera camera; - Camera lastCamera; - const Camera *targetCamera; - float t; + //water + bool + water; + float + waterHeight; + Texture2D * + waterTexture; - //misc - RandomGen random; - Model *characterModels[characterCount]; - float anim; - float fade; - Vec3f aboutPosition; + //fog + bool + fog; + float + fogDensity; - RainParticleSystem *rps; + //rain + bool + rain; + Vec2f + raindropPos[raindropCount]; + float + raindropStates[raindropCount]; -public: - MenuBackground(); - ~MenuBackground(); + //camera + Camera + camera; + Camera + lastCamera; + const Camera * + targetCamera; + float + t; - bool getWater() const {return water;} - float getWaterHeight() const {return waterHeight;} - bool getFog() const {return fog;} - float getFogDensity() const {return fogDensity;} - bool getRain() const {return rain;} - Texture2D *getWaterTexture() const {return waterTexture;} - const Camera *getCamera() const {return &camera;} - const Model *getCharacterModel(int i) const {return characterModels[i];} - Model *getCharacterModelPtr(int i) const {return characterModels[i];} - const Model *getMainModel() const {return mainModel;} - Model *getMainModelPtr() const {return mainModel;} - float getFade() const {return fade;} - Vec2f getRaindropPos(int i) const {return raindropPos[i];} - float getRaindropState(int i) const {return raindropStates[i];} - float getAnim() const {return anim;} - const Vec3f &getAboutPosition() const {return aboutPosition;} - - void setTargetCamera(const Camera *targetCamera); - void update(); + //misc + RandomGen + random; + Model * + characterModels[characterCount]; + float + anim; + float + fade; + Vec3f + aboutPosition; -private: - Vec2f computeRaindropPos(); - void createRainParticleSystem(); - void cleanup(); -}; + RainParticleSystem * + rps; -}} //end namespace + public: + MenuBackground (); + ~ + MenuBackground (); + + bool + getWater () const + { + return + water; + } + float + getWaterHeight () const + { + return + waterHeight; + } + bool + getFog () const + { + return + fog; + } + float + getFogDensity () const + { + return + fogDensity; + } + bool + getRain () const + { + return + rain; + } + Texture2D * + getWaterTexture () const + { + return + waterTexture; + } + const Camera * + getCamera () const + { + return & + camera; + } + const Model * + getCharacterModel (int i) const + { + return + characterModels[i]; + } + Model * + getCharacterModelPtr (int i) const + { + return + characterModels[i]; + } + const Model * + getMainModel () const + { + return + mainModel; + } + Model * + getMainModelPtr () const + { + return + mainModel; + } + float + getFade () const + { + return + fade; + } + Vec2f + getRaindropPos (int i) const + { + return + raindropPos[i]; + } + float + getRaindropState (int i) const + { + return + raindropStates[i]; + } + float + getAnim () const + { + return + anim; + } + const + Vec3f & + getAboutPosition () const + { + return + aboutPosition; + } + + void + setTargetCamera (const Camera * targetCamera); + void + update (); + + private: + Vec2f + computeRaindropPos (); + void + createRainParticleSystem (); + void + cleanup (); + }; + +}} //end namespace #endif - diff --git a/source/glest_game/menu/menu_state_about.cpp b/source/glest_game/menu/menu_state_about.cpp index db3e2c23e..c5f76c7f0 100644 --- a/source/glest_game/menu/menu_state_about.cpp +++ b/source/glest_game/menu/menu_state_about.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2005 MartiC1o Figueroa +// Copyright (C) 2001-2005 MartiC1o Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_about.h" @@ -25,287 +25,398 @@ using namespace std; -namespace Glest { -namespace Game { +namespace Glest +{ + namespace Game + { // ===================================================== -// class MenuStateAbout +// class MenuStateAbout // ===================================================== -MenuStateAbout::MenuStateAbout(Program *program, MainMenu *mainMenu) : - MenuState(program, mainMenu, "about") { + MenuStateAbout::MenuStateAbout (Program * program, + MainMenu * mainMenu):MenuState (program, + mainMenu, + "about") + { - containerName= "About"; - Lang &lang= Lang::getInstance(); + containerName = "About"; + Lang & lang = Lang::getInstance (); - adjustModelText = true; + adjustModelText = true; - customModTextureX = 0; - customModTextureY = 0; - customModTextureW = 0; - customModTextureH = 0; - customModTextureAlpha = 0.f; + customModTextureX = 0; + customModTextureY = 0; + customModTextureW = 0; + customModTextureH = 0; + customModTextureAlpha = 0.f; - string additionalCredits= loadAdditionalCredits(); + string additionalCredits = loadAdditionalCredits (); - //init - buttonReturn.registerGraphicComponent(containerName, "buttonReturn"); - buttonReturn.init(438, 100, 125); - buttonReturn.setText(lang.getString("Return")); + //init + buttonReturn.registerGraphicComponent (containerName, "buttonReturn"); + buttonReturn.init (438, 100, 125); + buttonReturn.setText (lang.getString ("Return")); - labelAdditionalCredits.registerGraphicComponent(containerName, "labelAdditionalCredits"); - labelAdditionalCredits.init(500, 700); - labelAdditionalCredits.setText(additionalCredits); + labelAdditionalCredits.registerGraphicComponent (containerName, + "labelAdditionalCredits"); + labelAdditionalCredits.init (500, 700); + labelAdditionalCredits.setText (additionalCredits); - if(additionalCredits == "") { - for(int i= 0; i < aboutStringCount1; ++i) { - labelAbout1[i].registerGraphicComponent(containerName, "labelAbout1" + intToStr(i)); - labelAbout1[i].init(100, 700 - i * 20); - labelAbout1[i].setText(getAboutString1(i)); - } + if (additionalCredits == "") + { + for (int i = 0; i < aboutStringCount1; ++i) + { + labelAbout1[i].registerGraphicComponent (containerName, + "labelAbout1" + + intToStr (i)); + labelAbout1[i].init (100, 700 - i * 20); + labelAbout1[i].setText (getAboutString1 (i)); + } - for(int i= 0; i < aboutStringCount2; ++i) { - labelAbout2[i].registerGraphicComponent(containerName, "labelAbout2" + intToStr(i)); - labelAbout2[i].init(450, 620 - i * 20); - labelAbout2[i].setText(getAboutString2(i)); - } - } - else { - for(int i= 0; i < aboutStringCount1; ++i) { - labelAbout1[i].registerGraphicComponent(containerName, "labelAbout1" + intToStr(i)); - labelAbout1[i].init(100, 700 - i * 20); - labelAbout1[i].setText(getAboutString1(i)); - } + for (int i = 0; i < aboutStringCount2; ++i) + { + labelAbout2[i].registerGraphicComponent (containerName, + "labelAbout2" + + intToStr (i)); + labelAbout2[i].init (450, 620 - i * 20); + labelAbout2[i].setText (getAboutString2 (i)); + } + } + else + { + for (int i = 0; i < aboutStringCount1; ++i) + { + labelAbout1[i].registerGraphicComponent (containerName, + "labelAbout1" + + intToStr (i)); + labelAbout1[i].init (100, 700 - i * 20); + labelAbout1[i].setText (getAboutString1 (i)); + } - for(int i= 0; i < aboutStringCount2; ++i) { - labelAbout2[i].registerGraphicComponent(containerName, "labelAbout2" + intToStr(i)); - labelAbout2[i].init(100, 620 - i * 20); - labelAbout2[i].setText(getAboutString2(i)); - } - } + for (int i = 0; i < aboutStringCount2; ++i) + { + labelAbout2[i].registerGraphicComponent (containerName, + "labelAbout2" + + intToStr (i)); + labelAbout2[i].init (100, 620 - i * 20); + labelAbout2[i].setText (getAboutString2 (i)); + } + } - for(int i= 0; i < teammateCount; ++i) { - int xPos = (182 + i * 138); - labelTeammateName[i].registerGraphicComponent(containerName, "labelTeammateName" + intToStr(i)); - labelTeammateName[i].init(xPos, 500); - labelTeammateRole[i].registerGraphicComponent(containerName, "labelTeammateRole" + intToStr(i)); - labelTeammateRole[i].init(xPos, 520); + for (int i = 0; i < teammateCount; ++i) + { + int xPos = (182 + i * 138); + labelTeammateName[i].registerGraphicComponent (containerName, + "labelTeammateName" + + intToStr (i)); + labelTeammateName[i].init (xPos, 500); + labelTeammateRole[i].registerGraphicComponent (containerName, + "labelTeammateRole" + + intToStr (i)); + labelTeammateRole[i].init (xPos, 520); - labelTeammateName[i].setText(getTeammateName(i)); - labelTeammateRole[i].setText(getTeammateRole(i)); - } + labelTeammateName[i].setText (getTeammateName (i)); + labelTeammateRole[i].setText (getTeammateRole (i)); + } - for(int i = teammateTopLineCount; i < teammateCount; ++i) { - labelTeammateName[i].init(202 + (i-5) * 138, 160); - labelTeammateRole[i].init(202 + (i-5) * 138, 180); - } - labelTeammateName[8].init(labelTeammateName[4].getX(), 160); - labelTeammateRole[8].init(labelTeammateRole[4].getX(), 180); + for (int i = teammateTopLineCount; i < teammateCount; ++i) + { + labelTeammateName[i].init (202 + (i - 5) * 138, 160); + labelTeammateRole[i].init (202 + (i - 5) * 138, 180); + } + labelTeammateName[8].init (labelTeammateName[4].getX (), 160); + labelTeammateRole[8].init (labelTeammateRole[4].getX (), 180); - customModTexture = NULL; - labelCustomModCredits.registerGraphicComponent(containerName, "labelCustomModCredits"); - labelCustomModCredits.init(-1, -1); - labelCustomModCredits.setText(""); - labelCustomModCredits.setVisible(false); + customModTexture = NULL; + labelCustomModCredits.registerGraphicComponent (containerName, + "labelCustomModCredits"); + labelCustomModCredits.init (-1, -1); + labelCustomModCredits.setText (""); + labelCustomModCredits.setVisible (false); - enableCustomModCredits = Config::getInstance().getBool("EnabledCustomModCredits","false"); - if(enableCustomModCredits == true) { - string customModCreditsText = Config::getInstance().getString("CustomModCreditsText",""); - if(customModCreditsText != "") { - replaceAll(customModCreditsText, "\\n", "\n"); - int x = Config::getInstance().getInt("CustomModCreditsTextX","1"); - int y = Config::getInstance().getInt("CustomModCreditsTextY","1"); - int w = Config::getInstance().getInt("CustomModCreditsTextW",intToStr(GraphicLabel::defW).c_str()); - int h = Config::getInstance().getInt("CustomModCreditsTextH",intToStr(GraphicLabel::defH).c_str()); + enableCustomModCredits = + Config::getInstance ().getBool ("EnabledCustomModCredits", "false"); + if (enableCustomModCredits == true) + { + string customModCreditsText = + Config::getInstance ().getString ("CustomModCreditsText", ""); + if (customModCreditsText != "") + { + replaceAll (customModCreditsText, "\\n", "\n"); + int x = + Config::getInstance ().getInt ("CustomModCreditsTextX", "1"); + int y = + Config::getInstance ().getInt ("CustomModCreditsTextY", "1"); + int w = + Config::getInstance ().getInt ("CustomModCreditsTextW", + intToStr (GraphicLabel::defW). + c_str ()); + int h = + Config::getInstance ().getInt ("CustomModCreditsTextH", + intToStr (GraphicLabel::defH). + c_str ()); - labelCustomModCredits.init(x, y, w, h); - labelCustomModCredits.setText(customModCreditsText); - labelCustomModCredits.setVisible(true); - } + labelCustomModCredits.init (x, y, w, h); + labelCustomModCredits.setText (customModCreditsText); + labelCustomModCredits.setVisible (true); + } - int buttonReturnX = Config::getInstance().getInt("CustomModCreditsReturnX",intToStr(buttonReturn.getX()).c_str()); - int buttonReturnY = Config::getInstance().getInt("CustomModCreditsReturnY",intToStr(buttonReturn.getY()).c_str()); - int buttonReturnW = Config::getInstance().getInt("CustomModCreditsReturnW",intToStr(buttonReturn.getW()).c_str()); + int buttonReturnX = + Config::getInstance ().getInt ("CustomModCreditsReturnX", + intToStr (buttonReturn.getX ()). + c_str ()); + int buttonReturnY = + Config::getInstance ().getInt ("CustomModCreditsReturnY", + intToStr (buttonReturn.getY ()). + c_str ()); + int buttonReturnW = + Config::getInstance ().getInt ("CustomModCreditsReturnW", + intToStr (buttonReturn.getW ()). + c_str ()); - buttonReturn.init(buttonReturnX, buttonReturnY, buttonReturnW); - } + buttonReturn.init (buttonReturnX, buttonReturnY, buttonReturnW); + } - GraphicComponent::applyAllCustomProperties(containerName); -} + GraphicComponent::applyAllCustomProperties (containerName); + } -MenuStateAbout::~MenuStateAbout() { - if(customModTexture != NULL) { - Renderer::getInstance().endTexture(rsGlobal, customModTexture, false); - customModTexture = NULL; - } -} + MenuStateAbout::~MenuStateAbout () + { + if (customModTexture != NULL) + { + Renderer::getInstance ().endTexture (rsGlobal, customModTexture, + false); + customModTexture = NULL; + } + } -void MenuStateAbout::reloadUI() { - Lang &lang= Lang::getInstance(); + void MenuStateAbout::reloadUI () + { + Lang & lang = Lang::getInstance (); - adjustModelText = true; - string additionalCredits= loadAdditionalCredits(); + adjustModelText = true; + string additionalCredits = loadAdditionalCredits (); - buttonReturn.setText(lang.getString("Return")); - labelAdditionalCredits.setText(additionalCredits); + buttonReturn.setText (lang.getString ("Return")); + labelAdditionalCredits.setText (additionalCredits); - //if(additionalCredits == "") { - for(int i= 0; i < aboutStringCount1; ++i){ - labelAbout1[i].setText(getAboutString1(i)); - } + //if(additionalCredits == "") { + for (int i = 0; i < aboutStringCount1; ++i) + { + labelAbout1[i].setText (getAboutString1 (i)); + } - for(int i= 0; i < aboutStringCount2; ++i){ - labelAbout2[i].setText(getAboutString2(i)); - } - //} - //else { - // for(int i= 0; i < aboutStringCount1; ++i){ - // labelAbout1[i].setText(getAboutString1(i)); - // } + for (int i = 0; i < aboutStringCount2; ++i) + { + labelAbout2[i].setText (getAboutString2 (i)); + } + //} + //else { + // for(int i= 0; i < aboutStringCount1; ++i){ + // labelAbout1[i].setText(getAboutString1(i)); + // } - // for(int i= 0; i < aboutStringCount2; ++i){ - // labelAbout2[i].setText(getAboutString2(i)); - // } - //} + // for(int i= 0; i < aboutStringCount2; ++i){ + // labelAbout2[i].setText(getAboutString2(i)); + // } + //} - for(int i= 0; i < teammateCount; ++i) { - labelTeammateName[i].setText(getTeammateName(i)); - labelTeammateRole[i].setText(getTeammateRole(i)); - } + for (int i = 0; i < teammateCount; ++i) + { + labelTeammateName[i].setText (getTeammateName (i)); + labelTeammateRole[i].setText (getTeammateRole (i)); + } - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} + GraphicComponent:: + reloadFontsForRegisterGraphicComponents (containerName); + } -string MenuStateAbout::loadAdditionalCredits(){ - string data_path= getGameReadWritePath(GameConstants::path_data_CacheLookupKey); - if(data_path != ""){ - endPathWithSlash(data_path); - } - string result= ""; - const string dir= getGameCustomCoreDataPath(data_path,"data/core/menu/credits.txt"); - //printf("dir [%s]\n",dir.c_str()); + string MenuStateAbout::loadAdditionalCredits () + { + string data_path = + getGameReadWritePath (GameConstants::path_data_CacheLookupKey); + if (data_path != "") + { + endPathWithSlash (data_path); + } + string result = ""; + const string dir = + getGameCustomCoreDataPath (data_path, "data/core/menu/credits.txt"); + //printf("dir [%s]\n",dir.c_str()); - if(fileExists(dir) == true) { + if (fileExists (dir) == true) + { #if defined(WIN32) && !defined(__MINGW32__) - FILE *fp = _wfopen(utf8_decode(dir).c_str(), L"r"); - ifstream file(fp); + FILE *fp = _wfopen (utf8_decode (dir).c_str (), L"r"); + ifstream file (fp); #else - ifstream file(dir.c_str()); + ifstream file (dir.c_str ()); #endif - std::string buffer; - while(!file.eof()){ - getline(file, buffer); - result+= buffer + "\n"; - } - std::cout << buffer << std::endl; - file.close(); + std::string buffer; + while (!file.eof ()) + { + getline (file, buffer); + result += buffer + "\n"; + } + std::cout << buffer << std::endl; + file.close (); #if defined(WIN32) && !defined(__MINGW32__) - if(fp) fclose(fp); + if (fp) + fclose (fp); #endif - } - return result; -} + } + return result; + } -void MenuStateAbout::mouseClick(int x, int y, MouseButton mouseButton){ + void MenuStateAbout::mouseClick (int x, int y, MouseButton mouseButton) + { - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); - if(buttonReturn.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateRoot(program, mainMenu)); - } + if (buttonReturn.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + } -} + } -void MenuStateAbout::mouseMove(int x, int y, const MouseState *ms){ - buttonReturn.mouseMove(x, y); -} + void MenuStateAbout::mouseMove (int x, int y, const MouseState * ms) + { + buttonReturn.mouseMove (x, y); + } -void MenuStateAbout::render() { - Renderer &renderer= Renderer::getInstance(); + void MenuStateAbout::render () + { + Renderer & renderer = Renderer::getInstance (); - if(enableCustomModCredits == true) { - if(customModTexture == NULL) { - string customModCreditsTextureFile = Config::getInstance().getString("CustomModCreditsTextureFile",""); - if(customModCreditsTextureFile != "") { - string data_path= getGameReadWritePath(GameConstants::path_data_CacheLookupKey); - if(data_path != ""){ - endPathWithSlash(data_path); - } - customModTexture = Renderer::findTexture(data_path + customModCreditsTextureFile); - } - } + if (enableCustomModCredits == true) + { + if (customModTexture == NULL) + { + string customModCreditsTextureFile = + Config::getInstance ().getString ("CustomModCreditsTextureFile", + ""); + if (customModCreditsTextureFile != "") + { + string data_path = + getGameReadWritePath (GameConstants::path_data_CacheLookupKey); + if (data_path != "") + { + endPathWithSlash (data_path); + } + customModTexture = + Renderer::findTexture (data_path + customModCreditsTextureFile); + } + } - renderer.renderBackground(customModTexture); - renderer.renderLabel(&labelCustomModCredits); - } - else { - renderer.renderLabel(&labelAdditionalCredits); + renderer.renderBackground (customModTexture); + renderer.renderLabel (&labelCustomModCredits); + } + else + { + renderer.renderLabel (&labelAdditionalCredits); - for(int i= 0; i < aboutStringCount1; ++i) { - renderer.renderLabel(&labelAbout1[i]); - } - for(int i= 0; i < aboutStringCount2; ++i) { - renderer.renderLabel(&labelAbout2[i]); - } + for (int i = 0; i < aboutStringCount1; ++i) + { + renderer.renderLabel (&labelAbout1[i]); + } + for (int i = 0; i < aboutStringCount2; ++i) + { + renderer.renderLabel (&labelAbout2[i]); + } - if(adjustModelText == true) { - std::vector &characterMenuScreenPositionListCache = - CacheManager::getCachedItem< std::vector >(GameConstants::characterMenuScreenPositionListCacheLookupKey); + if (adjustModelText == true) + { + std::vector < Vec3f > &characterMenuScreenPositionListCache = + CacheManager::getCachedItem < std::vector < Vec3f > + >(GameConstants::characterMenuScreenPositionListCacheLookupKey); - for(int i= 0; i < teammateCount; ++i) { - int characterPos = (i % teammateTopLineCount); - if(characterPos < (int)characterMenuScreenPositionListCache.size()) { - adjustModelText = false; + for (int i = 0; i < teammateCount; ++i) + { + int characterPos = (i % teammateTopLineCount); + if (characterPos < + (int) characterMenuScreenPositionListCache.size ()) + { + adjustModelText = false; - int xPos = characterMenuScreenPositionListCache[characterPos].x; - if(i == 7 && characterPos+1 < (int)characterMenuScreenPositionListCache.size()) { - xPos += ((characterMenuScreenPositionListCache[characterPos+1].x - characterMenuScreenPositionListCache[characterPos].x) / 2); - } - else if(i == 8 && characterPos+1 < (int)characterMenuScreenPositionListCache.size()) { - xPos = characterMenuScreenPositionListCache[characterPos+1].x; - } + int xPos = characterMenuScreenPositionListCache[characterPos].x; + if (i == 7 + && characterPos + 1 < + (int) characterMenuScreenPositionListCache.size ()) + { + xPos += + ((characterMenuScreenPositionListCache[characterPos + 1].x - + characterMenuScreenPositionListCache[characterPos].x) / + 2); + } + else if (i == 8 + && characterPos + 1 < + (int) characterMenuScreenPositionListCache.size ()) + { + xPos = + characterMenuScreenPositionListCache[characterPos + 1].x; + } - FontMetrics *fontMetrics= NULL; - if(Renderer::renderText3DEnabled == false) { - fontMetrics= labelTeammateName[i].getFont()->getMetrics(); - } - else { - fontMetrics= labelTeammateName[i].getFont3D()->getMetrics(); - } - int newxPos = xPos - (fontMetrics->getTextWidth(labelTeammateName[i].getText()) / 2); - if(newxPos != labelTeammateName[i].getX()) { - labelTeammateName[i].init(newxPos, labelTeammateName[i].getY()); - } + FontMetrics *fontMetrics = NULL; + if (Renderer::renderText3DEnabled == false) + { + fontMetrics = labelTeammateName[i].getFont ()->getMetrics (); + } + else + { + fontMetrics = + labelTeammateName[i].getFont3D ()->getMetrics (); + } + int newxPos = + xPos - + (fontMetrics->getTextWidth (labelTeammateName[i].getText ()) / + 2); + if (newxPos != labelTeammateName[i].getX ()) + { + labelTeammateName[i].init (newxPos, + labelTeammateName[i].getY ()); + } - newxPos = xPos - (fontMetrics->getTextWidth(labelTeammateRole[i].getText()) / 2); - if(newxPos != labelTeammateRole[i].getX()) { - labelTeammateRole[i].init(newxPos, labelTeammateRole[i].getY()); - } - } - } - } + newxPos = + xPos - + (fontMetrics->getTextWidth (labelTeammateRole[i].getText ()) / + 2); + if (newxPos != labelTeammateRole[i].getX ()) + { + labelTeammateRole[i].init (newxPos, + labelTeammateRole[i].getY ()); + } + } + } + } - for(int i= 0; i < teammateCount; ++i) { - renderer.renderLabel(&labelTeammateName[i]); - renderer.renderLabel(&labelTeammateRole[i]); - } - } + for (int i = 0; i < teammateCount; ++i) + { + renderer.renderLabel (&labelTeammateName[i]); + renderer.renderLabel (&labelTeammateRole[i]); + } + } - renderer.renderButton(&buttonReturn); + renderer.renderButton (&buttonReturn); - if(program != NULL) - program->renderProgramMsgBox(); + if (program != NULL) + program->renderProgramMsgBox (); -} + } -void MenuStateAbout::keyDown(SDL_KeyboardEvent key){ - Config &configKeys= Config::getInstance(std::pair(cfgMainKeys, cfgUserKeys)); - if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - GraphicComponent::saveAllCustomProperties(containerName); - } -} + void MenuStateAbout::keyDown (SDL_KeyboardEvent key) + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) == true) + { + GraphicComponent::saveAllCustomProperties (containerName); + } + } -} -}//end namespace + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_about.h b/source/glest_game/menu/menu_state_about.h index efa6c0ef2..8aff74123 100644 --- a/source/glest_game/menu/menu_state_about.h +++ b/source/glest_game/menu/menu_state_about.h @@ -1,71 +1,75 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATEABOUT_H_ -#define _GLEST_GAME_MENUSTATEABOUT_H_ +# define _GLEST_GAME_MENUSTATEABOUT_H_ -#ifdef WIN32 - #include - #include -#endif +# ifdef WIN32 +# include +# include +# endif -#include "main_menu.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class MenuStateAbout +// class MenuStateAbout // =============================== -class MenuStateAbout: public MenuState{ -public: - static const int aboutStringCount1= 4; - static const int aboutStringCount2= 3; - static const int teammateCount= 9; - static const int teammateTopLineCount= 5; + class MenuStateAbout:public MenuState + { + public: + static const int aboutStringCount1 = 4; + static const int aboutStringCount2 = 3; + static const int teammateCount = 9; + static const int teammateTopLineCount = 5; -private: - GraphicButton buttonReturn; - GraphicLabel labelAdditionalCredits; - GraphicLabel labelAbout1[aboutStringCount1]; - GraphicLabel labelAbout2[aboutStringCount2]; - GraphicLabel labelTeammateName[teammateCount]; - GraphicLabel labelTeammateRole[teammateCount]; + private: + GraphicButton buttonReturn; + GraphicLabel labelAdditionalCredits; + GraphicLabel labelAbout1[aboutStringCount1]; + GraphicLabel labelAbout2[aboutStringCount2]; + GraphicLabel labelTeammateName[teammateCount]; + GraphicLabel labelTeammateRole[teammateCount]; - bool adjustModelText; - string loadAdditionalCredits(); + bool adjustModelText; + string loadAdditionalCredits (); - bool enableCustomModCredits; - Texture2D *customModTexture; - int customModTextureX; - int customModTextureY; - int customModTextureW; - int customModTextureH; - float customModTextureAlpha; + bool enableCustomModCredits; + Texture2D *customModTexture; + int customModTextureX; + int customModTextureY; + int customModTextureW; + int customModTextureH; + float customModTextureAlpha; - GraphicLabel labelCustomModCredits; + GraphicLabel labelCustomModCredits; -public: - MenuStateAbout(Program *program, MainMenu *mainMenu); - virtual ~MenuStateAbout(); + public: + MenuStateAbout (Program * program, MainMenu * mainMenu); + virtual ~ MenuStateAbout (); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - virtual void keyDown(SDL_KeyboardEvent key); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void render (); + virtual void keyDown (SDL_KeyboardEvent key); - virtual void reloadUI(); -}; + virtual void reloadUI (); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_connected_game.cpp b/source/glest_game/menu/menu_state_connected_game.cpp index 7370025d7..159bc11cb 100644 --- a/source/glest_game/menu/menu_state_connected_game.cpp +++ b/source/glest_game/menu/menu_state_connected_game.cpp @@ -1,22 +1,22 @@ -// menu_state_connected_game.cpp: game setup menu as it appears to -// connected clients (not the host or user setting up the game) +// menu_state_connected_game.cpp: game setup menu as it appears to +// connected clients (not the host or user setting up the game) // -// Copyright (C) 2018 The ZetaGlest team +// Copyright (C) 2018 The ZetaGlest team // -// ZetaGlest is a fork of MegaGlest +// ZetaGlest is a fork of MegaGlest // -// 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 3 of the License, or -// (at your option) any later version. +// 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 3 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. +// 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, see . +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . #include "menu_state_connected_game.h" @@ -44,5421 +44,9080 @@ #include "leak_dumper.h" -using namespace Shared::Util; -using namespace Shared::CompressionUtil; +using namespace + Shared::Util; +using namespace + Shared::CompressionUtil; -namespace Glest{ namespace Game{ - -static const int MAX_PING_LAG_COUNT = 6; -static const double REPROMPT_DOWNLOAD_SECONDS = 7; -//static const string ITEM_MISSING = "***missing***"; -// above replaced with Lang::getInstance().getString("DataMissing","",true) -const int HEADLESSSERVER_BROADCAST_SETTINGS_SECONDS = 2; -static const char *HEADLESS_SAVED_GAME_FILENAME = "lastHeadlessGameSettings.mgg"; - -const int mapPreviewTexture_X = 5; -const int mapPreviewTexture_Y = 185; -const int mapPreviewTexture_W = 150; -const int mapPreviewTexture_H = 150; - -struct FormatString { - void operator()(string &s) { - s = formatString(s); - } -}; - -// ===================================================== -// class MenuStateConnectedGame -// ===================================================== - -MenuStateConnectedGame::MenuStateConnectedGame(Program *program, MainMenu *mainMenu,JoinMenu joinMenuInfo, bool openNetworkSlots) : - MenuState(program, mainMenu, "connected-game"), modHttpServerThread(NULL) +namespace Glest { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - containerName = "ClientConnectedGame"; - switchSetupRequestFlagType |= ssrft_NetworkPlayerName; - updateDataSynchDetailText = false; - launchingNewGame = false; - isfirstSwitchingMapMessage = true; - - this->zoomedMap = false; - this->render_mapPreviewTexture_X = mapPreviewTexture_X; - this->render_mapPreviewTexture_Y = mapPreviewTexture_Y; - this->render_mapPreviewTexture_W = mapPreviewTexture_W; - this->render_mapPreviewTexture_H = mapPreviewTexture_H; - - needToBroadcastServerSettings=false; - broadcastServerSettingsDelayTimer=0; - lastGameSettingsReceivedCount=0; - noReceiveTimer=time(NULL)-100; // old but inititialized ( must be an "old" time ) - - soundConnectionCount=0; - - this->factionVideo = NULL; - factionVideoSwitchedOffVolume=false; - currentTechName_factionPreview=""; - currentFactionName_factionPreview=""; - - ftpClientThread = NULL; - ftpMissingDataType = ftpmsg_MissingNone; - getMissingMapFromFTPServer = ""; - getMissingMapFromFTPServerLastPrompted = 0; - getMissingMapFromFTPServerInProgress = false; - getMissingTilesetFromFTPServer = ""; - getMissingTilesetFromFTPServerLastPrompted = 0; - getMissingTilesetFromFTPServerInProgress = false; - getMissingTechtreeFromFTPServer = ""; - getMissingTechtreeFromFTPServerLastPrompted = 0; - getMissingTechtreeFromFTPServerInProgress = false; - - getInProgressSavedGameFromFTPServer = ""; - getInProgressSavedGameFromFTPServerInProgress = false; - readyToJoinInProgressGame = false; - - lastCheckedCRCTilesetName = ""; - lastCheckedCRCTechtreeName = ""; - lastCheckedCRCMapName = ""; - lastCheckedCRCTilesetValue = 0; - lastCheckedCRCTechtreeValue = 0; - lastCheckedCRCMapValue = 0; - - mapPreviewTexture=NULL; - currentFactionLogo = ""; - factionTexture=NULL; - lastMissingMap=""; - lastMissingTechtree =""; - lastMissingTileSet = ""; - - activeInputLabel = NULL; - lastNetworkSendPing = 0; - pingCount = 0; - needToSetChangedGameSettings = false; - lastSetChangedGameSettings = time(NULL); - showFullConsole=false; - - - currentFactionName=""; - currentMap=""; - settingsReceivedFromServer=false; - initialSettingsReceivedFromServer=false; - - validOriginalGameSettings=false; - validDisplayedGamesettings=false; - - returnMenuInfo=joinMenuInfo; - Lang &lang= Lang::getInstance(); - - mainMessageBox.registerGraphicComponent(containerName,"mainMessageBox"); - mainMessageBox.init(lang.getString("Ok")); - mainMessageBox.setEnabled(false); - - ftpMessageBox.registerGraphicComponent(containerName,"ftpMessageBox"); - ftpMessageBox.init(lang.getString("ModCenter"),lang.getString("GameHost")); - ftpMessageBox.addButton(lang.getString("NoDownload")); - ftpMessageBox.setEnabled(false); - - NetworkManager &networkManager= NetworkManager::getInstance(); - Config &config = Config::getInstance(); - defaultPlayerName = config.getString("NetPlayerName",Socket::getHostName().c_str()); - enableFactionTexturePreview = config.getBool("FactionPreview","true"); - enableMapPreview = config.getBool("MapPreview","true"); - - enableScenarioTexturePreview = Config::getInstance().getBool("EnableScenarioTexturePreview","true"); - scenarioLogoTexture=NULL; - previewLoadDelayTimer=time(NULL); - needToLoadTextures=true; - this->dirList = Config::getInstance().getPathListForType(ptScenarios); - - vector techtreesList = Config::getInstance().getPathListForType(ptTechs); - techTree.reset(new TechTree(techtreesList)); - - vector teamItems, controlItems, results, rMultiplier, playerStatuses; - int labelOffset=23; - int setupPos=590; - int mapHeadPos=300;//330; - int mapPos=mapHeadPos-labelOffset; - int aHeadPos=240; - int aPos=aHeadPos-labelOffset; - int networkHeadPos=700; - - //state - labelStatus.registerGraphicComponent(containerName,"labelStatus"); - labelStatus.init(30, networkHeadPos); - labelStatus.setText(""); - - labelInfo.registerGraphicComponent(containerName,"labelInfo"); - labelInfo.init(30, networkHeadPos+30); - labelInfo.setText(""); - labelInfo.setFont(CoreData::getInstance().getMenuFontBig()); - labelInfo.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - labelWaitingForPlayers.registerGraphicComponent(containerName,"labelInfo"); - labelWaitingForPlayers.init(30, 100); - labelWaitingForPlayers.setText(""); - labelWaitingForPlayers.setFont(CoreData::getInstance().getMenuFontBig()); - labelWaitingForPlayers.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelWaitingForPlayers.setTextColor(Vec3f(1.0f,1.0f,0.f)); - - timerLabelFlash = time(NULL); - labelDataSynchInfo.registerGraphicComponent(containerName,"labelDataSynchInfo"); - labelDataSynchInfo.init(30, networkHeadPos-60); - labelDataSynchInfo.setText(""); - labelDataSynchInfo.setFont(CoreData::getInstance().getMenuFontBig()); - labelDataSynchInfo.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - int xoffset=90; - labelAllowTeamUnitSharing.registerGraphicComponent(containerName,"labelAllowTeamUnitSharing"); - labelAllowTeamUnitSharing.init(xoffset+410, 670, 80); - labelAllowTeamUnitSharing.setText(lang.getString("AllowTeamUnitSharing")); - labelAllowTeamUnitSharing.setVisible(true); - - checkBoxAllowTeamUnitSharing.registerGraphicComponent(containerName,"checkBoxAllowTeamUnitSharing"); - checkBoxAllowTeamUnitSharing.init(xoffset+612, 670); - checkBoxAllowTeamUnitSharing.setValue(false); - checkBoxAllowTeamUnitSharing.setVisible(true); - checkBoxAllowTeamUnitSharing.setEditable(false); - - labelAllowTeamResourceSharing.registerGraphicComponent(containerName,"labelAllowTeamResourceSharing"); - labelAllowTeamResourceSharing.init(xoffset+410, 640, 80); - labelAllowTeamResourceSharing.setText(lang.getString("AllowTeamResourceSharing")); - labelAllowTeamResourceSharing.setVisible(true); - - checkBoxAllowTeamResourceSharing.registerGraphicComponent(containerName,"checkBoxAllowTeamResourceSharing"); - checkBoxAllowTeamResourceSharing.init(xoffset+612, 640); - checkBoxAllowTeamResourceSharing.setValue(false); - checkBoxAllowTeamResourceSharing.setVisible(true); - checkBoxAllowTeamResourceSharing.setEditable(false); - - // fog - o - war - xoffset=65; - labelFogOfWar.registerGraphicComponent(containerName,"labelFogOfWar"); - labelFogOfWar.init(xoffset+100, aHeadPos, 165); - labelFogOfWar.setText(lang.getString("FogOfWar")); - - listBoxFogOfWar.registerGraphicComponent(containerName,"listBoxFogOfWar"); - listBoxFogOfWar.init(xoffset+100, aPos, 165); - listBoxFogOfWar.pushBackItem(lang.getString("Enabled")); - listBoxFogOfWar.pushBackItem(lang.getString("Explored")); - listBoxFogOfWar.pushBackItem(lang.getString("Disabled")); - listBoxFogOfWar.setSelectedItemIndex(0); - listBoxFogOfWar.setEditable(false); - - labelAllowObservers.registerGraphicComponent(containerName,"labelAllowObservers"); - labelAllowObservers.init(xoffset+325, aHeadPos, 80); - labelAllowObservers.setText(lang.getString("AllowObservers")); - - checkBoxAllowObservers.registerGraphicComponent(containerName,"checkBoxAllowObservers"); - checkBoxAllowObservers.init(xoffset+325, aPos); - checkBoxAllowObservers.setValue(false); - checkBoxAllowObservers.setEditable(false); - - for(int i=0; i<45; ++i){ - rMultiplier.push_back(floatToStr(0.5f+0.1f*i,1)); - } - - labelFallbackCpuMultiplier.registerGraphicComponent(containerName,"labelFallbackCpuMultiplier"); - labelFallbackCpuMultiplier.init(xoffset+500, aHeadPos, 80); - labelFallbackCpuMultiplier.setText(lang.getString("FallbackCpuMultiplier")); - - listBoxFallbackCpuMultiplier.registerGraphicComponent(containerName,"listBoxFallbackCpuMultiplier"); - listBoxFallbackCpuMultiplier.init(xoffset+500, aPos, 80); - listBoxFallbackCpuMultiplier.setItems(rMultiplier); - listBoxFallbackCpuMultiplier.setSelectedItem("1.0"); - - - // Allow Switch Team Mode - labelEnableSwitchTeamMode.registerGraphicComponent(containerName,"labelEnableSwitchTeamMode"); - labelEnableSwitchTeamMode.init(xoffset+325, aHeadPos+45, 80); - labelEnableSwitchTeamMode.setText(lang.getString("EnableSwitchTeamMode")); - - checkBoxEnableSwitchTeamMode.registerGraphicComponent(containerName,"checkBoxEnableSwitchTeamMode"); - checkBoxEnableSwitchTeamMode.init(xoffset+325, aPos+45); - checkBoxEnableSwitchTeamMode.setValue(false); - checkBoxEnableSwitchTeamMode.setEditable(false); - - labelAISwitchTeamAcceptPercent.registerGraphicComponent(containerName,"labelAISwitchTeamAcceptPercent"); - labelAISwitchTeamAcceptPercent.init(xoffset+500, aHeadPos+45, 80); - labelAISwitchTeamAcceptPercent.setText(lang.getString("AISwitchTeamAcceptPercent")); - - listBoxAISwitchTeamAcceptPercent.registerGraphicComponent(containerName,"listBoxAISwitchTeamAcceptPercent"); - listBoxAISwitchTeamAcceptPercent.init(xoffset+500, aPos+45, 80); - for(int i = 0; i <= 100; i = i + 10) { - listBoxAISwitchTeamAcceptPercent.pushBackItem(intToStr(i)); - } - listBoxAISwitchTeamAcceptPercent.setSelectedItem(intToStr(30)); - listBoxAISwitchTeamAcceptPercent.setEditable(false); - - //create - buttonCancelDownloads.registerGraphicComponent(containerName,"buttonCancelDownloads"); - buttonCancelDownloads.init(xoffset+620, 180, 150); - buttonCancelDownloads.setText(lang.getString("CancelDownloads")); - - // Network Frame Period - xoffset=65; - //map listBox - - xoffset=65; - // MapFilter - labelMapFilter.registerGraphicComponent(containerName,"labelMapFilter"); - labelMapFilter.init(xoffset+325, mapHeadPos); - labelMapFilter.setText(lang.getString("MapFilter")); - - listBoxMapFilter.registerGraphicComponent(containerName,"listBoxMapFilter"); - listBoxMapFilter.init(xoffset+325, mapPos, 80); - listBoxMapFilter.pushBackItem("-"); - for(int i=1; i"); + namespace Game + { + + static const int + MAX_PING_LAG_COUNT = 6; + static const double + REPROMPT_DOWNLOAD_SECONDS = 7; +//static const string ITEM_MISSING = "***missing***"; +// above replaced with Lang::getInstance().getString("DataMissing","",true) + const int + HEADLESSSERVER_BROADCAST_SETTINGS_SECONDS = 2; + static const char * + HEADLESS_SAVED_GAME_FILENAME = "lastHeadlessGameSettings.mgg"; + + const int + mapPreviewTexture_X = 5; + const int + mapPreviewTexture_Y = 185; + const int + mapPreviewTexture_W = 150; + const int + mapPreviewTexture_H = 150; + + struct FormatString + { + void + operator () (string & s) + { + s = formatString (s); + } + }; + +// ===================================================== +// class MenuStateConnectedGame +// ===================================================== + + MenuStateConnectedGame::MenuStateConnectedGame (Program * program, MainMenu * mainMenu, JoinMenu joinMenuInfo, bool openNetworkSlots): + MenuState (program, mainMenu, "connected-game"), + modHttpServerThread (NULL) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", __FILE__, __FUNCTION__, __LINE__); + + containerName = "ClientConnectedGame"; + switchSetupRequestFlagType |= ssrft_NetworkPlayerName; + updateDataSynchDetailText = false; + launchingNewGame = false; + isfirstSwitchingMapMessage = true; + + this->zoomedMap = false; + this->render_mapPreviewTexture_X = mapPreviewTexture_X; + this->render_mapPreviewTexture_Y = mapPreviewTexture_Y; + this->render_mapPreviewTexture_W = mapPreviewTexture_W; + this->render_mapPreviewTexture_H = mapPreviewTexture_H; + + needToBroadcastServerSettings = false; + broadcastServerSettingsDelayTimer = 0; + lastGameSettingsReceivedCount = 0; + noReceiveTimer = time (NULL) - 100; // old but inititialized ( must be an "old" time ) + + soundConnectionCount = 0; + + this->factionVideo = NULL; + factionVideoSwitchedOffVolume = false; + currentTechName_factionPreview = ""; + currentFactionName_factionPreview = ""; + + ftpClientThread = NULL; + ftpMissingDataType = ftpmsg_MissingNone; + getMissingMapFromFTPServer = ""; + getMissingMapFromFTPServerLastPrompted = 0; + getMissingMapFromFTPServerInProgress = false; + getMissingTilesetFromFTPServer = ""; + getMissingTilesetFromFTPServerLastPrompted = 0; + getMissingTilesetFromFTPServerInProgress = false; + getMissingTechtreeFromFTPServer = ""; + getMissingTechtreeFromFTPServerLastPrompted = 0; + getMissingTechtreeFromFTPServerInProgress = false; + + getInProgressSavedGameFromFTPServer = ""; + getInProgressSavedGameFromFTPServerInProgress = false; + readyToJoinInProgressGame = false; + + lastCheckedCRCTilesetName = ""; + lastCheckedCRCTechtreeName = ""; + lastCheckedCRCMapName = ""; + lastCheckedCRCTilesetValue = 0; + lastCheckedCRCTechtreeValue = 0; + lastCheckedCRCMapValue = 0; + + mapPreviewTexture = NULL; + currentFactionLogo = ""; + factionTexture = NULL; + lastMissingMap = ""; + lastMissingTechtree = ""; + lastMissingTileSet = ""; + + activeInputLabel = NULL; + lastNetworkSendPing = 0; + pingCount = 0; + needToSetChangedGameSettings = false; + lastSetChangedGameSettings = time (NULL); + showFullConsole = false; + + + currentFactionName = ""; + currentMap = ""; + settingsReceivedFromServer = false; + initialSettingsReceivedFromServer = false; + + validOriginalGameSettings = false; + validDisplayedGamesettings = false; + + returnMenuInfo = joinMenuInfo; + Lang & lang = Lang::getInstance (); + + mainMessageBox.registerGraphicComponent (containerName, + "mainMessageBox"); + mainMessageBox.init (lang.getString ("Ok")); + mainMessageBox.setEnabled (false); + + ftpMessageBox.registerGraphicComponent (containerName, "ftpMessageBox"); + ftpMessageBox.init (lang.getString ("ModCenter"), + lang.getString ("GameHost")); + ftpMessageBox.addButton (lang.getString ("NoDownload")); + ftpMessageBox.setEnabled (false); + + NetworkManager & networkManager = NetworkManager::getInstance (); + Config & config = Config::getInstance (); + defaultPlayerName = + config.getString ("NetPlayerName", Socket::getHostName ().c_str ()); + enableFactionTexturePreview = config.getBool ("FactionPreview", "true"); + enableMapPreview = config.getBool ("MapPreview", "true"); + + enableScenarioTexturePreview = + Config::getInstance ().getBool ("EnableScenarioTexturePreview", + "true"); + scenarioLogoTexture = NULL; + previewLoadDelayTimer = time (NULL); + needToLoadTextures = true; + this->dirList = Config::getInstance ().getPathListForType (ptScenarios); + + vector < + string > + techtreesList = Config::getInstance ().getPathListForType (ptTechs); + techTree.reset (new TechTree (techtreesList)); + + vector < + string > + teamItems, controlItems, results, rMultiplier, playerStatuses; + int + labelOffset = 23; + int + setupPos = 590; + int + mapHeadPos = 300; //330; + int + mapPos = mapHeadPos - labelOffset; + int + aHeadPos = 240; + int + aPos = aHeadPos - labelOffset; + int + networkHeadPos = 700; + +//state + labelStatus.registerGraphicComponent (containerName, "labelStatus"); + labelStatus.init (30, networkHeadPos); + labelStatus.setText (""); + + labelInfo.registerGraphicComponent (containerName, "labelInfo"); + labelInfo.init (30, networkHeadPos + 30); + labelInfo.setText (""); + labelInfo.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelInfo.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + + labelWaitingForPlayers.registerGraphicComponent (containerName, + "labelInfo"); + labelWaitingForPlayers.init (30, 100); + labelWaitingForPlayers.setText (""); + labelWaitingForPlayers.setFont (CoreData::getInstance (). + getMenuFontBig ()); + labelWaitingForPlayers.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + labelWaitingForPlayers.setTextColor (Vec3f (1.0f, 1.0f, 0.f)); + + timerLabelFlash = time (NULL); + labelDataSynchInfo.registerGraphicComponent (containerName, + "labelDataSynchInfo"); + labelDataSynchInfo.init (30, networkHeadPos - 60); + labelDataSynchInfo.setText (""); + labelDataSynchInfo.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelDataSynchInfo.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + + int + xoffset = 90; + labelAllowTeamUnitSharing.registerGraphicComponent (containerName, + "labelAllowTeamUnitSharing"); + labelAllowTeamUnitSharing.init (xoffset + 410, 670, 80); + labelAllowTeamUnitSharing.setText (lang. + getString ("AllowTeamUnitSharing")); + labelAllowTeamUnitSharing.setVisible (true); + + checkBoxAllowTeamUnitSharing.registerGraphicComponent (containerName, + "checkBoxAllowTeamUnitSharing"); + checkBoxAllowTeamUnitSharing.init (xoffset + 612, 670); + checkBoxAllowTeamUnitSharing.setValue (false); + checkBoxAllowTeamUnitSharing.setVisible (true); + checkBoxAllowTeamUnitSharing.setEditable (false); + + labelAllowTeamResourceSharing.registerGraphicComponent (containerName, + "labelAllowTeamResourceSharing"); + labelAllowTeamResourceSharing.init (xoffset + 410, 640, 80); + labelAllowTeamResourceSharing.setText (lang. + getString + ("AllowTeamResourceSharing")); + labelAllowTeamResourceSharing.setVisible (true); + + checkBoxAllowTeamResourceSharing.registerGraphicComponent + (containerName, "checkBoxAllowTeamResourceSharing"); + checkBoxAllowTeamResourceSharing.init (xoffset + 612, 640); + checkBoxAllowTeamResourceSharing.setValue (false); + checkBoxAllowTeamResourceSharing.setVisible (true); + checkBoxAllowTeamResourceSharing.setEditable (false); + +// fog - o - war + xoffset = 65; + labelFogOfWar.registerGraphicComponent (containerName, "labelFogOfWar"); + labelFogOfWar.init (xoffset + 100, aHeadPos, 165); + labelFogOfWar.setText (lang.getString ("FogOfWar")); + + listBoxFogOfWar.registerGraphicComponent (containerName, + "listBoxFogOfWar"); + listBoxFogOfWar.init (xoffset + 100, aPos, 165); + listBoxFogOfWar.pushBackItem (lang.getString ("Enabled")); + listBoxFogOfWar.pushBackItem (lang.getString ("Explored")); + listBoxFogOfWar.pushBackItem (lang.getString ("Disabled")); + listBoxFogOfWar.setSelectedItemIndex (0); + listBoxFogOfWar.setEditable (false); + + labelAllowObservers.registerGraphicComponent (containerName, + "labelAllowObservers"); + labelAllowObservers.init (xoffset + 325, aHeadPos, 80); + labelAllowObservers.setText (lang.getString ("AllowObservers")); + + checkBoxAllowObservers.registerGraphicComponent (containerName, + "checkBoxAllowObservers"); + checkBoxAllowObservers.init (xoffset + 325, aPos); + checkBoxAllowObservers.setValue (false); + checkBoxAllowObservers.setEditable (false); + + for (int i = 0; i < 45; ++i) + { + rMultiplier.push_back (floatToStr (0.5f + 0.1f * i, 1)); + } + + labelFallbackCpuMultiplier.registerGraphicComponent (containerName, + "labelFallbackCpuMultiplier"); + labelFallbackCpuMultiplier.init (xoffset + 500, aHeadPos, 80); + labelFallbackCpuMultiplier.setText (lang.getString + ("FallbackCpuMultiplier")); + + listBoxFallbackCpuMultiplier.registerGraphicComponent (containerName, + "listBoxFallbackCpuMultiplier"); + listBoxFallbackCpuMultiplier.init (xoffset + 500, aPos, 80); + listBoxFallbackCpuMultiplier.setItems (rMultiplier); + listBoxFallbackCpuMultiplier.setSelectedItem ("1.0"); + + +// Allow Switch Team Mode + labelEnableSwitchTeamMode.registerGraphicComponent (containerName, + "labelEnableSwitchTeamMode"); + labelEnableSwitchTeamMode.init (xoffset + 325, aHeadPos + 45, 80); + labelEnableSwitchTeamMode. + setText (lang.getString ("EnableSwitchTeamMode")); + + checkBoxEnableSwitchTeamMode.registerGraphicComponent (containerName, + "checkBoxEnableSwitchTeamMode"); + checkBoxEnableSwitchTeamMode.init (xoffset + 325, aPos + 45); + checkBoxEnableSwitchTeamMode.setValue (false); + checkBoxEnableSwitchTeamMode.setEditable (false); + + labelAISwitchTeamAcceptPercent.registerGraphicComponent (containerName, + "labelAISwitchTeamAcceptPercent"); + labelAISwitchTeamAcceptPercent.init (xoffset + 500, aHeadPos + 45, 80); + labelAISwitchTeamAcceptPercent.setText (lang.getString + ("AISwitchTeamAcceptPercent")); + + listBoxAISwitchTeamAcceptPercent.registerGraphicComponent + (containerName, "listBoxAISwitchTeamAcceptPercent"); + listBoxAISwitchTeamAcceptPercent.init (xoffset + 500, aPos + 45, 80); + for (int i = 0; i <= 100; i = i + 10) + { + listBoxAISwitchTeamAcceptPercent.pushBackItem (intToStr (i)); + } + listBoxAISwitchTeamAcceptPercent.setSelectedItem (intToStr (30)); + listBoxAISwitchTeamAcceptPercent.setEditable (false); + +//create + buttonCancelDownloads.registerGraphicComponent (containerName, + "buttonCancelDownloads"); + buttonCancelDownloads.init (xoffset + 620, 180, 150); + buttonCancelDownloads.setText (lang.getString ("CancelDownloads")); + +// Network Frame Period + xoffset = 65; +//map listBox + + xoffset = 65; +// MapFilter + labelMapFilter.registerGraphicComponent (containerName, + "labelMapFilter"); + labelMapFilter.init (xoffset + 325, mapHeadPos); + labelMapFilter.setText (lang.getString ("MapFilter")); + + listBoxMapFilter.registerGraphicComponent (containerName, + "listBoxMapFilter"); + listBoxMapFilter.init (xoffset + 325, mapPos, 80); + listBoxMapFilter.pushBackItem ("-"); + for (int i = 1; i < GameConstants::maxPlayers + 1; ++i) + { + listBoxMapFilter.pushBackItem (intToStr (i)); + } + listBoxMapFilter.setSelectedItemIndex (0); + listBoxMapFilter.setEditable (false); + + +// put them all in a set, to weed out duplicates (gbm & mgm with same name) +// will also ensure they are alphabetically listed (rather than how the OS provides them) + listBoxMap.registerGraphicComponent (containerName, "listBoxMap"); + listBoxMap.init (xoffset + 100, mapPos, 220); + listBoxMap.setEditable (false); + + labelMapInfo.registerGraphicComponent (containerName, "labelMapInfo"); + labelMapInfo.init (xoffset + 100, mapPos - labelOffset - 10, 200, 40); + labelMapInfo.setText ("?"); + + labelMap.registerGraphicComponent (containerName, "labelMap"); + labelMap.init (xoffset + 100, mapHeadPos); + labelMap.setText (lang.getString ("Map")); + +//tileset listBox + listBoxTileset.registerGraphicComponent (containerName, + "listBoxTileset"); + listBoxTileset.init (xoffset + 500, mapPos, 160); + listBoxTileset.setEditable (false); + + labelTileset.registerGraphicComponent (containerName, "labelTileset"); + labelTileset.init (xoffset + 500, mapHeadPos); + labelTileset.setText (lang.getString ("Tileset")); + + +//tech Tree listBox + listBoxTechTree.setEditable (false); + + listBoxTechTree.registerGraphicComponent (containerName, + "listBoxTechTree"); + listBoxTechTree.init (xoffset + 700, mapPos, 180); + + labelTechTree.registerGraphicComponent (containerName, "labelTechTree"); + labelTechTree.init (xoffset + 700, mapHeadPos); + labelTechTree.setText (lang.getString ("TechTree")); + + labelAllowNativeLanguageTechtree.registerGraphicComponent + (containerName, "labelAllowNativeLanguageTechtree"); + labelAllowNativeLanguageTechtree.init (xoffset + 700, aHeadPos + 45); + labelAllowNativeLanguageTechtree.setText (lang.getString + ("AllowNativeLanguageTechtree")); + + checkBoxAllowNativeLanguageTechtree.registerGraphicComponent + (containerName, "checkBoxAllowNativeLanguageTechtree"); + checkBoxAllowNativeLanguageTechtree.init (xoffset + 700, aPos + 45); + checkBoxAllowNativeLanguageTechtree.setValue (false); + checkBoxAllowNativeLanguageTechtree.setEditable (false); + checkBoxAllowNativeLanguageTechtree.setEnabled (false); + +// Network Scenario + int + scenarioX = xoffset + 700; + int + scenarioY = aPos; + labelScenario.registerGraphicComponent (containerName, "labelScenario"); + labelScenario.init (scenarioX, aHeadPos); + labelScenario.setText (lang.getString ("Scenario")); + listBoxScenario.registerGraphicComponent (containerName, + "listBoxScenario"); + listBoxScenario.init (scenarioX + 30, scenarioY, 190); + listBoxScenario.setEditable (false); + listBoxScenario.setEnabled (false); + checkBoxScenario.registerGraphicComponent (containerName, + "checkBoxScenario"); + checkBoxScenario.init (scenarioX, scenarioY); + checkBoxScenario.setValue (false); + checkBoxScenario.setEditable (false); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + xoffset = 5; + int + rowHeight = 27; + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + labelPlayers[i].registerGraphicComponent (containerName, + "labelPlayers" + + intToStr (i)); + labelPlayers[i].init (xoffset - 1, setupPos - 30 - i * rowHeight + 2); + labelPlayers[i]. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + labelPlayers[i]. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + labelPlayers[i].setEditable (false); + + labelPlayerStatus[i].registerGraphicComponent (containerName, + "labelPlayerStatus" + + intToStr (i)); + labelPlayerStatus[i].init (xoffset + 14, + setupPos - 30 - i * rowHeight + 2); + labelPlayerNames[i].registerGraphicComponent (containerName, + "labelPlayerNames" + + intToStr (i)); + labelPlayerNames[i].init (xoffset + 30, + setupPos - 30 - i * rowHeight); + + listBoxControls[i].registerGraphicComponent (containerName, + "listBoxControls" + + intToStr (i)); + listBoxControls[i].init (xoffset + 160, setupPos - 30 - i * rowHeight, + 174); + listBoxControls[i].setEditable (false); + + listBoxRMultiplier[i].registerGraphicComponent (containerName, + "listBoxRMultiplier" + + intToStr (i)); + listBoxRMultiplier[i].init (xoffset + 336, + setupPos - 30 - i * rowHeight, 70); + listBoxRMultiplier[i].setEditable (false); + + listBoxFactions[i].registerGraphicComponent (containerName, + "listBoxFactions" + + intToStr (i)); + listBoxFactions[i].init (xoffset + 411, setupPos - 30 - i * rowHeight, + 247); + listBoxFactions[i].setLeftControlled (true); + listBoxFactions[i].setEditable (false); + + listBoxTeams[i].registerGraphicComponent (containerName, + "listBoxTeams" + + intToStr (i)); + listBoxTeams[i].init (xoffset + 660, setupPos - 30 - i * rowHeight, + 60); + listBoxTeams[i].setEditable (false); + listBoxTeams[i].setLighted (true); + + labelNetStatus[i].registerGraphicComponent (containerName, + "labelNetStatus" + + intToStr (i)); + labelNetStatus[i].init (xoffset + 723, setupPos - 30 - i * rowHeight, + 60); + labelNetStatus[i]. + setFont (CoreData::getInstance ().getDisplayFontSmall ()); + labelNetStatus[i]. + setFont3D (CoreData::getInstance ().getDisplayFontSmall3D ()); + + grabSlotButton[i].registerGraphicComponent (containerName, + "grabSlotButton" + + intToStr (i)); + grabSlotButton[i].init (xoffset + 726, setupPos - 30 - i * rowHeight, + 35, rowHeight - 5); + grabSlotButton[i].setText (">"); + } + + labelControl.registerGraphicComponent (containerName, "labelControl"); + labelControl.init (xoffset + 160, setupPos, 50, GraphicListBox::defH, + true); + labelControl.setText (lang.getString ("Control")); + + labelRMultiplier.registerGraphicComponent (containerName, + "labelRMultiplier"); + labelRMultiplier.init (xoffset + 310, setupPos, 50, + GraphicListBox::defH, true); + + labelFaction.registerGraphicComponent (containerName, "labelFaction"); + labelFaction.init (xoffset + 411, setupPos, 50, GraphicListBox::defH, + true); + labelFaction.setText (lang.getString ("Faction")); + + labelTeam.registerGraphicComponent (containerName, "labelTeam"); + labelTeam.init (xoffset + 660, setupPos, 50, GraphicListBox::defH, + true); + labelTeam.setText (lang.getString ("Team")); + + labelControl.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelControl.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelFaction.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelFaction.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelTeam.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelTeam.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + +//texts + buttonDisconnect.setText (lang.getString ("Return")); + + controlItems.push_back (lang.getString ("Closed")); + controlItems.push_back (lang.getString ("CpuEasy")); + controlItems.push_back (lang.getString ("Cpu")); + controlItems.push_back (lang.getString ("CpuUltra")); + controlItems.push_back (lang.getString ("CpuMega")); + controlItems.push_back (lang.getString ("Network")); + controlItems.push_back (lang.getString ("NetworkUnassigned")); + controlItems.push_back (lang.getString ("Human")); + + + if (config.getBool ("EnableNetworkCpu", "false") == true) + { + controlItems.push_back (lang.getString ("NetworkCpuEasy")); + controlItems.push_back (lang.getString ("NetworkCpu")); + controlItems.push_back (lang.getString ("NetworkCpuUltra")); + controlItems.push_back (lang.getString ("NetworkCpuMega")); + } + + for (int i = 1; i <= GameConstants::maxPlayers; ++i) + { + teamItems.push_back (intToStr (i)); + } + for (int i = GameConstants::maxPlayers + 1; + i <= GameConstants::maxPlayers + GameConstants::specialFactions; + ++i) + { + teamItems.push_back (intToStr (i)); + } + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + labelPlayerStatus[i].setText (""); + labelPlayerStatus[i].setTexture (NULL); + labelPlayerStatus[i].setH (16); + labelPlayerStatus[i].setW (12); + + labelPlayers[i].setText (intToStr (i + 1)); + labelPlayerNames[i].setText (""); + labelPlayerNames[i].setMaxEditWidth (16); + labelPlayerNames[i].setMaxEditRenderWidth (127); + + listBoxTeams[i].setItems (teamItems); + listBoxTeams[i].setSelectedItemIndex (i); + listBoxControls[i].setItems (controlItems); + listBoxRMultiplier[i].setItems (rMultiplier); + listBoxRMultiplier[i].setSelectedItem ("1.0"); + + labelNetStatus[i].setText ("V"); + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +//init controllers + listBoxControls[0].setSelectedItemIndex (ctHuman); + + +//map listBox +// put them all in a set, to weed out duplicates (gbm & mgm with same name) +// will also ensure they are alphabetically listed (rather than how the OS provides them) + setupMapList (""); + listBoxMap.setItems (formattedPlayerSortedMaps[0]); + + int + buttonx = 165; + int + buttony = 180; + + listBoxPlayerStatus.registerGraphicComponent (containerName, + "listBoxPlayerStatus"); + listBoxPlayerStatus.init (buttonx, buttony, 165); + listBoxPlayerStatus.setTextColor (Vec3f (1.0f, 0.f, 0.f)); + listBoxPlayerStatus.setLighted (true); + playerStatuses.push_back (lang.getString ("PlayerStatusSetup")); + playerStatuses.push_back (lang.getString ("PlayerStatusBeRightBack")); + playerStatuses.push_back (lang.getString ("PlayerStatusReady")); + listBoxPlayerStatus.setItems (playerStatuses); + buttonx += 180; + + buttonDisconnect.registerGraphicComponent (containerName, + "buttonDisconnect"); + buttonDisconnect.init (buttonx, buttony, 125); + buttonx += 132; + + buttonRestoreLastSettings.registerGraphicComponent (containerName, + "buttonRestoreLastSettings"); + buttonRestoreLastSettings.init (buttonx, buttony, 240); + buttonRestoreLastSettings.setText (lang.getString + ("ReloadLastGameSettings")); + buttonx += 247; + + buttonPlayNow.registerGraphicComponent (containerName, "buttonPlayNow"); + buttonPlayNow.init (buttonx, buttony, 125); + buttonPlayNow.setText (lang.getString ("PlayNow")); + buttonPlayNow.setVisible (false); + + +// write hint to console: + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + + console.addLine (lang.getString ("ToSwitchOffMusicPress") + " - \"" + + configKeys.getString ("ToggleMusic") + "\""); + chatManager.init (&console, -1, true); + + GraphicComponent::applyAllCustomProperties (containerName); + +//tileset listBox + setupTilesetList (""); + + int + initialTechSelection = setupTechList ("", true); + listBoxTechTree.setSelectedItemIndex (initialTechSelection); + + +//scenario listbox + vector < string > resultsScenarios; + findDirs (dirList, resultsScenarios); +// Filter out only scenarios with no network slots + for (int i = 0; i < (int) resultsScenarios.size (); ++i) + { + string scenario = resultsScenarios[i]; + string file = Scenario::getScenarioPath (dirList, scenario); + + try + { + if (file != "") + { + bool isTutorial = Scenario::isGameTutorial (file); + Scenario::loadScenarioInfo (file, &scenarioInfo, isTutorial); + + bool isNetworkScenario = false; + for (unsigned int j = 0; + isNetworkScenario == false + && j < (unsigned int) GameConstants::maxPlayers; ++j) + { + if (scenarioInfo.factionControls[j] == ctNetwork) + { + isNetworkScenario = true; + } + } + if (isNetworkScenario == true) + { + scenarioFiles.push_back (scenario); + } + } + } + catch (const std::exception & ex) + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d]\nError loading scenario [%s]:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, scenario.c_str (), ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + showMessageBox (szBuf, "Error", false); +//throw megaglest_runtime_error(szBuf); + } + } + resultsScenarios.clear (); + for (int i = 0; i < (int) scenarioFiles.size (); ++i) + { + resultsScenarios.push_back (formatString (scenarioFiles[i])); + } + listBoxScenario.setItems (resultsScenarios); + checkBoxScenario.setEnabled (false); + + if (config.getBool ("EnableFTPXfer", "true") == true) + { + ClientInterface * + clientInterface = networkManager.getClientInterface (); + string serverUrl = clientInterface->getServerIpAddress (); + int + portNumber = clientInterface->getServerFTPPort (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] Using FTP port #: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, portNumber); + + vector < string > mapPathList = config.getPathListForType (ptMaps); + std::pair < string, string > mapsPath; + if (mapPathList.empty () == false) + { + mapsPath.first = mapPathList[0]; + } + if (mapPathList.size () > 1) + { + mapsPath.second = mapPathList[1]; + } + std::pair < string, string > tilesetsPath; + vector < string > tilesetsList = + Config::getInstance ().getPathListForType (ptTilesets); + if (tilesetsList.empty () == false) + { + tilesetsPath.first = tilesetsList[0]; + if (tilesetsList.size () > 1) + { + tilesetsPath.second = tilesetsList[1]; + } + } + + std::pair < string, string > techtreesPath; + if (techtreesList.empty () == false) + { + techtreesPath.first = techtreesList[0]; + if (techtreesList.size () > 1) + { + techtreesPath.second = techtreesList[1]; + } + } + + std::pair < string, string > scenariosPath; + vector < string > scenariosList = + Config::getInstance ().getPathListForType (ptScenarios); + if (scenariosList.empty () == false) + { + scenariosPath.first = scenariosList[0]; + if (scenariosList.size () > 1) + { + scenariosPath.second = scenariosList[1]; + } + } + + string + fileArchiveExtension = + config.getString ("FileArchiveExtension", ""); + string + fileArchiveExtractCommand = + config.getString ("FileArchiveExtractCommand", ""); + string + fileArchiveExtractCommandParameters = + config.getString ("FileArchiveExtractCommandParameters", ""); + int32 + fileArchiveExtractCommandSuccessResult = + config.getInt ("FileArchiveExtractCommandSuccessResult", "0"); + +// Get path to temp files + string tempFilePath = "temp/"; + if (getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) != + "") + { + tempFilePath = + getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) + + tempFilePath; + } + else + { + string userData = config.getString ("UserData_Root", ""); + if (userData != "") + { + endPathWithSlash (userData); + } + tempFilePath = userData + tempFilePath; + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Temp files path [%s]\n", tempFilePath.c_str ()); + + ftpClientThread = new FTPClientThread (portNumber, serverUrl, + mapsPath, tilesetsPath, + techtreesPath, scenariosPath, + this, fileArchiveExtension, + fileArchiveExtractCommand, + fileArchiveExtractCommandParameters, + fileArchiveExtractCommandSuccessResult, + tempFilePath); + ftpClientThread->start (); + } +// Start http meta data thread + static + string + mutexOwnerId = + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + string ("_") + intToStr (__LINE__); + modHttpServerThread = new SimpleTaskThread (this, 0, 200); + modHttpServerThread->setUniqueID (mutexOwnerId); + modHttpServerThread->start (); + + ClientInterface * + clientInterface = networkManager.getClientInterface (); + if (clientInterface != NULL + && clientInterface->getJoinGameInProgress () == true) + { + listBoxPlayerStatus.setVisible (false); + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("JoinPlayerToCurrentGameWelcome", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("JoinPlayerToCurrentGameWelcome", + languageList[i]).c_str (), + getHumanPlayerName ().c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s has connected to the game and would like to join.", + getHumanPlayerName ().c_str ()); + } + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (szMsg, -1, localEcho, + languageList[i]); + } + sleep (1); + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); } - labelControl.registerGraphicComponent(containerName,"labelControl"); - labelControl.init(xoffset+160, setupPos, 50, GraphicListBox::defH, true); - labelControl.setText(lang.getString("Control")); + void + MenuStateConnectedGame::reloadUI () + { + Config & config = Config::getInstance (); + Lang & lang = Lang::getInstance (); - labelRMultiplier.registerGraphicComponent(containerName,"labelRMultiplier"); - labelRMultiplier.init(xoffset+310, setupPos, 50, GraphicListBox::defH, true); + console.resetFonts (); + mainMessageBox.init (lang.getString ("Ok")); + ftpMessageBox.init (lang.getString ("ModCenter"), + lang.getString ("GameHost")); + ftpMessageBox.addButton (lang.getString ("NoDownload")); - labelFaction.registerGraphicComponent(containerName,"labelFaction"); - labelFaction.init(xoffset+411, setupPos, 50, GraphicListBox::defH, true); - labelFaction.setText(lang.getString("Faction")); + labelInfo.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelInfo.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); - labelTeam.registerGraphicComponent(containerName,"labelTeam"); - labelTeam.init(xoffset+660, setupPos, 50, GraphicListBox::defH, true); - labelTeam.setText(lang.getString("Team")); + labelWaitingForPlayers. + setFont (CoreData::getInstance ().getMenuFontBig ()); + labelWaitingForPlayers. + setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); - labelControl.setFont(CoreData::getInstance().getMenuFontBig()); - labelControl.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelFaction.setFont(CoreData::getInstance().getMenuFontBig()); - labelFaction.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelTeam.setFont(CoreData::getInstance().getMenuFontBig()); - labelTeam.setFont3D(CoreData::getInstance().getMenuFontBig3D()); + labelDataSynchInfo.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelDataSynchInfo. + setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); - //texts - buttonDisconnect.setText(lang.getString("Return")); + buttonCancelDownloads.setText (lang.getString ("CancelDownloads")); - controlItems.push_back(lang.getString("Closed")); - controlItems.push_back(lang.getString("CpuEasy")); - controlItems.push_back(lang.getString("Cpu")); - controlItems.push_back(lang.getString("CpuUltra")); - controlItems.push_back(lang.getString("CpuMega")); - controlItems.push_back(lang.getString("Network")); - controlItems.push_back(lang.getString("NetworkUnassigned")); - controlItems.push_back(lang.getString("Human")); + labelFogOfWar.setText (lang.getString ("FogOfWar")); + vector < string > fowItems; + fowItems.push_back (lang.getString ("Enabled")); + fowItems.push_back (lang.getString ("Explored")); + fowItems.push_back (lang.getString ("Disabled")); + listBoxFogOfWar.setItems (fowItems); - if(config.getBool("EnableNetworkCpu","false") == true) { - controlItems.push_back(lang.getString("NetworkCpuEasy")); - controlItems.push_back(lang.getString("NetworkCpu")); - controlItems.push_back(lang.getString("NetworkCpuUltra")); - controlItems.push_back(lang.getString("NetworkCpuMega")); - } + labelAllowObservers.setText (lang.getString ("AllowObservers")); + labelFallbackCpuMultiplier.setText (lang.getString + ("FallbackCpuMultiplier")); - for(int i = 1; i <= GameConstants::maxPlayers; ++i) { - teamItems.push_back(intToStr(i)); - } - for(int i = GameConstants::maxPlayers + 1; i <= GameConstants::maxPlayers + GameConstants::specialFactions; ++i) { - teamItems.push_back(intToStr(i)); - } + labelEnableSwitchTeamMode. + setText (lang.getString ("EnableSwitchTeamMode")); - for(int i=0; i aiswitchteamModeItems; + for (int i = 0; i <= 100; i = i + 10) + { + aiswitchteamModeItems.push_back (intToStr (i)); + } + listBoxAISwitchTeamAcceptPercent.setItems (aiswitchteamModeItems); - labelNetStatus[i].setText("V"); + vector < string > rMultiplier; + for (int i = 0; i < 45; ++i) + { + rMultiplier.push_back (floatToStr (0.5f + 0.1f * i, 1)); + } + listBoxFallbackCpuMultiplier.setItems (rMultiplier); + + labelMap.setText (lang.getString ("Map")); + + labelMapFilter.setText (lang.getString ("MapFilter")); + + labelTileset.setText (lang.getString ("Tileset")); + + labelTechTree.setText (lang.getString ("TechTree")); + + vector < string > playerstatusItems; + playerstatusItems.push_back (lang.getString ("PlayerStatusSetup")); + playerstatusItems. + push_back (lang.getString ("PlayerStatusBeRightBack")); + playerstatusItems.push_back (lang.getString ("PlayerStatusReady")); + listBoxPlayerStatus.setItems (playerstatusItems); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + labelControl.setText (lang.getString ("Control")); + + labelFaction.setText (lang.getString ("Faction")); + + labelTeam.setText (lang.getString ("Team")); + + labelControl.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelControl.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelFaction.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelFaction.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelTeam.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelTeam.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + +//texts + buttonDisconnect.setText (lang.getString ("Return")); + + vector < string > controlItems; + controlItems.push_back (lang.getString ("Closed")); + controlItems.push_back (lang.getString ("CpuEasy")); + controlItems.push_back (lang.getString ("Cpu")); + controlItems.push_back (lang.getString ("CpuUltra")); + controlItems.push_back (lang.getString ("CpuMega")); + controlItems.push_back (lang.getString ("Network")); + controlItems.push_back (lang.getString ("NetworkUnassigned")); + controlItems.push_back (lang.getString ("Human")); + + if (config.getBool ("EnableNetworkCpu", "false") == true) + { + controlItems.push_back (lang.getString ("NetworkCpuEasy")); + controlItems.push_back (lang.getString ("NetworkCpu")); + controlItems.push_back (lang.getString ("NetworkCpuUltra")); + controlItems.push_back (lang.getString ("NetworkCpuMega")); + } + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + labelPlayers[i].setText (intToStr (i + 1)); + listBoxControls[i].setItems (controlItems); + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + labelScenario.setText (lang.getString ("Scenario")); + + labelAllowNativeLanguageTechtree.setText (lang.getString + ("AllowNativeLanguageTechtree")); + + buttonPlayNow.setText (lang.getString ("PlayNow")); + buttonRestoreLastSettings.setText (lang.getString + ("ReloadLastGameSettings")); + + chatManager.init (&console, -1, true); + + GraphicComponent::reloadFontsForRegisterGraphicComponents + (containerName); } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - //init controllers - listBoxControls[0].setSelectedItemIndex(ctHuman); + void + MenuStateConnectedGame::disconnectFromServer () + { + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (false); + if (clientInterface != NULL) + { + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + soundRenderer.playFx (coreData.getClickSoundA ()); + if (clientInterface->getSocket () != NULL) + { + if (clientInterface->isConnected () == true) + { + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + string sQuitText = lang.getString ("QuitGame", languageList[i]); + clientInterface->sendTextMessage (sQuitText, -1, false, + languageList[i]); + } + sleep (1); - //map listBox - // put them all in a set, to weed out duplicates (gbm & mgm with same name) - // will also ensure they are alphabetically listed (rather than how the OS provides them) - setupMapList(""); - listBoxMap.setItems(formattedPlayerSortedMaps[0]); + } + clientInterface->close (); + } + clientInterface->reset (); + } + currentFactionName = ""; + currentMap = ""; + } - int buttonx=165; - int buttony=180; + MenuStateConnectedGame::~MenuStateConnectedGame () + { + if (launchingNewGame == false) + { + disconnectFromServer (); + NetworkManager & networkManager = NetworkManager::getInstance (); + networkManager.end (); + } - listBoxPlayerStatus.registerGraphicComponent(containerName,"listBoxPlayerStatus"); - listBoxPlayerStatus.init(buttonx, buttony, 165); - listBoxPlayerStatus.setTextColor(Vec3f(1.0f,0.f,0.f)); - listBoxPlayerStatus.setLighted(true); - playerStatuses.push_back(lang.getString("PlayerStatusSetup")); - playerStatuses.push_back(lang.getString("PlayerStatusBeRightBack")); - playerStatuses.push_back(lang.getString("PlayerStatusReady")); - listBoxPlayerStatus.setItems(playerStatuses); - buttonx+=180; + if (modHttpServerThread != NULL) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); - buttonDisconnect.registerGraphicComponent(containerName,"buttonDisconnect"); - buttonDisconnect.init(buttonx, buttony, 125); - buttonx+=132; + modHttpServerThread->setSimpleTaskInterfaceValid (false); + modHttpServerThread->signalQuit (); + modHttpServerThread->setThreadOwnerValid (false); - buttonRestoreLastSettings.registerGraphicComponent(containerName,"buttonRestoreLastSettings"); - buttonRestoreLastSettings.init(buttonx, buttony, 240); - buttonRestoreLastSettings.setText(lang.getString("ReloadLastGameSettings")); - buttonx+=247; + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + if (modHttpServerThread->canShutdown (true) == true + && modHttpServerThread->shutdownAndWait () == true) + { + delete modHttpServerThread; + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + modHttpServerThread = NULL; + } - buttonPlayNow.registerGraphicComponent(containerName,"buttonPlayNow"); - buttonPlayNow.init(buttonx, buttony, 125); - buttonPlayNow.setText(lang.getString("PlayNow")); - buttonPlayNow.setVisible(false); + if (ftpClientThread != NULL) + { + ftpClientThread->setCallBackObject (NULL); + ftpClientThread->signalQuit (); + sleep (0); + if (ftpClientThread->canShutdown (true) == true && + ftpClientThread->shutdownAndWait () == true) + { + delete ftpClientThread; + } + else + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d] Error cannot shutdown ftpClientThread\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("%s", szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + } - // write hint to console: - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); + ftpClientThread = NULL; + } - console.addLine(lang.getString("ToSwitchOffMusicPress") + " - \"" + configKeys.getString("ToggleMusic") + "\""); - chatManager.init(&console, -1,true); + cleanupMapPreviewTexture (); - GraphicComponent::applyAllCustomProperties(containerName); + if (factionVideo != NULL) + { + factionVideo->closePlayer (); + delete factionVideo; + factionVideo = NULL; + } + } - //tileset listBox - setupTilesetList(""); + string MenuStateConnectedGame::refreshTilesetModInfo (string tilesetInfo) + { + std::vector < std::string > tilesetInfoList; + Tokenize (tilesetInfo, tilesetInfoList, "|"); + if (tilesetInfoList.size () >= 5) + { + Config & config = Config::getInstance (); + ModInfo modinfo; + modinfo.name = tilesetInfoList[0]; + modinfo.crc = tilesetInfoList[1]; + modinfo.description = tilesetInfoList[2]; + modinfo.url = tilesetInfoList[3]; + modinfo.imageUrl = tilesetInfoList[4]; + modinfo.type = mt_Tileset; - int initialTechSelection = setupTechList("",true); - listBoxTechTree.setSelectedItemIndex(initialTechSelection); + string + itemPath = + config.getPathListForType (ptTilesets, + "")[1] + "/" + modinfo.name + + string ("/*"); + if (itemPath.empty () == false) + { + bool + forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + uint32 + crc = + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", NULL, + forceRefresh); + if (crc == 0) + { + itemPath = + config.getPathListForType (ptTilesets, + "")[0] + "/" + modinfo.name + + string ("/*"); + if (itemPath.empty () == false) + { + forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + crc = + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", + NULL, forceRefresh); + } + } + modinfo.localCRC = uIntToStr (crc); +//printf("itemPath='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); +//printf("#1 refreshTilesetModInfo name [%s] modInfo.crc [%s] modInfo.localCRC [%s]\n",modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str()); + } + else + { + modinfo.localCRC = ""; - //scenario listbox - vector resultsScenarios; - findDirs(dirList, resultsScenarios); - // Filter out only scenarios with no network slots - for(int i= 0; i < (int)resultsScenarios.size(); ++i) { - string scenario = resultsScenarios[i]; - string file = Scenario::getScenarioPath(dirList, scenario); +//printf("#2 refreshTilesetModInfo name [%s] modInfo.crc [%s] modInfo.localCRC [%s]\n",modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str()); + } - try { - if(file != "") { - bool isTutorial = Scenario::isGameTutorial(file); - Scenario::loadScenarioInfo(file, &scenarioInfo, isTutorial); + tilesetCacheList[modinfo.name] = modinfo; + return modinfo.name; + } + return ""; + } - bool isNetworkScenario = false; - for(unsigned int j = 0; isNetworkScenario == false && j < (unsigned int)GameConstants::maxPlayers; ++j) { - if(scenarioInfo.factionControls[j] == ctNetwork) { - isNetworkScenario = true; - } - } - if(isNetworkScenario == true) { - scenarioFiles.push_back(scenario); - } - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError loading scenario [%s]:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,scenario.c_str(),ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); + string MenuStateConnectedGame::refreshTechModInfo (string techInfo) + { + std::vector < std::string > techInfoList; + Tokenize (techInfo, techInfoList, "|"); + if (techInfoList.size () >= 6) + { + Config & config = Config::getInstance (); + ModInfo modinfo; + modinfo.name = techInfoList[0]; + modinfo.count = techInfoList[1]; + modinfo.crc = techInfoList[2]; + modinfo.description = techInfoList[3]; + modinfo.url = techInfoList[4]; + modinfo.imageUrl = techInfoList[5]; + modinfo.type = mt_Techtree; - showMessageBox( szBuf, "Error", false); - //throw megaglest_runtime_error(szBuf); - } - } - resultsScenarios.clear(); - for(int i = 0; i < (int)scenarioFiles.size(); ++i) { - resultsScenarios.push_back(formatString(scenarioFiles[i])); - } - listBoxScenario.setItems(resultsScenarios); - checkBoxScenario.setEnabled(false); + string + itemPath = + config.getPathListForType (ptTechs, + "")[1] + "/" + modinfo.name + + string ("/*"); + if (itemPath.empty () == false) + { + bool + forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + uint32 + crc = + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", NULL, + forceRefresh); + if (crc == 0) + { + itemPath = + config.getPathListForType (ptTechs, + "")[0] + "/" + modinfo.name + + string ("/*"); + if (itemPath.empty () == false) + { + forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + crc = + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", + NULL, forceRefresh); + } + } + modinfo.localCRC = uIntToStr (crc); +//printf("itemPath='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); + } + else + { + modinfo.localCRC = ""; + } + techCacheList[modinfo.name] = modinfo; + return modinfo.name; + } + return ""; + } - if(config.getBool("EnableFTPXfer","true") == true) { - ClientInterface *clientInterface = networkManager.getClientInterface(); - string serverUrl = clientInterface->getServerIpAddress(); - int portNumber = clientInterface->getServerFTPPort(); + string MenuStateConnectedGame::getMapCRC (string mapName) + { + Config & config = Config::getInstance (); + vector < string > mappaths = config.getPathListForType (ptMaps, ""); + string result = ""; + if (mappaths.empty () == false) + { + Checksum checksum; + string itemPath = mappaths[1] + "/" + mapName; + if (fileExists (itemPath)) + { + checksum.addFile (itemPath); + uint32 crc = checksum.getSum (); + result = uIntToStr (crc); +//printf("itemPath='%s' modinfo.name='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); + } + else + { + itemPath = mappaths[0] + "/" + mapName; + if (fileExists (itemPath)) + { + checksum.addFile (itemPath); + uint32 crc = checksum.getSum (); + result = uIntToStr (crc); +//printf("itemPath='%s' modinfo.name='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); + } + else + { + result = ""; + } + } + } + else + { + result = ""; + } + return result; + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] Using FTP port #: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,portNumber); + string MenuStateConnectedGame::refreshMapModInfo (string mapInfo) + { + std::vector < std::string > mapInfoList; + Tokenize (mapInfo, mapInfoList, "|"); + if (mapInfoList.size () >= 6) + { +//Config &config = Config::getInstance(); + ModInfo modinfo; + modinfo.name = mapInfoList[0]; + modinfo.count = mapInfoList[1]; + modinfo.crc = mapInfoList[2]; + modinfo.description = mapInfoList[3]; + modinfo.url = mapInfoList[4]; + modinfo.imageUrl = mapInfoList[5]; + modinfo.type = mt_Map; + modinfo.localCRC = getMapCRC (modinfo.name); + mapCacheList[modinfo.name] = modinfo; + return modinfo.name; + } + return ""; + } - vector mapPathList = config.getPathListForType(ptMaps); - std::pair mapsPath; - if(mapPathList.empty() == false) { + void + MenuStateConnectedGame::simpleTask (BaseThread * callingThread, + void *userdata) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + static + string + mutexOwnerId = string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexThreadOwner (callingThread->getMutexThreadOwnerValid (), + mutexOwnerId); + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + callingThread->getMutexThreadOwnerValid ()->setOwnerId (mutexOwnerId); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + Lang & lang = Lang::getInstance (); + Config & config = Config::getInstance (); + + std::string techsMetaData = ""; + std::string tilesetsMetaData = ""; + std::string mapsMetaData = ""; + std::string scenariosMetaData = ""; + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (config.getString ("Masterserver", "") != "") + { + string baseURL = config.getString ("Masterserver"); + if (baseURL != "") + { + endPathWithSlash (baseURL, false); + } + string + phpVersionParam = + config.getString ("phpVersionParam", "?version=0.1"); + string + gameVersion = + "&glestVersion=" + SystemFlags::escapeURL (glestVersionString); + string + playerUUID = + "&uuid=" + + SystemFlags::escapeURL (config.getString ("PlayerId", "")); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("In [%s::%s Line %d] About to call first http url, base [%s]..\n", + __FILE__, __FUNCTION__, __LINE__, baseURL.c_str ()); + + CURL * + handle = SystemFlags::initHTTP (); + CURLcode curlResult = CURLE_OK; + techsMetaData = + SystemFlags::getHTTP (baseURL + "showTechsForGlest.php" + + phpVersionParam + gameVersion + playerUUID, + handle, -1, &curlResult); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("techsMetaData [%s] curlResult = %d\n", + techsMetaData.c_str (), curlResult); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + if (curlResult != CURLE_OK) + { + string curlError = curl_easy_strerror (curlResult); + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModErrorGettingServerData").c_str (), + curlError.c_str ()); + console.addLine (string ("#1 ") + szBuf, true); + } + + if (curlResult == CURLE_OK || + (curlResult != CURLE_COULDNT_RESOLVE_HOST && + curlResult != CURLE_COULDNT_CONNECT)) + { + + tilesetsMetaData = + SystemFlags::getHTTP (baseURL + "showTilesetsForGlest.php" + + phpVersionParam + gameVersion, handle, -1, + &curlResult); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("tilesetsMetaData [%s]\n", tilesetsMetaData.c_str ()); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + if (curlResult != CURLE_OK) + { + string curlError = curl_easy_strerror (curlResult); + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModErrorGettingServerData").c_str (), + curlError.c_str ()); + console.addLine (string ("#2 ") + szBuf, true); + } + + mapsMetaData = + SystemFlags::getHTTP (baseURL + "showMapsForGlest.php" + + phpVersionParam + gameVersion, handle, -1, + &curlResult); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("mapsMetaData [%s]\n", mapsMetaData.c_str ()); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + if (curlResult != CURLE_OK) + { + string curlError = curl_easy_strerror (curlResult); + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModErrorGettingServerData").c_str (), + curlError.c_str ()); + console.addLine (string ("#3 ") + szBuf, true); + } + + scenariosMetaData = + SystemFlags::getHTTP (baseURL + "showScenariosForGlest.php" + + phpVersionParam + gameVersion, handle, -1, + &curlResult); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("scenariosMetaData [%s]\n", scenariosMetaData.c_str ()); + + if (curlResult != CURLE_OK) + { + string curlError = curl_easy_strerror (curlResult); + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModErrorGettingServerData").c_str (), + curlError.c_str ()); + console.addLine (string ("#4 ") + szBuf, true); + } + } + SystemFlags::cleanupHTTP (&handle); + } + else + { + console.addLine (lang.getString ("MasterServerMissing"), true); + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + MutexSafeWrapper + safeMutex (callingThread->getMutexThreadObjectAccessor (), + string (__FILE__) + "_" + intToStr (__LINE__)); + tilesetListRemote.clear (); + Tokenize (tilesetsMetaData, tilesetListRemote, "\n"); + safeMutex.ReleaseLock (true); + + for (unsigned int i = 0; i < tilesetListRemote.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + safeMutex.Lock (); + string result = refreshTilesetModInfo (tilesetListRemote[i]); + safeMutex.ReleaseLock (true); + } + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + safeMutex.Lock (); + techListRemote.clear (); + Tokenize (techsMetaData, techListRemote, "\n"); + safeMutex.ReleaseLock (true); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + for (unsigned int i = 0; i < techListRemote.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + safeMutex.Lock (); + string result = refreshTechModInfo (techListRemote[i]); + safeMutex.ReleaseLock (true); + } + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + safeMutex.Lock (); + mapListRemote.clear (); + Tokenize (mapsMetaData, mapListRemote, "\n"); + safeMutex.ReleaseLock (true); + + for (unsigned int i = 0; i < mapListRemote.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + safeMutex.Lock (); + string result = refreshMapModInfo (mapListRemote[i]); + safeMutex.ReleaseLock (true); + } + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + if (modHttpServerThread != NULL) + { + modHttpServerThread->signalQuit (); + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + } + + void + MenuStateConnectedGame::mouseClick (int x, int y, MouseButton mouseButton) + { + + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + Lang & lang = Lang::getInstance (); + + string advanceToItemStartingWith = ""; + if (mainMessageBox.getEnabled () == false) + { + if (::Shared::Platform::Window::isKeyStateModPressed (KMOD_SHIFT) == + true) + { + wchar_t + lastKey =::Shared::Platform::Window::extractLastKeyPressed (); +//printf("lastKey = %d [%c]\n",lastKey,lastKey); + advanceToItemStartingWith = lastKey; + } + } + + if (mapPreviewTexture != NULL) + { +// printf("X: %d Y: %d [%d, %d, %d, %d]\n", +// x, y, +// this->render_mapPreviewTexture_X, this->render_mapPreviewTexture_X + this->render_mapPreviewTexture_W, +// this->render_mapPreviewTexture_Y, this->render_mapPreviewTexture_Y + this->render_mapPreviewTexture_H); + + if (x >= this->render_mapPreviewTexture_X + && x <= + this->render_mapPreviewTexture_X + + this->render_mapPreviewTexture_W + && y >= this->render_mapPreviewTexture_Y + && y <= + this->render_mapPreviewTexture_Y + + this->render_mapPreviewTexture_H) + { + + if (this->render_mapPreviewTexture_X == mapPreviewTexture_X && + this->render_mapPreviewTexture_Y == mapPreviewTexture_Y && + this->render_mapPreviewTexture_W == mapPreviewTexture_W && + this->render_mapPreviewTexture_H == mapPreviewTexture_H) + { + + const + Metrics & + metrics = Metrics::getInstance (); + + this->render_mapPreviewTexture_X = 0; + this->render_mapPreviewTexture_Y = 0; + this->render_mapPreviewTexture_W = metrics.getVirtualW (); + this->render_mapPreviewTexture_H = metrics.getVirtualH (); + this->zoomedMap = true; + + cleanupMapPreviewTexture (); + } + else + { + this->render_mapPreviewTexture_X = mapPreviewTexture_X; + this->render_mapPreviewTexture_Y = mapPreviewTexture_Y; + this->render_mapPreviewTexture_W = mapPreviewTexture_W; + this->render_mapPreviewTexture_H = mapPreviewTexture_H; + this->zoomedMap = false; + + cleanupMapPreviewTexture (); + } + return; + } + if (this->zoomedMap == true) + { + return; + } + } + + if (mainMessageBox.getEnabled ()) + { + int + button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (button == 0) + { + mainMessageBox.setEnabled (false); + } + } + } + else if (ftpMessageBox.getEnabled ()) + { + int + button = 0; + if (ftpMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + ftpMessageBox.setEnabled (false); + + if (button == 0 + || (button == 1 && ftpMessageBox.getButtonCount () == 3)) + { + if (ftpMissingDataType == ftpmsg_MissingMap) + { + getMissingMapFromFTPServerInProgress = true; + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingMapNowDownloading", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingMapNowDownloading", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + getMissingMapFromFTPServer.c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s is attempting to download the map: %s", + getHumanPlayerName ().c_str (), + getMissingMapFromFTPServer.c_str ()); + } + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (szMsg, -1, localEcho, + languageList[i]); + } + + if (ftpClientThread != NULL) + { + if (button == 0 && ftpMessageBox.getButtonCount () == 3) + { + string mapName = getMissingMapFromFTPServer; + + MutexSafeWrapper + safeMutexThread ((modHttpServerThread != + NULL ? + modHttpServerThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + string mapURL = mapCacheList[mapName].url; + safeMutexThread.ReleaseLock (); + + if (ftpClientThread != NULL) + ftpClientThread->addMapToRequests (mapName, mapURL); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? + ftpClientThread->getProgressMutex + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + fileFTPProgressList[getMissingMapFromFTPServer] = + pair < int, + string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + } + else + { + ftpClientThread->addMapToRequests + (getMissingMapFromFTPServer); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? + ftpClientThread->getProgressMutex + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + fileFTPProgressList[getMissingMapFromFTPServer] = + pair < int, + string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + } + } + } + else if (ftpMissingDataType == ftpmsg_MissingTileset) + { + getMissingTilesetFromFTPServerInProgress = true; + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTilesetNowDownloading", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString + ("DataMissingTilesetNowDownloading", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + getMissingTilesetFromFTPServer.c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s is attempting to download the tileset: %s", + getHumanPlayerName ().c_str (), + getMissingTilesetFromFTPServer.c_str ()); + } + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (szMsg, -1, localEcho, + languageList[i]); + } + + if (ftpClientThread != NULL) + { + if (button == 0 && ftpMessageBox.getButtonCount () == 3) + { + string tilesetName = getMissingTilesetFromFTPServer; + + MutexSafeWrapper + safeMutexThread ((modHttpServerThread != + NULL ? + modHttpServerThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + string tilesetURL = tilesetCacheList[tilesetName].url; + safeMutexThread.ReleaseLock (); + + if (ftpClientThread != NULL) + ftpClientThread->addTilesetToRequests (tilesetName, + tilesetURL); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? + ftpClientThread->getProgressMutex + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + fileFTPProgressList[getMissingTilesetFromFTPServer] = + pair < int, + string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + } + else + { + ftpClientThread->addTilesetToRequests + (getMissingTilesetFromFTPServer); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? + ftpClientThread->getProgressMutex + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + fileFTPProgressList[getMissingTilesetFromFTPServer] = + pair < int, + string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + } + } + } + else if (ftpMissingDataType == ftpmsg_MissingTechtree) + { + getMissingTechtreeFromFTPServerInProgress = true; + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTechtreeNowDownloading", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString + ("DataMissingTechtreeNowDownloading", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + getMissingTechtreeFromFTPServer.c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s is attempting to download the techtree: %s", + getHumanPlayerName ().c_str (), + getMissingTechtreeFromFTPServer.c_str ()); + } + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (szMsg, -1, localEcho, + languageList[i]); + } + + if (ftpClientThread != NULL) + { + if (button == 0 && ftpMessageBox.getButtonCount () == 3) + { + string techName = getMissingTechtreeFromFTPServer; + + MutexSafeWrapper + safeMutexThread ((modHttpServerThread != + NULL ? + modHttpServerThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + string techURL = techCacheList[techName].url; + safeMutexThread.ReleaseLock (); + + if (ftpClientThread != NULL) + ftpClientThread->addTechtreeToRequests (techName, + techURL); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? + ftpClientThread->getProgressMutex + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + fileFTPProgressList[getMissingTechtreeFromFTPServer] = + pair < int, + string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + } + else + { + ftpClientThread->addTechtreeToRequests + (getMissingTechtreeFromFTPServer); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? + ftpClientThread->getProgressMutex + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + fileFTPProgressList[getMissingTechtreeFromFTPServer] = + pair < int, + string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + } + } + } + } + } + } + else if (buttonCancelDownloads.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + + if (ftpClientThread != NULL && fileFTPProgressList.empty () == false) + { + + ftpClientThread->setCallBackObject (NULL); + ftpClientThread->signalQuit (); + sleep (0); + if (ftpClientThread->canShutdown (true) == true && + ftpClientThread->shutdownAndWait () == true) + { + delete ftpClientThread; + } + else + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d] Error cannot shutdown ftpClientThread\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("%s", szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", + szBuf); + } + ftpClientThread = NULL; + + fileFTPProgressList.clear (); + getMissingMapFromFTPServerInProgress = false; + getMissingTilesetFromFTPServerInProgress = false; + getMissingTechtreeFromFTPServerInProgress = false; + getMissingMapFromFTPServer = ""; + getMissingTilesetFromFTPServer = ""; + getMissingTechtreeFromFTPServer = ""; + getMissingMapFromFTPServerLastPrompted = 0; + getMissingTilesetFromFTPServerLastPrompted = 0; + getMissingTechtreeFromFTPServerLastPrompted = 0; + + ClientInterface * + clientInterface = networkManager.getClientInterface (); + if (clientInterface == NULL) + { + throw megaglest_runtime_error ("clientInterface == NULL"); + } + if (getInProgressSavedGameFromFTPServerInProgress == true) + { + if (clientInterface != NULL) + { + clientInterface->close (); + return; + } + } + + getInProgressSavedGameFromFTPServer = ""; + getInProgressSavedGameFromFTPServerInProgress = false; + + string serverUrl = clientInterface->getServerIpAddress (); + int + portNumber = clientInterface->getServerFTPPort (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] Using FTP port #: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, portNumber); + + Config & config = Config::getInstance (); + vector < string > mapPathList = config.getPathListForType (ptMaps); + std::pair < string, string > mapsPath; + if (mapPathList.empty () == false) + { mapsPath.first = mapPathList[0]; - } - if(mapPathList.size() > 1) { + } + if (mapPathList.size () > 1) + { mapsPath.second = mapPathList[1]; - } - std::pair tilesetsPath; - vector tilesetsList = Config::getInstance().getPathListForType(ptTilesets); - if(tilesetsList.empty() == false) { + } + std::pair < string, string > tilesetsPath; + vector < string > tilesetsList = + Config::getInstance ().getPathListForType (ptTilesets); + if (tilesetsList.empty () == false) + { tilesetsPath.first = tilesetsList[0]; - if(tilesetsList.size() > 1) { - tilesetsPath.second = tilesetsList[1]; + if (tilesetsList.size () > 1) + { + tilesetsPath.second = tilesetsList[1]; } - } + } - std::pair techtreesPath; - if(techtreesList.empty() == false) { - techtreesPath.first = techtreesList[0]; - if(techtreesList.size() > 1) { - techtreesPath.second = techtreesList[1]; + std::pair < string, string > techtreesPath; + vector < string > techtreesList = + Config::getInstance ().getPathListForType (ptTechs); + if (techtreesList.empty () == false) + { + techtreesPath.first = techtreesList[0]; + if (techtreesList.size () > 1) + { + techtreesPath.second = techtreesList[1]; } - } + } - std::pair scenariosPath; - vector scenariosList = Config::getInstance().getPathListForType(ptScenarios); - if(scenariosList.empty() == false) { - scenariosPath.first = scenariosList[0]; - if(scenariosList.size() > 1) { - scenariosPath.second = scenariosList[1]; + std::pair < string, string > scenariosPath; + vector < string > scenariosList = + Config::getInstance ().getPathListForType (ptScenarios); + if (scenariosList.empty () == false) + { + scenariosPath.first = scenariosList[0]; + if (scenariosList.size () > 1) + { + scenariosPath.second = scenariosList[1]; } - } + } - string fileArchiveExtension = config.getString("FileArchiveExtension",""); - string fileArchiveExtractCommand = config.getString("FileArchiveExtractCommand",""); - string fileArchiveExtractCommandParameters = config.getString("FileArchiveExtractCommandParameters",""); - int32 fileArchiveExtractCommandSuccessResult = config.getInt("FileArchiveExtractCommandSuccessResult","0"); + string + fileArchiveExtension = + config.getString ("FileArchiveExtension", ""); + string + fileArchiveExtractCommand = + config.getString ("FileArchiveExtractCommand", ""); + string + fileArchiveExtractCommandParameters = + config.getString ("FileArchiveExtractCommandParameters", ""); + int32 + fileArchiveExtractCommandSuccessResult = + config.getInt ("FileArchiveExtractCommandSuccessResult", "0"); - // Get path to temp files - string tempFilePath = "temp/"; - if(getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) != "") { - tempFilePath = getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) + tempFilePath; - } - else { - string userData = config.getString("UserData_Root",""); - if(userData != "") { - endPathWithSlash(userData); +// Get path to temp files + string tempFilePath = "temp/"; + if (getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) + != "") + { + tempFilePath = + getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) + + tempFilePath; + } + else + { + string userData = config.getString ("UserData_Root", ""); + if (userData != "") + { + endPathWithSlash (userData); } tempFilePath = userData + tempFilePath; - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Temp files path [%s]\n",tempFilePath.c_str()); - - ftpClientThread = new FTPClientThread(portNumber,serverUrl, - mapsPath,tilesetsPath,techtreesPath,scenariosPath, - this,fileArchiveExtension,fileArchiveExtractCommand, - fileArchiveExtractCommandParameters, - fileArchiveExtractCommandSuccessResult, - tempFilePath); - ftpClientThread->start(); - } - // Start http meta data thread - static string mutexOwnerId = string(extractFileFromDirectoryPath(__FILE__).c_str()) + string("_") + intToStr(__LINE__); - modHttpServerThread = new SimpleTaskThread(this,0,200); - modHttpServerThread->setUniqueID(mutexOwnerId); - modHttpServerThread->start(); - - ClientInterface *clientInterface = networkManager.getClientInterface(); - if(clientInterface != NULL && clientInterface->getJoinGameInProgress() == true) { - listBoxPlayerStatus.setVisible(false); - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("JoinPlayerToCurrentGameWelcome",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("JoinPlayerToCurrentGameWelcome",languageList[i]).c_str(),getHumanPlayerName().c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s has connected to the game and would like to join.",getHumanPlayerName().c_str()); - } - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(szMsg,-1, localEcho,languageList[i]); - } - sleep(1); - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateConnectedGame::reloadUI() { - Config &config = Config::getInstance(); - Lang &lang= Lang::getInstance(); - - console.resetFonts(); - mainMessageBox.init(lang.getString("Ok")); - ftpMessageBox.init(lang.getString("ModCenter"),lang.getString("GameHost")); - ftpMessageBox.addButton(lang.getString("NoDownload")); - - labelInfo.setFont(CoreData::getInstance().getMenuFontBig()); - labelInfo.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - labelWaitingForPlayers.setFont(CoreData::getInstance().getMenuFontBig()); - labelWaitingForPlayers.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - labelDataSynchInfo.setFont(CoreData::getInstance().getMenuFontBig()); - labelDataSynchInfo.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - buttonCancelDownloads.setText(lang.getString("CancelDownloads")); - - labelFogOfWar.setText(lang.getString("FogOfWar")); - - vector fowItems; - fowItems.push_back(lang.getString("Enabled")); - fowItems.push_back(lang.getString("Explored")); - fowItems.push_back(lang.getString("Disabled")); - listBoxFogOfWar.setItems(fowItems); - - labelAllowObservers.setText(lang.getString("AllowObservers")); - labelFallbackCpuMultiplier.setText(lang.getString("FallbackCpuMultiplier")); - - labelEnableSwitchTeamMode.setText(lang.getString("EnableSwitchTeamMode")); - - labelAllowTeamUnitSharing.setText(lang.getString("AllowTeamUnitSharing")); - labelAllowTeamResourceSharing.setText(lang.getString("AllowTeamResourceSharing")); - - labelAISwitchTeamAcceptPercent.setText(lang.getString("AISwitchTeamAcceptPercent")); - - vector aiswitchteamModeItems; - for(int i = 0; i <= 100; i = i + 10) { - aiswitchteamModeItems.push_back(intToStr(i)); - } - listBoxAISwitchTeamAcceptPercent.setItems(aiswitchteamModeItems); - - vector rMultiplier; - for(int i=0; i<45; ++i){ - rMultiplier.push_back(floatToStr(0.5f+0.1f*i,1)); - } - listBoxFallbackCpuMultiplier.setItems(rMultiplier); - - labelMap.setText(lang.getString("Map")); - - labelMapFilter.setText(lang.getString("MapFilter")); - - labelTileset.setText(lang.getString("Tileset")); - - labelTechTree.setText(lang.getString("TechTree")); - - vector playerstatusItems; - playerstatusItems.push_back(lang.getString("PlayerStatusSetup")); - playerstatusItems.push_back(lang.getString("PlayerStatusBeRightBack")); - playerstatusItems.push_back(lang.getString("PlayerStatusReady")); - listBoxPlayerStatus.setItems(playerstatusItems); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - labelControl.setText(lang.getString("Control")); - - labelFaction.setText(lang.getString("Faction")); - - labelTeam.setText(lang.getString("Team")); - - labelControl.setFont(CoreData::getInstance().getMenuFontBig()); - labelControl.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelFaction.setFont(CoreData::getInstance().getMenuFontBig()); - labelFaction.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelTeam.setFont(CoreData::getInstance().getMenuFontBig()); - labelTeam.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - //texts - buttonDisconnect.setText(lang.getString("Return")); - - vector controlItems; - controlItems.push_back(lang.getString("Closed")); - controlItems.push_back(lang.getString("CpuEasy")); - controlItems.push_back(lang.getString("Cpu")); - controlItems.push_back(lang.getString("CpuUltra")); - controlItems.push_back(lang.getString("CpuMega")); - controlItems.push_back(lang.getString("Network")); - controlItems.push_back(lang.getString("NetworkUnassigned")); - controlItems.push_back(lang.getString("Human")); - - if(config.getBool("EnableNetworkCpu","false") == true) { - controlItems.push_back(lang.getString("NetworkCpuEasy")); - controlItems.push_back(lang.getString("NetworkCpu")); - controlItems.push_back(lang.getString("NetworkCpuUltra")); - controlItems.push_back(lang.getString("NetworkCpuMega")); - } - - for(int i=0; i < GameConstants::maxPlayers; ++i) { - labelPlayers[i].setText(intToStr(i+1)); - listBoxControls[i].setItems(controlItems); - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - labelScenario.setText(lang.getString("Scenario")); - - labelAllowNativeLanguageTechtree.setText(lang.getString("AllowNativeLanguageTechtree")); - - buttonPlayNow.setText(lang.getString("PlayNow")); - buttonRestoreLastSettings.setText(lang.getString("ReloadLastGameSettings")); - - chatManager.init(&console, -1,true); - - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} - -void MenuStateConnectedGame::disconnectFromServer() { - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(false); - if(clientInterface != NULL) { - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - soundRenderer.playFx(coreData.getClickSoundA()); - if(clientInterface->getSocket() != NULL) { - if(clientInterface->isConnected() == true) { - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - string sQuitText = lang.getString("QuitGame",languageList[i]); - clientInterface->sendTextMessage(sQuitText,-1,false,languageList[i]); - } - sleep(1); - - } - clientInterface->close(); - } - clientInterface->reset(); - } - currentFactionName=""; - currentMap=""; -} - -MenuStateConnectedGame::~MenuStateConnectedGame() { - if(launchingNewGame == false) { - disconnectFromServer(); - NetworkManager &networkManager= NetworkManager::getInstance(); - networkManager.end(); - } - - if(modHttpServerThread != NULL) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - modHttpServerThread->setSimpleTaskInterfaceValid(false); - modHttpServerThread->signalQuit(); - modHttpServerThread->setThreadOwnerValid(false); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if( modHttpServerThread->canShutdown(true) == true && - modHttpServerThread->shutdownAndWait() == true) { - delete modHttpServerThread; - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - modHttpServerThread = NULL; - } - - if(ftpClientThread != NULL) { - ftpClientThread->setCallBackObject(NULL); - ftpClientThread->signalQuit(); - sleep(0); - if(ftpClientThread->canShutdown(true) == true && - ftpClientThread->shutdownAndWait() == true) { - delete ftpClientThread; - } - else { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error cannot shutdown ftpClientThread\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("%s",szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - } - - ftpClientThread = NULL; - } - - cleanupMapPreviewTexture(); - - if(factionVideo != NULL) { - factionVideo->closePlayer(); - delete factionVideo; - factionVideo = NULL; - } -} - -string MenuStateConnectedGame::refreshTilesetModInfo(string tilesetInfo) { - std::vector tilesetInfoList; - Tokenize(tilesetInfo,tilesetInfoList,"|"); - if(tilesetInfoList.size() >= 5) { - Config &config = Config::getInstance(); - ModInfo modinfo; - modinfo.name = tilesetInfoList[0]; - modinfo.crc = tilesetInfoList[1]; - modinfo.description = tilesetInfoList[2]; - modinfo.url = tilesetInfoList[3]; - modinfo.imageUrl = tilesetInfoList[4]; - modinfo.type = mt_Tileset; - - string itemPath = config.getPathListForType(ptTilesets,"")[1] + "/" + modinfo.name + string("/*"); - if(itemPath.empty() == false) { - bool forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - uint32 crc = getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh); - if(crc == 0) { - itemPath = config.getPathListForType(ptTilesets,"")[0] + "/" + modinfo.name + string("/*"); - if(itemPath.empty() == false) { - forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - crc=getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh); - } - } - modinfo.localCRC=uIntToStr(crc); - //printf("itemPath='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); - - //printf("#1 refreshTilesetModInfo name [%s] modInfo.crc [%s] modInfo.localCRC [%s]\n",modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str()); - } - else { - modinfo.localCRC=""; - - //printf("#2 refreshTilesetModInfo name [%s] modInfo.crc [%s] modInfo.localCRC [%s]\n",modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str()); - } - - tilesetCacheList[modinfo.name] = modinfo; - return modinfo.name; - } - return ""; -} - -string MenuStateConnectedGame::refreshTechModInfo(string techInfo) { - std::vector techInfoList; - Tokenize(techInfo,techInfoList,"|"); - if(techInfoList.size() >= 6) { - Config &config = Config::getInstance(); - ModInfo modinfo; - modinfo.name = techInfoList[0]; - modinfo.count = techInfoList[1]; - modinfo.crc = techInfoList[2]; - modinfo.description = techInfoList[3]; - modinfo.url = techInfoList[4]; - modinfo.imageUrl = techInfoList[5]; - modinfo.type = mt_Techtree; - - string itemPath = config.getPathListForType(ptTechs,"")[1] + "/" + modinfo.name + string("/*"); - if(itemPath.empty() == false) { - bool forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - uint32 crc = getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh); - if(crc == 0) { - itemPath = config.getPathListForType(ptTechs,"")[0] + "/" + modinfo.name + string("/*"); - if(itemPath.empty() == false) { - forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - crc = getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh); - } - } - modinfo.localCRC=uIntToStr(crc); - //printf("itemPath='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); - } - else { - modinfo.localCRC=""; - } - techCacheList[modinfo.name] = modinfo; - return modinfo.name; - } - return ""; -} - -string MenuStateConnectedGame::getMapCRC(string mapName) { - Config &config = Config::getInstance(); - vector mappaths=config.getPathListForType(ptMaps,""); - string result=""; - if(mappaths.empty() == false) { - Checksum checksum; - string itemPath = mappaths[1] + "/" + mapName; - if (fileExists(itemPath)){ - checksum.addFile(itemPath); - uint32 crc=checksum.getSum(); - result=uIntToStr(crc); - //printf("itemPath='%s' modinfo.name='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); - } - else { - itemPath = mappaths[0] + "/" + mapName; - if (fileExists(itemPath)){ - checksum.addFile(itemPath); - uint32 crc=checksum.getSum(); - result=uIntToStr(crc); - //printf("itemPath='%s' modinfo.name='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); - } - else { - result=""; - } - } - } - else { - result=""; - } - return result; -} - -string MenuStateConnectedGame::refreshMapModInfo(string mapInfo) { - std::vector mapInfoList; - Tokenize(mapInfo,mapInfoList,"|"); - if(mapInfoList.size() >= 6) { - //Config &config = Config::getInstance(); - ModInfo modinfo; - modinfo.name = mapInfoList[0]; - modinfo.count = mapInfoList[1]; - modinfo.crc = mapInfoList[2]; - modinfo.description = mapInfoList[3]; - modinfo.url = mapInfoList[4]; - modinfo.imageUrl = mapInfoList[5]; - modinfo.type = mt_Map; - modinfo.localCRC=getMapCRC(modinfo.name); - mapCacheList[modinfo.name] = modinfo; - return modinfo.name; - } - return ""; -} - -void MenuStateConnectedGame::simpleTask(BaseThread *callingThread,void *userdata) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexThreadOwner(callingThread->getMutexThreadOwnerValid(),mutexOwnerId); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - callingThread->getMutexThreadOwnerValid()->setOwnerId(mutexOwnerId); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - Lang &lang= Lang::getInstance(); - Config &config = Config::getInstance(); - - std::string techsMetaData = ""; - std::string tilesetsMetaData = ""; - std::string mapsMetaData = ""; - std::string scenariosMetaData = ""; - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(config.getString("Masterserver","") != "") { - string baseURL = config.getString("Masterserver"); - if(baseURL != "") { - endPathWithSlash(baseURL,false); - } - string phpVersionParam = config.getString("phpVersionParam","?version=0.1"); - string gameVersion = "&glestVersion=" + SystemFlags::escapeURL(glestVersionString); - string playerUUID = "&uuid=" + SystemFlags::escapeURL(config.getString("PlayerId","")); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] About to call first http url, base [%s]..\n",__FILE__,__FUNCTION__,__LINE__,baseURL.c_str()); - - CURL *handle = SystemFlags::initHTTP(); - CURLcode curlResult = CURLE_OK; - techsMetaData = SystemFlags::getHTTP(baseURL + "showTechsForGlest.php"+phpVersionParam+gameVersion+playerUUID,handle,-1,&curlResult); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("techsMetaData [%s] curlResult = %d\n",techsMetaData.c_str(),curlResult); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(curlResult != CURLE_OK) { - string curlError = curl_easy_strerror(curlResult); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModErrorGettingServerData").c_str(),curlError.c_str()); - console.addLine(string("#1 ") + szBuf,true); - } - - if(curlResult == CURLE_OK || - (curlResult != CURLE_COULDNT_RESOLVE_HOST && - curlResult != CURLE_COULDNT_CONNECT)) { - - tilesetsMetaData = SystemFlags::getHTTP(baseURL + "showTilesetsForGlest.php"+phpVersionParam+gameVersion,handle,-1,&curlResult); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("tilesetsMetaData [%s]\n",tilesetsMetaData.c_str()); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(curlResult != CURLE_OK) { - string curlError = curl_easy_strerror(curlResult); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModErrorGettingServerData").c_str(),curlError.c_str()); - console.addLine(string("#2 ") + szBuf,true); - } - - mapsMetaData = SystemFlags::getHTTP(baseURL + "showMapsForGlest.php"+phpVersionParam+gameVersion,handle,-1,&curlResult); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("mapsMetaData [%s]\n",mapsMetaData.c_str()); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(curlResult != CURLE_OK) { - string curlError = curl_easy_strerror(curlResult); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModErrorGettingServerData").c_str(),curlError.c_str()); - console.addLine(string("#3 ") + szBuf,true); - } - - scenariosMetaData = SystemFlags::getHTTP(baseURL + "showScenariosForGlest.php"+phpVersionParam+gameVersion,handle,-1,&curlResult); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("scenariosMetaData [%s]\n",scenariosMetaData.c_str()); - - if(curlResult != CURLE_OK) { - string curlError = curl_easy_strerror(curlResult); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModErrorGettingServerData").c_str(),curlError.c_str()); - console.addLine(string("#4 ") + szBuf,true); - } - } - SystemFlags::cleanupHTTP(&handle); - } - else { - console.addLine(lang.getString("MasterServerMissing"),true); - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - MutexSafeWrapper safeMutex(callingThread->getMutexThreadObjectAccessor(),string(__FILE__) + "_" + intToStr(__LINE__)); - tilesetListRemote.clear(); - Tokenize(tilesetsMetaData,tilesetListRemote,"\n"); - safeMutex.ReleaseLock(true); - - for(unsigned int i=0; i < tilesetListRemote.size(); i++) { - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - safeMutex.Lock(); - string result=refreshTilesetModInfo(tilesetListRemote[i]); - safeMutex.ReleaseLock(true); - } - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - safeMutex.Lock(); - techListRemote.clear(); - Tokenize(techsMetaData,techListRemote,"\n"); - safeMutex.ReleaseLock(true); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - for(unsigned int i=0; i < techListRemote.size(); i++) { - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - safeMutex.Lock(); - string result=refreshTechModInfo(techListRemote[i]); - safeMutex.ReleaseLock(true); - } - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - safeMutex.Lock(); - mapListRemote.clear(); - Tokenize(mapsMetaData,mapListRemote,"\n"); - safeMutex.ReleaseLock(true); - - for(unsigned int i=0; i < mapListRemote.size(); i++) { - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - safeMutex.Lock(); - string result=refreshMapModInfo(mapListRemote[i]); - safeMutex.ReleaseLock(true); - } - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(modHttpServerThread != NULL) { - modHttpServerThread->signalQuit(); - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); -} - -void MenuStateConnectedGame::mouseClick(int x, int y, MouseButton mouseButton){ - - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - Lang &lang= Lang::getInstance(); - - string advanceToItemStartingWith = ""; - if(mainMessageBox.getEnabled() == false) { - if(::Shared::Platform::Window::isKeyStateModPressed(KMOD_SHIFT) == true) { - wchar_t lastKey = ::Shared::Platform::Window::extractLastKeyPressed(); - //printf("lastKey = %d [%c]\n",lastKey,lastKey); - advanceToItemStartingWith = lastKey; - } - } - - if(mapPreviewTexture != NULL) { -// printf("X: %d Y: %d [%d, %d, %d, %d]\n", -// x, y, -// this->render_mapPreviewTexture_X, this->render_mapPreviewTexture_X + this->render_mapPreviewTexture_W, -// this->render_mapPreviewTexture_Y, this->render_mapPreviewTexture_Y + this->render_mapPreviewTexture_H); - - if( x >= this->render_mapPreviewTexture_X && x <= this->render_mapPreviewTexture_X + this->render_mapPreviewTexture_W && - y >= this->render_mapPreviewTexture_Y && y <= this->render_mapPreviewTexture_Y + this->render_mapPreviewTexture_H) { - - if( this->render_mapPreviewTexture_X == mapPreviewTexture_X && - this->render_mapPreviewTexture_Y == mapPreviewTexture_Y && - this->render_mapPreviewTexture_W == mapPreviewTexture_W && - this->render_mapPreviewTexture_H == mapPreviewTexture_H) { - - const Metrics &metrics= Metrics::getInstance(); - - this->render_mapPreviewTexture_X = 0; - this->render_mapPreviewTexture_Y = 0; - this->render_mapPreviewTexture_W = metrics.getVirtualW(); - this->render_mapPreviewTexture_H = metrics.getVirtualH(); - this->zoomedMap = true; - - cleanupMapPreviewTexture(); - } - else { - this->render_mapPreviewTexture_X = mapPreviewTexture_X; - this->render_mapPreviewTexture_Y = mapPreviewTexture_Y; - this->render_mapPreviewTexture_W = mapPreviewTexture_W; - this->render_mapPreviewTexture_H = mapPreviewTexture_H; - this->zoomedMap = false; - - cleanupMapPreviewTexture(); - } - return; - } - if(this->zoomedMap==true){ - return; - } - } - - if(mainMessageBox.getEnabled()) { - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - soundRenderer.playFx(coreData.getClickSoundA()); - if(button == 0) { - mainMessageBox.setEnabled(false); - } - } - } - else if(ftpMessageBox.getEnabled()) { - int button= 0; - if(ftpMessageBox.mouseClick(x, y, button)) { - soundRenderer.playFx(coreData.getClickSoundA()); - ftpMessageBox.setEnabled(false); - - if(button == 0 || (button == 1 && ftpMessageBox.getButtonCount() == 3)) { - if(ftpMissingDataType == ftpmsg_MissingMap) { - getMissingMapFromFTPServerInProgress = true; - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingMapNowDownloading",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingMapNowDownloading",languageList[i]).c_str(),getHumanPlayerName().c_str(),getMissingMapFromFTPServer.c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is attempting to download the map: %s",getHumanPlayerName().c_str(),getMissingMapFromFTPServer.c_str()); - } - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(szMsg,-1, localEcho,languageList[i]); - } - - if(ftpClientThread != NULL) { - if(button == 0 && ftpMessageBox.getButtonCount() == 3) { - string mapName = getMissingMapFromFTPServer; - - MutexSafeWrapper safeMutexThread((modHttpServerThread != NULL ? modHttpServerThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - string mapURL = mapCacheList[mapName].url; - safeMutexThread.ReleaseLock(); - - if(ftpClientThread != NULL) ftpClientThread->addMapToRequests(mapName,mapURL); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - fileFTPProgressList[getMissingMapFromFTPServer] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - } - else { - ftpClientThread->addMapToRequests(getMissingMapFromFTPServer); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - fileFTPProgressList[getMissingMapFromFTPServer] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - } - } - } - else if(ftpMissingDataType == ftpmsg_MissingTileset) { - getMissingTilesetFromFTPServerInProgress = true; - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingTilesetNowDownloading",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTilesetNowDownloading",languageList[i]).c_str(),getHumanPlayerName().c_str(),getMissingTilesetFromFTPServer.c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is attempting to download the tileset: %s",getHumanPlayerName().c_str(),getMissingTilesetFromFTPServer.c_str()); - } - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(szMsg,-1, localEcho,languageList[i]); - } - - if(ftpClientThread != NULL) { - if(button == 0 && ftpMessageBox.getButtonCount() == 3) { - string tilesetName = getMissingTilesetFromFTPServer; - - MutexSafeWrapper safeMutexThread((modHttpServerThread != NULL ? modHttpServerThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - string tilesetURL = tilesetCacheList[tilesetName].url; - safeMutexThread.ReleaseLock(); - - if(ftpClientThread != NULL) ftpClientThread->addTilesetToRequests(tilesetName,tilesetURL); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - fileFTPProgressList[getMissingTilesetFromFTPServer] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - } - else { - ftpClientThread->addTilesetToRequests(getMissingTilesetFromFTPServer); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - fileFTPProgressList[getMissingTilesetFromFTPServer] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - } - } - } - else if(ftpMissingDataType == ftpmsg_MissingTechtree) { - getMissingTechtreeFromFTPServerInProgress = true; - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingTechtreeNowDownloading",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTechtreeNowDownloading",languageList[i]).c_str(),getHumanPlayerName().c_str(),getMissingTechtreeFromFTPServer.c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is attempting to download the techtree: %s",getHumanPlayerName().c_str(),getMissingTechtreeFromFTPServer.c_str()); - } - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(szMsg,-1, localEcho,languageList[i]); - } - - if(ftpClientThread != NULL) { - if(button == 0 && ftpMessageBox.getButtonCount() == 3) { - string techName = getMissingTechtreeFromFTPServer; - - MutexSafeWrapper safeMutexThread((modHttpServerThread != NULL ? modHttpServerThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - string techURL = techCacheList[techName].url; - safeMutexThread.ReleaseLock(); - - if(ftpClientThread != NULL) ftpClientThread->addTechtreeToRequests(techName,techURL); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - fileFTPProgressList[getMissingTechtreeFromFTPServer] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - } - else { - ftpClientThread->addTechtreeToRequests(getMissingTechtreeFromFTPServer); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - fileFTPProgressList[getMissingTechtreeFromFTPServer] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - } - } - } - } - } - } - else if(buttonCancelDownloads.mouseClick(x,y)) { - soundRenderer.playFx(coreData.getClickSoundA()); - - if(ftpClientThread != NULL && fileFTPProgressList.empty() == false) { - - ftpClientThread->setCallBackObject(NULL); - ftpClientThread->signalQuit(); - sleep(0); - if(ftpClientThread->canShutdown(true) == true && - ftpClientThread->shutdownAndWait() == true) { - delete ftpClientThread; - } - else { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error cannot shutdown ftpClientThread\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("%s",szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - } - ftpClientThread = NULL; - - fileFTPProgressList.clear(); - getMissingMapFromFTPServerInProgress = false; - getMissingTilesetFromFTPServerInProgress = false; - getMissingTechtreeFromFTPServerInProgress = false; - getMissingMapFromFTPServer = ""; - getMissingTilesetFromFTPServer = ""; - getMissingTechtreeFromFTPServer = ""; - getMissingMapFromFTPServerLastPrompted = 0; - getMissingTilesetFromFTPServerLastPrompted = 0; - getMissingTechtreeFromFTPServerLastPrompted = 0; - - ClientInterface *clientInterface = networkManager.getClientInterface(); - if(clientInterface == NULL) { - throw megaglest_runtime_error("clientInterface == NULL"); - } - if(getInProgressSavedGameFromFTPServerInProgress == true) { - if(clientInterface != NULL) { - clientInterface->close(); - return; - } - } - - getInProgressSavedGameFromFTPServer = ""; - getInProgressSavedGameFromFTPServerInProgress = false; - - string serverUrl = clientInterface->getServerIpAddress(); - int portNumber = clientInterface->getServerFTPPort(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] Using FTP port #: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,portNumber); - - Config &config = Config::getInstance(); - vector mapPathList = config.getPathListForType(ptMaps); - std::pair mapsPath; - if(mapPathList.empty() == false) { - mapsPath.first = mapPathList[0]; - } - if(mapPathList.size() > 1) { - mapsPath.second = mapPathList[1]; - } - std::pair tilesetsPath; - vector tilesetsList = Config::getInstance().getPathListForType(ptTilesets); - if(tilesetsList.empty() == false) { - tilesetsPath.first = tilesetsList[0]; - if(tilesetsList.size() > 1) { - tilesetsPath.second = tilesetsList[1]; - } - } - - std::pair techtreesPath; - vector techtreesList = Config::getInstance().getPathListForType(ptTechs); - if(techtreesList.empty() == false) { - techtreesPath.first = techtreesList[0]; - if(techtreesList.size() > 1) { - techtreesPath.second = techtreesList[1]; - } - } - - std::pair scenariosPath; - vector scenariosList = Config::getInstance().getPathListForType(ptScenarios); - if(scenariosList.empty() == false) { - scenariosPath.first = scenariosList[0]; - if(scenariosList.size() > 1) { - scenariosPath.second = scenariosList[1]; - } - } - - string fileArchiveExtension = config.getString("FileArchiveExtension",""); - string fileArchiveExtractCommand = config.getString("FileArchiveExtractCommand",""); - string fileArchiveExtractCommandParameters = config.getString("FileArchiveExtractCommandParameters",""); - int32 fileArchiveExtractCommandSuccessResult = config.getInt("FileArchiveExtractCommandSuccessResult","0"); - - // Get path to temp files - string tempFilePath = "temp/"; - if(getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) != "") { - tempFilePath = getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) + tempFilePath; - } - else { - string userData = config.getString("UserData_Root",""); - if(userData != "") { - endPathWithSlash(userData); - } - tempFilePath = userData + tempFilePath; - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Temp files path [%s]\n",tempFilePath.c_str()); - - ftpClientThread = new FTPClientThread(portNumber,serverUrl, - mapsPath,tilesetsPath,techtreesPath,scenariosPath, - this,fileArchiveExtension,fileArchiveExtractCommand, - fileArchiveExtractCommandParameters, - fileArchiveExtractCommandSuccessResult, - tempFilePath); - ftpClientThread->start(); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("CancelDownloadsMsg",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("CancelDownloadsMsg",languageList[i]).c_str(),getHumanPlayerName().c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s cancelled all file downloads.",getHumanPlayerName().c_str()); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - } - } - else if(buttonDisconnect.mouseClick(x,y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - disconnectFromServer(); - networkManager.end(); - returnToJoinMenu(); - return; - } - - if (initialSettingsReceivedFromServer == false) { - return; - } - - if(activeInputLabel != NULL && activeInputLabel->mouseClick(x,y) == false){ - setActiveInputLabel(NULL); - } - - // Only allow changes after we get game settings from the server - if(clientInterface != NULL && clientInterface->isConnected() == true) { - int myCurrentIndex= -1; - for(int i= 0; i < GameConstants::maxPlayers; ++i) {// find my current index by looking at editable listBoxes - if(//listBoxFactions[i].getEditable() && - clientInterface->getGameSettings()->getStartLocationIndex(clientInterface->getGameSettings()->getThisFactionIndex()) == i) { - myCurrentIndex= i; - } - } - - //printf("myCurrentIndex = %d thisFactionIndex = %d\n",myCurrentIndex,clientInterface->getGameSettings()->getThisFactionIndex()); - - if(myCurrentIndex != -1) - for(int i= 0; i < GameConstants::maxPlayers; ++i) { - if(listBoxFactions[i].getEditable() && - clientInterface->getGameSettings()->getStartLocationIndex(clientInterface->getGameSettings()->getThisFactionIndex()) == i) { - if(listBoxFactions[i].mouseClick(x, y,advanceToItemStartingWith)) { - soundRenderer.playFx(coreData.getClickSoundA()); - ClientInterface* clientInterface= NetworkManager::getInstance().getClientInterface(); - if(clientInterface->isConnected()) { - clientInterface->setGameSettingsReceived(false); - clientInterface->sendSwitchSetupRequest( - listBoxFactions[i].getSelectedItem(), - i, - -1, - listBoxTeams[i].getSelectedItemIndex(), - getHumanPlayerName(), - getNetworkPlayerStatus(), - switchSetupRequestFlagType, - lang.getLanguage()); - switchSetupRequestFlagType= ssrft_None; - noReceiveTimer=time(NULL); - } - break; - } - } - if(listBoxTeams[i].getEditable() && - clientInterface->getGameSettings()->getStartLocationIndex(clientInterface->getGameSettings()->getThisFactionIndex()) == i) { - if(listBoxTeams[i].mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - if(clientInterface->isConnected()){ - clientInterface->setGameSettingsReceived(false); - clientInterface->sendSwitchSetupRequest( - listBoxFactions[i].getSelectedItem(), - i, - -1, - listBoxTeams[i].getSelectedItemIndex(), - getHumanPlayerName(), - getNetworkPlayerStatus(), - switchSetupRequestFlagType, - lang.getLanguage()); - switchSetupRequestFlagType= ssrft_None; - } - break; - } - } - - bool canGrabSlot = false; - ClientInterface *clientInterface = networkManager.getClientInterface(); - if(clientInterface != NULL && clientInterface->getJoinGameInProgress() == true) { - canGrabSlot = ((listBoxControls[i].getSelectedItemIndex() == ctNetwork && - labelNetStatus[i].getText() == GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) || - (listBoxControls[i].getSelectedItemIndex() != ctHuman && - listBoxControls[i].getSelectedItemIndex() != ctClosed && - listBoxControls[i].getSelectedItemIndex() != ctNetwork)); - } - else { - canGrabSlot = (listBoxControls[i].getSelectedItemIndex() == ctNetwork && - labelNetStatus[i].getText() == GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME); - } - - if(canGrabSlot == true) { - if(clientInterface != NULL && i < mapInfo.players && grabSlotButton[i].mouseClick(x, y)) { - //printf("Send slot switch request for slot = %d, myCurrentIndex = %d\n",i,myCurrentIndex); - - soundRenderer.playFx(coreData.getClickSoundB()); - clientInterface->setGameSettingsReceived(false); - settingsReceivedFromServer= false; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] sending a switchSlot request from %d to %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,clientInterface->getGameSettings()->getThisFactionIndex(),i); - - //printf("Switch slot from %d to %d\n",myCurrentIndex,i); - - string desiredFactionName = listBoxFactions[myCurrentIndex].getSelectedItem(); - int desiredTeamIndex = listBoxTeams[myCurrentIndex].getSelectedItemIndex(); - if(checkBoxScenario.getValue() == true) { - desiredFactionName = listBoxFactions[i].getSelectedItem(); - desiredTeamIndex = listBoxTeams[i].getSelectedItemIndex(); - } - - //printf("Sending switch slot request to server...\n"); - - clientInterface->sendSwitchSetupRequest( - desiredFactionName, - myCurrentIndex, - i, - desiredTeamIndex, - getHumanPlayerName(), - getNetworkPlayerStatus(), - switchSetupRequestFlagType, - lang.getLanguage()); - labelPlayerNames[myCurrentIndex].setText(""); - labelPlayerNames[i].setText(""); - switchSetupRequestFlagType= ssrft_None; - break; - } - } - - if(labelPlayerNames[i].mouseClick(x, y) && (activeInputLabel != &labelPlayerNames[i])){ - if(clientInterface != NULL && i == clientInterface->getPlayerIndex()){ - setActiveInputLabel(&labelPlayerNames[i]); - } - } - } - - if(listBoxPlayerStatus.mouseClick(x,y)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundC()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(getNetworkPlayerStatus()==npst_PickSettings) - { - listBoxPlayerStatus.setTextColor(Vec3f(1.0f,0.0f,0.0f)); - listBoxPlayerStatus.setLighted(true); - } - else if(getNetworkPlayerStatus()==npst_BeRightBack) - { - listBoxPlayerStatus.setTextColor(Vec3f(1.0f,1.0f,0.0f)); - listBoxPlayerStatus.setLighted(true); - } - else if(getNetworkPlayerStatus()==npst_Ready) - { - listBoxPlayerStatus.setTextColor(Vec3f(0.0f,1.0f,0.0f)); - listBoxPlayerStatus.setLighted(false); - } - - ClientInterface* clientInterface= NetworkManager::getInstance().getClientInterface(); - if(clientInterface != NULL && clientInterface->isConnected()) { - clientInterface->setGameSettingsReceived(false); - clientInterface->sendSwitchSetupRequest( - listBoxFactions[clientInterface->getPlayerIndex()].getSelectedItem(), - clientInterface->getPlayerIndex(),-1, - listBoxTeams[clientInterface->getPlayerIndex()].getSelectedItemIndex(), - getHumanPlayerName(), - getNetworkPlayerStatus(), - switchSetupRequestFlagType, - lang.getLanguage()); - switchSetupRequestFlagType=ssrft_None; - } - } - - if(isHeadlessAdmin() == true) { - //printf("#1 admin key [%d] client key [%d]\n",settings->getMasterserver_admin(),clientInterface->getSessionKey()); - mouseClickAdmin(x, y, mouseButton,advanceToItemStartingWith); - } - else if(clientInterface != NULL && clientInterface->getJoinGameInProgress() == true) { - if(buttonPlayNow.mouseClick(x,y) && buttonPlayNow.getEnabled()) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - uint32 tilesetCRC = lastCheckedCRCTilesetValue; - uint32 techCRC = lastCheckedCRCTechtreeValue; - uint32 mapCRC = lastCheckedCRCMapValue; - const GameSettings *gameSettings = clientInterface->getGameSettings(); - - bool dataSynchMismatch = ((mapCRC != 0 && mapCRC != gameSettings->getMapCRC()) || - (tilesetCRC != 0 && tilesetCRC != gameSettings->getTilesetCRC()) || - (techCRC != 0 && techCRC != gameSettings->getTechCRC())); - if(dataSynchMismatch == false) { - PlayNow(true); - return; - } - else { - showMessageBox("You cannot start the game because\none or more clients do not have the same game data!", "Data Mismatch Error", false); - } - } - } - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -bool MenuStateConnectedGame::isHeadlessAdmin() { - bool result = false; - - ClientInterface* clientInterface= NetworkManager::getInstance().getClientInterface(); - if(clientInterface != NULL && clientInterface->isConnected()) { - const GameSettings *settings = clientInterface->getGameSettings(); - if(settings != NULL) { - //printf("#1 admin key [%d] client key [%d]\n",settings->getMasterserver_admin(),clientInterface->getSessionKey()); - - if(settings->getMasterserver_admin() == clientInterface->getSessionKey()) { - result = true; - } - } - } - - return result; -} - -void MenuStateConnectedGame::broadCastGameSettingsToHeadlessServer(bool forceNow) { - if(isHeadlessAdmin() == false) { - return; - } - - if(forceNow == true || - ((needToBroadcastServerSettings == true ) && ( difftime((long int)time(NULL),broadcastServerSettingsDelayTimer) >= HEADLESSSERVER_BROADCAST_SETTINGS_SECONDS))) { - //printf("In [%s:%s] Line: %d forceNow = %d broadcastServerSettingsDelayTimer = " MG_SIZE_T_SPECIFIER ", now =" MG_SIZE_T_SPECIFIER "\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,forceNow,broadcastServerSettingsDelayTimer,time(NULL)); - - needToBroadcastServerSettings = false; - broadcastServerSettingsDelayTimer = time(NULL); - - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - - for(int i = 0; i < mapInfo.players; ++i) { - if(listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - listBoxControls[i].setSelectedItemIndex(ctNetwork); - } - } - for(int i = mapInfo.players; i < GameConstants::maxPlayers; ++i) { - if(listBoxControls[i].getSelectedItemIndex() == ctNetwork) { - listBoxControls[i].setSelectedItemIndex(ctNetworkUnassigned); - } - } - - if(validDisplayedGamesettings){ - loadGameSettings(&displayedGamesettings); - - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("broadcast settings:\n%s\n",displayedGamesettings.toString().c_str()); - - //printf("Client sending map [%s] admin key [%d]\n",gameSettings.getMap().c_str(),gameSettings.getMasterserver_admin()); - //printf("sending Settings map filter=%d\n",displayedGamesettings.getMapFilter()); - clientInterface->broadcastGameSetup(&displayedGamesettings); - noReceiveTimer=time(NULL); - } - } -} - -void MenuStateConnectedGame::updateResourceMultiplier(const int index) { - ControlType ct= static_cast(listBoxControls[index].getSelectedItemIndex()); - if(ct == ctCpuEasy || ct == ctNetworkCpuEasy) - { - listBoxRMultiplier[index].setSelectedItem(floatToStr(GameConstants::easyMultiplier,1)); - listBoxRMultiplier[index].setEnabled(true); - } - else if(ct == ctCpu || ct == ctNetworkCpu) { - listBoxRMultiplier[index].setSelectedItem(floatToStr(GameConstants::normalMultiplier,1)); - listBoxRMultiplier[index].setEnabled(true); - } - else if(ct == ctCpuUltra || ct == ctNetworkCpuUltra) - { - listBoxRMultiplier[index].setSelectedItem(floatToStr(GameConstants::ultraMultiplier,1)); - listBoxRMultiplier[index].setEnabled(true); - } - else if(ct == ctCpuMega || ct == ctNetworkCpuMega) - { - listBoxRMultiplier[index].setSelectedItem(floatToStr(GameConstants::megaMultiplier,1)); - listBoxRMultiplier[index].setEnabled(true); - } - else { - listBoxRMultiplier[index].setSelectedItem(floatToStr(GameConstants::normalMultiplier,1)); - listBoxRMultiplier[index].setEnabled(false); - } - - listBoxRMultiplier[index].setEditable(listBoxRMultiplier[index].getEnabled()); - listBoxRMultiplier[index].setVisible(listBoxRMultiplier[index].getEnabled()); -} - -void MenuStateConnectedGame::mouseClickAdmin(int x, int y, MouseButton mouseButton,string advanceToItemStartingWith) { - - try { - int oldListBoxMapfilterIndex=listBoxMapFilter.getSelectedItemIndex(); - if(buttonPlayNow.mouseClick(x,y) && buttonPlayNow.getEnabled()) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - PlayNow(true); - return; - } - else if(buttonRestoreLastSettings.mouseClick(x,y) && buttonRestoreLastSettings.getEnabled()) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - soundRenderer.playFx(coreData.getClickSoundB()); - - RestoreLastGameSettings(); - } - else if (checkBoxAllowNativeLanguageTechtree.mouseClick(x, y)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if(listBoxMap.mouseClick(x, y,advanceToItemStartingWith)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s\n", getCurrentMapFile().c_str()); - - if(loadMapInfo(Config::getMapPath(getCurrentMapFile(),"",false), &mapInfo, true) == true) { - labelMapInfo.setText(mapInfo.desc); - } - else { - labelMapInfo.setText("???"); - } - - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if(listBoxFogOfWar.mouseClick(x, y)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if(checkBoxAllowObservers.mouseClick(x, y)) { -#ifdef DEBUG -PRINT_DEBUG("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -#endif - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if (checkBoxEnableSwitchTeamMode.mouseClick(x, y)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if(listBoxAISwitchTeamAcceptPercent.getEnabled() && listBoxAISwitchTeamAcceptPercent.mouseClick(x, y)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if(listBoxFallbackCpuMultiplier.getEnabled() && listBoxFallbackCpuMultiplier.mouseClick(x, y)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if(listBoxTileset.mouseClick(x, y,advanceToItemStartingWith)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - - else if(listBoxMapFilter.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s\n", getCurrentMapFile().c_str()); - switchToNextMapGroup(listBoxMapFilter.getSelectedItemIndex()-oldListBoxMapfilterIndex); - if(loadMapInfo(Config::getMapPath(getCurrentMapFile(),"",false), &mapInfo, true) == true) { - labelMapInfo.setText(mapInfo.desc); - } - else { - labelMapInfo.setText("???"); - } - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if(listBoxTechTree.mouseClick(x, y,advanceToItemStartingWith)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - reloadFactions(false,""); - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - - else if (checkBoxAllowTeamUnitSharing.mouseClick(x, y)) { - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if (checkBoxAllowTeamResourceSharing.mouseClick(x, y)) { - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - - for(int i=0; igetGameSettings() != NULL && - clientInterface->getGameSettings()->getStartLocationIndex(clientInterface->getGameSettings()->getThisFactionIndex()) != i && - listBoxControls[i].mouseClick(x, y)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - //!! this must be done two times!"" - if(listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - listBoxControls[i].mouseClick(x, y); - } - if( (isHeadlessAdmin()==true) && (listBoxControls[i].getSelectedItemIndex() == ctHuman)){ - listBoxControls[i].mouseClick(x, y); - } - //!! this must be done two times!"" - if(listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - listBoxControls[i].mouseClick(x, y); - } - - updateResourceMultiplier(i); - - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if(clientInterface != NULL && clientInterface->getGameSettings()->getStartLocationIndex(clientInterface->getGameSettings()->getThisFactionIndex()) != i && - listBoxFactions[i].mouseClick(x, y,advanceToItemStartingWith)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - // Disallow CPU players to be observers - if(factionFiles[listBoxFactions[i].getSelectedItemIndex()] == formatString(GameConstants::OBSERVER_SLOTNAME) && - (listBoxControls[i].getSelectedItemIndex() == ctCpuEasy || listBoxControls[i].getSelectedItemIndex() == ctCpu || - listBoxControls[i].getSelectedItemIndex() == ctCpuUltra || listBoxControls[i].getSelectedItemIndex() == ctCpuMega)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - listBoxFactions[i].setSelectedItemIndex(0); - } - - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - else if(clientInterface != NULL && clientInterface->getGameSettings()->getStartLocationIndex(clientInterface->getGameSettings()->getThisFactionIndex()) != i && - listBoxTeams[i].mouseClick(x, y)) { -#ifdef DEBUG -PRINT_DEBUG("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -#endif - if(factionFiles[listBoxFactions[i].getSelectedItemIndex()] != formatString(GameConstants::OBSERVER_SLOTNAME)) { - if(listBoxTeams[i].getSelectedItemIndex() + 1 != (GameConstants::maxPlayers + fpt_Observer)) { - //lastSelectedTeamIndex[i] = listBoxTeams[i].getSelectedItemIndex(); - } - } - - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - } - } - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - showMessageBox( szBuf, "Error", false); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateConnectedGame::PlayNow(bool saveGame) { - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - - GameSettings gameSettings = *clientInterface->getGameSettings(); - loadGameSettings(&gameSettings); - - if(saveGame == true) { - CoreData::getInstance().saveGameSettingsToFile(HEADLESS_SAVED_GAME_FILENAME,&gameSettings,true); - } - - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - soundRenderer.playFx(coreData.getClickSoundC()); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - //printf("Client sending map [%s] admin key [%d]\n",gameSettings.getMap().c_str(),gameSettings.getMasterserver_admin()); - - if(clientInterface->getJoinGameInProgress() == true) { - if(readyToJoinInProgressGame == false && launchingNewGame == false) { - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("JoinPlayerToCurrentGameLaunch",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("JoinPlayerToCurrentGameLaunch",languageList[i]).c_str(),getHumanPlayerName().c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is about to join the game, please wait...",getHumanPlayerName().c_str()); - } - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(szMsg,-1, localEcho,languageList[i]); - } - - sleep(1); - launchingNewGame = true; - clientInterface->broadcastGameStart(&gameSettings); - } - return; - } - else { - launchingNewGame = true; - broadCastGameSettingsToHeadlessServer(needToBroadcastServerSettings); - clientInterface->broadcastGameStart(&gameSettings); - } -} - -void MenuStateConnectedGame::switchToNextMapGroup(const int direction){ - int i=listBoxMapFilter.getSelectedItemIndex(); - // if there are no maps for the current selection we switch to next selection - while(formattedPlayerSortedMaps[i].empty()){ - i=i+direction; - if(i>GameConstants::maxPlayers){ - i=0; - } - if(i<0){ - i=GameConstants::maxPlayers; - } - } - switchToMapGroup(i); -} - -void MenuStateConnectedGame::switchToMapGroup(int filterIndex){ - int i = filterIndex; - listBoxMapFilter.setSelectedItemIndex(i); - listBoxMap.setItems(formattedPlayerSortedMaps[i]); -// printf("switching map group to filter=%d mapgroup has %d maps. map=%s \n",i, -// (int)formattedPlayerSortedMaps[i].size(),formattedPlayerSortedMaps[i][0].c_str()); -} - -string MenuStateConnectedGame::getCurrentMapFile(){ - int i=listBoxMapFilter.getSelectedItemIndex(); - int mapIndex=listBoxMap.getSelectedItemIndex(); - if(playerSortedMaps[i].empty() == false) { - return playerSortedMaps[i].at(mapIndex); - } - return ""; -} - -void MenuStateConnectedGame::reloadFactions(bool keepExistingSelectedItem, string scenario) { - vector results; - Config &config = Config::getInstance(); - Lang &lang= Lang::getInstance(); - - string scenarioDir = Scenario::getScenarioDir(dirList, scenario); - vector techPaths = config.getPathListForType(ptTechs,scenarioDir); - for(int idx = 0; idx < (int)techPaths.size(); idx++) { - string &techPath = techPaths[idx]; - endPathWithSlash(techPath); - - if(listBoxTechTree.getSelectedItemIndex() >= 0 && listBoxTechTree.getSelectedItemIndex() < (int)techTreeFiles.size()) { - findDirs(techPath + techTreeFiles[listBoxTechTree.getSelectedItemIndex()] + "/factions/", results, false, false); - } - if(results.empty() == false) { - break; - } - } - - if(results.empty() == true) { - //throw megaglest_runtime_error("(2)There are no factions for the tech tree [" + techTreeFiles[listBoxTechTree.getSelectedItemIndex()] + "]"); - //showGeneralError=true; - //generalErrorToShow = "[#2] There are no factions for the tech tree [" + techTreeFiles[listBoxTechTree.getSelectedItemIndex()] + "]"; - } - - vector translatedFactionNames; - factionFiles= results; - for(int i = 0; i < (int)results.size(); ++i) { - results[i]= formatString(results[i]); - string translatedString=techTree->getTranslatedFactionName(techTreeFiles[listBoxTechTree.getSelectedItemIndex()],factionFiles[i]); - if(toLower(translatedString)==toLower(results[i])){ - translatedFactionNames.push_back(results[i]); - } - else { - translatedFactionNames.push_back(results[i]+" ("+translatedString+")"); - } - //printf("FACTIONS i = %d results [%s]\n",i,results[i].c_str()); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"Tech [%s] has faction [%s]\n",techTreeFiles[listBoxTechTree.getSelectedItemIndex()].c_str(),results[i].c_str()); - } - - results.push_back(formatString(GameConstants::RANDOMFACTION_SLOTNAME)); - factionFiles.push_back(formatString(GameConstants::RANDOMFACTION_SLOTNAME)); - translatedFactionNames.push_back("*"+lang.getString("Random","",true)+"*"); - - // Add special Observer Faction - if(checkBoxAllowObservers.getValue() == 1) { - results.push_back(formatString(GameConstants::OBSERVER_SLOTNAME)); - factionFiles.push_back(formatString(GameConstants::OBSERVER_SLOTNAME)); - translatedFactionNames.push_back("*"+lang.getString("Observer","",true)+"*"); - } - - for(int i=0; i 0 ? listBoxFactions[i].getSelectedItem() : ""); - - listBoxFactions[i].setItems(results,translatedFactionNames); - if( keepExistingSelectedItem == false || - (checkBoxAllowObservers.getValue() == true && - originalValue == formatString(GameConstants::OBSERVER_SLOTNAME)) ) { - listBoxFactions[i].setSelectedItemIndex(i % results.size()); - - if( originalValue == formatString(GameConstants::OBSERVER_SLOTNAME) && - listBoxFactions[i].getSelectedItem() != formatString(GameConstants::OBSERVER_SLOTNAME)) { - if(listBoxTeams[i].getSelectedItem() == intToStr(GameConstants::maxPlayers + fpt_Observer)) { - listBoxTeams[i].setSelectedItem(intToStr(1)); - } - } - } - else if(originalIndex < (int)results.size()) { - listBoxFactions[i].setSelectedItemIndex(originalIndex); - } - } -} - -void MenuStateConnectedGame::loadGameSettings(GameSettings *gameSettings) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - int factionCount= 0; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - // Test flags values - //gameSettings->setFlagTypes1(ft1_show_map_resources); - // - - if(checkBoxScenario.getValue() == true) { - gameSettings->setScenario(scenarioInfo.name); - gameSettings->setScenarioDir(Scenario::getScenarioPath(dirList, scenarioInfo.name)); - - gameSettings->setDefaultResources(scenarioInfo.defaultResources); - gameSettings->setDefaultUnits(scenarioInfo.defaultUnits); - gameSettings->setDefaultVictoryConditions(scenarioInfo.defaultVictoryConditions); - } - else { - gameSettings->setScenario(""); - gameSettings->setScenarioDir(""); - } - - gameSettings->setNetworkAllowNativeLanguageTechtree(checkBoxAllowNativeLanguageTechtree.getValue()); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] listBoxMap.getSelectedItemIndex() = %d, mapFiles.size() = " MG_SIZE_T_SPECIFIER ", getCurrentMapFile() [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,listBoxMap.getSelectedItemIndex(),mapFiles.size(),getCurrentMapFile().c_str()); - - if(listBoxMap.getSelectedItemIndex() >= 0 && listBoxMap.getSelectedItemIndex() < (int)mapFiles.size()) { - gameSettings->setDescription(formatString(getCurrentMapFile())); - gameSettings->setMap(getCurrentMapFile()); - gameSettings->setMapFilter(listBoxMapFilter.getSelectedItemIndex()); - } - else { - Lang &lang= Lang::getInstance(); - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingMap=Player",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingMap=Player",languageList[i]).c_str(),getHumanPlayerName().c_str(),listBoxMap.getSelectedItem().c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is missing the map: %s",getHumanPlayerName().c_str(),listBoxMap.getSelectedItem().c_str()); - } - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(szMsg,-1, localEcho,languageList[i]); - } - } - - if(listBoxTileset.getSelectedItemIndex() >= 0 && listBoxTileset.getSelectedItemIndex() < (int)tilesetFiles.size()) { - gameSettings->setTileset(tilesetFiles[listBoxTileset.getSelectedItemIndex()]); - } - else { - //printf("A loadGameSettings listBoxTileset.getSelectedItemIndex() = %d tilesetFiles.size() = %d\n",listBoxTileset.getSelectedItemIndex(),tilesetFiles.size()); - - Lang &lang= Lang::getInstance(); - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingTileset=Player",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTileset=Player",languageList[i]).c_str(),getHumanPlayerName().c_str(),listBoxTileset.getSelectedItem().c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is missing the tileset: %s",getHumanPlayerName().c_str(),listBoxTileset.getSelectedItem().c_str()); - } - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(szMsg,-1, localEcho,languageList[i]); - } - } - if(listBoxTechTree.getSelectedItemIndex() >= 0 && listBoxTechTree.getSelectedItemIndex() < (int)techTreeFiles.size()) { - gameSettings->setTech(techTreeFiles[listBoxTechTree.getSelectedItemIndex()]); - } - else { - Lang &lang= Lang::getInstance(); - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingTechtree=Player",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTechtree=Player",languageList[i]).c_str(),getHumanPlayerName().c_str(),listBoxTechTree.getSelectedItem().c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is missing the techtree: %s",getHumanPlayerName().c_str(),listBoxTechTree.getSelectedItem().c_str()); - } - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(szMsg,-1, localEcho,languageList[i]); - } - } - - if(checkBoxScenario.getValue() == false) { - gameSettings->setDefaultUnits(true); - gameSettings->setDefaultResources(true); - gameSettings->setDefaultVictoryConditions(true); - } - - gameSettings->setFogOfWar(listBoxFogOfWar.getSelectedItemIndex() == 0 || - listBoxFogOfWar.getSelectedItemIndex() == 1 ); - - gameSettings->setAllowObservers(checkBoxAllowObservers.getValue() == true); - - uint32 valueFlags1 = gameSettings->getFlagTypes1(); - if(listBoxFogOfWar.getSelectedItemIndex() == 1 || - listBoxFogOfWar.getSelectedItemIndex() == 2 ) { - valueFlags1 |= ft1_show_map_resources; - gameSettings->setFlagTypes1(valueFlags1); - } - else { - valueFlags1 &= ~ft1_show_map_resources; - gameSettings->setFlagTypes1(valueFlags1); - } - - //gameSettings->setEnableObserverModeAtEndGame(listBoxEnableObserverMode.getSelectedItemIndex() == 0); - gameSettings->setEnableObserverModeAtEndGame(true); - //gameSettings->setPathFinderType(static_cast(listBoxPathFinderType.getSelectedItemIndex())); - - valueFlags1 = gameSettings->getFlagTypes1(); - if(checkBoxEnableSwitchTeamMode.getValue() == true) { - valueFlags1 |= ft1_allow_team_switching; - gameSettings->setFlagTypes1(valueFlags1); - } - else { - valueFlags1 &= ~ft1_allow_team_switching; - gameSettings->setFlagTypes1(valueFlags1); - } - gameSettings->setAiAcceptSwitchTeamPercentChance(strToInt(listBoxAISwitchTeamAcceptPercent.getSelectedItem())); - gameSettings->setFallbackCpuMultiplier(listBoxFallbackCpuMultiplier.getSelectedItemIndex()); - - valueFlags1 = gameSettings->getFlagTypes1(); - if(checkBoxAllowTeamUnitSharing.getValue() == true) { - valueFlags1 |= ft1_allow_shared_team_units; - gameSettings->setFlagTypes1(valueFlags1); - } - else { - valueFlags1 &= ~ft1_allow_shared_team_units; - gameSettings->setFlagTypes1(valueFlags1); - } - - valueFlags1 = gameSettings->getFlagTypes1(); - if(checkBoxAllowTeamResourceSharing.getValue() == true) { - valueFlags1 |= ft1_allow_shared_team_resources; - gameSettings->setFlagTypes1(valueFlags1); - } - else { - valueFlags1 &= ~ft1_allow_shared_team_resources; - gameSettings->setFlagTypes1(valueFlags1); - } - - // First save Used slots - //for(int i=0; i(listBoxControls[i].getSelectedItemIndex()); - - if(ct != ctClosed) { - int slotIndex = factionCount; - ControlType oldControlType=gameSettings->getFactionControl(slotIndex); - gameSettings->setFactionControl(slotIndex, ct); - if(ct == ctHuman) { - //if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, slotIndex = %d, getHumanPlayerName(i) [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,slotIndex,getHumanPlayerName(i).c_str()); - - gameSettings->setThisFactionIndex(slotIndex); - gameSettings->setNetworkPlayerName(slotIndex, getHumanPlayerName()); - gameSettings->setNetworkPlayerUUID(slotIndex,Config::getInstance().getString("PlayerId","")); - gameSettings->setNetworkPlayerPlatform(slotIndex,getPlatformNameString()); - gameSettings->setNetworkPlayerStatuses(slotIndex, getNetworkPlayerStatus()); - Lang &lang= Lang::getInstance(); - gameSettings->setNetworkPlayerLanguages(slotIndex, lang.getLanguage()); - - gameSettings->setResourceMultiplierIndex(slotIndex, 5); - } - else { - gameSettings->setResourceMultiplierIndex(slotIndex, listBoxRMultiplier[i].getSelectedItemIndex()); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, factionFiles[listBoxFactions[i].getSelectedItemIndex()] [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,factionFiles[listBoxFactions[i].getSelectedItemIndex()].c_str()); - - gameSettings->setFactionTypeName(slotIndex, factionFiles[listBoxFactions[i].getSelectedItemIndex()]); - if(factionFiles[listBoxFactions[i].getSelectedItemIndex()] == formatString(GameConstants::OBSERVER_SLOTNAME)) { - listBoxTeams[i].setSelectedItem(intToStr(GameConstants::maxPlayers + fpt_Observer)); - } - - gameSettings->setTeam(slotIndex, listBoxTeams[i].getSelectedItemIndex()); - gameSettings->setStartLocationIndex(slotIndex, i); - //printf("!!! setStartLocationIndex #1 slotIndex = %d, i = %d\n",slotIndex, i); - - if(listBoxControls[i].getSelectedItemIndex() == ctNetwork || listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - if(oldControlType!=ctNetwork && oldControlType!=ctNetworkUnassigned ){ - gameSettings->setNetworkPlayerName(slotIndex,""); - } - } - else if (listBoxControls[i].getSelectedItemIndex() != ctHuman) { - AIPlayerCount++; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, playername is AI (blank)\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i); - - Lang &lang= Lang::getInstance(); - gameSettings->setNetworkPlayerName(slotIndex, lang.getString("AI") + intToStr(AIPlayerCount)); - labelPlayerNames[i].setText(""); - } - - factionCount++; - } - else { - labelPlayerNames[i].setText(""); - } - } - - // Next save closed slots - int closedCount = 0; - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - ControlType ct= static_cast(listBoxControls[i].getSelectedItemIndex()); - if(ct == ctClosed) { - int slotIndex = factionCount + closedCount; - - gameSettings->setFactionControl(slotIndex, ct); - gameSettings->setTeam(slotIndex, listBoxTeams[i].getSelectedItemIndex()); - gameSettings->setStartLocationIndex(slotIndex, i); - //printf("!!! setStartLocationIndex #2 slotIndex = %d, i = %d\n",slotIndex, i); - - gameSettings->setResourceMultiplierIndex(slotIndex, 5); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, factionFiles[listBoxFactions[i].getSelectedItemIndex()] [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,factionFiles[listBoxFactions[i].getSelectedItemIndex()].c_str()); - - gameSettings->setFactionTypeName(slotIndex, factionFiles[listBoxFactions[i].getSelectedItemIndex()]); - gameSettings->setNetworkPlayerStatuses(slotIndex, npst_None); - gameSettings->setNetworkPlayerName(slotIndex, GameConstants::NETWORK_SLOT_CLOSED_SLOTNAME); - - closedCount++; - } - } - - gameSettings->setFactionCount(factionCount); - - Config &config = Config::getInstance(); - gameSettings->setEnableServerControlledAI(config.getBool("ServerControlledAI","true")); - gameSettings->setNetworkFramePeriod(config.getInt("NetworkSendFrameCount","20")); - - if(hasNetworkGameSettings() == true) { - if( gameSettings->getTileset() != "") { - if(lastCheckedCRCTilesetName != gameSettings->getTileset()) { - //console.addLine("Checking tileset CRC [" + gameSettings->getTileset() + "]"); - lastCheckedCRCTilesetValue = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTilesets,""), string("/") + gameSettings->getTileset() + string("/*"), ".xml", NULL); - if(lastCheckedCRCTilesetValue == 0 || lastCheckedCRCTilesetValue != gameSettings->getTilesetCRC()) { - lastCheckedCRCTilesetValue = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTilesets,""), string("/") + gameSettings->getTileset() + string("/*"), ".xml", NULL, true); - } - lastCheckedCRCTilesetName = gameSettings->getTileset(); - } - gameSettings->setTilesetCRC(lastCheckedCRCTilesetValue); - } - - if(config.getBool("DisableServerLobbyTechtreeCRCCheck","false") == false) { - if(gameSettings->getTech() != "") { - if(lastCheckedCRCTechtreeName != gameSettings->getTech()) { - //console.addLine("Checking techtree CRC [" + gameSettings->getTech() + "]"); - lastCheckedCRCTechtreeValue = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/*", ".xml", NULL); - if(lastCheckedCRCTechtreeValue == 0 || lastCheckedCRCTechtreeValue != gameSettings->getTechCRC()) { - lastCheckedCRCTechtreeValue = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/*", ".xml", NULL, true); - } - - reloadFactions(true,gameSettings->getScenario()); - factionCRCList.clear(); - for(unsigned int factionIdx = 0; factionIdx < factionFiles.size(); ++factionIdx) { - string factionName = factionFiles[factionIdx]; - if(factionName != GameConstants::RANDOMFACTION_SLOTNAME && - factionName != GameConstants::OBSERVER_SLOTNAME) { - //factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/factions/" + factionName + "/*", ".xml", NULL, true); - uint32 factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/factions/" + factionName + "/*", ".xml", NULL); - if(factionCRC == 0) { - factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/factions/" + factionName + "/*", ".xml", NULL, true); - } - factionCRCList.push_back(make_pair(factionName,factionCRC)); - } - } - //console.addLine("Found factions: " + intToStr(factionCRCList.size())); - lastCheckedCRCTechtreeName = gameSettings->getTech(); - } - - gameSettings->setFactionCRCList(factionCRCList); - gameSettings->setTechCRC(lastCheckedCRCTechtreeValue); - } - } - - if(gameSettings->getMap() != "") { - if(lastCheckedCRCMapName != gameSettings->getMap()) { - Checksum checksum; - string file = Config::getMapPath(gameSettings->getMap(),"",false); - //console.addLine("Checking map CRC [" + file + "]"); - checksum.addFile(file); - lastCheckedCRCMapValue = checksum.getSum(); - lastCheckedCRCMapName = gameSettings->getMap(); - } - gameSettings->setMapCRC(lastCheckedCRCMapValue); - } - } - - //replace server player by network - for(int i= 0; i< gameSettings->getFactionCount(); ++i) { - //replace by network - if(gameSettings->getFactionControl(i)==ctHuman) { - gameSettings->setFactionControl(i, ctNetwork); - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateConnectedGame::returnToJoinMenu() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(modHttpServerThread != NULL) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - modHttpServerThread->setSimpleTaskInterfaceValid(false); - modHttpServerThread->signalQuit(); - //modHttpServerThread->setThreadOwnerValid(false); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if( modHttpServerThread->canShutdown(true) == true && - modHttpServerThread->shutdownAndWait() == true) { - delete modHttpServerThread; - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - modHttpServerThread = NULL; - } - - if(ftpClientThread != NULL) { - - ftpClientThread->setCallBackObject(NULL); - ftpClientThread->signalQuit(); - sleep(0); - if(ftpClientThread->canShutdown(true) == true && - ftpClientThread->shutdownAndWait() == true) { - delete ftpClientThread; - } - else { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error cannot shutdown ftpClientThread\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("%s",szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - } - ftpClientThread = NULL; - } - - if(returnMenuInfo == jmSimple) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - launchingNewGame = true; - disconnectFromServer(); - mainMenu->setState(new MenuStateJoinGame(program, mainMenu)); - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - launchingNewGame = true; - disconnectFromServer(); - mainMenu->setState(new MenuStateMasterserver(program, mainMenu)); - } -} - -void MenuStateConnectedGame::mouseMove(int x, int y, const MouseState *ms) { - if (mainMessageBox.getEnabled()) { - mainMessageBox.mouseMove(x, y); - } - - if (ftpMessageBox.getEnabled()) { - ftpMessageBox.mouseMove(x, y); - } - - buttonCancelDownloads.mouseMove(x, y); - buttonDisconnect.mouseMove(x, y); - - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - listBoxControls[i].mouseMove(x, y); - listBoxFactions[i].mouseMove(x, y); - listBoxTeams[i].mouseMove(x, y); - grabSlotButton[i].mouseMove(x, y); - } - - listBoxMap.mouseMove(x, y); - listBoxFogOfWar.mouseMove(x, y); - checkBoxAllowObservers.mouseMove(x, y); - listBoxTileset.mouseMove(x, y); - listBoxMapFilter.mouseMove(x, y); - listBoxTechTree.mouseMove(x, y); - listBoxPlayerStatus.mouseMove(x,y); - - checkBoxScenario.mouseMove(x, y); - listBoxScenario.mouseMove(x, y); - - labelAllowTeamUnitSharing.mouseMove(x,y); - checkBoxAllowTeamUnitSharing.mouseMove(x,y); - labelAllowTeamResourceSharing.mouseMove(x,y); - checkBoxAllowTeamResourceSharing.mouseMove(x,y); - - checkBoxAllowNativeLanguageTechtree.mouseMove(x, y); - - buttonPlayNow.mouseMove(x, y); - buttonRestoreLastSettings.mouseMove(x, y); -} - -bool MenuStateConnectedGame::isVideoPlaying() { - bool result = false; - if(factionVideo != NULL) { - result = factionVideo->isPlaying(); - } - return result; -} - -void MenuStateConnectedGame::render() { - try { - Renderer &renderer= Renderer::getInstance(); - - if(mainMessageBox.getEnabled()) { - renderer.renderMessageBox(&mainMessageBox); - } - - renderer.renderButton(&buttonDisconnect); - - if (initialSettingsReceivedFromServer == false) { - return; - } - - if(factionTexture != NULL) { - if(factionVideo == NULL || factionVideo->isPlaying() == false) { - renderer.renderTextureQuad(800,600,200,150,factionTexture,1); - } - } - if(factionVideo != NULL) { - if(factionVideo->isPlaying() == true) { - factionVideo->playFrame(false); - } - else { - if(GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false && - ::Shared::Graphics::VideoPlayer::hasBackEndVideoPlayer() == true) { - if(factionVideo != NULL) { - factionVideo->closePlayer(); - delete factionVideo; - factionVideo = NULL; - - if(validDisplayedGamesettings) { - initFactionPreview(&displayedGamesettings); - } - } - } - } - } - - if(mapPreviewTexture != NULL) { - //renderer.renderTextureQuad(5,185,150,150,mapPreviewTexture,1.0f); - renderer.renderTextureQuad( this->render_mapPreviewTexture_X, - this->render_mapPreviewTexture_Y, - this->render_mapPreviewTexture_W, - this->render_mapPreviewTexture_H, - mapPreviewTexture,1.0f); - if(this->zoomedMap==true) { - return; - } - //printf("=================> Rendering map preview texture\n"); - } - - if(scenarioLogoTexture != NULL) { - renderer.renderTextureQuad(300,350,400,300,scenarioLogoTexture,1.0f); - //renderer.renderBackground(scenarioLogoTexture); - } - - renderer.renderButton(&buttonDisconnect); - - // Get a reference to the player texture cache - std::map &crcPlayerTextureCache = CacheManager::getCachedItem< std::map >(GameConstants::playerTextureCacheLookupKey); - - // START - this code ensure player title and player names don't overlap - int offsetPosition=0; - for(int i=0; i < GameConstants::maxPlayers; ++i) { - const Metrics &metrics= Metrics::getInstance(); - FontMetrics *fontMetrics= NULL; - if(Renderer::renderText3DEnabled == false) { - fontMetrics = CoreData::getInstance().getMenuFontNormal()->getMetrics(); - } - else { - fontMetrics = CoreData::getInstance().getMenuFontNormal3D()->getMetrics(); - } - - if(fontMetrics == NULL) { - throw megaglest_runtime_error("fontMetrics == NULL"); - } - int curWidth = (metrics.toVirtualX(fontMetrics->getTextWidth(labelPlayers[i].getText()))); - - if(labelPlayers[i].getX() + curWidth >= labelPlayerNames[i].getX()) { - int newOffsetPosition = labelPlayers[i].getX() + curWidth + 2; - if(offsetPosition < newOffsetPosition) { - offsetPosition = newOffsetPosition; - } - } - } - // END - - renderer.renderListBox(&listBoxPlayerStatus); - - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - if(listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - bool renderIt=true; - //printf("Player #%d [%s] control = %d\n",i,labelPlayerNames[i].getText().c_str(),listBoxControls[i].getSelectedItemIndex()); - if(labelNetStatus[i].getText() == GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME){ - renderIt=false; - } - labelPlayers[i].setVisible(renderIt); - labelPlayerNames[i].setVisible(renderIt); - listBoxControls[i].setVisible(renderIt); - listBoxRMultiplier[i].setVisible(renderIt); - listBoxFactions[i].setVisible(renderIt); - listBoxTeams[i].setVisible(renderIt); - labelNetStatus[i].setVisible(renderIt); - } - - if(listBoxControls[i].getSelectedItemIndex() != ctClosed) { - renderer.renderLabel(&labelPlayerStatus[i]); - } - - if(crcPlayerTextureCache[i] != NULL) { - // Render the player # label the player's color - - Vec3f playerColor = crcPlayerTextureCache[i]->getPixmap()->getPixel3f(0, 0); - if(clientInterface != NULL && - clientInterface->getGameSettings() != NULL && - clientInterface->getGameSettings()->getMasterserver_admin() > 0 && - clientInterface->getGameSettings()->getMasterserver_admin_faction_index() == i) { - - if(difftime((long int)time(NULL),timerLabelFlash) < 1) { - renderer.renderLabel(&labelPlayers[i],&playerColor); - } - else { - Vec4f flashColor=Vec4f(playerColor.x, playerColor.y, playerColor.z, 0.45f); - renderer.renderLabel(&labelPlayers[i],&flashColor); - } - - } - else { - renderer.renderLabel(&labelPlayers[i],&playerColor); - } - - // Blend the color with white so make it more readable - //Vec4f newColor(1.f, 1.f, 1.f, 0.57f); - //renderer.renderLabel(&labelPlayers[i],&newColor); - - //int quadWidth = labelPlayerNames[i].getX() - labelPlayers[i].getX() - 5; - //renderer.renderTextureQuad(labelPlayers[i].getX(), labelPlayers[i].getY(), quadWidth, labelPlayers[i].getH(), crcPlayerTextureCache[i],1.0f,&playerColor); - } - else { - renderer.renderLabel(&labelPlayers[i]); - } - - if(offsetPosition > 0) { - labelPlayerNames[i].setX(offsetPosition); - } - - renderer.renderListBox(&listBoxControls[i]); - if(listBoxControls[i].getSelectedItemIndex() != ctClosed) { - renderer.renderListBox(&listBoxRMultiplier[i]); - renderer.renderListBox(&listBoxFactions[i]); - int teamnumber=listBoxTeams[i].getSelectedItemIndex(); - Vec3f teamcolor=Vec3f(1.0f,1.0f,1.0f); - if(teamnumber>=0 && teamnumber<8){ - teamcolor=crcPlayerTextureCache[teamnumber]->getPixmap()->getPixel3f(0, 0); - } - listBoxTeams[i].setTextColor(teamcolor); - renderer.renderListBox(&listBoxTeams[i]); - - bool canGrabSlot = false; - ClientInterface *clientInterface = networkManager.getClientInterface(); - if(clientInterface != NULL && clientInterface->getJoinGameInProgress() == true) { - canGrabSlot = ((listBoxControls[i].getSelectedItemIndex() == ctNetwork && - labelNetStatus[i].getText() == GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) || - (listBoxControls[i].getSelectedItemIndex() != ctHuman && - listBoxControls[i].getSelectedItemIndex() != ctClosed && - listBoxControls[i].getSelectedItemIndex() != ctNetwork)); - } - else { - canGrabSlot = (listBoxControls[i].getSelectedItemIndex() == ctNetwork && - labelNetStatus[i].getText() == GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME); - } - - if(canGrabSlot == true) { - if(i < mapInfo.players) { - renderer.renderButton(&grabSlotButton[i]); - } - } - else if(listBoxControls[i].getSelectedItemIndex() == ctNetwork || - listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned || - listBoxControls[i].getSelectedItemIndex() == ctHuman){ - renderer.renderLabel(&labelNetStatus[i]); - } - - if(listBoxControls[i].getSelectedItemIndex() == ctNetwork || - listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned || - listBoxControls[i].getSelectedItemIndex() == ctHuman){ - if(labelNetStatus[i].getText() != GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) { - renderer.renderLabel(&labelPlayerNames[i]); - } - } - } - } - renderer.renderLabel(&labelStatus); - renderer.renderLabel(&labelInfo); - - if(difftime((long int)time(NULL),timerLabelFlash) < 1) { - renderer.renderLabel(&labelDataSynchInfo,&RED); - renderer.renderLabel(&labelWaitingForPlayers,&YELLOW); - } - else { - renderer.renderLabel(&labelDataSynchInfo,&WHITE); - renderer.renderLabel(&labelWaitingForPlayers,&WHITE); - } - - renderer.renderLabel(&labelMap); - renderer.renderLabel(&labelMapFilter); - renderer.renderLabel(&labelFogOfWar); - renderer.renderLabel(&labelAllowObservers); - renderer.renderLabel(&labelFallbackCpuMultiplier); - renderer.renderLabel(&labelTileset); - renderer.renderLabel(&labelTechTree); - renderer.renderLabel(&labelControl); - renderer.renderLabel(&labelFaction); - renderer.renderLabel(&labelTeam); - renderer.renderLabel(&labelMapInfo); - - renderer.renderListBox(&listBoxMap); - renderer.renderListBox(&listBoxMapFilter); - renderer.renderListBox(&listBoxFogOfWar); - renderer.renderCheckBox(&checkBoxAllowObservers); - renderer.renderListBox(&listBoxTileset); - renderer.renderListBox(&listBoxTechTree); - - renderer.renderLabel(&labelEnableSwitchTeamMode); - renderer.renderLabel(&labelAISwitchTeamAcceptPercent); - - renderer.renderCheckBox(&checkBoxEnableSwitchTeamMode); - renderer.renderListBox(&listBoxAISwitchTeamAcceptPercent); - renderer.renderListBox(&listBoxFallbackCpuMultiplier); - - renderer.renderLabel(&labelAllowTeamUnitSharing); - renderer.renderCheckBox(&checkBoxAllowTeamUnitSharing); - - renderer.renderLabel(&labelAllowTeamResourceSharing); - renderer.renderCheckBox(&checkBoxAllowTeamResourceSharing); - - renderer.renderButton(&buttonPlayNow); - renderer.renderButton(&buttonRestoreLastSettings); - - renderer.renderCheckBox(&checkBoxScenario); - renderer.renderLabel(&labelScenario); - if(checkBoxScenario.getValue() == true) { - renderer.renderListBox(&listBoxScenario); - } - - renderer.renderLabel(&labelAllowNativeLanguageTechtree); - renderer.renderCheckBox(&checkBoxAllowNativeLanguageTechtree); - - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - // !!! START TEMP MV - //renderer.renderButton(&buttonCancelDownloads); - //fileFTPProgressList.clear(); - //fileFTPProgressList["test1a dsa asd asda sdasd asd ad ad"] = make_pair(1,"testa"); - //fileFTPProgressList["test2 asdasdasdadas dasdasdasda"] = make_pair(1,"testb"); - //fileFTPProgressList["test3 asdasdad asd ada dasdadasdada"] = make_pair(1,"testc"); - // !!! END TEMP MV - - if(fileFTPProgressList.empty() == false) { - Lang &lang= Lang::getInstance(); - renderer.renderButton(&buttonCancelDownloads); - int xLocation = buttonCancelDownloads.getX(); - int yLocation = buttonCancelDownloads.getY() - 20; - for(std::map >::iterator iterMap = fileFTPProgressList.begin(); - iterMap != fileFTPProgressList.end(); ++iterMap) { - string progressLabelPrefix = lang.getString("ModDownloading") + " " + iterMap->first + " "; - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\nRendering file progress with the following prefix [%s]\n",progressLabelPrefix.c_str()); - - if(Renderer::renderText3DEnabled) { - renderer.renderProgressBar3D( - iterMap->second.first, - xLocation, - //10, - yLocation, - CoreData::getInstance().getDisplayFontSmall3D(), - //350,progressLabelPrefix); - 300,progressLabelPrefix); - } - else { - renderer.renderProgressBar( - iterMap->second.first, - //10, - xLocation, - yLocation, - CoreData::getInstance().getDisplayFontSmall(), - //350,progressLabelPrefix); - 300,progressLabelPrefix); - } - - yLocation -= 20; - } - } - safeMutexFTPProgress.ReleaseLock(); - - if(mainMessageBox.getEnabled()) { - renderer.renderMessageBox(&mainMessageBox); - } - if(ftpMessageBox.getEnabled()) { - renderer.renderMessageBox(&ftpMessageBox); - } - - if(program != NULL) program->renderProgramMsgBox(); - - if(enableMapPreview && (mapPreview.hasFileLoaded() == true)) { - - int mouseX = mainMenu->getMouseX(); - int mouseY = mainMenu->getMouseY(); - int mouse2dAnim = mainMenu->getMouse2dAnim(); - - if(mapPreviewTexture == NULL) { - renderer.renderMouse2d(mouseX, mouseY, mouse2dAnim); - - bool renderAll = (listBoxFogOfWar.getSelectedItemIndex() == 2); - //renderer.renderMapPreview(&mapPreview, renderAll, 10, 350, &mapPreviewTexture); - renderer.renderMapPreview(&mapPreview, renderAll, - this->render_mapPreviewTexture_X, - this->render_mapPreviewTexture_Y, - &mapPreviewTexture); - } - } - renderer.renderChatManager(&chatManager); - renderer.renderConsole(&console,showFullConsole?consoleFull:consoleStoredAndNormal); - - if(difftime((long int)time(NULL),timerLabelFlash) > 2) { - timerLabelFlash = time(NULL); - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - throw megaglest_runtime_error(szBuf); - } -} - -void MenuStateConnectedGame::update() { - Chrono chrono; - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled) chrono.start(); - - Lang &lang= Lang::getInstance(); - ClientInterface *clientInterface= NetworkManager::getInstance().getClientInterface(); - - string newLabelConnectionInfo = lang.getString("WaitingHost"); - if(clientInterface != NULL && clientInterface->getJoinGameInProgress() == true) { - newLabelConnectionInfo = lang.getString("MGGameStatus2"); - } - // Test progress bar - //MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - //fileFTPProgressList["test"] = pair(difftime(time(NULL),lastNetworkSendPing) * 20,"test file 123"); - //safeMutexFTPProgress.ReleaseLock(); - // - - if(clientInterface != NULL && clientInterface->isConnected()) { - //printf("#2 admin key [%d] client key [%d]\n",settings->getMasterserver_admin(),clientInterface->getSessionKey()); - broadCastGameSettingsToHeadlessServer(false); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - bool notCurrentlySwitching=(( difftime((long int) time(NULL), broadcastServerSettingsDelayTimer)) >= HEADLESSSERVER_BROADCAST_SETTINGS_SECONDS ); - bool receiveAllowedNow=difftime((long int) time(NULL), noReceiveTimer) > 2 ; - bool newMessage= lastGameSettingsReceivedCount < clientInterface->getGameSettingsReceivedCount(); - if (validDisplayedGamesettings == false - || ( notCurrentlySwitching - && newMessage - && receiveAllowedNow )) { - - //printf("I take the whole settings top broadcastDelay=%d noReceiveTimer=%d\n", (int)difftime((long int) time(NULL), broadcastServerSettingsDelayTimer),(int)difftime((long int) time(NULL), noReceiveTimer)); - - displayedGamesettings = *(clientInterface->getGameSettings()); - originalGamesettings = displayedGamesettings; - validDisplayedGamesettings = true; - } - - checkBoxAllowNativeLanguageTechtree.setEditable(isHeadlessAdmin()); - checkBoxAllowNativeLanguageTechtree.setEnabled(isHeadlessAdmin()); - - listBoxMap.setEditable(isHeadlessAdmin()); - listBoxMapFilter.setEditable(isHeadlessAdmin()); - buttonPlayNow.setVisible(isHeadlessAdmin() || - clientInterface->getJoinGameInProgress() == true); - buttonRestoreLastSettings.setVisible(isHeadlessAdmin()); - listBoxTechTree.setEditable(isHeadlessAdmin()); - listBoxTileset.setEditable(isHeadlessAdmin()); - checkBoxEnableSwitchTeamMode.setEditable(isHeadlessAdmin()); - listBoxAISwitchTeamAcceptPercent.setEditable(isHeadlessAdmin()); - listBoxFallbackCpuMultiplier.setEditable(isHeadlessAdmin()); - listBoxFogOfWar.setEditable(isHeadlessAdmin()); - checkBoxAllowObservers.setEditable(isHeadlessAdmin()); - - checkBoxAllowTeamUnitSharing.setEditable(isHeadlessAdmin()); - checkBoxAllowTeamResourceSharing.setEditable(isHeadlessAdmin()); - - if(isHeadlessAdmin() == true) { - bool hasOtherPlayer=false; - bool hasOpenSlot=false; - for(unsigned int i = 0; i < (unsigned int)GameConstants::maxPlayers; ++i) { - if(displayedGamesettings.getFactionControl(i)==ctNetwork && clientInterface->getPlayerIndex()!=(int)i){ - hasOpenSlot=true; - } - if(displayedGamesettings.getFactionControl(i)==ctNetwork && - displayedGamesettings.getNetworkPlayerNameByPlayerIndex(i)!= GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME && - displayedGamesettings.getNetworkPlayerNameByPlayerIndex(i)!= GameConstants::NETWORK_SLOT_CLOSED_SLOTNAME ){ - listBoxControls[i].setEditable(false); - if(clientInterface->getPlayerIndex()!=(int)i){ - hasOtherPlayer=true; - } - } - else if(clientInterface->getPlayerIndex()==(int)i){ - listBoxControls[i].setEditable(false); - } - else { - listBoxControls[i].setEditable(true); - } - listBoxRMultiplier[i].setEditable(isHeadlessAdmin()); - listBoxFactions[i].setEditable(isHeadlessAdmin()); - listBoxTeams[i].setEditable(isHeadlessAdmin()); - } - if (hasOtherPlayer) { - labelWaitingForPlayers.setText(""); - labelWaitingForPlayers.setVisible(false); - } else if (hasOpenSlot) { - labelWaitingForPlayers.setText(lang.getString("WaitingForPlayers")); - labelWaitingForPlayers.setVisible(true); - } else { - labelWaitingForPlayers.setText(lang.getString("OpenANetworkSLot")); - labelWaitingForPlayers.setVisible(true); - } - } - else { - labelWaitingForPlayers.setText(""); - labelWaitingForPlayers.setVisible(false); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(difftime((long int)time(NULL),lastNetworkSendPing) >= GameConstants::networkPingInterval) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] about to sendPingMessage...\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - lastNetworkSendPing = time(NULL); - clientInterface->sendPingMessage(GameConstants::networkPingInterval, (int64)time(NULL)); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] pingCount = %d, clientInterface->getLastPingLag() = %f, GameConstants::networkPingInterval = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,pingCount, clientInterface->getLastPingLag(),GameConstants::networkPingInterval); - - // Starting checking timeout after sending at least 3 pings to server - if(clientInterface->isConnected() && - pingCount >= MAX_PING_LAG_COUNT && clientInterface->getLastPingLag() >= (GameConstants::networkPingInterval * MAX_PING_LAG_COUNT)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - clientInterface->updateLobby(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(clientInterface->isConnected() && clientInterface->getJoinGameInProgress() == false && - pingCount >= MAX_PING_LAG_COUNT && clientInterface->getLastPingLag() >= (GameConstants::networkPingInterval * MAX_PING_LAG_COUNT)) { - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - if(fileFTPProgressList.empty() == true) { - Lang &lang= Lang::getInstance(); - const vector languageList = displayedGamesettings.getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - clientInterface->sendTextMessage(lang.getString("ConnectionTimedOut",languageList[i]) + " : " + doubleToStr(clientInterface->getLastPingLag(),2),-1,false,languageList[i]); - sleep(1); - clientInterface->close(); - } - } - } - } - - pingCount++; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - buttonDisconnect.setText(lang.getString("Disconnect")); - - if(clientInterface->getAllowDownloadDataSynch() == false) { - string label = lang.getString("ConnectedToServer"); - - if(clientInterface->getServerName().empty() == false) { - label = label + " " + clientInterface->getServerName(); - } - - label = label + ", " + clientInterface->getVersionString(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(clientInterface->getAllowGameDataSynchCheck() == false && - displayedGamesettings.getTileset() != "" && - displayedGamesettings.getTech() != "" && - displayedGamesettings.getMap() != "") { - Config &config = Config::getInstance(); - - MutexSafeWrapper safeMutexFTPProgress(ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL,string(__FILE__) + "_" + intToStr(__LINE__)); - - uint32 tilesetCRC = lastCheckedCRCTilesetValue; - if(lastCheckedCRCTilesetName != displayedGamesettings.getTileset() && - displayedGamesettings.getTileset() != "") { - //console.addLine("Checking tileset CRC [" + displayedGamesettings.getTileset() + "]"); - tilesetCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTilesets,""), string("/") + displayedGamesettings.getTileset() + string("/*"), ".xml", NULL); - if(tilesetCRC == 0 || tilesetCRC != displayedGamesettings.getTilesetCRC()) { - tilesetCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTilesets,""), string("/") + displayedGamesettings.getTileset() + string("/*"), ".xml", NULL, true); - } - - // Test data synch - //tilesetCRC++; - lastCheckedCRCTilesetValue = tilesetCRC; - lastCheckedCRCTilesetName = displayedGamesettings.getTileset(); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - uint32 techCRC = lastCheckedCRCTechtreeValue; - if(lastCheckedCRCTechtreeName != displayedGamesettings.getTech() && - displayedGamesettings.getTech() != "") { - //console.addLine("Checking techtree CRC [" + displayedGamesettings.getTech() + "]"); - techCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), string("/") + displayedGamesettings.getTech() + string("/*"), ".xml", NULL); - //clientInterface->sendTextMessage("#1 TechCRC = " + intToStr(techCRC) + " remoteCRC = " + intToStr(displayedGamesettings.getTechCRC()),-1, true, ""); - - if(techCRC == 0 || techCRC != displayedGamesettings.getTechCRC()) { - techCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), string("/") + displayedGamesettings.getTech() + string("/*"), ".xml", NULL, true); - //clientInterface->sendTextMessage("#2 TechCRC = " + intToStr(techCRC) + " remoteCRC = " + intToStr(displayedGamesettings.getTechCRC()),-1, true, ""); - } - - - if(techCRC != 0 && techCRC != displayedGamesettings.getTechCRC() && - listBoxTechTree.getSelectedItemIndex() >= 0 && - listBoxTechTree.getSelectedItem() != Lang::getInstance().getString("DataMissing","",true)) { - - //time_t now = time(NULL); - time_t lastUpdateDate = getFolderTreeContentsCheckSumRecursivelyLastGenerated(config.getPathListForType(ptTechs,""), string("/") + displayedGamesettings.getTech() + string("/*"), ".xml"); - - const time_t REFRESH_CRC_DAY_SECONDS = 60 * 60 * 1; - if( lastUpdateDate <= 0 || - difftime((long int)time(NULL),lastUpdateDate) >= REFRESH_CRC_DAY_SECONDS) { - techCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), string("/") + displayedGamesettings.getTech() + string("/*"), ".xml", NULL, true); - //clientInterface->sendTextMessage("#3 TechCRC = " + intToStr(techCRC) + " remoteCRC = " + intToStr(displayedGamesettings.getTechCRC()),-1, true, ""); - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - // Test data synch - //techCRC++; - lastCheckedCRCTechtreeValue = techCRC; - lastCheckedCRCTechtreeName = displayedGamesettings.getTech(); - - loadFactions(&displayedGamesettings,false); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - factionCRCList.clear(); - for(unsigned int factionIdx = 0; factionIdx < factionFiles.size(); ++factionIdx) { - string factionName = factionFiles[factionIdx]; - if(factionName != GameConstants::RANDOMFACTION_SLOTNAME && - factionName != GameConstants::OBSERVER_SLOTNAME && - factionName != Lang::getInstance().getString("DataMissing","",true)) { - - uint32 factionCRC = 0; - //time_t now = time(NULL); - time_t lastUpdateDate = getFolderTreeContentsCheckSumRecursivelyLastGenerated(config.getPathListForType(ptTechs,""), "/" + displayedGamesettings.getTech() + "/factions/" + factionName + "/*", ".xml"); - - const time_t REFRESH_CRC_DAY_SECONDS = 60 * 60 * 24; - if( lastUpdateDate <= 0 || - difftime((long int)time(NULL),lastUpdateDate) >= REFRESH_CRC_DAY_SECONDS || - (techCRC != 0 && techCRC != displayedGamesettings.getTechCRC())) { - factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + displayedGamesettings.getTech() + "/factions/" + factionName + "/*", ".xml", NULL, true); - } - else { - factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + displayedGamesettings.getTech() + "/factions/" + factionName + "/*", ".xml", NULL); - } - if(factionCRC == 0) { - factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + displayedGamesettings.getTech() + "/factions/" + factionName + "/*", ".xml", NULL, true); - } - - if(factionCRC != 0) { - vector > serverFactionCRCList = displayedGamesettings.getFactionCRCList(); - for(unsigned int factionIdx1 = 0; factionIdx1 < serverFactionCRCList.size(); ++factionIdx1) { - pair &serverFaction = serverFactionCRCList[factionIdx1]; - if(serverFaction.first == factionName) { - if(serverFaction.second != factionCRC) { - factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + displayedGamesettings.getTech() + "/factions/" + factionName + "/*", ".xml", NULL, true); - } - break; - } - } - } - factionCRCList.push_back(make_pair(factionName,factionCRC)); - } - } - //console.addLine("Found factions: " + intToStr(factionCRCList.size())); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - uint32 mapCRC = lastCheckedCRCMapValue; - if(lastCheckedCRCMapName != displayedGamesettings.getMap() && - displayedGamesettings.getMap() != "") { - Checksum checksum; - string file = Config::getMapPath(displayedGamesettings.getMap(),"",false); - //console.addLine("Checking map CRC [" + file + "]"); - checksum.addFile(file); - mapCRC = checksum.getSum(); - // Test data synch - //mapCRC++; - - lastCheckedCRCMapValue = mapCRC; - lastCheckedCRCMapName = displayedGamesettings.getMap(); - } - safeMutexFTPProgress.ReleaseLock(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - bool dataSynchMismatch = ((mapCRC != 0 && mapCRC != displayedGamesettings.getMapCRC()) || - (tilesetCRC != 0 && tilesetCRC != displayedGamesettings.getTilesetCRC()) || - (techCRC != 0 && techCRC != displayedGamesettings.getTechCRC())); - - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\nmapCRC [%d] displayedGamesettings.getMapCRC() [%d]\ntilesetCRC [%d] displayedGamesettings.getTilesetCRC() [%d]\ntechCRC [%d] displayedGamesettings.getTechCRC() [%d]\n",mapCRC,displayedGamesettings.getMapCRC(),tilesetCRC,displayedGamesettings.getTilesetCRC(),techCRC,displayedGamesettings.getTechCRC()); - - if(dataSynchMismatch == true && - ( difftime((long int)time(NULL),broadcastServerSettingsDelayTimer) >= HEADLESSSERVER_BROADCAST_SETTINGS_SECONDS)) { - //printf("Data not synched: lmap %u rmap: %u ltile: %d rtile: %u ltech: %u rtech: %u\n",mapCRC,displayedGamesettings.getMapCRC(),tilesetCRC,displayedGamesettings.getTilesetCRC(),techCRC,displayedGamesettings.getTechCRC()); - - string labelSynch = lang.getString("DataNotSynchedTitle"); - - if(mapCRC != 0 && mapCRC != displayedGamesettings.getMapCRC() && - listBoxMap.getSelectedItemIndex() >= 0 && - listBoxMap.getSelectedItem() != Lang::getInstance().getString("DataMissing","",true)) { - labelSynch = labelSynch + " " + lang.getString("Map"); - - if(updateDataSynchDetailText == true && - lastMapDataSynchError != lang.getString("DataNotSynchedMap") + " " + listBoxMap.getSelectedItem()) { - lastMapDataSynchError = lang.getString("DataNotSynchedMap") + " " + listBoxMap.getSelectedItem(); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - string msg = lang.getString("DataNotSynchedMap",languageList[i]) + " " + listBoxMap.getSelectedItem(); - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(msg,-1,localEcho,languageList[i]); - } - } - } - - if(tilesetCRC != 0 && tilesetCRC != displayedGamesettings.getTilesetCRC() && - listBoxTileset.getSelectedItemIndex() >= 0 && - listBoxTileset.getSelectedItem() != Lang::getInstance().getString("DataMissing","",true)) { - labelSynch = labelSynch + " " + lang.getString("Tileset"); - if(updateDataSynchDetailText == true && - lastTileDataSynchError != lang.getString("DataNotSynchedTileset") + " " + listBoxTileset.getSelectedItem()) { - lastTileDataSynchError = lang.getString("DataNotSynchedTileset") + " " + listBoxTileset.getSelectedItem(); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - string msg = lang.getString("DataNotSynchedTileset",languageList[i]) + " " + listBoxTileset.getSelectedItem(); - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(msg,-1,localEcho,languageList[i]); - } - } - } - - if(techCRC != 0 && techCRC != displayedGamesettings.getTechCRC() && - listBoxTechTree.getSelectedItemIndex() >= 0 && - listBoxTechTree.getSelectedItem() != Lang::getInstance().getString("DataMissing","",true)) { - labelSynch = labelSynch + " " + lang.getString("TechTree"); - if(updateDataSynchDetailText == true && - lastTechtreeDataSynchError != lang.getString("DataNotSynchedTechtree") + " " + listBoxTechTree.getSelectedItem()) { - lastTechtreeDataSynchError = lang.getString("DataNotSynchedTechtree") + " " + listBoxTechTree.getSelectedItem(); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - string msg = lang.getString("DataNotSynchedTechtree",languageList[i]) + " " + listBoxTechTree.getSelectedItem(); - bool localEcho = lang.isLanguageLocal(languageList[i]); - clientInterface->sendTextMessage(msg,-1,localEcho,languageList[i]); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - const int MAX_CHAT_TEXT_LINE_LENGTH = 110; - //const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - bool localEcho = lang.isLanguageLocal(languageList[i]); - - string mismatchedFactionText = ""; - vector mismatchedFactionTextList; - vector > serverFactionCRCList = displayedGamesettings.getFactionCRCList(); - - for(unsigned int factionIdx = 0; factionIdx < serverFactionCRCList.size(); ++factionIdx) { - pair &serverFaction = serverFactionCRCList[factionIdx]; - - bool foundFaction = false; - for(unsigned int clientFactionIdx = 0; clientFactionIdx < factionCRCList.size(); ++clientFactionIdx) { - pair &clientFaction = factionCRCList[clientFactionIdx]; - - if(serverFaction.first == clientFaction.first) { - foundFaction = true; - if(serverFaction.second != clientFaction.second) { - if(mismatchedFactionText.length() >= 10) { - mismatchedFactionTextList.push_back(mismatchedFactionText); - mismatchedFactionText = ""; - } - if(mismatchedFactionText == "") { - mismatchedFactionText = "The following factions are mismatched: "; - if(lang.hasString("MismatchedFactions",languageList[i]) == true) { - mismatchedFactionText = lang.getString("MismatchedFactions",languageList[i]); - } - - mismatchedFactionText += " ["+ intToStr(factionCRCList.size()) + "][" + intToStr(serverFactionCRCList.size()) + "] - "; - } - else { - mismatchedFactionText += ", "; - } - mismatchedFactionText += serverFaction.first; - } - break; - } - } - - if(foundFaction == false) { - if((int)mismatchedFactionText.length() > MAX_CHAT_TEXT_LINE_LENGTH) { - mismatchedFactionTextList.push_back(mismatchedFactionText); - mismatchedFactionText = ""; - } - - if(mismatchedFactionText == "") { - mismatchedFactionText = "The following factions are mismatched: "; - if(lang.hasString("MismatchedFactions",languageList[i]) == true) { - mismatchedFactionText = lang.getString("MismatchedFactions",languageList[i]); - } - - mismatchedFactionText += " ["+ intToStr(factionCRCList.size()) + "][" + intToStr(serverFactionCRCList.size()) + "] - "; - } - else { - mismatchedFactionText += ", "; - } - - if(lang.hasString("MismatchedFactionsMissing",languageList[i]) == true) { - mismatchedFactionText += serverFaction.first + " " + lang.getString("MismatchedFactionsMissing",languageList[i]); - } - else { - mismatchedFactionText += serverFaction.first + " (missing)"; - } - } - } - - for(unsigned int clientFactionIdx = 0; clientFactionIdx < factionCRCList.size(); ++clientFactionIdx) { - pair &clientFaction = factionCRCList[clientFactionIdx]; - - bool foundFaction = false; - for(unsigned int factionIdx = 0; factionIdx < serverFactionCRCList.size(); ++factionIdx) { - pair &serverFaction = serverFactionCRCList[factionIdx]; - - if(serverFaction.first == clientFaction.first) { - foundFaction = true; - break; - } - } - - if(foundFaction == false) { - if((int)mismatchedFactionText.length() > MAX_CHAT_TEXT_LINE_LENGTH) { - mismatchedFactionTextList.push_back(mismatchedFactionText); - mismatchedFactionText = ""; - } - - if(mismatchedFactionText == "") { - mismatchedFactionText = "The following factions are mismatched: "; - if(lang.hasString("MismatchedFactions",languageList[i]) == true) { - mismatchedFactionText = lang.getString("MismatchedFactions",languageList[i]); - } - - mismatchedFactionText += " ["+ intToStr(factionCRCList.size()) + "][" + intToStr(serverFactionCRCList.size()) + "] - "; - } - else { - mismatchedFactionText += ", "; - } - - if(lang.hasString("MismatchedFactionsExtra",languageList[i]) == true) { - mismatchedFactionText += clientFaction.first + " " + lang.getString("MismatchedFactionsExtra",languageList[i]); - } - else { - mismatchedFactionText += clientFaction.first + " (extra)"; - } - } - } - - if(mismatchedFactionText != "") { - if(mismatchedFactionTextList.empty() == false) { - if(mismatchedFactionText != "") { - mismatchedFactionText += "."; - mismatchedFactionTextList.push_back(mismatchedFactionText); - } - for(unsigned int splitIdx = 0; splitIdx < mismatchedFactionTextList.size(); ++splitIdx) { - clientInterface->sendTextMessage(mismatchedFactionTextList[splitIdx],-1,localEcho,languageList[i]); - } - } - else { - mismatchedFactionText += "."; - clientInterface->sendTextMessage(mismatchedFactionText,-1,localEcho,languageList[i]); - } - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - } - } - - updateDataSynchDetailText = false; - labelDataSynchInfo.setText(labelSynch); - } - else { - labelDataSynchInfo.setText(""); - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(clientInterface->getAllowGameDataSynchCheck() == true && - clientInterface->getNetworkGameDataSynchCheckOk() == false) { - label = label + " -synch mismatch for:"; - - if(clientInterface->getNetworkGameDataSynchCheckOkMap() == false) { - label = label + " map"; - - if(updateDataSynchDetailText == true && - clientInterface->getReceivedDataSynchCheck() && - lastMapDataSynchError != "map CRC mismatch, " + listBoxMap.getSelectedItem()) { - lastMapDataSynchError = "map CRC mismatch, " + listBoxMap.getSelectedItem(); - clientInterface->sendTextMessage(lastMapDataSynchError,-1,true, ""); - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(clientInterface->getNetworkGameDataSynchCheckOkTile() == false) { - label = label + " tile"; - if(updateDataSynchDetailText == true && - clientInterface->getReceivedDataSynchCheck() && - lastTileDataSynchError != "tile CRC mismatch, " + listBoxTileset.getSelectedItem()) { - lastTileDataSynchError = "tile CRC mismatch, " + listBoxTileset.getSelectedItem(); - clientInterface->sendTextMessage(lastTileDataSynchError,-1,true,""); - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(clientInterface->getNetworkGameDataSynchCheckOkTech() == false) { - label = label + " techtree"; - - if(updateDataSynchDetailText == true && - clientInterface->getReceivedDataSynchCheck()) { - - string report = clientInterface->getNetworkGameDataSynchCheckTechMismatchReport(); - if(lastTechtreeDataSynchError != "techtree CRC mismatch" + report) { - lastTechtreeDataSynchError = "techtree CRC mismatch" + report; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] report: %s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,report.c_str()); - - clientInterface->sendTextMessage("techtree CRC mismatch",-1,true,""); - vector reportLineTokens; - Tokenize(report,reportLineTokens,"\n"); - for(int reportLine = 0; reportLine < (int)reportLineTokens.size(); ++reportLine) { - clientInterface->sendTextMessage(reportLineTokens[reportLine],-1,true,""); - } - } - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(clientInterface->getReceivedDataSynchCheck() == true) { - updateDataSynchDetailText = false; - } - } - else if(clientInterface->getAllowGameDataSynchCheck() == true) { - label += " - data synch is ok"; - } - - labelStatus.setText(label); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - } - else { - string label = lang.getString("ConnectedToServer"); - - if(!clientInterface->getServerName().empty()) { - label = label + " " + clientInterface->getServerName(); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(clientInterface->getAllowGameDataSynchCheck() == true && - clientInterface->getNetworkGameDataSynchCheckOk() == false) { - label = label + " -waiting to synch:"; - if(clientInterface->getNetworkGameDataSynchCheckOkMap() == false) { - label = label + " map"; - } - if(clientInterface->getNetworkGameDataSynchCheckOkTile() == false) { - label = label + " tile"; - } - if(clientInterface->getNetworkGameDataSynchCheckOkTech() == false) { - label = label + " techtree"; - } - } - else if(clientInterface->getAllowGameDataSynchCheck() == true) + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Temp files path [%s]\n", tempFilePath.c_str ()); + + ftpClientThread = new FTPClientThread (portNumber, serverUrl, + mapsPath, tilesetsPath, + techtreesPath, scenariosPath, + this, fileArchiveExtension, + fileArchiveExtractCommand, + fileArchiveExtractCommandParameters, + fileArchiveExtractCommandSuccessResult, + tempFilePath); + ftpClientThread->start (); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("CancelDownloadsMsg", languageList[i]) == + true) { - label += " - data synch is ok"; + snprintf (szMsg, 8096, + lang.getString ("CancelDownloadsMsg", + languageList[i]).c_str (), + getHumanPlayerName ().c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s cancelled all file downloads.", + getHumanPlayerName ().c_str ()); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + } + } + else if (buttonDisconnect.mouseClick (x, y)) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + disconnectFromServer (); + networkManager.end (); + returnToJoinMenu (); + return; + } + + if (initialSettingsReceivedFromServer == false) + { + return; + } + + if (activeInputLabel != NULL + && activeInputLabel->mouseClick (x, y) == false) + { + setActiveInputLabel (NULL); + } + +// Only allow changes after we get game settings from the server + if (clientInterface != NULL && clientInterface->isConnected () == true) + { + int + myCurrentIndex = -1; + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { // find my current index by looking at editable listBoxes + if ( //listBoxFactions[i].getEditable() && + clientInterface-> + getGameSettings ()->getStartLocationIndex (clientInterface-> + getGameSettings + ()->getThisFactionIndex + ()) == i) + { + myCurrentIndex = i; + } + } + +//printf("myCurrentIndex = %d thisFactionIndex = %d\n",myCurrentIndex,clientInterface->getGameSettings()->getThisFactionIndex()); + + if (myCurrentIndex != -1) + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + if (listBoxFactions[i].getEditable () && + clientInterface-> + getGameSettings ()->getStartLocationIndex (clientInterface-> + getGameSettings + ()->getThisFactionIndex + ()) == i) + { + if (listBoxFactions[i].mouseClick + (x, y, advanceToItemStartingWith)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + ClientInterface * + clientInterface = + NetworkManager::getInstance ().getClientInterface (); + if (clientInterface->isConnected ()) + { + clientInterface->setGameSettingsReceived (false); + clientInterface-> + sendSwitchSetupRequest (listBoxFactions[i].getSelectedItem + (), i, -1, + listBoxTeams + [i].getSelectedItemIndex (), + getHumanPlayerName (), + getNetworkPlayerStatus (), + switchSetupRequestFlagType, + lang.getLanguage ()); + switchSetupRequestFlagType = ssrft_None; + noReceiveTimer = time (NULL); + } + break; + } + } + if (listBoxTeams[i].getEditable () && + clientInterface-> + getGameSettings ()->getStartLocationIndex (clientInterface-> + getGameSettings + ()->getThisFactionIndex + ()) == i) + { + if (listBoxTeams[i].mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (clientInterface->isConnected ()) + { + clientInterface->setGameSettingsReceived (false); + clientInterface-> + sendSwitchSetupRequest (listBoxFactions[i].getSelectedItem + (), i, -1, + listBoxTeams + [i].getSelectedItemIndex (), + getHumanPlayerName (), + getNetworkPlayerStatus (), + switchSetupRequestFlagType, + lang.getLanguage ()); + switchSetupRequestFlagType = ssrft_None; + } + break; + } } - labelStatus.setText(label); - } + bool canGrabSlot = false; + ClientInterface * + clientInterface = networkManager.getClientInterface (); + if (clientInterface != NULL + && clientInterface->getJoinGameInProgress () == true) + { + canGrabSlot = + ((listBoxControls[i].getSelectedItemIndex () == ctNetwork + && labelNetStatus[i].getText () == + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) + || (listBoxControls[i].getSelectedItemIndex () != ctHuman + && listBoxControls[i].getSelectedItemIndex () != ctClosed + && listBoxControls[i].getSelectedItemIndex () != + ctNetwork)); + } + else + { + canGrabSlot = + (listBoxControls[i].getSelectedItemIndex () == ctNetwork + && labelNetStatus[i].getText () == + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (canGrabSlot == true) + { + if (clientInterface != NULL && i < mapInfo.players + && grabSlotButton[i].mouseClick (x, y)) + { +//printf("Send slot switch request for slot = %d, myCurrentIndex = %d\n",i,myCurrentIndex); - if(clientInterface != NULL && clientInterface->isConnected() == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - clientInterface->close(); - } + soundRenderer.playFx (coreData.getClickSoundB ()); + clientInterface->setGameSettingsReceived (false); + settingsReceivedFromServer = false; - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] sending a switchSlot request from %d to %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, + clientInterface->getGameSettings + ()->getThisFactionIndex (), i); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - returnToJoinMenu(); - return; - } +//printf("Switch slot from %d to %d\n",myCurrentIndex,i); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + string + desiredFactionName = + listBoxFactions[myCurrentIndex].getSelectedItem (); + int + desiredTeamIndex = + listBoxTeams[myCurrentIndex].getSelectedItemIndex (); + if (checkBoxScenario.getValue () == true) + { + desiredFactionName = listBoxFactions[i].getSelectedItem (); + desiredTeamIndex = listBoxTeams[i].getSelectedItemIndex (); + } - //process network messages - if(clientInterface != NULL && clientInterface->isConnected()) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); +//printf("Sending switch slot request to server...\n"); - try { - if(clientInterface->getGameSettingsReceived() && validDisplayedGamesettings && - lastGameSettingsReceivedCount != clientInterface->getGameSettingsReceivedCount()) { - lastGameSettingsReceivedCount = clientInterface->getGameSettingsReceivedCount(); - bool errorOnMissingData = (clientInterface->getAllowGameDataSynchCheck() == false); + clientInterface->sendSwitchSetupRequest (desiredFactionName, + myCurrentIndex, + i, + desiredTeamIndex, + getHumanPlayerName + (), + getNetworkPlayerStatus + (), + switchSetupRequestFlagType, + lang.getLanguage ()); + labelPlayerNames[myCurrentIndex].setText (""); + labelPlayerNames[i].setText (""); + switchSetupRequestFlagType = ssrft_None; + break; + } + } - const GameSettings *receivedGameSettings= clientInterface->getGameSettings(); + if (labelPlayerNames[i].mouseClick (x, y) + && (activeInputLabel != &labelPlayerNames[i])) + { + if (clientInterface != NULL + && i == clientInterface->getPlayerIndex ()) + { + setActiveInputLabel (&labelPlayerNames[i]); + } + } + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + if (listBoxPlayerStatus.mouseClick (x, y)) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + soundRenderer.playFx (coreData.getClickSoundC ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - //printf("Menu got new settings thisfactionindex = %d startlocation: %d control = %d\n",displayedGamesettings.getThisFactionIndex(),clientInterface->getGameSettings()->getStartLocationIndex(clientInterface->getGameSettings()->getThisFactionIndex()),displayedGamesettings.getFactionControl(clientInterface->getGameSettings()->getThisFactionIndex())); - if ( difftime((long int)time(NULL),noReceiveTimer) < 3 || difftime((long int)time(NULL),broadcastServerSettingsDelayTimer) < HEADLESSSERVER_BROADCAST_SETTINGS_SECONDS){ - // copy my current settings in UI to displayedSettings; - loadGameSettings(&displayedGamesettings); + if (getNetworkPlayerStatus () == npst_PickSettings) + { + listBoxPlayerStatus.setTextColor (Vec3f (1.0f, 0.0f, 0.0f)); + listBoxPlayerStatus.setLighted (true); + } + else if (getNetworkPlayerStatus () == npst_BeRightBack) + { + listBoxPlayerStatus.setTextColor (Vec3f (1.0f, 1.0f, 0.0f)); + listBoxPlayerStatus.setLighted (true); + } + else if (getNetworkPlayerStatus () == npst_Ready) + { + listBoxPlayerStatus.setTextColor (Vec3f (0.0f, 1.0f, 0.0f)); + listBoxPlayerStatus.setLighted (false); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + ClientInterface * + clientInterface = + NetworkManager::getInstance ().getClientInterface (); + if (clientInterface != NULL && clientInterface->isConnected ()) + { + clientInterface->setGameSettingsReceived (false); + clientInterface->sendSwitchSetupRequest (listBoxFactions + [clientInterface-> + getPlayerIndex ()]. + getSelectedItem (), + clientInterface-> + getPlayerIndex (), -1, + listBoxTeams + [clientInterface->getPlayerIndex + ()].getSelectedItemIndex + (), + getHumanPlayerName (), + getNetworkPlayerStatus + (), + switchSetupRequestFlagType, + lang.getLanguage ()); + switchSetupRequestFlagType = ssrft_None; + } + } - // check if there are any changed fields from others clients - if(isHeadlessAdmin()){ - //printf("I am headless admin and will restore only some parts\n"); - // only copy those parts which are editable by normal clients - for (int i=0;igetFactionCount();i++){ - if(displayedGamesettings.getFactionControl(i)==ctNetwork){ - if(originalGamesettings.getTeam(i)==displayedGamesettings.getTeam(i)){ - displayedGamesettings.setTeam(i,receivedGameSettings->getTeam(i)); - originalGamesettings.setTeam(i,receivedGameSettings->getTeam(i)); - } - if(originalGamesettings.getFactionTypeName(i)==displayedGamesettings.getFactionTypeName(i)){ - displayedGamesettings.setFactionTypeName(i,receivedGameSettings->getFactionTypeName(i)); - originalGamesettings.setFactionTypeName(i,receivedGameSettings->getFactionTypeName(i)); - } - displayedGamesettings.setNetworkPlayerGameStatus(i,receivedGameSettings->getNetworkPlayerGameStatus(i)); - originalGamesettings.setNetworkPlayerGameStatus(i,receivedGameSettings->getNetworkPlayerGameStatus(i)); - displayedGamesettings.setNetworkPlayerName(i,receivedGameSettings->getNetworkPlayerName(i)); - originalGamesettings.setNetworkPlayerName(i,receivedGameSettings->getNetworkPlayerName(i)); - } - } - } - else{ - //printf("I am client and restore everything but not my line\n"); - // copy all received fields just not those which are editable for normal client - //store my changes - int i=clientInterface->getPlayerIndex(); - int team=displayedGamesettings.getTeam(i); - string faction=displayedGamesettings.getFactionTypeName(i); - int status=displayedGamesettings.getNetworkPlayerGameStatus(i); - string networkPlayerName=displayedGamesettings.getNetworkPlayerName(i); - displayedGamesettings=*receivedGameSettings; - originalGamesettings=*receivedGameSettings; + if (isHeadlessAdmin () == true) + { +//printf("#1 admin key [%d] client key [%d]\n",settings->getMasterserver_admin(),clientInterface->getSessionKey()); + mouseClickAdmin (x, y, mouseButton, advanceToItemStartingWith); + } + else if (clientInterface != NULL + && clientInterface->getJoinGameInProgress () == true) + { + if (buttonPlayNow.mouseClick (x, y) && buttonPlayNow.getEnabled ()) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - displayedGamesettings.setTeam(i,team); - originalGamesettings.setTeam(i,team); - displayedGamesettings.setFactionTypeName(i,faction); - originalGamesettings.setFactionTypeName(i,faction); - displayedGamesettings.setNetworkPlayerGameStatus(i,status); - originalGamesettings.setNetworkPlayerGameStatus(i,status); - displayedGamesettings.setNetworkPlayerName(i,networkPlayerName); - originalGamesettings.setNetworkPlayerName(i,networkPlayerName); + uint32 tilesetCRC = lastCheckedCRCTilesetValue; + uint32 techCRC = lastCheckedCRCTechtreeValue; + uint32 mapCRC = lastCheckedCRCMapValue; + const GameSettings * + gameSettings = clientInterface->getGameSettings (); - } + bool + dataSynchMismatch = + ((mapCRC != 0 && mapCRC != gameSettings->getMapCRC ()) + || (tilesetCRC != 0 + && tilesetCRC != gameSettings->getTilesetCRC ()) + || (techCRC != 0 && techCRC != gameSettings->getTechCRC ())); + if (dataSynchMismatch == false) + { + PlayNow (true); + return; + } + else + { + showMessageBox + ("You cannot start the game because\none or more clients do not have the same game data!", + "Data Mismatch Error", false); + } + } + } + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + bool MenuStateConnectedGame::isHeadlessAdmin () + { + bool result = false; - setupUIFromGameSettings(&displayedGamesettings, errorOnMissingData); - } - else { - // do nothing - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + ClientInterface * + clientInterface = + NetworkManager::getInstance ().getClientInterface (); + if (clientInterface != NULL && clientInterface->isConnected ()) + { + const GameSettings * + settings = clientInterface->getGameSettings (); + if (settings != NULL) + { +//printf("#1 admin key [%d] client key [%d]\n",settings->getMasterserver_admin(),clientInterface->getSessionKey()); - setupUIFromGameSettings(&displayedGamesettings, errorOnMissingData); - } + if (settings->getMasterserver_admin () == + clientInterface->getSessionKey ()) + { + result = true; + } + } + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + return result; + } - broadCastGameSettingsToHeadlessServer(needToBroadcastServerSettings); - } + void + MenuStateConnectedGame::broadCastGameSettingsToHeadlessServer (bool + forceNow) + { + if (isHeadlessAdmin () == false) + { + return; + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + if (forceNow == true || + ((needToBroadcastServerSettings == true) + && + (difftime + ((long int) time (NULL), + broadcastServerSettingsDelayTimer) >= + HEADLESSSERVER_BROADCAST_SETTINGS_SECONDS))) + { +//printf("In [%s:%s] Line: %d forceNow = %d broadcastServerSettingsDelayTimer = " MG_SIZE_T_SPECIFIER ", now =" MG_SIZE_T_SPECIFIER "\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,forceNow,broadcastServerSettingsDelayTimer,time(NULL)); - // check if we are joining an in progress game - if( clientInterface->getJoinGameInProgress() == true && - clientInterface->getJoinGameInProgressLaunch() == true && - clientInterface->getReadyForInGameJoin() == true && - ftpClientThread != NULL) { + needToBroadcastServerSettings = false; + broadcastServerSettingsDelayTimer = time (NULL); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - if(readyToJoinInProgressGame == false) { - if(getInProgressSavedGameFromFTPServer == "") { + for (int i = 0; i < mapInfo.players; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + listBoxControls[i].setSelectedItemIndex (ctNetwork); + } + } + for (int i = mapInfo.players; i < GameConstants::maxPlayers; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () == ctNetwork) + { + listBoxControls[i].setSelectedItemIndex (ctNetworkUnassigned); + } + } - getInProgressSavedGameFromFTPServerInProgress = true; - ftpClientThread->addTempFileToRequests( - GameConstants::saveNetworkGameFileClientCompressed, - GameConstants::saveNetworkGameFileServerCompressed); + if (validDisplayedGamesettings) + { + loadGameSettings (&displayedGamesettings); - getInProgressSavedGameFromFTPServer = GameConstants::saveNetworkGameFileServerCompressed; - fileFTPProgressList[getInProgressSavedGameFromFTPServer] = pair(0,""); - } - safeMutexFTPProgress.ReleaseLock(); - } - else { - safeMutexFTPProgress.ReleaseLock(); - string saveGameFile = "temp/" + string(GameConstants::saveNetworkGameFileClient); - if(getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) != "") { - saveGameFile = getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) + saveGameFile; - } - else { - string userData = Config::getInstance().getString("UserData_Root",""); - if(userData != "") { - endPathWithSlash(userData); - } - saveGameFile = userData + saveGameFile; - } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("broadcast settings:\n%s\n", + displayedGamesettings.toString ().c_str ()); - //printf("Loading saved game file [%s]\n",saveGameFile.c_str()); +//printf("Client sending map [%s] admin key [%d]\n",gameSettings.getMap().c_str(),gameSettings.getMasterserver_admin()); +//printf("sending Settings map filter=%d\n",displayedGamesettings.getMapFilter()); + clientInterface->broadcastGameSetup (&displayedGamesettings); + noReceiveTimer = time (NULL); + } + } + } - GameSettings gameSettings = *clientInterface->getGameSettings(); - loadGameSettings(&gameSettings); + void + MenuStateConnectedGame::updateResourceMultiplier (const int index) + { + ControlType + ct = + static_cast < ControlType > + (listBoxControls[index].getSelectedItemIndex ()); + if (ct == ctCpuEasy || ct == ctNetworkCpuEasy) + { + listBoxRMultiplier[index].setSelectedItem (floatToStr + (GameConstants:: + easyMultiplier, 1)); + listBoxRMultiplier[index].setEnabled (true); + } + else if (ct == ctCpu || ct == ctNetworkCpu) + { + listBoxRMultiplier[index].setSelectedItem (floatToStr + (GameConstants:: + normalMultiplier, 1)); + listBoxRMultiplier[index].setEnabled (true); + } + else if (ct == ctCpuUltra || ct == ctNetworkCpuUltra) + { + listBoxRMultiplier[index].setSelectedItem (floatToStr + (GameConstants:: + ultraMultiplier, 1)); + listBoxRMultiplier[index].setEnabled (true); + } + else if (ct == ctCpuMega || ct == ctNetworkCpuMega) + { + listBoxRMultiplier[index].setSelectedItem (floatToStr + (GameConstants:: + megaMultiplier, 1)); + listBoxRMultiplier[index].setEnabled (true); + } + else + { + listBoxRMultiplier[index].setSelectedItem (floatToStr + (GameConstants:: + normalMultiplier, 1)); + listBoxRMultiplier[index].setEnabled (false); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + listBoxRMultiplier[index]. + setEditable (listBoxRMultiplier[index].getEnabled ()); + listBoxRMultiplier[index]. + setVisible (listBoxRMultiplier[index].getEnabled ()); + } - Game::loadGame(saveGameFile,program,false,&gameSettings); - return; - } - } + void + MenuStateConnectedGame::mouseClickAdmin (int x, int y, + MouseButton mouseButton, + string advanceToItemStartingWith) + { - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + try + { + int + oldListBoxMapfilterIndex = listBoxMapFilter.getSelectedItemIndex (); + if (buttonPlayNow.mouseClick (x, y) && buttonPlayNow.getEnabled ()) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - //update lobby - clientInterface= NetworkManager::getInstance().getClientInterface(); - if(clientInterface != NULL && clientInterface->isConnected()) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + PlayNow (true); + return; + } + else if (buttonRestoreLastSettings.mouseClick (x, y) + && buttonRestoreLastSettings.getEnabled ()) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); - clientInterface->updateLobby(); + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + soundRenderer.playFx (coreData.getClickSoundB ()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - } + RestoreLastGameSettings (); + } + else if (checkBoxAllowNativeLanguageTechtree.mouseClick (x, y)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (listBoxMap.mouseClick (x, y, advanceToItemStartingWith)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s\n", + getCurrentMapFile ().c_str ()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + if (loadMapInfo + (Config::getMapPath (getCurrentMapFile (), "", false), &mapInfo, + true) == true) + { + labelMapInfo.setText (mapInfo.desc); + } + else + { + labelMapInfo.setText ("???"); + } - clientInterface= NetworkManager::getInstance().getClientInterface(); - if(clientInterface != NULL && clientInterface->isConnected()) { - if( initialSettingsReceivedFromServer == true && - clientInterface->getIntroDone() == true && - (switchSetupRequestFlagType & ssrft_NetworkPlayerName) == ssrft_NetworkPlayerName) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] getHumanPlayerName() = [%s], clientInterface->getGameSettings()->getThisFactionIndex() = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,getHumanPlayerName().c_str(),clientInterface->getGameSettings()->getThisFactionIndex()); - clientInterface->sendSwitchSetupRequest( - "", - clientInterface->getPlayerIndex(), - -1, - -1, - getHumanPlayerName(), - getNetworkPlayerStatus(), - switchSetupRequestFlagType, - lang.getLanguage()); + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (listBoxFogOfWar.mouseClick (x, y)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (checkBoxAllowObservers.mouseClick (x, y)) + { +#ifdef DEBUG + PRINT_DEBUG ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); +#endif + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (checkBoxEnableSwitchTeamMode.mouseClick (x, y)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (listBoxAISwitchTeamAcceptPercent.getEnabled () + && listBoxAISwitchTeamAcceptPercent.mouseClick (x, y)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (listBoxFallbackCpuMultiplier.getEnabled () + && listBoxFallbackCpuMultiplier.mouseClick (x, y)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (listBoxTileset.mouseClick (x, y, advanceToItemStartingWith)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } - switchSetupRequestFlagType=ssrft_None; - } + else if (listBoxMapFilter.mouseClick (x, y)) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s\n", + getCurrentMapFile ().c_str ()); + switchToNextMapGroup (listBoxMapFilter.getSelectedItemIndex () - + oldListBoxMapfilterIndex); + if (loadMapInfo + (Config::getMapPath (getCurrentMapFile (), "", false), &mapInfo, + true) == true) + { + labelMapInfo.setText (mapInfo.desc); + } + else + { + labelMapInfo.setText ("???"); + } + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (listBoxTechTree.mouseClick (x, y, advanceToItemStartingWith)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + reloadFactions (false, ""); + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + else if (checkBoxAllowTeamUnitSharing.mouseClick (x, y)) + { + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (checkBoxAllowTeamResourceSharing.mouseClick (x, y)) + { + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); - //intro - if(clientInterface->getIntroDone()) { - if(newLabelConnectionInfo != labelInfo.getText()) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - labelInfo.setText(newLabelConnectionInfo); - } - } + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); - //launch - if(clientInterface->getLaunchGame()) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + for (int i = 0; i < mapInfo.players; ++i) + { +// set multiplier + if (listBoxRMultiplier[i].mouseClick (x, y)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); +//broadCastGameSettingsToMasterserver(); + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } - assert(clientInterface != NULL); +//ensure that only 1 human player is present + if (clientInterface != NULL + && clientInterface->getGameSettings () != NULL + && clientInterface-> + getGameSettings ()->getStartLocationIndex (clientInterface-> + getGameSettings + ()->getThisFactionIndex + ()) != i + && listBoxControls[i].mouseClick (x, y)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); +//!! this must be done two times!"" + if (listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + listBoxControls[i].mouseClick (x, y); + } + if ((isHeadlessAdmin () == true) + && (listBoxControls[i].getSelectedItemIndex () == ctHuman)) + { + listBoxControls[i].mouseClick (x, y); + } +//!! this must be done two times!"" + if (listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + listBoxControls[i].mouseClick (x, y); + } - if(modHttpServerThread != NULL) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - modHttpServerThread->setSimpleTaskInterfaceValid(false); - modHttpServerThread->signalQuit(); + updateResourceMultiplier (i); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if( modHttpServerThread->canShutdown(true) == true && - modHttpServerThread->shutdownAndWait() == true) { - delete modHttpServerThread; - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - modHttpServerThread = NULL; - } + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (clientInterface != NULL + && clientInterface-> + getGameSettings ()->getStartLocationIndex + (clientInterface->getGameSettings ()->getThisFactionIndex + ()) != i + && listBoxFactions[i].mouseClick (x, y, + advanceToItemStartingWith)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); +// Disallow CPU players to be observers + if (factionFiles[listBoxFactions[i].getSelectedItemIndex ()] == + formatString (GameConstants::OBSERVER_SLOTNAME) + && (listBoxControls[i].getSelectedItemIndex () == ctCpuEasy + || listBoxControls[i].getSelectedItemIndex () == ctCpu + || listBoxControls[i].getSelectedItemIndex () == + ctCpuUltra + || listBoxControls[i].getSelectedItemIndex () == + ctCpuMega)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + listBoxFactions[i].setSelectedItemIndex (0); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + else if (clientInterface != NULL + && clientInterface-> + getGameSettings ()->getStartLocationIndex + (clientInterface->getGameSettings ()->getThisFactionIndex + ()) != i && listBoxTeams[i].mouseClick (x, y)) + { +#ifdef DEBUG + PRINT_DEBUG ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); +#endif + if (factionFiles[listBoxFactions[i].getSelectedItemIndex ()] != + formatString (GameConstants::OBSERVER_SLOTNAME)) + { + if (listBoxTeams[i].getSelectedItemIndex () + 1 != + (GameConstants::maxPlayers + fpt_Observer)) + { +//lastSelectedTeamIndex[i] = listBoxTeams[i].getSelectedItemIndex(); + } + } - if(ftpClientThread != NULL) { - ftpClientThread->setCallBackObject(NULL); - ftpClientThread->signalQuit(); - sleep(0); - if(ftpClientThread->canShutdown(true) == true && - ftpClientThread->shutdownAndWait() == true) { - delete ftpClientThread; - } - else { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error cannot shutdown ftpClientThread\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("%s",szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - } - ftpClientThread = NULL; - } + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + } + } + } + } + catch (const std::exception & ex) + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + showMessageBox (szBuf, "Error", false); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } - launchingNewGame = true; + void + MenuStateConnectedGame::PlayNow (bool saveGame) + { + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); - GameSettings gameSettings = *clientInterface->getGameSettings(); - // complete game settings with local stuff - if(gameSettings.getScenario()!="") + GameSettings gameSettings = *clientInterface->getGameSettings (); + loadGameSettings (&gameSettings); + + if (saveGame == true) + { + CoreData:: + getInstance ().saveGameSettingsToFile (HEADLESS_SAVED_GAME_FILENAME, + &gameSettings, true); + } + + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + soundRenderer.playFx (coreData.getClickSoundC ()); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +//printf("Client sending map [%s] admin key [%d]\n",gameSettings.getMap().c_str(),gameSettings.getMasterserver_admin()); + + if (clientInterface->getJoinGameInProgress () == true) + { + if (readyToJoinInProgressGame == false && launchingNewGame == false) + { + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("JoinPlayerToCurrentGameLaunch", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("JoinPlayerToCurrentGameLaunch", + languageList[i]).c_str (), + getHumanPlayerName ().c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s is about to join the game, please wait...", + getHumanPlayerName ().c_str ()); + } + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (szMsg, -1, localEcho, + languageList[i]); + } + + sleep (1); + launchingNewGame = true; + clientInterface->broadcastGameStart (&gameSettings); + } + return; + } + else + { + launchingNewGame = true; + broadCastGameSettingsToHeadlessServer (needToBroadcastServerSettings); + clientInterface->broadcastGameStart (&gameSettings); + } + } + + void + MenuStateConnectedGame::switchToNextMapGroup (const int direction) + { + int + i = listBoxMapFilter.getSelectedItemIndex (); +// if there are no maps for the current selection we switch to next selection + while (formattedPlayerSortedMaps[i].empty ()) + { + i = i + direction; + if (i > GameConstants::maxPlayers) + { + i = 0; + } + if (i < 0) + { + i = GameConstants::maxPlayers; + } + } + switchToMapGroup (i); + } + + void + MenuStateConnectedGame::switchToMapGroup (int filterIndex) + { + int + i = filterIndex; + listBoxMapFilter.setSelectedItemIndex (i); + listBoxMap.setItems (formattedPlayerSortedMaps[i]); +// printf("switching map group to filter=%d mapgroup has %d maps. map=%s \n",i, +// (int)formattedPlayerSortedMaps[i].size(),formattedPlayerSortedMaps[i][0].c_str()); + } + + string MenuStateConnectedGame::getCurrentMapFile () + { + int + i = listBoxMapFilter.getSelectedItemIndex (); + int + mapIndex = listBoxMap.getSelectedItemIndex (); + if (playerSortedMaps[i].empty () == false) + { + return playerSortedMaps[i].at (mapIndex); + } + return ""; + } + + void + MenuStateConnectedGame::reloadFactions (bool keepExistingSelectedItem, + string scenario) + { + vector < string > results; + Config & config = Config::getInstance (); + Lang & lang = Lang::getInstance (); + + string scenarioDir = Scenario::getScenarioDir (dirList, scenario); + vector < string > techPaths = + config.getPathListForType (ptTechs, scenarioDir); + for (int idx = 0; idx < (int) techPaths.size (); idx++) + { + string & techPath = techPaths[idx]; + endPathWithSlash (techPath); + + if (listBoxTechTree.getSelectedItemIndex () >= 0 + && listBoxTechTree.getSelectedItemIndex () < + (int) techTreeFiles.size ()) + { + findDirs (techPath + + techTreeFiles[listBoxTechTree.getSelectedItemIndex ()] + + "/factions/", results, false, false); + } + if (results.empty () == false) + { + break; + } + } + + if (results.empty () == true) + { +//throw megaglest_runtime_error("(2)There are no factions for the tech tree [" + techTreeFiles[listBoxTechTree.getSelectedItemIndex()] + "]"); +//showGeneralError=true; +//generalErrorToShow = "[#2] There are no factions for the tech tree [" + techTreeFiles[listBoxTechTree.getSelectedItemIndex()] + "]"; + } + + vector < string > translatedFactionNames; + factionFiles = results; + for (int i = 0; i < (int) results.size (); ++i) + { + results[i] = formatString (results[i]); + string + translatedString = + techTree->getTranslatedFactionName (techTreeFiles + [listBoxTechTree. + getSelectedItemIndex ()], + factionFiles[i]); + if (toLower (translatedString) == toLower (results[i])) + { + translatedFactionNames.push_back (results[i]); + } + else + { + translatedFactionNames.push_back (results[i] + " (" + + translatedString + ")"); + } +//printf("FACTIONS i = %d results [%s]\n",i,results[i].c_str()); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "Tech [%s] has faction [%s]\n", + techTreeFiles + [listBoxTechTree.getSelectedItemIndex + ()].c_str (), results[i].c_str ()); + } + + results.push_back (formatString + (GameConstants::RANDOMFACTION_SLOTNAME)); + factionFiles.push_back (formatString + (GameConstants::RANDOMFACTION_SLOTNAME)); + translatedFactionNames.push_back ("*" + + lang.getString ("Random", "", + true) + "*"); + +// Add special Observer Faction + if (checkBoxAllowObservers.getValue () == 1) + { + results.push_back (formatString (GameConstants::OBSERVER_SLOTNAME)); + factionFiles.push_back (formatString + (GameConstants::OBSERVER_SLOTNAME)); + translatedFactionNames.push_back ("*" + + lang.getString ("Observer", "", + true) + "*"); + } + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + int + originalIndex = listBoxFactions[i].getSelectedItemIndex (); + string + originalValue = + (listBoxFactions[i].getItemCount () > + 0 ? listBoxFactions[i].getSelectedItem () : ""); + + listBoxFactions[i].setItems (results, translatedFactionNames); + if (keepExistingSelectedItem == false || + (checkBoxAllowObservers.getValue () == true && + originalValue == + formatString (GameConstants::OBSERVER_SLOTNAME))) + { + listBoxFactions[i].setSelectedItemIndex (i % results.size ()); + + if (originalValue == formatString (GameConstants::OBSERVER_SLOTNAME) + && listBoxFactions[i].getSelectedItem () != + formatString (GameConstants::OBSERVER_SLOTNAME)) + { + if (listBoxTeams[i].getSelectedItem () == + intToStr (GameConstants::maxPlayers + fpt_Observer)) + { + listBoxTeams[i].setSelectedItem (intToStr (1)); + } + } + } + else if (originalIndex < (int) results.size ()) + { + listBoxFactions[i].setSelectedItemIndex (originalIndex); + } + } + } + + void + MenuStateConnectedGame::loadGameSettings (GameSettings * gameSettings) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + int + factionCount = 0; + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +// Test flags values +//gameSettings->setFlagTypes1(ft1_show_map_resources); +// + + if (checkBoxScenario.getValue () == true) + { + gameSettings->setScenario (scenarioInfo.name); + gameSettings->setScenarioDir (Scenario::getScenarioPath + (dirList, scenarioInfo.name)); + + gameSettings->setDefaultResources (scenarioInfo.defaultResources); + gameSettings->setDefaultUnits (scenarioInfo.defaultUnits); + gameSettings-> + setDefaultVictoryConditions (scenarioInfo.defaultVictoryConditions); + } + else + { + gameSettings->setScenario (""); + gameSettings->setScenarioDir (""); + } + + gameSettings->setNetworkAllowNativeLanguageTechtree + (checkBoxAllowNativeLanguageTechtree.getValue ()); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("In [%s::%s Line %d] listBoxMap.getSelectedItemIndex() = %d, mapFiles.size() = " + MG_SIZE_T_SPECIFIER ", getCurrentMapFile() [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), __FUNCTION__, + __LINE__, listBoxMap.getSelectedItemIndex (), mapFiles.size (), + getCurrentMapFile ().c_str ()); + + if (listBoxMap.getSelectedItemIndex () >= 0 + && listBoxMap.getSelectedItemIndex () < (int) mapFiles.size ()) + { + gameSettings->setDescription (formatString (getCurrentMapFile ())); + gameSettings->setMap (getCurrentMapFile ()); + gameSettings->setMapFilter (listBoxMapFilter.getSelectedItemIndex ()); + } + else + { + Lang & lang = Lang::getInstance (); + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingMap=Player", languageList[i]) == + true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingMap=Player", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + listBoxMap.getSelectedItem ().c_str ()); + } + else + { + snprintf (szMsg, 8096, "Player: %s is missing the map: %s", + getHumanPlayerName ().c_str (), + listBoxMap.getSelectedItem ().c_str ()); + } + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (szMsg, -1, localEcho, + languageList[i]); + } + } + + if (listBoxTileset.getSelectedItemIndex () >= 0 + && listBoxTileset.getSelectedItemIndex () < + (int) tilesetFiles.size ()) + { + gameSettings->setTileset (tilesetFiles + [listBoxTileset.getSelectedItemIndex ()]); + } + else + { +//printf("A loadGameSettings listBoxTileset.getSelectedItemIndex() = %d tilesetFiles.size() = %d\n",listBoxTileset.getSelectedItemIndex(),tilesetFiles.size()); + + Lang & lang = Lang::getInstance (); + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTileset=Player", languageList[i]) == + true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingTileset=Player", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + listBoxTileset.getSelectedItem ().c_str ()); + } + else + { + snprintf (szMsg, 8096, "Player: %s is missing the tileset: %s", + getHumanPlayerName ().c_str (), + listBoxTileset.getSelectedItem ().c_str ()); + } + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (szMsg, -1, localEcho, + languageList[i]); + } + } + if (listBoxTechTree.getSelectedItemIndex () >= 0 + && listBoxTechTree.getSelectedItemIndex () < + (int) techTreeFiles.size ()) + { + gameSettings->setTech (techTreeFiles + [listBoxTechTree.getSelectedItemIndex ()]); + } + else + { + Lang & lang = Lang::getInstance (); + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTechtree=Player", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingTechtree=Player", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + listBoxTechTree.getSelectedItem ().c_str ()); + } + else + { + snprintf (szMsg, 8096, "Player: %s is missing the techtree: %s", + getHumanPlayerName ().c_str (), + listBoxTechTree.getSelectedItem ().c_str ()); + } + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (szMsg, -1, localEcho, + languageList[i]); + } + } + + if (checkBoxScenario.getValue () == false) + { + gameSettings->setDefaultUnits (true); + gameSettings->setDefaultResources (true); + gameSettings->setDefaultVictoryConditions (true); + } + + gameSettings->setFogOfWar (listBoxFogOfWar.getSelectedItemIndex () == 0 + || listBoxFogOfWar.getSelectedItemIndex () == + 1); + + gameSettings->setAllowObservers (checkBoxAllowObservers.getValue () == + true); + + uint32 valueFlags1 = gameSettings->getFlagTypes1 (); + if (listBoxFogOfWar.getSelectedItemIndex () == 1 || + listBoxFogOfWar.getSelectedItemIndex () == 2) + { + valueFlags1 |= ft1_show_map_resources; + gameSettings->setFlagTypes1 (valueFlags1); + } + else + { + valueFlags1 &= ~ft1_show_map_resources; + gameSettings->setFlagTypes1 (valueFlags1); + } + +//gameSettings->setEnableObserverModeAtEndGame(listBoxEnableObserverMode.getSelectedItemIndex() == 0); + gameSettings->setEnableObserverModeAtEndGame (true); +//gameSettings->setPathFinderType(static_cast(listBoxPathFinderType.getSelectedItemIndex())); + + valueFlags1 = gameSettings->getFlagTypes1 (); + if (checkBoxEnableSwitchTeamMode.getValue () == true) + { + valueFlags1 |= ft1_allow_team_switching; + gameSettings->setFlagTypes1 (valueFlags1); + } + else + { + valueFlags1 &= ~ft1_allow_team_switching; + gameSettings->setFlagTypes1 (valueFlags1); + } + gameSettings->setAiAcceptSwitchTeamPercentChance (strToInt + (listBoxAISwitchTeamAcceptPercent.getSelectedItem + ())); + gameSettings-> + setFallbackCpuMultiplier + (listBoxFallbackCpuMultiplier.getSelectedItemIndex ()); + + valueFlags1 = gameSettings->getFlagTypes1 (); + if (checkBoxAllowTeamUnitSharing.getValue () == true) + { + valueFlags1 |= ft1_allow_shared_team_units; + gameSettings->setFlagTypes1 (valueFlags1); + } + else + { + valueFlags1 &= ~ft1_allow_shared_team_units; + gameSettings->setFlagTypes1 (valueFlags1); + } + + valueFlags1 = gameSettings->getFlagTypes1 (); + if (checkBoxAllowTeamResourceSharing.getValue () == true) + { + valueFlags1 |= ft1_allow_shared_team_resources; + gameSettings->setFlagTypes1 (valueFlags1); + } + else + { + valueFlags1 &= ~ft1_allow_shared_team_resources; + gameSettings->setFlagTypes1 (valueFlags1); + } + +// First save Used slots +//for(int i=0; i + (listBoxControls[i].getSelectedItemIndex ()); + + if (ct != ctClosed) + { + int + slotIndex = factionCount; + ControlType + oldControlType = gameSettings->getFactionControl (slotIndex); + gameSettings->setFactionControl (slotIndex, ct); + if (ct == ctHuman) + { +//if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, slotIndex = %d, getHumanPlayerName(i) [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,slotIndex,getHumanPlayerName(i).c_str()); + + gameSettings->setThisFactionIndex (slotIndex); + gameSettings->setNetworkPlayerName (slotIndex, + getHumanPlayerName ()); + gameSettings->setNetworkPlayerUUID (slotIndex, + Config:: + getInstance ().getString + ("PlayerId", "")); + gameSettings->setNetworkPlayerPlatform (slotIndex, + getPlatformNameString ()); + gameSettings->setNetworkPlayerStatuses (slotIndex, + getNetworkPlayerStatus + ()); + Lang & lang = Lang::getInstance (); + gameSettings->setNetworkPlayerLanguages (slotIndex, + lang.getLanguage ()); + + gameSettings->setResourceMultiplierIndex (slotIndex, 5); + } + else + { + gameSettings->setResourceMultiplierIndex (slotIndex, + listBoxRMultiplier + [i].getSelectedItemIndex + ()); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, factionFiles[listBoxFactions[i].getSelectedItemIndex()] [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i, + factionFiles[listBoxFactions + [i].getSelectedItemIndex + ()].c_str ()); + + gameSettings->setFactionTypeName (slotIndex, + factionFiles[listBoxFactions + [i].getSelectedItemIndex + ()]); + if (factionFiles[listBoxFactions[i].getSelectedItemIndex ()] == + formatString (GameConstants::OBSERVER_SLOTNAME)) + { + listBoxTeams[i].setSelectedItem (intToStr + (GameConstants::maxPlayers + + fpt_Observer)); + } + + gameSettings->setTeam (slotIndex, + listBoxTeams[i].getSelectedItemIndex ()); + gameSettings->setStartLocationIndex (slotIndex, i); +//printf("!!! setStartLocationIndex #1 slotIndex = %d, i = %d\n",slotIndex, i); + + if (listBoxControls[i].getSelectedItemIndex () == ctNetwork + || listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + if (oldControlType != ctNetwork + && oldControlType != ctNetworkUnassigned) + { + gameSettings->setNetworkPlayerName (slotIndex, ""); + } + } + else if (listBoxControls[i].getSelectedItemIndex () != ctHuman) + { + AIPlayerCount++; + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, playername is AI (blank)\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i); + + Lang & lang = Lang::getInstance (); + gameSettings->setNetworkPlayerName (slotIndex, + lang.getString ("AI") + + intToStr (AIPlayerCount)); + labelPlayerNames[i].setText (""); + } + + factionCount++; + } + else + { + labelPlayerNames[i].setText (""); + } + } + +// Next save closed slots + int + closedCount = 0; + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + ControlType + ct = + static_cast < ControlType > + (listBoxControls[i].getSelectedItemIndex ()); + if (ct == ctClosed) + { + int + slotIndex = factionCount + closedCount; + + gameSettings->setFactionControl (slotIndex, ct); + gameSettings->setTeam (slotIndex, + listBoxTeams[i].getSelectedItemIndex ()); + gameSettings->setStartLocationIndex (slotIndex, i); +//printf("!!! setStartLocationIndex #2 slotIndex = %d, i = %d\n",slotIndex, i); + + gameSettings->setResourceMultiplierIndex (slotIndex, 5); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, factionFiles[listBoxFactions[i].getSelectedItemIndex()] [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i, + factionFiles[listBoxFactions + [i].getSelectedItemIndex + ()].c_str ()); + + gameSettings->setFactionTypeName (slotIndex, + factionFiles[listBoxFactions + [i].getSelectedItemIndex + ()]); + gameSettings->setNetworkPlayerStatuses (slotIndex, npst_None); + gameSettings->setNetworkPlayerName (slotIndex, + GameConstants::NETWORK_SLOT_CLOSED_SLOTNAME); + + closedCount++; + } + } + + gameSettings->setFactionCount (factionCount); + + Config & config = Config::getInstance (); + gameSettings->setEnableServerControlledAI (config.getBool + ("ServerControlledAI", + "true")); + gameSettings-> + setNetworkFramePeriod (config.getInt ("NetworkSendFrameCount", "20")); + + if (hasNetworkGameSettings () == true) + { + if (gameSettings->getTileset () != "") + { + if (lastCheckedCRCTilesetName != gameSettings->getTileset ()) + { +//console.addLine("Checking tileset CRC [" + gameSettings->getTileset() + "]"); + lastCheckedCRCTilesetValue = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTilesets, ""), + string ("/") + gameSettings->getTileset () + string ("/*"), + ".xml", NULL); + if (lastCheckedCRCTilesetValue == 0 + || lastCheckedCRCTilesetValue != + gameSettings->getTilesetCRC ()) + { + lastCheckedCRCTilesetValue = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTilesets, ""), + string ("/") + gameSettings->getTileset () + string ("/*"), + ".xml", NULL, true); + } + lastCheckedCRCTilesetName = gameSettings->getTileset (); + } + gameSettings->setTilesetCRC (lastCheckedCRCTilesetValue); + } + + if (config.getBool ("DisableServerLobbyTechtreeCRCCheck", "false") == + false) + { + if (gameSettings->getTech () != "") + { + if (lastCheckedCRCTechtreeName != gameSettings->getTech ()) + { +//console.addLine("Checking techtree CRC [" + gameSettings->getTech() + "]"); + lastCheckedCRCTechtreeValue = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + gameSettings->getTech () + "/*", ".xml", NULL); + if (lastCheckedCRCTechtreeValue == 0 + || lastCheckedCRCTechtreeValue != + gameSettings->getTechCRC ()) + { + lastCheckedCRCTechtreeValue = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + gameSettings->getTech () + "/*", ".xml", NULL, true); + } + + reloadFactions (true, gameSettings->getScenario ()); + factionCRCList.clear (); + for (unsigned int factionIdx = 0; + factionIdx < factionFiles.size (); ++factionIdx) + { + string factionName = factionFiles[factionIdx]; + if (factionName != GameConstants::RANDOMFACTION_SLOTNAME && + factionName != GameConstants::OBSERVER_SLOTNAME) + { +//factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/factions/" + factionName + "/*", ".xml", NULL, true); + uint32 + factionCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + gameSettings->getTech () + "/factions/" + + factionName + "/*", ".xml", NULL); + if (factionCRC == 0) + { + factionCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + gameSettings->getTech () + "/factions/" + + factionName + "/*", ".xml", NULL, true); + } + factionCRCList.push_back (make_pair + (factionName, factionCRC)); + } + } +//console.addLine("Found factions: " + intToStr(factionCRCList.size())); + lastCheckedCRCTechtreeName = gameSettings->getTech (); + } + + gameSettings->setFactionCRCList (factionCRCList); + gameSettings->setTechCRC (lastCheckedCRCTechtreeValue); + } + } + + if (gameSettings->getMap () != "") + { + if (lastCheckedCRCMapName != gameSettings->getMap ()) + { + Checksum checksum; + string + file = Config::getMapPath (gameSettings->getMap (), "", false); +//console.addLine("Checking map CRC [" + file + "]"); + checksum.addFile (file); + lastCheckedCRCMapValue = checksum.getSum (); + lastCheckedCRCMapName = gameSettings->getMap (); + } + gameSettings->setMapCRC (lastCheckedCRCMapValue); + } + } + +//replace server player by network + for (int i = 0; i < gameSettings->getFactionCount (); ++i) + { +//replace by network + if (gameSettings->getFactionControl (i) == ctHuman) + { + gameSettings->setFactionControl (i, ctNetwork); + } + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + + void + MenuStateConnectedGame::returnToJoinMenu () + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (modHttpServerThread != NULL) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + modHttpServerThread->setSimpleTaskInterfaceValid (false); + modHttpServerThread->signalQuit (); +//modHttpServerThread->setThreadOwnerValid(false); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + if (modHttpServerThread->canShutdown (true) == true + && modHttpServerThread->shutdownAndWait () == true) + { + delete modHttpServerThread; + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + modHttpServerThread = NULL; + } + + if (ftpClientThread != NULL) + { + + ftpClientThread->setCallBackObject (NULL); + ftpClientThread->signalQuit (); + sleep (0); + if (ftpClientThread->canShutdown (true) == true && + ftpClientThread->shutdownAndWait () == true) + { + delete ftpClientThread; + } + else + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d] Error cannot shutdown ftpClientThread\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("%s", szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + } + ftpClientThread = NULL; + } + + if (returnMenuInfo == jmSimple) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + launchingNewGame = true; + disconnectFromServer (); + mainMenu->setState (new MenuStateJoinGame (program, mainMenu)); + } + else + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + launchingNewGame = true; + disconnectFromServer (); + mainMenu->setState (new MenuStateMasterserver (program, mainMenu)); + } + } + + void + MenuStateConnectedGame::mouseMove (int x, int y, const MouseState * ms) + { + if (mainMessageBox.getEnabled ()) + { + mainMessageBox.mouseMove (x, y); + } + + if (ftpMessageBox.getEnabled ()) + { + ftpMessageBox.mouseMove (x, y); + } + + buttonCancelDownloads.mouseMove (x, y); + buttonDisconnect.mouseMove (x, y); + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + listBoxControls[i].mouseMove (x, y); + listBoxFactions[i].mouseMove (x, y); + listBoxTeams[i].mouseMove (x, y); + grabSlotButton[i].mouseMove (x, y); + } + + listBoxMap.mouseMove (x, y); + listBoxFogOfWar.mouseMove (x, y); + checkBoxAllowObservers.mouseMove (x, y); + listBoxTileset.mouseMove (x, y); + listBoxMapFilter.mouseMove (x, y); + listBoxTechTree.mouseMove (x, y); + listBoxPlayerStatus.mouseMove (x, y); + + checkBoxScenario.mouseMove (x, y); + listBoxScenario.mouseMove (x, y); + + labelAllowTeamUnitSharing.mouseMove (x, y); + checkBoxAllowTeamUnitSharing.mouseMove (x, y); + labelAllowTeamResourceSharing.mouseMove (x, y); + checkBoxAllowTeamResourceSharing.mouseMove (x, y); + + checkBoxAllowNativeLanguageTechtree.mouseMove (x, y); + + buttonPlayNow.mouseMove (x, y); + buttonRestoreLastSettings.mouseMove (x, y); + } + + bool MenuStateConnectedGame::isVideoPlaying () + { + bool result = false; + if (factionVideo != NULL) + { + result = factionVideo->isPlaying (); + } + return result; + } + + void + MenuStateConnectedGame::render () + { + try + { + Renderer & renderer = Renderer::getInstance (); + + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + + renderer.renderButton (&buttonDisconnect); + + if (initialSettingsReceivedFromServer == false) + { + return; + } + + if (factionTexture != NULL) + { + if (factionVideo == NULL || factionVideo->isPlaying () == false) + { + renderer.renderTextureQuad (800, 600, 200, 150, factionTexture, + 1); + } + } + if (factionVideo != NULL) + { + if (factionVideo->isPlaying () == true) + { + factionVideo->playFrame (false); + } + else + { + if (GlobalStaticFlags::getIsNonGraphicalModeEnabled () == false + &&::Shared::Graphics::VideoPlayer::hasBackEndVideoPlayer () == + true) + { + if (factionVideo != NULL) + { + factionVideo->closePlayer (); + delete factionVideo; + factionVideo = NULL; + + if (validDisplayedGamesettings) + { + initFactionPreview (&displayedGamesettings); + } + } + } + } + } + + if (mapPreviewTexture != NULL) + { +//renderer.renderTextureQuad(5,185,150,150,mapPreviewTexture,1.0f); + renderer.renderTextureQuad (this->render_mapPreviewTexture_X, + this->render_mapPreviewTexture_Y, + this->render_mapPreviewTexture_W, + this->render_mapPreviewTexture_H, + mapPreviewTexture, 1.0f); + if (this->zoomedMap == true) + { + return; + } +//printf("=================> Rendering map preview texture\n"); + } + + if (scenarioLogoTexture != NULL) + { + renderer.renderTextureQuad (300, 350, 400, 300, scenarioLogoTexture, + 1.0f); +//renderer.renderBackground(scenarioLogoTexture); + } + + renderer.renderButton (&buttonDisconnect); + +// Get a reference to the player texture cache + std::map < int, + Texture2D * >& + crcPlayerTextureCache = + CacheManager::getCachedItem < std::map < int, + Texture2D * >>(GameConstants::playerTextureCacheLookupKey); + +// START - this code ensure player title and player names don't overlap + int + offsetPosition = 0; + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + const + Metrics & + metrics = Metrics::getInstance (); + FontMetrics * + fontMetrics = NULL; + if (Renderer::renderText3DEnabled == false) + { + fontMetrics = + CoreData::getInstance ().getMenuFontNormal ()->getMetrics (); + } + else + { + fontMetrics = + CoreData::getInstance ().getMenuFontNormal3D ()->getMetrics (); + } + + if (fontMetrics == NULL) + { + throw megaglest_runtime_error ("fontMetrics == NULL"); + } + int + curWidth = + (metrics.toVirtualX + (fontMetrics->getTextWidth (labelPlayers[i].getText ()))); + + if (labelPlayers[i].getX () + curWidth >= + labelPlayerNames[i].getX ()) + { + int + newOffsetPosition = labelPlayers[i].getX () + curWidth + 2; + if (offsetPosition < newOffsetPosition) + { + offsetPosition = newOffsetPosition; + } + } + } +// END + + renderer.renderListBox (&listBoxPlayerStatus); + + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + bool renderIt = true; +//printf("Player #%d [%s] control = %d\n",i,labelPlayerNames[i].getText().c_str(),listBoxControls[i].getSelectedItemIndex()); + if (labelNetStatus[i].getText () == + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) + { + renderIt = false; + } + labelPlayers[i].setVisible (renderIt); + labelPlayerNames[i].setVisible (renderIt); + listBoxControls[i].setVisible (renderIt); + listBoxRMultiplier[i].setVisible (renderIt); + listBoxFactions[i].setVisible (renderIt); + listBoxTeams[i].setVisible (renderIt); + labelNetStatus[i].setVisible (renderIt); + } + + if (listBoxControls[i].getSelectedItemIndex () != ctClosed) + { + renderer.renderLabel (&labelPlayerStatus[i]); + } + + if (crcPlayerTextureCache[i] != NULL) + { +// Render the player # label the player's color + + Vec3f + playerColor = + crcPlayerTextureCache[i]->getPixmap ()->getPixel3f (0, 0); + if (clientInterface != NULL + && clientInterface->getGameSettings () != NULL + && clientInterface-> + getGameSettings ()->getMasterserver_admin () > 0 + && clientInterface-> + getGameSettings ()->getMasterserver_admin_faction_index () == + i) + { + + if (difftime ((long int) time (NULL), timerLabelFlash) < 1) + { + renderer.renderLabel (&labelPlayers[i], &playerColor); + } + else + { + Vec4f + flashColor = + Vec4f (playerColor.x, playerColor.y, playerColor.z, 0.45f); + renderer.renderLabel (&labelPlayers[i], &flashColor); + } + + } + else + { + renderer.renderLabel (&labelPlayers[i], &playerColor); + } + +// Blend the color with white so make it more readable +//Vec4f newColor(1.f, 1.f, 1.f, 0.57f); +//renderer.renderLabel(&labelPlayers[i],&newColor); + +//int quadWidth = labelPlayerNames[i].getX() - labelPlayers[i].getX() - 5; +//renderer.renderTextureQuad(labelPlayers[i].getX(), labelPlayers[i].getY(), quadWidth, labelPlayers[i].getH(), crcPlayerTextureCache[i],1.0f,&playerColor); + } + else + { + renderer.renderLabel (&labelPlayers[i]); + } + + if (offsetPosition > 0) + { + labelPlayerNames[i].setX (offsetPosition); + } + + renderer.renderListBox (&listBoxControls[i]); + if (listBoxControls[i].getSelectedItemIndex () != ctClosed) + { + renderer.renderListBox (&listBoxRMultiplier[i]); + renderer.renderListBox (&listBoxFactions[i]); + int + teamnumber = listBoxTeams[i].getSelectedItemIndex (); + Vec3f teamcolor = Vec3f (1.0f, 1.0f, 1.0f); + if (teamnumber >= 0 && teamnumber < 8) + { + teamcolor = + crcPlayerTextureCache[teamnumber]-> + getPixmap ()->getPixel3f (0, 0); + } + listBoxTeams[i].setTextColor (teamcolor); + renderer.renderListBox (&listBoxTeams[i]); + + bool canGrabSlot = false; + ClientInterface * + clientInterface = networkManager.getClientInterface (); + if (clientInterface != NULL + && clientInterface->getJoinGameInProgress () == true) + { + canGrabSlot = + ((listBoxControls[i].getSelectedItemIndex () == ctNetwork + && labelNetStatus[i].getText () == + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) + || (listBoxControls[i].getSelectedItemIndex () != ctHuman + && listBoxControls[i].getSelectedItemIndex () != ctClosed + && listBoxControls[i].getSelectedItemIndex () != + ctNetwork)); + } + else + { + canGrabSlot = + (listBoxControls[i].getSelectedItemIndex () == ctNetwork + && labelNetStatus[i].getText () == + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME); + } + + if (canGrabSlot == true) + { + if (i < mapInfo.players) + { + renderer.renderButton (&grabSlotButton[i]); + } + } + else if (listBoxControls[i].getSelectedItemIndex () == ctNetwork + || listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned + || listBoxControls[i].getSelectedItemIndex () == ctHuman) + { + renderer.renderLabel (&labelNetStatus[i]); + } + + if (listBoxControls[i].getSelectedItemIndex () == ctNetwork || + listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned + || listBoxControls[i].getSelectedItemIndex () == ctHuman) + { + if (labelNetStatus[i].getText () != + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) + { + renderer.renderLabel (&labelPlayerNames[i]); + } + } + } + } + renderer.renderLabel (&labelStatus); + renderer.renderLabel (&labelInfo); + + if (difftime ((long int) time (NULL), timerLabelFlash) < 1) + { + renderer.renderLabel (&labelDataSynchInfo, &RED); + renderer.renderLabel (&labelWaitingForPlayers, &YELLOW); + } + else + { + renderer.renderLabel (&labelDataSynchInfo, &WHITE); + renderer.renderLabel (&labelWaitingForPlayers, &WHITE); + } + + renderer.renderLabel (&labelMap); + renderer.renderLabel (&labelMapFilter); + renderer.renderLabel (&labelFogOfWar); + renderer.renderLabel (&labelAllowObservers); + renderer.renderLabel (&labelFallbackCpuMultiplier); + renderer.renderLabel (&labelTileset); + renderer.renderLabel (&labelTechTree); + renderer.renderLabel (&labelControl); + renderer.renderLabel (&labelFaction); + renderer.renderLabel (&labelTeam); + renderer.renderLabel (&labelMapInfo); + + renderer.renderListBox (&listBoxMap); + renderer.renderListBox (&listBoxMapFilter); + renderer.renderListBox (&listBoxFogOfWar); + renderer.renderCheckBox (&checkBoxAllowObservers); + renderer.renderListBox (&listBoxTileset); + renderer.renderListBox (&listBoxTechTree); + + renderer.renderLabel (&labelEnableSwitchTeamMode); + renderer.renderLabel (&labelAISwitchTeamAcceptPercent); + + renderer.renderCheckBox (&checkBoxEnableSwitchTeamMode); + renderer.renderListBox (&listBoxAISwitchTeamAcceptPercent); + renderer.renderListBox (&listBoxFallbackCpuMultiplier); + + renderer.renderLabel (&labelAllowTeamUnitSharing); + renderer.renderCheckBox (&checkBoxAllowTeamUnitSharing); + + renderer.renderLabel (&labelAllowTeamResourceSharing); + renderer.renderCheckBox (&checkBoxAllowTeamResourceSharing); + + renderer.renderButton (&buttonPlayNow); + renderer.renderButton (&buttonRestoreLastSettings); + + renderer.renderCheckBox (&checkBoxScenario); + renderer.renderLabel (&labelScenario); + if (checkBoxScenario.getValue () == true) + { + renderer.renderListBox (&listBoxScenario); + } + + renderer.renderLabel (&labelAllowNativeLanguageTechtree); + renderer.renderCheckBox (&checkBoxAllowNativeLanguageTechtree); + + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread->getProgressMutex () : + NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + +// !!! START TEMP MV +//renderer.renderButton(&buttonCancelDownloads); +//fileFTPProgressList.clear(); +//fileFTPProgressList["test1a dsa asd asda sdasd asd ad ad"] = make_pair(1,"testa"); +//fileFTPProgressList["test2 asdasdasdadas dasdasdasda"] = make_pair(1,"testb"); +//fileFTPProgressList["test3 asdasdad asd ada dasdadasdada"] = make_pair(1,"testc"); +// !!! END TEMP MV + + if (fileFTPProgressList.empty () == false) + { + Lang & lang = Lang::getInstance (); + renderer.renderButton (&buttonCancelDownloads); + int + xLocation = buttonCancelDownloads.getX (); + int + yLocation = buttonCancelDownloads.getY () - 20; + for (std::map < string, pair < int, string > >::iterator iterMap = + fileFTPProgressList.begin (); + iterMap != fileFTPProgressList.end (); ++iterMap) + { + string + progressLabelPrefix = + lang.getString ("ModDownloading") + " " + iterMap->first + " "; +//if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\nRendering file progress with the following prefix [%s]\n",progressLabelPrefix.c_str()); + + if (Renderer::renderText3DEnabled) + { + renderer.renderProgressBar3D (iterMap->second.first, xLocation, +//10, + yLocation, + CoreData::getInstance + ().getDisplayFontSmall3D (), +//350,progressLabelPrefix); + 300, progressLabelPrefix); + } + else + { + renderer.renderProgressBar (iterMap->second.first, +//10, + xLocation, + yLocation, + CoreData:: + getInstance ().getDisplayFontSmall + (), +//350,progressLabelPrefix); + 300, progressLabelPrefix); + } + + yLocation -= 20; + } + } + safeMutexFTPProgress.ReleaseLock (); + + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + if (ftpMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&ftpMessageBox); + } + + if (program != NULL) + program->renderProgramMsgBox (); + + if (enableMapPreview && (mapPreview.hasFileLoaded () == true)) + { + + int + mouseX = mainMenu->getMouseX (); + int + mouseY = mainMenu->getMouseY (); + int + mouse2dAnim = mainMenu->getMouse2dAnim (); + + if (mapPreviewTexture == NULL) + { + renderer.renderMouse2d (mouseX, mouseY, mouse2dAnim); + + bool renderAll = (listBoxFogOfWar.getSelectedItemIndex () == 2); +//renderer.renderMapPreview(&mapPreview, renderAll, 10, 350, &mapPreviewTexture); + renderer.renderMapPreview (&mapPreview, renderAll, + this->render_mapPreviewTexture_X, + this->render_mapPreviewTexture_Y, + &mapPreviewTexture); + } + } + renderer.renderChatManager (&chatManager); + renderer.renderConsole (&console, + showFullConsole ? consoleFull : + consoleStoredAndNormal); + + if (difftime ((long int) time (NULL), timerLabelFlash) > 2) + { + timerLabelFlash = time (NULL); + } + } + catch (const std::exception & ex) + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + throw megaglest_runtime_error (szBuf); + } + } + + void + MenuStateConnectedGame::update () + { + Chrono chrono; + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled) + chrono.start (); + + Lang & lang = Lang::getInstance (); + ClientInterface * + clientInterface = + NetworkManager::getInstance ().getClientInterface (); + + string newLabelConnectionInfo = lang.getString ("WaitingHost"); + if (clientInterface != NULL + && clientInterface->getJoinGameInProgress () == true) + { + newLabelConnectionInfo = lang.getString ("MGGameStatus2"); + } +// Test progress bar +//MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); +//fileFTPProgressList["test"] = pair(difftime(time(NULL),lastNetworkSendPing) * 20,"test file 123"); +//safeMutexFTPProgress.ReleaseLock(); +// + + if (clientInterface != NULL && clientInterface->isConnected ()) + { +//printf("#2 admin key [%d] client key [%d]\n",settings->getMasterserver_admin(),clientInterface->getSessionKey()); + broadCastGameSettingsToHeadlessServer (false); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + bool + notCurrentlySwitching = + ((difftime + ((long int) time (NULL), + broadcastServerSettingsDelayTimer)) >= + HEADLESSSERVER_BROADCAST_SETTINGS_SECONDS); + bool + receiveAllowedNow = + difftime ((long int) time (NULL), noReceiveTimer) > 2; + bool + newMessage = + lastGameSettingsReceivedCount < + clientInterface->getGameSettingsReceivedCount (); + if (validDisplayedGamesettings == false + || (notCurrentlySwitching && newMessage && receiveAllowedNow)) + { + +//printf("I take the whole settings top broadcastDelay=%d noReceiveTimer=%d\n", (int)difftime((long int) time(NULL), broadcastServerSettingsDelayTimer),(int)difftime((long int) time(NULL), noReceiveTimer)); + + displayedGamesettings = *(clientInterface->getGameSettings ()); + originalGamesettings = displayedGamesettings; + validDisplayedGamesettings = true; + } + + checkBoxAllowNativeLanguageTechtree.setEditable (isHeadlessAdmin ()); + checkBoxAllowNativeLanguageTechtree.setEnabled (isHeadlessAdmin ()); + + listBoxMap.setEditable (isHeadlessAdmin ()); + listBoxMapFilter.setEditable (isHeadlessAdmin ()); + buttonPlayNow.setVisible (isHeadlessAdmin () || + clientInterface->getJoinGameInProgress () == + true); + buttonRestoreLastSettings.setVisible (isHeadlessAdmin ()); + listBoxTechTree.setEditable (isHeadlessAdmin ()); + listBoxTileset.setEditable (isHeadlessAdmin ()); + checkBoxEnableSwitchTeamMode.setEditable (isHeadlessAdmin ()); + listBoxAISwitchTeamAcceptPercent.setEditable (isHeadlessAdmin ()); + listBoxFallbackCpuMultiplier.setEditable (isHeadlessAdmin ()); + listBoxFogOfWar.setEditable (isHeadlessAdmin ()); + checkBoxAllowObservers.setEditable (isHeadlessAdmin ()); + + checkBoxAllowTeamUnitSharing.setEditable (isHeadlessAdmin ()); + checkBoxAllowTeamResourceSharing.setEditable (isHeadlessAdmin ()); + + if (isHeadlessAdmin () == true) + { + bool hasOtherPlayer = false; + bool hasOpenSlot = false; + for (unsigned int i = 0; + i < (unsigned int) GameConstants::maxPlayers; ++i) + { + if (displayedGamesettings.getFactionControl (i) == ctNetwork + && clientInterface->getPlayerIndex () != (int) i) + { + hasOpenSlot = true; + } + if (displayedGamesettings.getFactionControl (i) == ctNetwork && + displayedGamesettings.getNetworkPlayerNameByPlayerIndex (i) != + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME + && displayedGamesettings.getNetworkPlayerNameByPlayerIndex (i) + != GameConstants::NETWORK_SLOT_CLOSED_SLOTNAME) + { + listBoxControls[i].setEditable (false); + if (clientInterface->getPlayerIndex () != (int) i) + { + hasOtherPlayer = true; + } + } + else if (clientInterface->getPlayerIndex () == (int) i) + { + listBoxControls[i].setEditable (false); + } + else + { + listBoxControls[i].setEditable (true); + } + listBoxRMultiplier[i].setEditable (isHeadlessAdmin ()); + listBoxFactions[i].setEditable (isHeadlessAdmin ()); + listBoxTeams[i].setEditable (isHeadlessAdmin ()); + } + if (hasOtherPlayer) + { + labelWaitingForPlayers.setText (""); + labelWaitingForPlayers.setVisible (false); + } + else if (hasOpenSlot) + { + labelWaitingForPlayers. + setText (lang.getString ("WaitingForPlayers")); + labelWaitingForPlayers.setVisible (true); + } + else + { + labelWaitingForPlayers. + setText (lang.getString ("OpenANetworkSLot")); + labelWaitingForPlayers.setVisible (true); + } + } + else + { + labelWaitingForPlayers.setText (""); + labelWaitingForPlayers.setVisible (false); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (difftime ((long int) time (NULL), lastNetworkSendPing) >= + GameConstants::networkPingInterval) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] about to sendPingMessage...\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + lastNetworkSendPing = time (NULL); + clientInterface->sendPingMessage (GameConstants:: + networkPingInterval, + (int64) time (NULL)); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] pingCount = %d, clientInterface->getLastPingLag() = %f, GameConstants::networkPingInterval = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, pingCount, + clientInterface->getLastPingLag (), + GameConstants::networkPingInterval); + +// Starting checking timeout after sending at least 3 pings to server + if (clientInterface->isConnected () && + pingCount >= MAX_PING_LAG_COUNT + && clientInterface->getLastPingLag () >= + (GameConstants::networkPingInterval * MAX_PING_LAG_COUNT)) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + clientInterface->updateLobby (); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (clientInterface->isConnected () + && clientInterface->getJoinGameInProgress () == false + && pingCount >= MAX_PING_LAG_COUNT + && clientInterface->getLastPingLag () >= + (GameConstants::networkPingInterval * MAX_PING_LAG_COUNT)) + { + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? + ftpClientThread->getProgressMutex () : + NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + if (fileFTPProgressList.empty () == true) + { + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + displayedGamesettings.getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + clientInterface->sendTextMessage (lang.getString + ("ConnectionTimedOut", + languageList[i]) + + " : " + + doubleToStr + (clientInterface->getLastPingLag + (), 2), -1, false, + languageList[i]); + sleep (1); + clientInterface->close (); + } + } + } + } + + pingCount++; + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + buttonDisconnect.setText (lang.getString ("Disconnect")); + + if (clientInterface->getAllowDownloadDataSynch () == false) + { + string label = lang.getString ("ConnectedToServer"); + + if (clientInterface->getServerName ().empty () == false) + { + label = label + " " + clientInterface->getServerName (); + } + + label = label + ", " + clientInterface->getVersionString (); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (clientInterface->getAllowGameDataSynchCheck () == false && + displayedGamesettings.getTileset () != "" && + displayedGamesettings.getTech () != "" && + displayedGamesettings.getMap () != "") + { + Config & config = Config::getInstance (); + + MutexSafeWrapper + safeMutexFTPProgress (ftpClientThread != + NULL ? + ftpClientThread->getProgressMutex () : + NULL, + string (__FILE__) + "_" + + intToStr (__LINE__)); + + uint32 tilesetCRC = lastCheckedCRCTilesetValue; + if (lastCheckedCRCTilesetName != + displayedGamesettings.getTileset () + && displayedGamesettings.getTileset () != "") + { +//console.addLine("Checking tileset CRC [" + displayedGamesettings.getTileset() + "]"); + tilesetCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTilesets, ""), + string ("/") + displayedGamesettings.getTileset () + + string ("/*"), ".xml", NULL); + if (tilesetCRC == 0 + || tilesetCRC != displayedGamesettings.getTilesetCRC ()) + { + tilesetCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTilesets, ""), + string ("/") + displayedGamesettings.getTileset () + + string ("/*"), ".xml", NULL, true); + } + +// Test data synch +//tilesetCRC++; + lastCheckedCRCTilesetValue = tilesetCRC; + lastCheckedCRCTilesetName = displayedGamesettings.getTileset (); + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + uint32 techCRC = lastCheckedCRCTechtreeValue; + if (lastCheckedCRCTechtreeName != displayedGamesettings.getTech () + && displayedGamesettings.getTech () != "") + { +//console.addLine("Checking techtree CRC [" + displayedGamesettings.getTech() + "]"); + techCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + string ("/") + displayedGamesettings.getTech () + + string ("/*"), ".xml", NULL); +//clientInterface->sendTextMessage("#1 TechCRC = " + intToStr(techCRC) + " remoteCRC = " + intToStr(displayedGamesettings.getTechCRC()),-1, true, ""); + + if (techCRC == 0 + || techCRC != displayedGamesettings.getTechCRC ()) + { + techCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + string ("/") + displayedGamesettings.getTech () + + string ("/*"), ".xml", NULL, true); +//clientInterface->sendTextMessage("#2 TechCRC = " + intToStr(techCRC) + " remoteCRC = " + intToStr(displayedGamesettings.getTechCRC()),-1, true, ""); + } + + + if (techCRC != 0 + && techCRC != displayedGamesettings.getTechCRC () + && listBoxTechTree.getSelectedItemIndex () >= 0 + && listBoxTechTree.getSelectedItem () != + Lang::getInstance ().getString ("DataMissing", "", true)) + { + +//time_t now = time(NULL); + time_t + lastUpdateDate = + getFolderTreeContentsCheckSumRecursivelyLastGenerated + (config.getPathListForType (ptTechs, ""), + string ("/") + displayedGamesettings.getTech () + + string ("/*"), ".xml"); + + const + time_t + REFRESH_CRC_DAY_SECONDS = 60 * 60 * 1; + if (lastUpdateDate <= 0 || + difftime ((long int) time (NULL), + lastUpdateDate) >= REFRESH_CRC_DAY_SECONDS) + { + techCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + string ("/") + displayedGamesettings.getTech () + + string ("/*"), ".xml", NULL, true); +//clientInterface->sendTextMessage("#3 TechCRC = " + intToStr(techCRC) + " remoteCRC = " + intToStr(displayedGamesettings.getTechCRC()),-1, true, ""); + } + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +// Test data synch +//techCRC++; + lastCheckedCRCTechtreeValue = techCRC; + lastCheckedCRCTechtreeName = displayedGamesettings.getTech (); + + loadFactions (&displayedGamesettings, false); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + factionCRCList.clear (); + for (unsigned int factionIdx = 0; + factionIdx < factionFiles.size (); ++factionIdx) + { + string factionName = factionFiles[factionIdx]; + if (factionName != GameConstants::RANDOMFACTION_SLOTNAME && + factionName != GameConstants::OBSERVER_SLOTNAME && + factionName != + Lang::getInstance ().getString ("DataMissing", "", true)) + { + + uint32 factionCRC = 0; +//time_t now = time(NULL); + time_t + lastUpdateDate = + getFolderTreeContentsCheckSumRecursivelyLastGenerated + (config.getPathListForType (ptTechs, ""), + "/" + displayedGamesettings.getTech () + "/factions/" + + factionName + "/*", ".xml"); + + const + time_t + REFRESH_CRC_DAY_SECONDS = 60 * 60 * 24; + if (lastUpdateDate <= 0 || + difftime ((long int) time (NULL), + lastUpdateDate) >= REFRESH_CRC_DAY_SECONDS + || (techCRC != 0 + && techCRC != displayedGamesettings.getTechCRC ())) + { + factionCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + displayedGamesettings.getTech () + "/factions/" + + factionName + "/*", ".xml", NULL, true); + } + else + { + factionCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + displayedGamesettings.getTech () + "/factions/" + + factionName + "/*", ".xml", NULL); + } + if (factionCRC == 0) + { + factionCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + displayedGamesettings.getTech () + "/factions/" + + factionName + "/*", ".xml", NULL, true); + } + + if (factionCRC != 0) + { + vector < pair < string, uint32 > >serverFactionCRCList = + displayedGamesettings.getFactionCRCList (); + for (unsigned int factionIdx1 = 0; + factionIdx1 < serverFactionCRCList.size (); + ++factionIdx1) { - string scenario = gameSettings.getScenario(); - listBoxScenario.setSelectedItem(formatString(scenario)); - string file = Scenario::getScenarioPath(dirList, scenario); + pair < string, uint32 > &serverFaction = + serverFactionCRCList[factionIdx1]; + if (serverFaction.first == factionName) + { + if (serverFaction.second != factionCRC) + { + factionCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + displayedGamesettings.getTech () + + "/factions/" + factionName + "/*", ".xml", NULL, + true); + } + break; + } + } + } + factionCRCList.push_back (make_pair + (factionName, factionCRC)); + } + } +//console.addLine("Found factions: " + intToStr(factionCRCList.size())); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); - bool isTutorial = Scenario::isGameTutorial(file); - Scenario::loadScenarioInfo(file, &scenarioInfo, isTutorial); + } - gameSettings.setScenarioDir(Scenario::getScenarioPath(dirList, scenarioInfo.name)); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); - gameSettings.setDefaultResources(scenarioInfo.defaultResources); - gameSettings.setDefaultUnits(scenarioInfo.defaultUnits); - gameSettings.setDefaultVictoryConditions(scenarioInfo.defaultVictoryConditions); + uint32 mapCRC = lastCheckedCRCMapValue; + if (lastCheckedCRCMapName != displayedGamesettings.getMap () && + displayedGamesettings.getMap () != "") + { + Checksum checksum; + string + file = + Config::getMapPath (displayedGamesettings.getMap (), "", + false); +//console.addLine("Checking map CRC [" + file + "]"); + checksum.addFile (file); + mapCRC = checksum.getSum (); +// Test data synch +//mapCRC++; + + lastCheckedCRCMapValue = mapCRC; + lastCheckedCRCMapName = displayedGamesettings.getMap (); + } + safeMutexFTPProgress.ReleaseLock (); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + bool + dataSynchMismatch = + ((mapCRC != 0 && mapCRC != displayedGamesettings.getMapCRC ()) + || (tilesetCRC != 0 + && tilesetCRC != displayedGamesettings.getTilesetCRC ()) + || (techCRC != 0 + && techCRC != displayedGamesettings.getTechCRC ())); + +//if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\nmapCRC [%d] displayedGamesettings.getMapCRC() [%d]\ntilesetCRC [%d] displayedGamesettings.getTilesetCRC() [%d]\ntechCRC [%d] displayedGamesettings.getTechCRC() [%d]\n",mapCRC,displayedGamesettings.getMapCRC(),tilesetCRC,displayedGamesettings.getTilesetCRC(),techCRC,displayedGamesettings.getTechCRC()); + + if (dataSynchMismatch == true && + (difftime + ((long int) time (NULL), + broadcastServerSettingsDelayTimer) >= + HEADLESSSERVER_BROADCAST_SETTINGS_SECONDS)) + { +//printf("Data not synched: lmap %u rmap: %u ltile: %d rtile: %u ltech: %u rtech: %u\n",mapCRC,displayedGamesettings.getMapCRC(),tilesetCRC,displayedGamesettings.getTilesetCRC(),techCRC,displayedGamesettings.getTechCRC()); + + string labelSynch = lang.getString ("DataNotSynchedTitle"); + + if (mapCRC != 0 && mapCRC != displayedGamesettings.getMapCRC () + && listBoxMap.getSelectedItemIndex () >= 0 + && listBoxMap.getSelectedItem () != + Lang::getInstance ().getString ("DataMissing", "", true)) + { + labelSynch = labelSynch + " " + lang.getString ("Map"); + + if (updateDataSynchDetailText == true && + lastMapDataSynchError != + lang.getString ("DataNotSynchedMap") + " " + + listBoxMap.getSelectedItem ()) + { + lastMapDataSynchError = + lang.getString ("DataNotSynchedMap") + " " + + listBoxMap.getSelectedItem (); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + string + msg = + lang.getString ("DataNotSynchedMap", + languageList[i]) + " " + + listBoxMap.getSelectedItem (); + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (msg, -1, localEcho, + languageList[i]); + } + } + } + + if (tilesetCRC != 0 + && tilesetCRC != displayedGamesettings.getTilesetCRC () + && listBoxTileset.getSelectedItemIndex () >= 0 + && listBoxTileset.getSelectedItem () != + Lang::getInstance ().getString ("DataMissing", "", true)) + { + labelSynch = labelSynch + " " + lang.getString ("Tileset"); + if (updateDataSynchDetailText == true && + lastTileDataSynchError != + lang.getString ("DataNotSynchedTileset") + " " + + listBoxTileset.getSelectedItem ()) + { + lastTileDataSynchError = + lang.getString ("DataNotSynchedTileset") + " " + + listBoxTileset.getSelectedItem (); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + string + msg = + lang.getString ("DataNotSynchedTileset", + languageList[i]) + " " + + listBoxTileset.getSelectedItem (); + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (msg, -1, localEcho, + languageList[i]); + } + } + } + + if (techCRC != 0 + && techCRC != displayedGamesettings.getTechCRC () + && listBoxTechTree.getSelectedItemIndex () >= 0 + && listBoxTechTree.getSelectedItem () != + Lang::getInstance ().getString ("DataMissing", "", true)) + { + labelSynch = labelSynch + " " + lang.getString ("TechTree"); + if (updateDataSynchDetailText == true && + lastTechtreeDataSynchError != + lang.getString ("DataNotSynchedTechtree") + " " + + listBoxTechTree.getSelectedItem ()) + { + lastTechtreeDataSynchError = + lang.getString ("DataNotSynchedTechtree") + " " + + listBoxTechTree.getSelectedItem (); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + string + msg = + lang.getString ("DataNotSynchedTechtree", + languageList[i]) + " " + + listBoxTechTree.getSelectedItem (); + bool localEcho = lang.isLanguageLocal (languageList[i]); + clientInterface->sendTextMessage (msg, -1, localEcho, + languageList[i]); + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, + chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + const int + MAX_CHAT_TEXT_LINE_LENGTH = 110; +//const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + bool localEcho = lang.isLanguageLocal (languageList[i]); + + string mismatchedFactionText = ""; + vector < string > mismatchedFactionTextList; + vector < pair < string, uint32 > >serverFactionCRCList = + displayedGamesettings.getFactionCRCList (); + + for (unsigned int factionIdx = 0; + factionIdx < serverFactionCRCList.size (); + ++factionIdx) + { + pair < string, uint32 > &serverFaction = + serverFactionCRCList[factionIdx]; + + bool foundFaction = false; + for (unsigned int clientFactionIdx = 0; + clientFactionIdx < factionCRCList.size (); + ++clientFactionIdx) + { + pair < string, uint32 > &clientFaction = + factionCRCList[clientFactionIdx]; + + if (serverFaction.first == clientFaction.first) + { + foundFaction = true; + if (serverFaction.second != clientFaction.second) + { + if (mismatchedFactionText.length () >= 10) + { + mismatchedFactionTextList.push_back + (mismatchedFactionText); + mismatchedFactionText = ""; + } + if (mismatchedFactionText == "") + { + mismatchedFactionText = + "The following factions are mismatched: "; + if (lang.hasString ("MismatchedFactions", + languageList[i]) == true) + { + mismatchedFactionText = + lang.getString ("MismatchedFactions", + languageList[i]); + } + + mismatchedFactionText += + " [" + intToStr (factionCRCList.size ()) + + "][" + + intToStr (serverFactionCRCList.size ()) + + "] - "; + } + else + { + mismatchedFactionText += ", "; + } + mismatchedFactionText += serverFaction.first; + } + break; + } + } + + if (foundFaction == false) + { + if ((int) mismatchedFactionText.length () > + MAX_CHAT_TEXT_LINE_LENGTH) + { + mismatchedFactionTextList.push_back + (mismatchedFactionText); + mismatchedFactionText = ""; + } + + if (mismatchedFactionText == "") + { + mismatchedFactionText = + "The following factions are mismatched: "; + if (lang.hasString ("MismatchedFactions", + languageList[i]) == true) + { + mismatchedFactionText = + lang.getString ("MismatchedFactions", + languageList[i]); + } + + mismatchedFactionText += + " [" + intToStr (factionCRCList.size ()) + "][" + + intToStr (serverFactionCRCList.size ()) + "] - "; + } + else + { + mismatchedFactionText += ", "; + } + + if (lang.hasString ("MismatchedFactionsMissing", + languageList[i]) == true) + { + mismatchedFactionText += + serverFaction.first + " " + + lang.getString ("MismatchedFactionsMissing", + languageList[i]); + } + else + { + mismatchedFactionText += + serverFaction.first + " (missing)"; + } + } } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + for (unsigned int clientFactionIdx = 0; + clientFactionIdx < factionCRCList.size (); + ++clientFactionIdx) + { + pair < string, uint32 > &clientFaction = + factionCRCList[clientFactionIdx]; - program->setState(new Game(program, &gameSettings,false)); - return; - } - } + bool foundFaction = false; + for (unsigned int factionIdx = 0; + factionIdx < serverFactionCRCList.size (); + ++factionIdx) + { + pair < string, uint32 > &serverFaction = + serverFactionCRCList[factionIdx]; - //call the chat manager - chatManager.updateNetwork(); + if (serverFaction.first == clientFaction.first) + { + foundFaction = true; + break; + } + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); + if (foundFaction == false) + { + if ((int) mismatchedFactionText.length () > + MAX_CHAT_TEXT_LINE_LENGTH) + { + mismatchedFactionTextList.push_back + (mismatchedFactionText); + mismatchedFactionText = ""; + } - //console732 - console.update(); + if (mismatchedFactionText == "") + { + mismatchedFactionText = + "The following factions are mismatched: "; + if (lang.hasString ("MismatchedFactions", + languageList[i]) == true) + { + mismatchedFactionText = + lang.getString ("MismatchedFactions", + languageList[i]); + } - // check for need to switch music on again - if(clientInterface != NULL) { - int currentConnectionCount=0; - for(int i=0; i < GameConstants::maxPlayers; ++i) { - if(displayedGamesettings.getFactionControl(i)==ctNetwork && - displayedGamesettings.getNetworkPlayerName(i) != "" && - displayedGamesettings.getNetworkPlayerName(i) != GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) - { - currentConnectionCount++; - } - } - if(currentConnectionCount > soundConnectionCount){ - soundConnectionCount = currentConnectionCount; - SoundRenderer::getInstance().playFx(CoreData::getInstance().getAttentionSound()); - //switch on music again!! - Config &config = Config::getInstance(); - float configVolume = (config.getInt("SoundVolumeMusic") / 100.f); - CoreData::getInstance().getMenuMusic()->setVolume(configVolume); - } - soundConnectionCount = currentConnectionCount; - } + mismatchedFactionText += + " [" + intToStr (factionCRCList.size ()) + "][" + + intToStr (serverFactionCRCList.size ()) + "] - "; + } + else + { + mismatchedFactionText += ", "; + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - } - catch(const runtime_error &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] %s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,szBuf); - showMessageBox( szBuf, "Error", false); - } + if (lang.hasString ("MismatchedFactionsExtra", + languageList[i]) == true) + { + mismatchedFactionText += + clientFaction.first + " " + + lang.getString ("MismatchedFactionsExtra", + languageList[i]); + } + else + { + mismatchedFactionText += + clientFaction.first + " (extra)"; + } + } + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - } -} + if (mismatchedFactionText != "") + { + if (mismatchedFactionTextList.empty () == false) + { + if (mismatchedFactionText != "") + { + mismatchedFactionText += "."; + mismatchedFactionTextList.push_back + (mismatchedFactionText); + } + for (unsigned int splitIdx = 0; + splitIdx < mismatchedFactionTextList.size (); + ++splitIdx) + { + clientInterface->sendTextMessage + (mismatchedFactionTextList[splitIdx], -1, + localEcho, languageList[i]); + } + } + else + { + mismatchedFactionText += "."; + clientInterface->sendTextMessage + (mismatchedFactionText, -1, localEcho, + languageList[i]); + } + } + } -bool MenuStateConnectedGame::loadFactions(const GameSettings *gameSettings, bool errorOnNoFactions) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, + chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + } + } - Lang &lang= Lang::getInstance(); - bool foundFactions = false; - vector results; + updateDataSynchDetailText = false; + labelDataSynchInfo.setText (labelSynch); + } + else + { + labelDataSynchInfo.setText (""); + } + } - string scenarioDir = Scenario::getScenarioDir(dirList, gameSettings->getScenario()); - if(gameSettings->getTech() != "") { - Config &config = Config::getInstance(); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); - vector techPaths = config.getPathListForType(ptTechs,scenarioDir); - for(int idx = 0; idx < (int)techPaths.size(); idx++) { - string &techPath = techPaths[idx]; - endPathWithSlash(techPath); - //findAll(techPath + gameSettings->getTech() + "/factions/*.", results, false, false); - findDirs(techPath + gameSettings->getTech() + "/factions/", results, false, false); - if(results.empty() == false) { - break; - } - } + if (clientInterface->getAllowGameDataSynchCheck () == true && + clientInterface->getNetworkGameDataSynchCheckOk () == false) + { + label = label + " -synch mismatch for:"; - if(results.empty() == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (clientInterface->getNetworkGameDataSynchCheckOkMap () == + false) + { + label = label + " map"; - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - if(clientInterface->getAllowGameDataSynchCheck() == false) { - if(errorOnNoFactions == true) { - throw megaglest_runtime_error("(2)There are no factions for the tech tree [" + gameSettings->getTech() + "]"); - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] (2)There are no factions for the tech tree [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,gameSettings->getTech().c_str()); - } - results.push_back(Lang::getInstance().getString("DataMissing","",true)); - factionFiles = results; - vector translatedFactionNames; - for(int i= 0; i < (int)factionFiles.size(); ++i) { - results[i]= formatString(results[i]); - string translatedString=techTree->getTranslatedFactionName(gameSettings->getTech(),factionFiles[i]); - if(toLower(translatedString)==toLower(results[i])){ - translatedFactionNames.push_back(results[i]); - } - else { - translatedFactionNames.push_back(results[i]+" ("+translatedString+")"); - } - } + if (updateDataSynchDetailText == true && + clientInterface->getReceivedDataSynchCheck () && + lastMapDataSynchError != + "map CRC mismatch, " + listBoxMap.getSelectedItem ()) + { + lastMapDataSynchError = + "map CRC mismatch, " + listBoxMap.getSelectedItem (); + clientInterface->sendTextMessage (lastMapDataSynchError, -1, + true, ""); + } + } - for(int i=0; i 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); - if(lastMissingTechtree != gameSettings->getTech() && - gameSettings->getTech() != "") { - lastMissingTechtree = gameSettings->getTech(); + if (clientInterface->getNetworkGameDataSynchCheckOkTile () == + false) + { + label = label + " tile"; + if (updateDataSynchDetailText == true && + clientInterface->getReceivedDataSynchCheck () && + lastTileDataSynchError != + "tile CRC mismatch, " + listBoxTileset.getSelectedItem ()) + { + lastTileDataSynchError = + "tile CRC mismatch, " + listBoxTileset.getSelectedItem (); + clientInterface->sendTextMessage (lastTileDataSynchError, -1, + true, ""); + } + } - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); - char szMsg[8096]=""; - if(lang.hasString("DataMissingTechtree",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTechtree",languageList[i]).c_str(),getHumanPlayerName().c_str(),gameSettings->getTech().c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is missing the techtree: %s",getHumanPlayerName().c_str(),gameSettings->getTech().c_str()); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - } + if (clientInterface->getNetworkGameDataSynchCheckOkTech () == + false) + { + label = label + " techtree"; - foundFactions = false; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - else { - lastMissingTechtree = ""; - getMissingTechtreeFromFTPServer = ""; + if (updateDataSynchDetailText == true && + clientInterface->getReceivedDataSynchCheck ()) + { - factionFiles= results; - vector translatedFactionNames; - for(int i= 0; i < (int)factionFiles.size(); ++i) { - results[i]= formatString(results[i]); - string translatedString=techTree->getTranslatedFactionName(gameSettings->getTech(),factionFiles[i]); - if(toLower(translatedString)==toLower(results[i])){ - translatedFactionNames.push_back(results[i]); - } - else { - translatedFactionNames.push_back(results[i]+" ("+translatedString+")"); - } - } + string + report = + clientInterface->getNetworkGameDataSynchCheckTechMismatchReport + (); + if (lastTechtreeDataSynchError != + "techtree CRC mismatch" + report) + { + lastTechtreeDataSynchError = + "techtree CRC mismatch" + report; - results.push_back(formatString(GameConstants::RANDOMFACTION_SLOTNAME)); - factionFiles.push_back(formatString(GameConstants::RANDOMFACTION_SLOTNAME)); - translatedFactionNames.push_back("*"+lang.getString("Random","",true)+"*"); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] report: %s\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, + report.c_str ()); - // Add special Observer Faction - if(checkBoxAllowObservers.getValue() == 1) { - results.push_back(formatString(GameConstants::OBSERVER_SLOTNAME)); - factionFiles.push_back(formatString(GameConstants::OBSERVER_SLOTNAME)); - translatedFactionNames.push_back("*"+lang.getString("Observer","",true)+"*"); - } + clientInterface->sendTextMessage ("techtree CRC mismatch", + -1, true, ""); + vector < string > reportLineTokens; + Tokenize (report, reportLineTokens, "\n"); + for (int reportLine = 0; + reportLine < (int) reportLineTokens.size (); + ++reportLine) + { + clientInterface->sendTextMessage (reportLineTokens + [reportLine], -1, true, + ""); + } + } + } + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (clientInterface->getReceivedDataSynchCheck () == true) + { + updateDataSynchDetailText = false; + } + } + else if (clientInterface->getAllowGameDataSynchCheck () == true) + { + label += " - data synch is ok"; + } + + labelStatus.setText (label); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + } + else + { + string label = lang.getString ("ConnectedToServer"); + + if (!clientInterface->getServerName ().empty ()) + { + label = label + " " + clientInterface->getServerName (); + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (clientInterface->getAllowGameDataSynchCheck () == true && + clientInterface->getNetworkGameDataSynchCheckOk () == false) + { + label = label + " -waiting to synch:"; + if (clientInterface->getNetworkGameDataSynchCheckOkMap () == + false) + { + label = label + " map"; + } + if (clientInterface->getNetworkGameDataSynchCheckOkTile () == + false) + { + label = label + " tile"; + } + if (clientInterface->getNetworkGameDataSynchCheckOkTech () == + false) + { + label = label + " techtree"; + } + } + else if (clientInterface->getAllowGameDataSynchCheck () == true) + { + label += " - data synch is ok"; + } + + labelStatus.setText (label); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + } + else + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (clientInterface != NULL + && clientInterface->isConnected () == true) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + clientInterface->close (); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + returnToJoinMenu (); + return; + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, __LINE__, + chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +//process network messages + if (clientInterface != NULL && clientInterface->isConnected ()) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + try + { + if (clientInterface->getGameSettingsReceived () + && validDisplayedGamesettings + && lastGameSettingsReceivedCount != + clientInterface->getGameSettingsReceivedCount ()) + { + lastGameSettingsReceivedCount = + clientInterface->getGameSettingsReceivedCount (); + bool + errorOnMissingData = + (clientInterface->getAllowGameDataSynchCheck () == false); + + const GameSettings * + receivedGameSettings = clientInterface->getGameSettings (); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +//printf("Menu got new settings thisfactionindex = %d startlocation: %d control = %d\n",displayedGamesettings.getThisFactionIndex(),clientInterface->getGameSettings()->getStartLocationIndex(clientInterface->getGameSettings()->getThisFactionIndex()),displayedGamesettings.getFactionControl(clientInterface->getGameSettings()->getThisFactionIndex())); + if (difftime ((long int) time (NULL), noReceiveTimer) < 3 + || difftime ((long int) time (NULL), + broadcastServerSettingsDelayTimer) < + HEADLESSSERVER_BROADCAST_SETTINGS_SECONDS) + { +// copy my current settings in UI to displayedSettings; + loadGameSettings (&displayedGamesettings); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +// check if there are any changed fields from others clients + if (isHeadlessAdmin ()) + { +//printf("I am headless admin and will restore only some parts\n"); +// only copy those parts which are editable by normal clients + for (int i = 0; i < receivedGameSettings->getFactionCount (); + i++) + { + if (displayedGamesettings.getFactionControl (i) == + ctNetwork) + { + if (originalGamesettings.getTeam (i) == + displayedGamesettings.getTeam (i)) + { + displayedGamesettings.setTeam (i, + receivedGameSettings->getTeam + (i)); + originalGamesettings.setTeam (i, + receivedGameSettings->getTeam + (i)); + } + if (originalGamesettings.getFactionTypeName (i) == + displayedGamesettings.getFactionTypeName (i)) + { + displayedGamesettings.setFactionTypeName (i, + receivedGameSettings->getFactionTypeName + (i)); + originalGamesettings.setFactionTypeName (i, + receivedGameSettings->getFactionTypeName + (i)); + } + displayedGamesettings.setNetworkPlayerGameStatus (i, + receivedGameSettings->getNetworkPlayerGameStatus + (i)); + originalGamesettings.setNetworkPlayerGameStatus (i, + receivedGameSettings->getNetworkPlayerGameStatus + (i)); + displayedGamesettings.setNetworkPlayerName (i, + receivedGameSettings->getNetworkPlayerName + (i)); + originalGamesettings.setNetworkPlayerName (i, + receivedGameSettings->getNetworkPlayerName + (i)); + } + } + } + else + { +//printf("I am client and restore everything but not my line\n"); +// copy all received fields just not those which are editable for normal client +//store my changes + int + i = clientInterface->getPlayerIndex (); + int + team = displayedGamesettings.getTeam (i); + string faction = displayedGamesettings.getFactionTypeName (i); + int + status = + displayedGamesettings.getNetworkPlayerGameStatus (i); + string + networkPlayerName = + displayedGamesettings.getNetworkPlayerName (i); + displayedGamesettings = *receivedGameSettings; + originalGamesettings = *receivedGameSettings; + + displayedGamesettings.setTeam (i, team); + originalGamesettings.setTeam (i, team); + displayedGamesettings.setFactionTypeName (i, faction); + originalGamesettings.setFactionTypeName (i, faction); + displayedGamesettings.setNetworkPlayerGameStatus (i, status); + originalGamesettings.setNetworkPlayerGameStatus (i, status); + displayedGamesettings.setNetworkPlayerName (i, + networkPlayerName); + originalGamesettings.setNetworkPlayerName (i, + networkPlayerName); + + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + setupUIFromGameSettings (&displayedGamesettings, + errorOnMissingData); + } + else + { +// do nothing + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + setupUIFromGameSettings (&displayedGamesettings, + errorOnMissingData); + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + broadCastGameSettingsToHeadlessServer + (needToBroadcastServerSettings); + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +// check if we are joining an in progress game + if (clientInterface->getJoinGameInProgress () == true && + clientInterface->getJoinGameInProgressLaunch () == true && + clientInterface->getReadyForInGameJoin () == true && + ftpClientThread != NULL) + { + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? + ftpClientThread->getProgressMutex () : + NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + if (readyToJoinInProgressGame == false) + { + if (getInProgressSavedGameFromFTPServer == "") + { + + getInProgressSavedGameFromFTPServerInProgress = true; + ftpClientThread->addTempFileToRequests + (GameConstants::saveNetworkGameFileClientCompressed, + GameConstants::saveNetworkGameFileServerCompressed); + + getInProgressSavedGameFromFTPServer = + GameConstants::saveNetworkGameFileServerCompressed; + fileFTPProgressList[getInProgressSavedGameFromFTPServer] = + pair < int, + string > (0, ""); + } + safeMutexFTPProgress.ReleaseLock (); + } + else + { + safeMutexFTPProgress.ReleaseLock (); + + string + saveGameFile = + "temp/" + string (GameConstants::saveNetworkGameFileClient); + if (getGameReadWritePath + (GameConstants::path_logs_CacheLookupKey) != "") + { + saveGameFile = + getGameReadWritePath + (GameConstants::path_logs_CacheLookupKey) + saveGameFile; + } + else + { + string + userData = + Config::getInstance ().getString ("UserData_Root", ""); + if (userData != "") + { + endPathWithSlash (userData); + } + saveGameFile = userData + saveGameFile; + } + +//printf("Loading saved game file [%s]\n",saveGameFile.c_str()); + + GameSettings + gameSettings = *clientInterface->getGameSettings (); + loadGameSettings (&gameSettings); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + Game::loadGame (saveGameFile, program, false, &gameSettings); + return; + } + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +//update lobby + clientInterface = + NetworkManager::getInstance ().getClientInterface (); + if (clientInterface != NULL && clientInterface->isConnected ()) + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + clientInterface->updateLobby (); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + clientInterface = + NetworkManager::getInstance ().getClientInterface (); + if (clientInterface != NULL && clientInterface->isConnected ()) + { + if (initialSettingsReceivedFromServer == true && + clientInterface->getIntroDone () == true && + (switchSetupRequestFlagType & ssrft_NetworkPlayerName) == + ssrft_NetworkPlayerName) + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] getHumanPlayerName() = [%s], clientInterface->getGameSettings()->getThisFactionIndex() = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, + getHumanPlayerName ().c_str (), + clientInterface->getGameSettings + ()->getThisFactionIndex ()); + clientInterface->sendSwitchSetupRequest ("", + clientInterface->getPlayerIndex + (), -1, -1, + getHumanPlayerName (), + getNetworkPlayerStatus + (), + switchSetupRequestFlagType, + lang.getLanguage ()); + + switchSetupRequestFlagType = ssrft_None; + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +//intro + if (clientInterface->getIntroDone ()) + { + if (newLabelConnectionInfo != labelInfo.getText ()) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", __FILE__, __FUNCTION__, + __LINE__); + labelInfo.setText (newLabelConnectionInfo); + } + } + +//launch + if (clientInterface->getLaunchGame ()) + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + assert (clientInterface != NULL); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (modHttpServerThread != NULL) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + modHttpServerThread->setSimpleTaskInterfaceValid (false); + modHttpServerThread->signalQuit (); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + if (modHttpServerThread->canShutdown (true) == true + && modHttpServerThread->shutdownAndWait () == true) + { + delete modHttpServerThread; + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + modHttpServerThread = NULL; + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (ftpClientThread != NULL) + { + ftpClientThread->setCallBackObject (NULL); + ftpClientThread->signalQuit (); + sleep (0); + if (ftpClientThread->canShutdown (true) == true && + ftpClientThread->shutdownAndWait () == true) + { + delete ftpClientThread; + } + else + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d] Error cannot shutdown ftpClientThread\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("%s", szBuf); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", + szBuf); + } + ftpClientThread = NULL; + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + launchingNewGame = true; + + GameSettings + gameSettings = *clientInterface->getGameSettings (); +// complete game settings with local stuff + if (gameSettings.getScenario () != "") + { + string scenario = gameSettings.getScenario (); + listBoxScenario.setSelectedItem (formatString (scenario)); + string file = Scenario::getScenarioPath (dirList, scenario); + + bool isTutorial = Scenario::isGameTutorial (file); + Scenario::loadScenarioInfo (file, &scenarioInfo, isTutorial); + + gameSettings.setScenarioDir (Scenario::getScenarioPath + (dirList, scenarioInfo.name)); + + gameSettings. + setDefaultResources (scenarioInfo.defaultResources); + gameSettings.setDefaultUnits (scenarioInfo.defaultUnits); + gameSettings.setDefaultVictoryConditions + (scenarioInfo.defaultVictoryConditions); + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + program->setState (new Game (program, &gameSettings, false)); + return; + } + } + +//call the chat manager + chatManager.updateNetwork (); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +//console732 + console.update (); + +// check for need to switch music on again + if (clientInterface != NULL) + { + int + currentConnectionCount = 0; + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + if (displayedGamesettings.getFactionControl (i) == ctNetwork && + displayedGamesettings.getNetworkPlayerName (i) != "" && + displayedGamesettings.getNetworkPlayerName (i) != + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) + { + currentConnectionCount++; + } + } + if (currentConnectionCount > soundConnectionCount) + { + soundConnectionCount = currentConnectionCount; + SoundRenderer::getInstance (). + playFx (CoreData::getInstance ().getAttentionSound ()); +//switch on music again!! + Config & config = Config::getInstance (); + float + configVolume = (config.getInt ("SoundVolumeMusic") / 100.f); + CoreData::getInstance (). + getMenuMusic ()->setVolume (configVolume); + } + soundConnectionCount = currentConnectionCount; + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + } + catch (const runtime_error & ex) + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, ex.what ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] %s\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, szBuf); + showMessageBox (szBuf, "Error", false); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + } + } + + bool + MenuStateConnectedGame::loadFactions (const GameSettings * gameSettings, + bool errorOnNoFactions) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + Lang & lang = Lang::getInstance (); + bool foundFactions = false; + vector < string > results; + + string + scenarioDir = + Scenario::getScenarioDir (dirList, gameSettings->getScenario ()); + if (gameSettings->getTech () != "") + { + Config & config = Config::getInstance (); + + vector < string > techPaths = + config.getPathListForType (ptTechs, scenarioDir); + for (int idx = 0; idx < (int) techPaths.size (); idx++) + { + string & techPath = techPaths[idx]; + endPathWithSlash (techPath); +//findAll(techPath + gameSettings->getTech() + "/factions/*.", results, false, false); + findDirs (techPath + gameSettings->getTech () + "/factions/", + results, false, false); + if (results.empty () == false) + { + break; + } + } + + if (results.empty () == true) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + if (clientInterface->getAllowGameDataSynchCheck () == false) + { + if (errorOnNoFactions == true) + { + throw + megaglest_runtime_error + ("(2)There are no factions for the tech tree [" + + gameSettings->getTech () + "]"); + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] (2)There are no factions for the tech tree [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, + gameSettings->getTech ().c_str ()); + } + results. + push_back (Lang:: + getInstance ().getString ("DataMissing", "", true)); + factionFiles = results; + vector < string > translatedFactionNames; + for (int i = 0; i < (int) factionFiles.size (); ++i) + { + results[i] = formatString (results[i]); + string + translatedString = + techTree->getTranslatedFactionName (gameSettings->getTech (), + factionFiles[i]); + if (toLower (translatedString) == toLower (results[i])) + { + translatedFactionNames.push_back (results[i]); + } + else + { + translatedFactionNames.push_back (results[i] + " (" + + translatedString + ")"); + } + } + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + listBoxFactions[i].setItems (results, translatedFactionNames); + } + + if (lastMissingTechtree != gameSettings->getTech () && + gameSettings->getTech () != "") + { + lastMissingTechtree = gameSettings->getTech (); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTechtree", languageList[i]) == + true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingTechtree", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + gameSettings->getTech ().c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s is missing the techtree: %s", + getHumanPlayerName ().c_str (), + gameSettings->getTech ().c_str ()); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + } + + foundFactions = false; + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + else + { + lastMissingTechtree = ""; + getMissingTechtreeFromFTPServer = ""; + + factionFiles = results; + vector < string > translatedFactionNames; + for (int i = 0; i < (int) factionFiles.size (); ++i) + { + results[i] = formatString (results[i]); + string + translatedString = + techTree->getTranslatedFactionName (gameSettings->getTech (), + factionFiles[i]); + if (toLower (translatedString) == toLower (results[i])) + { + translatedFactionNames.push_back (results[i]); + } + else + { + translatedFactionNames.push_back (results[i] + " (" + + translatedString + ")"); + } + } + + results.push_back (formatString + (GameConstants::RANDOMFACTION_SLOTNAME)); + factionFiles.push_back (formatString + (GameConstants::RANDOMFACTION_SLOTNAME)); + translatedFactionNames.push_back ("*" + + lang.getString ("Random", "", + true) + "*"); + +// Add special Observer Faction + if (checkBoxAllowObservers.getValue () == 1) + { + results.push_back (formatString + (GameConstants::OBSERVER_SLOTNAME)); + factionFiles.push_back (formatString + (GameConstants::OBSERVER_SLOTNAME)); + translatedFactionNames.push_back ("*" + + lang.getString ("Observer", "", + true) + "*"); + } - for(int i=0; i(listBoxControls[i].getSelectedItemIndex()); - if(ct != ctClosed) { - if(ct == ctNetwork || ct == ctNetworkUnassigned) { - hasNetworkSlot = true; - break; - } - } - } - if(hasNetworkSlot == false) { - for(int i=0; i < GameConstants::maxPlayers; ++i) { - ControlType ct= static_cast(listBoxControls[i].getSelectedItemIndex()); - if(ct != ctClosed) { - if(ct == ctNetworkUnassigned) { - hasNetworkSlot = true; - break; - } - } - } - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] %s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,szBuf); - showMessageBox( szBuf, "Error", false); - } - - return hasNetworkSlot; -} - -void MenuStateConnectedGame::keyDown(SDL_KeyboardEvent key) { - if(activeInputLabel != NULL) { - bool handled = keyDownEditLabel(key, &activeInputLabel); - if(handled == true) { - switchSetupRequestFlagType |= ssrft_NetworkPlayerName; - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else { - //send key to the chat manager - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - if(clientInterface != NULL && - clientInterface->isConnected() == true && - clientInterface->getIntroDone() == true) { - chatManager.keyDown(key); - } - if(chatManager.getEditEnabled() == false && - (::Shared::Platform::Window::isKeyStateModPressed(KMOD_SHIFT) == false)) { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - - if(isKeyPressed(configKeys.getSDLKey("ShowFullConsole"),key) == true) { - showFullConsole= true; - } - else if(isKeyPressed(configKeys.getSDLKey("ToggleMusic"),key) == true) { - Config &config = Config::getInstance(); - Lang &lang= Lang::getInstance(); - - float configVolume = (config.getInt("SoundVolumeMusic") / 100.f); - float currentVolume = CoreData::getInstance().getMenuMusic()->getVolume(); - if(currentVolume > 0) { - CoreData::getInstance().getMenuMusic()->setVolume(0.f); - console.addLine(lang.getString("GameMusic") + " " + lang.getString("Off")); - } - else { - CoreData::getInstance().getMenuMusic()->setVolume(configVolume); - //If the config says zero, use the default music volume - //gameMusic->setVolume(configVolume ? configVolume : 0.9); - console.addLine(lang.getString("GameMusic")); - } - } - //else if(key == configKeys.getCharKey("SaveGUILayout")) { - else if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - bool saved = GraphicComponent::saveAllCustomProperties(containerName); - Lang &lang= Lang::getInstance(); - console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } - } - } -} - -bool MenuStateConnectedGame::textInput(std::string text) { - if (activeInputLabel != NULL) { - bool handled = textInputEditLabel(text, &activeInputLabel); - if (handled == true) { - switchSetupRequestFlagType |= ssrft_NetworkPlayerName; - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - return handled; - } else { - NetworkManager &networkManager = NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - if (clientInterface != NULL && clientInterface->isConnected() == true - && clientInterface->getIntroDone() == true) { - return chatManager.textInput(text); - } - } - return false; -} - -void MenuStateConnectedGame::keyPress(SDL_KeyboardEvent c) { - if(activeInputLabel!=NULL) { - keyPressEditLabel( c, &activeInputLabel); - } else { - NetworkManager &networkManager = NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - if (clientInterface != NULL && clientInterface->isConnected() == true - && clientInterface->getIntroDone() == true) { - chatManager.keyPress(c); - } - } -} - -void MenuStateConnectedGame::keyUp(SDL_KeyboardEvent key) { - if(activeInputLabel==NULL) { - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - if(clientInterface != NULL && - clientInterface->isConnected() == true && - clientInterface->getIntroDone() == true) { - chatManager.keyUp(key); - } - - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - - if(chatManager.getEditEnabled()) { - //send key to the chat manager - chatManager.keyUp(key); - } - else if(isKeyPressed(configKeys.getSDLKey("ShowFullConsole"),key) == true) { - showFullConsole= false; - } - } -} - -void MenuStateConnectedGame::setActiveInputLabel(GraphicLabel *newLable) { - MenuState::setActiveInputLabel(newLable,&activeInputLabel); -} - -string MenuStateConnectedGame::getHumanPlayerName() { - string result = defaultPlayerName; - - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - for(int j=0; jgetPlayerIndex() && - labelPlayerNames[j].getText() != "") { - result = labelPlayerNames[j].getText(); - - if(activeInputLabel != NULL) { - size_t found = result.find_last_of("_"); - if (found != string::npos) { - result = result.substr(0,found); - } - } - - break; - } - } - - return result; -} - -void MenuStateConnectedGame::loadFactionTexture(string filepath) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(enableFactionTexturePreview == true) { - if(filepath == "") { - factionTexture=NULL; - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] filepath = [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,filepath.c_str()); - factionTexture = Renderer::findTexture(filepath); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - } -} - -bool MenuStateConnectedGame::loadMapInfo(string file, MapInfo *mapInfo, bool loadMapPreview) { - bool mapLoaded = false; - try { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] map [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,file.c_str()); - - if(file != "") { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - lastMissingMap = file; - - Lang &lang= Lang::getInstance(); - if(MapPreview::loadMapInfo(file, mapInfo, lang.getString("MaxPlayers"),lang.getString("Size"),true) == true) { - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - mapInfo->players = GameConstants::maxPlayers; - bool visible=i+1 <= mapInfo->players; - labelPlayers[i].setVisible(visible); - labelPlayerNames[i].setVisible(visible); - listBoxControls[i].setVisible(visible); - listBoxRMultiplier[i].setVisible(visible); - listBoxFactions[i].setVisible(visible); - listBoxTeams[i].setVisible(visible); - labelNetStatus[i].setVisible(visible); - } - - // Not painting properly so this is on hold - if(loadMapPreview == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if(mapPreview.getMapFileLoaded() != file) { - mapPreview.loadFromFile(file.c_str()); - cleanupMapPreviewTexture(); - } - } - - mapLoaded = true; - } - } - else { - cleanupMapPreviewTexture(); - mapInfo->desc = Lang::getInstance().getString("DataMissing","",true); - - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - const GameSettings *gameSettings = clientInterface->getGameSettings(); - - if(lastMissingMap != gameSettings->getMap()) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - lastMissingMap = gameSettings->getMap(); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - - char szMsg[8096]=""; - if(lang.hasString("DataMissingMap",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingMap",languageList[i]).c_str(),getHumanPlayerName().c_str(),gameSettings->getMap().c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is missing the map: %s",getHumanPlayerName().c_str(),gameSettings->getMap().c_str()); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - } - } - } - catch(exception &e){ - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,e.what()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] error [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,e.what()); - - showMessageBox( "Error loading map file: "+file+'\n'+e.what(), "Error", false); - } - - return mapLoaded; -} - -void MenuStateConnectedGame::showMessageBox(const string &text, const string &header, bool toggle){ - if(!toggle){ - mainMessageBox.setEnabled(false); - } - - if(!mainMessageBox.getEnabled()){ - mainMessageBox.setText(text); - mainMessageBox.setHeader(header); - mainMessageBox.setEnabled(true); - } - else{ - mainMessageBox.setEnabled(false); - } -} - -void MenuStateConnectedGame::showFTPMessageBox(const string &text, const string &header, bool toggle) { - if(!toggle) { - ftpMessageBox.setEnabled(false); - } - - if(!ftpMessageBox.getEnabled()) { - ftpMessageBox.setText(text); - ftpMessageBox.setHeader(header); - ftpMessageBox.setEnabled(true); - } - else { - ftpMessageBox.setEnabled(false); - } -} - -int32 MenuStateConnectedGame::getNetworkPlayerStatus() { - int32 result = npst_None; - switch(listBoxPlayerStatus.getSelectedItemIndex()) { - case 2: - result = npst_Ready; - break; - case 1: - result = npst_BeRightBack; - break; - case 0: - result = npst_PickSettings; - break; - } - - return result; -} - -void MenuStateConnectedGame::cleanupMapPreviewTexture() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(mapPreviewTexture != NULL) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - mapPreviewTexture->end(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - delete mapPreviewTexture; - mapPreviewTexture = NULL; - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -bool MenuStateConnectedGame::isInSpecialKeyCaptureEvent() { - bool result = (chatManager.getEditEnabled() || activeInputLabel != NULL); - return result; -} - -void MenuStateConnectedGame::FTPClient_CallbackEvent(string itemName, - FTP_Client_CallbackType type, pair result, void *userdata) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(type == ftp_cct_DownloadProgress) { - FTPClientCallbackInterface::FtpProgressStats *stats = (FTPClientCallbackInterface::FtpProgressStats *)userdata; - if(stats != NULL) { - int fileProgress = 0; - if(stats->download_total > 0) { - fileProgress = ((stats->download_now / stats->download_total) * 100.0); - } - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] current file [%s] fileProgress = %d [now = %f, total = %f]\n",itemName.c_str(),stats->currentFilename.c_str(), fileProgress,stats->download_now,stats->download_total); - - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - pair lastProgress; - std::map >::iterator iterFind = fileFTPProgressList.find(itemName); - if(iterFind == fileFTPProgressList.end()) { - iterFind = fileFTPProgressList.find(GameConstants::saveNetworkGameFileServerCompressed); - if(iterFind == fileFTPProgressList.end()) { - iterFind = fileFTPProgressList.find(GameConstants::saveNetworkGameFileClientCompressed); - } - } - if(iterFind != fileFTPProgressList.end()) { - lastProgress = iterFind->second; - fileFTPProgressList[iterFind->first] = pair(fileProgress,stats->currentFilename); - } - safeMutexFTPProgress.ReleaseLock(); - - if(itemName != "" && (lastProgress.first / 25) < (fileProgress / 25)) { - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("FileDownloadProgress",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("FileDownloadProgress",languageList[i]).c_str(),getHumanPlayerName().c_str(),itemName.c_str(),fileProgress); - } - else { - snprintf(szMsg,8096,"Player: %s download progress for [%s] is %d %%",getHumanPlayerName().c_str(),itemName.c_str(),fileProgress); - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] szMsg [%s] lastProgress.first = %d, fileProgress = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,szMsg,lastProgress.first,fileProgress); - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - sleep(1); + try + { + for (int i = 0; i < mapInfo.players; ++i) + { + ControlType + ct = + static_cast < ControlType > + (listBoxControls[i].getSelectedItemIndex ()); + if (ct != ctClosed) + { + if (ct == ctNetwork || ct == ctNetworkUnassigned) + { + hasNetworkSlot = true; + break; } + } } - } - else if(type == ftp_cct_ExtractProgress) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP extract Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); + if (hasNetworkSlot == false) + { + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + ControlType + ct = + static_cast < ControlType > + (listBoxControls[i].getSelectedItemIndex ()); + if (ct != ctClosed) + { + if (ct == ctNetworkUnassigned) + { + hasNetworkSlot = true; + break; + } + } + } + } + } + catch (const std::exception & ex) + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, __LINE__, + ex.what ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] %s\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, szBuf); + showMessageBox (szBuf, "Error", false); + } - if(userdata == NULL) { - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingExtractDownload",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingExtractDownload",languageList[i]).c_str(),getHumanPlayerName().c_str(),itemName.c_str()); - } - else { - snprintf(szMsg,8096,"Please wait, player: %s is extracting: %s",getHumanPlayerName().c_str(),itemName.c_str()); - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] szMsg [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,szMsg); - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - sleep(1); - } - else { - char *szBuf = (char *)userdata; - //printf("%s\n",szBuf); - //console.addLine(szBuf); - console.addLine(szBuf, false,""); - } + return hasNetworkSlot; } - else if(type == ftp_cct_Map) { + + void + MenuStateConnectedGame::keyDown (SDL_KeyboardEvent key) + { + if (activeInputLabel != NULL) + { + bool handled = keyDownEditLabel (key, &activeInputLabel); + if (handled == true) + { + switchSetupRequestFlagType |= ssrft_NetworkPlayerName; + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else + { +//send key to the chat manager + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + if (clientInterface != NULL && + clientInterface->isConnected () == true && + clientInterface->getIntroDone () == true) + { + chatManager.keyDown (key); + } + if (chatManager.getEditEnabled () == false && + (::Shared::Platform::Window::isKeyStateModPressed (KMOD_SHIFT) == + false)) + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + + if (isKeyPressed (configKeys.getSDLKey ("ShowFullConsole"), key) == + true) + { + showFullConsole = true; + } + else if (isKeyPressed (configKeys.getSDLKey ("ToggleMusic"), key) == + true) + { + Config & config = Config::getInstance (); + Lang & lang = Lang::getInstance (); + + float + configVolume = (config.getInt ("SoundVolumeMusic") / 100.f); + float + currentVolume = + CoreData::getInstance ().getMenuMusic ()->getVolume (); + if (currentVolume > 0) + { + CoreData::getInstance ().getMenuMusic ()->setVolume (0.f); + console.addLine (lang.getString ("GameMusic") + " " + + lang.getString ("Off")); + } + else + { + CoreData::getInstance (). + getMenuMusic ()->setVolume (configVolume); +//If the config says zero, use the default music volume +//gameMusic->setVolume(configVolume ? configVolume : 0.9); + console.addLine (lang.getString ("GameMusic")); + } + } +//else if(key == configKeys.getCharKey("SaveGUILayout")) { + else if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) + == true) + { + bool + saved = + GraphicComponent::saveAllCustomProperties (containerName); + Lang & lang = Lang::getInstance (); + console.addLine (lang.getString ("GUILayoutSaved") + " [" + + (saved ? lang. + getString ("Yes") : lang.getString ("No")) + + "]"); + } + } + } + } + + bool MenuStateConnectedGame::textInput (std::string text) + { + if (activeInputLabel != NULL) + { + bool handled = textInputEditLabel (text, &activeInputLabel); + if (handled == true) + { + switchSetupRequestFlagType |= ssrft_NetworkPlayerName; + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + return handled; + } + else + { + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + if (clientInterface != NULL && clientInterface->isConnected () == true + && clientInterface->getIntroDone () == true) + { + return chatManager.textInput (text); + } + } + return false; + } + + void + MenuStateConnectedGame::keyPress (SDL_KeyboardEvent c) + { + if (activeInputLabel != NULL) + { + keyPressEditLabel (c, &activeInputLabel); + } + else + { + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + if (clientInterface != NULL && clientInterface->isConnected () == true + && clientInterface->getIntroDone () == true) + { + chatManager.keyPress (c); + } + } + } + + void + MenuStateConnectedGame::keyUp (SDL_KeyboardEvent key) + { + if (activeInputLabel == NULL) + { + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + if (clientInterface != NULL && + clientInterface->isConnected () == true && + clientInterface->getIntroDone () == true) + { + chatManager.keyUp (key); + } + + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + + if (chatManager.getEditEnabled ()) + { +//send key to the chat manager + chatManager.keyUp (key); + } + else if (isKeyPressed (configKeys.getSDLKey ("ShowFullConsole"), key) + == true) + { + showFullConsole = false; + } + } + } + + void + MenuStateConnectedGame::setActiveInputLabel (GraphicLabel * newLable) + { + MenuState::setActiveInputLabel (newLable, &activeInputLabel); + } + + string MenuStateConnectedGame::getHumanPlayerName () + { + string result = defaultPlayerName; + + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + for (int j = 0; j < GameConstants::maxPlayers; ++j) + { + if (clientInterface != NULL && + j == clientInterface->getPlayerIndex () && + labelPlayerNames[j].getText () != "") + { + result = labelPlayerNames[j].getText (); + + if (activeInputLabel != NULL) + { + size_t found = result.find_last_of ("_"); + if (found != string::npos) + { + result = result.substr (0, found); + } + } + + break; + } + } + + return result; + } + + void + MenuStateConnectedGame::loadFactionTexture (string filepath) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (enableFactionTexturePreview == true) + { + if (filepath == "") + { + factionTexture = NULL; + } + else + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] filepath = [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, filepath.c_str ()); + factionTexture = Renderer::findTexture (filepath); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + } + } + + bool + MenuStateConnectedGame::loadMapInfo (string file, MapInfo * mapInfo, + bool loadMapPreview) + { + bool mapLoaded = false; + try + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] map [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, file.c_str ()); + + if (file != "") + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + lastMissingMap = file; + + Lang & lang = Lang::getInstance (); + if (MapPreview::loadMapInfo + (file, mapInfo, lang.getString ("MaxPlayers"), + lang.getString ("Size"), true) == true) + { + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + mapInfo->players = GameConstants::maxPlayers; + bool visible = i + 1 <= mapInfo->players; + labelPlayers[i].setVisible (visible); + labelPlayerNames[i].setVisible (visible); + listBoxControls[i].setVisible (visible); + listBoxRMultiplier[i].setVisible (visible); + listBoxFactions[i].setVisible (visible); + listBoxTeams[i].setVisible (visible); + labelNetStatus[i].setVisible (visible); + } + +// Not painting properly so this is on hold + if (loadMapPreview == true) + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + if (mapPreview.getMapFileLoaded () != file) + { + mapPreview.loadFromFile (file.c_str ()); + cleanupMapPreviewTexture (); + } + } + + mapLoaded = true; + } + } + else + { + cleanupMapPreviewTexture (); + mapInfo->desc = + Lang::getInstance ().getString ("DataMissing", "", true); + + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + const GameSettings * + gameSettings = clientInterface->getGameSettings (); + + if (lastMissingMap != gameSettings->getMap ()) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + lastMissingMap = gameSettings->getMap (); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingMap", languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingMap", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + gameSettings->getMap ().c_str ()); + } + else + { + snprintf (szMsg, 8096, "Player: %s is missing the map: %s", + getHumanPlayerName ().c_str (), + gameSettings->getMap ().c_str ()); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + } + } + } + catch (exception & e) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, __LINE__, + e.what ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] error [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, e.what ()); + + showMessageBox ("Error loading map file: " + file + '\n' + e.what (), + "Error", false); + } + + return mapLoaded; + } + + void + MenuStateConnectedGame::showMessageBox (const string & text, + const string & header, + bool toggle) + { + if (!toggle) + { + mainMessageBox.setEnabled (false); + } + + if (!mainMessageBox.getEnabled ()) + { + mainMessageBox.setText (text); + mainMessageBox.setHeader (header); + mainMessageBox.setEnabled (true); + } + else + { + mainMessageBox.setEnabled (false); + } + } + + void + MenuStateConnectedGame::showFTPMessageBox (const string & text, + const string & header, + bool toggle) + { + if (!toggle) + { + ftpMessageBox.setEnabled (false); + } + + if (!ftpMessageBox.getEnabled ()) + { + ftpMessageBox.setText (text); + ftpMessageBox.setHeader (header); + ftpMessageBox.setEnabled (true); + } + else + { + ftpMessageBox.setEnabled (false); + } + } + + int32 MenuStateConnectedGame::getNetworkPlayerStatus () + { + int32 result = npst_None; + switch (listBoxPlayerStatus.getSelectedItemIndex ()) + { + case 2: + result = npst_Ready; + break; + case 1: + result = npst_BeRightBack; + break; + case 0: + result = npst_PickSettings; + break; + } + + return result; + } + + void + MenuStateConnectedGame::cleanupMapPreviewTexture () + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (mapPreviewTexture != NULL) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + mapPreviewTexture->end (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + delete mapPreviewTexture; + mapPreviewTexture = NULL; + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + + bool MenuStateConnectedGame::isInSpecialKeyCaptureEvent () + { + bool + result = (chatManager.getEditEnabled () || activeInputLabel != NULL); + return result; + } + + void + MenuStateConnectedGame::FTPClient_CallbackEvent (string itemName, + FTP_Client_CallbackType + type, + pair < + FTP_Client_ResultType, + string > result, + void *userdata) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (type == ftp_cct_DownloadProgress) + { + FTPClientCallbackInterface::FtpProgressStats * stats = + (FTPClientCallbackInterface::FtpProgressStats *) userdata; + if (stats != NULL) + { + int + fileProgress = 0; + if (stats->download_total > 0) + { + fileProgress = + ((stats->download_now / stats->download_total) * 100.0); + } +//if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] current file [%s] fileProgress = %d [now = %f, total = %f]\n",itemName.c_str(),stats->currentFilename.c_str(), fileProgress,stats->download_now,stats->download_total); + + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread->getProgressMutex () + : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + pair < int, + string > + lastProgress; + std::map < string, pair < int, + string > >::iterator + iterFind = fileFTPProgressList.find (itemName); + if (iterFind == fileFTPProgressList.end ()) + { + iterFind = + fileFTPProgressList.find (GameConstants:: + saveNetworkGameFileServerCompressed); + if (iterFind == fileFTPProgressList.end ()) + { + iterFind = + fileFTPProgressList.find (GameConstants:: + saveNetworkGameFileClientCompressed); + } + } + if (iterFind != fileFTPProgressList.end ()) + { + lastProgress = iterFind->second; + fileFTPProgressList[iterFind->first] = pair < int, + string > (fileProgress, stats->currentFilename); + } + safeMutexFTPProgress.ReleaseLock (); + + if (itemName != "" + && (lastProgress.first / 25) < (fileProgress / 25)) + { + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("FileDownloadProgress", languageList[i]) == + true) + { + snprintf (szMsg, 8096, + lang.getString ("FileDownloadProgress", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), itemName.c_str (), + fileProgress); + } + else + { + snprintf (szMsg, 8096, + "Player: %s download progress for [%s] is %d %%", + getHumanPlayerName ().c_str (), itemName.c_str (), + fileProgress); + } + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] szMsg [%s] lastProgress.first = %d, fileProgress = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, szMsg, lastProgress.first, + fileProgress); + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + sleep (1); + } + } + } + else if (type == ftp_cct_ExtractProgress) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP extract Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); + + if (userdata == NULL) + { + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingExtractDownload", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingExtractDownload", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), itemName.c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Please wait, player: %s is extracting: %s", + getHumanPlayerName ().c_str (), itemName.c_str ()); + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] szMsg [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, szMsg); + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + sleep (1); + } + else + { + char * + szBuf = (char *) userdata; +//printf("%s\n",szBuf); +//console.addLine(szBuf); + console.addLine (szBuf, false, ""); + } + } + else if (type == ftp_cct_Map) + { getMissingMapFromFTPServerInProgress = false; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - fileFTPProgressList.erase(itemName); - safeMutexFTPProgress.ReleaseLock(); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread->getProgressMutex () : + NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + fileFTPProgressList.erase (itemName); + safeMutexFTPProgress.ReleaseLock (); - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - const GameSettings *gameSettings = clientInterface->getGameSettings(); + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + const GameSettings * + gameSettings = clientInterface->getGameSettings (); - if(result.first == ftp_crt_SUCCESS) { - // Clear the CRC file Cache - string file = Config::getMapPath(itemName,"",false); + if (result.first == ftp_crt_SUCCESS) + { +// Clear the CRC file Cache + string file = Config::getMapPath (itemName, "", false); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got map itemName [%s] file [%s] lastCheckedCRCMapName [%s] gameSettings->getMap() [%s]\n", - itemName.c_str(),file.c_str(),lastCheckedCRCMapName.c_str(),gameSettings->getMap().c_str()); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("Got map itemName [%s] file [%s] lastCheckedCRCMapName [%s] gameSettings->getMap() [%s]\n", + itemName.c_str (), file.c_str (), + lastCheckedCRCMapName.c_str (), + gameSettings->getMap ().c_str ()); - if(gameSettings != NULL && itemName == gameSettings->getMap() && - lastCheckedCRCMapName == gameSettings->getMap() && - gameSettings->getMap() != "") { - Checksum::clearFileCache(); - Checksum checksum; + if (gameSettings != NULL && itemName == gameSettings->getMap () && + lastCheckedCRCMapName == gameSettings->getMap () && + gameSettings->getMap () != "") + { + Checksum::clearFileCache (); + Checksum checksum; - checksum.addFile(file); - lastCheckedCRCMapValue = checksum.getSum(); - } + checksum.addFile (file); + lastCheckedCRCMapValue = checksum.getSum (); + } - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingMapSuccessDownload",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingMapSuccessDownload",languageList[i]).c_str(),getHumanPlayerName().c_str(),itemName.c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s SUCCESSFULLY downloaded the map: %s",getHumanPlayerName().c_str(),itemName.c_str()); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - sleep(1); - } - else { - printf("FAILED map itemName [%s] lastCheckedCRCMapName [%s] gameSettings->getMap() [%s]\n", - itemName.c_str(),lastCheckedCRCMapName.c_str(),gameSettings->getMap().c_str()); - - curl_version_info_data *curlVersion= curl_version_info(CURLVERSION_NOW); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingMapFailDownload",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingMapFailDownload",languageList[i]).c_str(),getHumanPlayerName().c_str(),itemName.c_str(),curlVersion->version); - } - else { - snprintf(szMsg,8096,"Player: %s FAILED to download the map: [%s] using CURL version [%s]",getHumanPlayerName().c_str(),itemName.c_str(),curlVersion->version); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - - if(result.first == ftp_crt_HOST_NOT_ACCEPTING) { - if(lang.hasString("HostNotAcceptingDataConnections",languageList[i]) == true) { - clientInterface->sendTextMessage(lang.getString("HostNotAcceptingDataConnections",languageList[i]),-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - else { - clientInterface->sendTextMessage("*Warning* the host is not accepting data connections.",-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - } - } - sleep(1); - - console.addLine(result.second,true); - } - } - else if(type == ftp_cct_Tileset) { - getMissingTilesetFromFTPServerInProgress = false; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); - - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - fileFTPProgressList.erase(itemName); - safeMutexFTPProgress.ReleaseLock(true); - - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - const GameSettings *gameSettings = clientInterface->getGameSettings(); - - if(result.first == ftp_crt_SUCCESS) { - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingTilesetSuccessDownload",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTilesetSuccessDownload",languageList[i]).c_str(),getHumanPlayerName().c_str(),itemName.c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s SUCCESSFULLY downloaded the tileset: %s",getHumanPlayerName().c_str(),itemName.c_str()); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - sleep(1); - - // START - // Clear the CRC Cache if it is populated - // - // Clear the CRC file Cache - safeMutexFTPProgress.Lock(); - Checksum::clearFileCache(); - - vector paths = Config::getInstance().getPathListForType(ptTilesets); - string pathSearchString = string("/") + itemName + string("/*"); - const string filterFileExt = ".xml"; - clearFolderTreeContentsCheckSum(paths, pathSearchString, filterFileExt); - clearFolderTreeContentsCheckSumList(paths, pathSearchString, filterFileExt); - - // Refresh CRC - - //printf("Got map itemName [%s] file [%s] lastCheckedCRCMapName [%s] gameSettings->getMap() [%s]\n", - // itemName.c_str(),file.c_str(),lastCheckedCRCMapName.c_str(),gameSettings->getMap().c_str()); - - if(gameSettings != NULL && itemName == gameSettings->getTileset() && - lastCheckedCRCTilesetName == gameSettings->getTileset() && - gameSettings->getTileset() != "") { - Config &config = Config::getInstance(); - lastCheckedCRCTilesetValue = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTilesets,""), string("/") + itemName + string("/*"), ".xml", NULL, true); - } - - safeMutexFTPProgress.ReleaseLock(); - // END - - // Reload tilesets for the UI - string scenarioDir = Scenario::getScenarioDir(dirList, gameSettings->getScenario()); - findDirs(Config::getInstance().getPathListForType(ptTilesets,scenarioDir), tilesetFiles); - - std::vector tilesetsFormatted = tilesetFiles; - std::for_each(tilesetsFormatted.begin(), tilesetsFormatted.end(), FormatString()); - listBoxTileset.setItems(tilesetsFormatted); - } - else { - curl_version_info_data *curlVersion= curl_version_info(CURLVERSION_NOW); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingTilesetFailDownload",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTilesetFailDownload",languageList[i]).c_str(),getHumanPlayerName().c_str(),(itemName+"(.7z)").c_str(),curlVersion->version); - } - else { - snprintf(szMsg,8096,"Player: %s FAILED to download the tileset: [%s] using CURL version [%s]",getHumanPlayerName().c_str(),(itemName+"(.7z)").c_str(),curlVersion->version); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - - if(result.first == ftp_crt_HOST_NOT_ACCEPTING) { - if(lang.hasString("HostNotAcceptingDataConnections",languageList[i]) == true) { - clientInterface->sendTextMessage(lang.getString("HostNotAcceptingDataConnections",languageList[i]),-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - else { - clientInterface->sendTextMessage("*Warning* the host is not accepting data connections.",-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - } - } - sleep(1); - - console.addLine(result.second,true); - } - } - else if(type == ftp_cct_Techtree) { - getMissingTechtreeFromFTPServerInProgress = false; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); - - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - fileFTPProgressList.erase(itemName); - safeMutexFTPProgress.ReleaseLock(true); - - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - const GameSettings *gameSettings = clientInterface->getGameSettings(); - - if(result.first == ftp_crt_SUCCESS) { - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingTechtreeSuccessDownload",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTechtreeSuccessDownload",languageList[i]).c_str(),getHumanPlayerName().c_str(),itemName.c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s SUCCESSFULLY downloaded the techtree: %s",getHumanPlayerName().c_str(),itemName.c_str()); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - sleep(1); - - // START - // Clear the CRC Cache if it is populated - // - // Clear the CRC file Cache - safeMutexFTPProgress.Lock(); - Checksum::clearFileCache(); - - vector paths = Config::getInstance().getPathListForType(ptTechs); - string pathSearchString = string("/") + itemName + string("/*"); - const string filterFileExt = ".xml"; - clearFolderTreeContentsCheckSum(paths, pathSearchString, filterFileExt); - clearFolderTreeContentsCheckSumList(paths, pathSearchString, filterFileExt); - - // Refresh CRC - if(gameSettings != NULL && itemName == gameSettings->getTech() && - lastCheckedCRCTechtreeName == gameSettings->getTech() && - gameSettings->getTech() != "") { - Config &config = Config::getInstance(); - lastCheckedCRCTechtreeValue = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), string("/") + itemName + string("/*"), ".xml", NULL, true); - } - safeMutexFTPProgress.ReleaseLock(); - // END - - // Reload techs for the UI - string scenarioDir = Scenario::getScenarioDir(dirList, gameSettings->getScenario()); - findDirs(Config::getInstance().getPathListForType(ptTechs,scenarioDir), techTreeFiles); - - vector translatedTechs; - std::vector techsFormatted = techTreeFiles; - for(int i= 0; i < (int)techsFormatted.size(); i++){ - techsFormatted.at(i)= formatString(techsFormatted.at(i)); - - string txTech = techTree->getTranslatedName(techTreeFiles.at(i), true); - translatedTechs.push_back(formatString(txTech)); - } - listBoxTechTree.setItems(techsFormatted,translatedTechs); - } - else { - curl_version_info_data *curlVersion= curl_version_info(CURLVERSION_NOW); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < (unsigned int)languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("DataMissingTechtreeFailDownload",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTechtreeFailDownload",languageList[i]).c_str(),getHumanPlayerName().c_str(),(itemName+"(.7z)").c_str(),curlVersion->version); - } - else { - snprintf(szMsg,8096,"Player: %s FAILED to download the techtree: [%s] using CURL version [%s]",getHumanPlayerName().c_str(),(itemName+"(.7z)").c_str(),curlVersion->version); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - - if(result.first == ftp_crt_HOST_NOT_ACCEPTING) { - if(lang.hasString("HostNotAcceptingDataConnections",languageList[i]) == true) { - clientInterface->sendTextMessage(lang.getString("HostNotAcceptingDataConnections",languageList[i]),-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - else { - clientInterface->sendTextMessage("*Warning* the host is not accepting data connections.",-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - } - } - sleep(1); - - console.addLine(result.second,true); - } - } - else if(type == ftp_cct_TempFile) { - getInProgressSavedGameFromFTPServerInProgress = false; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); - - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - //fileFTPProgressList.erase(itemName); - std::map >::iterator iterFind = fileFTPProgressList.find(itemName); - if(iterFind == fileFTPProgressList.end()) { - iterFind = fileFTPProgressList.find(GameConstants::saveNetworkGameFileServerCompressed); - if(iterFind == fileFTPProgressList.end()) { - iterFind = fileFTPProgressList.find(GameConstants::saveNetworkGameFileClientCompressed); + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingMapSuccessDownload", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingMapSuccessDownload", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), itemName.c_str ()); } + else + { + snprintf (szMsg, 8096, + "Player: %s SUCCESSFULLY downloaded the map: %s", + getHumanPlayerName ().c_str (), itemName.c_str ()); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + sleep (1); } - if(iterFind != fileFTPProgressList.end()) { - fileFTPProgressList.erase(iterFind->first); + else + { + printf + ("FAILED map itemName [%s] lastCheckedCRCMapName [%s] gameSettings->getMap() [%s]\n", + itemName.c_str (), lastCheckedCRCMapName.c_str (), + gameSettings->getMap ().c_str ()); + + curl_version_info_data * + curlVersion = curl_version_info (CURLVERSION_NOW); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingMapFailDownload", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingMapFailDownload", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), itemName.c_str (), + curlVersion->version); + } + else + { + snprintf (szMsg, 8096, + "Player: %s FAILED to download the map: [%s] using CURL version [%s]", + getHumanPlayerName ().c_str (), itemName.c_str (), + curlVersion->version); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + + if (result.first == ftp_crt_HOST_NOT_ACCEPTING) + { + if (lang.hasString ("HostNotAcceptingDataConnections", + languageList[i]) == true) + { + clientInterface->sendTextMessage (lang.getString + ("HostNotAcceptingDataConnections", + languageList[i]), -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + else + { + clientInterface->sendTextMessage + ("*Warning* the host is not accepting data connections.", + -1, lang.isLanguageLocal (languageList[i]), + languageList[i]); + } + } + } + sleep (1); + + console.addLine (result.second, true); } - safeMutexFTPProgress.ReleaseLock(); + } + else if (type == ftp_cct_Tileset) + { + getMissingTilesetFromFTPServerInProgress = false; + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); - //printf("Status update downloading saved game file: [%s]\n",itemName.c_str()); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread->getProgressMutex () : + NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + fileFTPProgressList.erase (itemName); + safeMutexFTPProgress.ReleaseLock (true); - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - //const GameSettings *gameSettings = clientInterface->getGameSettings(); + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + const GameSettings * + gameSettings = clientInterface->getGameSettings (); - if(result.first == ftp_crt_SUCCESS) { - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("JoinPlayerToCurrentGameSuccessDownload",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("JoinPlayerToCurrentGameSuccessDownload",languageList[i]).c_str(),getHumanPlayerName().c_str(),itemName.c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s SUCCESSFULLY downloaded the saved game: %s",getHumanPlayerName().c_str(),itemName.c_str()); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - sleep(1); + if (result.first == ftp_crt_SUCCESS) + { - if(itemName == GameConstants::saveNetworkGameFileClientCompressed) { - string saveGameFilePath = "temp/"; - string saveGameFile = saveGameFilePath + string(GameConstants::saveNetworkGameFileClientCompressed); - if(getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) != "") { - saveGameFilePath = getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) + saveGameFilePath; - saveGameFile = saveGameFilePath + string(GameConstants::saveNetworkGameFileClientCompressed); - } - else { - string userData = Config::getInstance().getString("UserData_Root",""); - if(userData != "") { - endPathWithSlash(userData); - } - saveGameFilePath = userData + saveGameFilePath; - saveGameFile = saveGameFilePath + string(GameConstants::saveNetworkGameFileClientCompressed); - } + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTilesetSuccessDownload", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingTilesetSuccessDownload", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), itemName.c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s SUCCESSFULLY downloaded the tileset: %s", + getHumanPlayerName ().c_str (), itemName.c_str ()); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + sleep (1); - string extractedFileName = saveGameFilePath + string(GameConstants::saveNetworkGameFileClient); - bool extract_result = extractFileFromZIPFile(saveGameFile,extractedFileName); +// START +// Clear the CRC Cache if it is populated +// +// Clear the CRC file Cache + safeMutexFTPProgress.Lock (); + Checksum::clearFileCache (); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Saved game [%s] compressed to [%s] returned: %d\n",saveGameFile.c_str(),extractedFileName.c_str(), extract_result); - } - readyToJoinInProgressGame = true; + vector < string > paths = + Config::getInstance ().getPathListForType (ptTilesets); + string pathSearchString = string ("/") + itemName + string ("/*"); + const + string + filterFileExt = ".xml"; + clearFolderTreeContentsCheckSum (paths, pathSearchString, + filterFileExt); + clearFolderTreeContentsCheckSumList (paths, pathSearchString, + filterFileExt); - //printf("Success downloading saved game file: [%s]\n",itemName.c_str()); +// Refresh CRC + +//printf("Got map itemName [%s] file [%s] lastCheckedCRCMapName [%s] gameSettings->getMap() [%s]\n", +// itemName.c_str(),file.c_str(),lastCheckedCRCMapName.c_str(),gameSettings->getMap().c_str()); + + if (gameSettings != NULL && itemName == gameSettings->getTileset () + && lastCheckedCRCTilesetName == gameSettings->getTileset () + && gameSettings->getTileset () != "") + { + Config & config = Config::getInstance (); + lastCheckedCRCTilesetValue = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTilesets, ""), + string ("/") + itemName + string ("/*"), ".xml", NULL, true); + } + + safeMutexFTPProgress.ReleaseLock (); +// END + +// Reload tilesets for the UI + string + scenarioDir = + Scenario::getScenarioDir (dirList, gameSettings->getScenario ()); + findDirs (Config::getInstance ().getPathListForType (ptTilesets, + scenarioDir), + tilesetFiles); + + std::vector < string > tilesetsFormatted = tilesetFiles; + std::for_each (tilesetsFormatted.begin (), tilesetsFormatted.end (), + FormatString ()); + listBoxTileset.setItems (tilesetsFormatted); } - else { - curl_version_info_data *curlVersion= curl_version_info(CURLVERSION_NOW); + else + { + curl_version_info_data * + curlVersion = curl_version_info (CURLVERSION_NOW); - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - char szMsg[8096]=""; - if(lang.hasString("JoinPlayerToCurrentGameFailDownload",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("JoinPlayerToCurrentGameFailDownload",languageList[i]).c_str(),getHumanPlayerName().c_str(),itemName.c_str(),curlVersion->version); - } - else { - snprintf(szMsg,8096,"Player: %s FAILED to download the saved game: [%s] using CURL version [%s]",getHumanPlayerName().c_str(),itemName.c_str(),curlVersion->version); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTilesetFailDownload", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingTilesetFailDownload", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + (itemName + "(.7z)").c_str (), curlVersion->version); + } + else + { + snprintf (szMsg, 8096, + "Player: %s FAILED to download the tileset: [%s] using CURL version [%s]", + getHumanPlayerName ().c_str (), + (itemName + "(.7z)").c_str (), curlVersion->version); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); - if(result.first == ftp_crt_HOST_NOT_ACCEPTING) { - if(lang.hasString("HostNotAcceptingDataConnections",languageList[i]) == true) { - clientInterface->sendTextMessage(lang.getString("HostNotAcceptingDataConnections",languageList[i]),-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - else { - clientInterface->sendTextMessage("*Warning* the host is not accepting data connections.",-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - } - } - sleep(1); + if (result.first == ftp_crt_HOST_NOT_ACCEPTING) + { + if (lang.hasString ("HostNotAcceptingDataConnections", + languageList[i]) == true) + { + clientInterface->sendTextMessage (lang.getString + ("HostNotAcceptingDataConnections", + languageList[i]), -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + else + { + clientInterface->sendTextMessage + ("*Warning* the host is not accepting data connections.", + -1, lang.isLanguageLocal (languageList[i]), + languageList[i]); + } + } + } + sleep (1); - console.addLine(result.second,true); + console.addLine (result.second, true); } + } + else if (type == ftp_cct_Techtree) + { + getMissingTechtreeFromFTPServerInProgress = false; + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); + + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread->getProgressMutex () : + NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + fileFTPProgressList.erase (itemName); + safeMutexFTPProgress.ReleaseLock (true); + + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + const GameSettings * + gameSettings = clientInterface->getGameSettings (); + + if (result.first == ftp_crt_SUCCESS) + { + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTechtreeSuccessDownload", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingTechtreeSuccessDownload", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), itemName.c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s SUCCESSFULLY downloaded the techtree: %s", + getHumanPlayerName ().c_str (), itemName.c_str ()); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + sleep (1); + +// START +// Clear the CRC Cache if it is populated +// +// Clear the CRC file Cache + safeMutexFTPProgress.Lock (); + Checksum::clearFileCache (); + + vector < string > paths = + Config::getInstance ().getPathListForType (ptTechs); + string pathSearchString = string ("/") + itemName + string ("/*"); + const + string + filterFileExt = ".xml"; + clearFolderTreeContentsCheckSum (paths, pathSearchString, + filterFileExt); + clearFolderTreeContentsCheckSumList (paths, pathSearchString, + filterFileExt); + +// Refresh CRC + if (gameSettings != NULL && itemName == gameSettings->getTech () && + lastCheckedCRCTechtreeName == gameSettings->getTech () && + gameSettings->getTech () != "") + { + Config & config = Config::getInstance (); + lastCheckedCRCTechtreeValue = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + string ("/") + itemName + string ("/*"), ".xml", NULL, true); + } + safeMutexFTPProgress.ReleaseLock (); +// END + +// Reload techs for the UI + string + scenarioDir = + Scenario::getScenarioDir (dirList, gameSettings->getScenario ()); + findDirs (Config:: + getInstance ().getPathListForType (ptTechs, scenarioDir), + techTreeFiles); + + vector < string > translatedTechs; + std::vector < string > techsFormatted = techTreeFiles; + for (int i = 0; i < (int) techsFormatted.size (); i++) + { + techsFormatted.at (i) = formatString (techsFormatted.at (i)); + + string + txTech = + techTree->getTranslatedName (techTreeFiles.at (i), true); + translatedTechs.push_back (formatString (txTech)); + } + listBoxTechTree.setItems (techsFormatted, translatedTechs); + } + else + { + curl_version_info_data * + curlVersion = curl_version_info (CURLVERSION_NOW); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < (unsigned int) languageList.size (); + ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTechtreeFailDownload", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingTechtreeFailDownload", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + (itemName + "(.7z)").c_str (), curlVersion->version); + } + else + { + snprintf (szMsg, 8096, + "Player: %s FAILED to download the techtree: [%s] using CURL version [%s]", + getHumanPlayerName ().c_str (), + (itemName + "(.7z)").c_str (), curlVersion->version); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + + if (result.first == ftp_crt_HOST_NOT_ACCEPTING) + { + if (lang.hasString ("HostNotAcceptingDataConnections", + languageList[i]) == true) + { + clientInterface->sendTextMessage (lang.getString + ("HostNotAcceptingDataConnections", + languageList[i]), -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + else + { + clientInterface->sendTextMessage + ("*Warning* the host is not accepting data connections.", + -1, lang.isLanguageLocal (languageList[i]), + languageList[i]); + } + } + } + sleep (1); + + console.addLine (result.second, true); + } + } + else if (type == ftp_cct_TempFile) + { + getInProgressSavedGameFromFTPServerInProgress = false; + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); + + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread->getProgressMutex () : + NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); +//fileFTPProgressList.erase(itemName); + std::map < string, pair < int, + string > >::iterator + iterFind = fileFTPProgressList.find (itemName); + if (iterFind == fileFTPProgressList.end ()) + { + iterFind = + fileFTPProgressList.find (GameConstants:: + saveNetworkGameFileServerCompressed); + if (iterFind == fileFTPProgressList.end ()) + { + iterFind = + fileFTPProgressList.find (GameConstants:: + saveNetworkGameFileClientCompressed); + } + } + if (iterFind != fileFTPProgressList.end ()) + { + fileFTPProgressList.erase (iterFind->first); + } + safeMutexFTPProgress.ReleaseLock (); + +//printf("Status update downloading saved game file: [%s]\n",itemName.c_str()); + + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); +//const GameSettings *gameSettings = clientInterface->getGameSettings(); + + if (result.first == ftp_crt_SUCCESS) + { + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("JoinPlayerToCurrentGameSuccessDownload", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString + ("JoinPlayerToCurrentGameSuccessDownload", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), itemName.c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s SUCCESSFULLY downloaded the saved game: %s", + getHumanPlayerName ().c_str (), itemName.c_str ()); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + sleep (1); + + if (itemName == GameConstants::saveNetworkGameFileClientCompressed) + { + string saveGameFilePath = "temp/"; + string + saveGameFile = + saveGameFilePath + + string (GameConstants::saveNetworkGameFileClientCompressed); + if (getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) + != "") + { + saveGameFilePath = + getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) + + saveGameFilePath; + saveGameFile = + saveGameFilePath + + string (GameConstants::saveNetworkGameFileClientCompressed); + } + else + { + string + userData = + Config::getInstance ().getString ("UserData_Root", ""); + if (userData != "") + { + endPathWithSlash (userData); + } + saveGameFilePath = userData + saveGameFilePath; + saveGameFile = + saveGameFilePath + + string (GameConstants::saveNetworkGameFileClientCompressed); + } + + string + extractedFileName = + saveGameFilePath + + string (GameConstants::saveNetworkGameFileClient); + bool + extract_result = + extractFileFromZIPFile (saveGameFile, extractedFileName); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Saved game [%s] compressed to [%s] returned: %d\n", + saveGameFile.c_str (), extractedFileName.c_str (), + extract_result); + } + readyToJoinInProgressGame = true; + +//printf("Success downloading saved game file: [%s]\n",itemName.c_str()); + } + else + { + curl_version_info_data * + curlVersion = curl_version_info (CURLVERSION_NOW); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + char + szMsg[8096] = ""; + if (lang.hasString ("JoinPlayerToCurrentGameFailDownload", + languageList[i]) == true) + { + snprintf (szMsg, 8096, + lang.getString ("JoinPlayerToCurrentGameFailDownload", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), itemName.c_str (), + curlVersion->version); + } + else + { + snprintf (szMsg, 8096, + "Player: %s FAILED to download the saved game: [%s] using CURL version [%s]", + getHumanPlayerName ().c_str (), itemName.c_str (), + curlVersion->version); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + + if (result.first == ftp_crt_HOST_NOT_ACCEPTING) + { + if (lang.hasString ("HostNotAcceptingDataConnections", + languageList[i]) == true) + { + clientInterface->sendTextMessage (lang.getString + ("HostNotAcceptingDataConnections", + languageList[i]), -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + else + { + clientInterface->sendTextMessage + ("*Warning* the host is not accepting data connections.", + -1, lang.isLanguageLocal (languageList[i]), + languageList[i]); + } + } + } + sleep (1); + + console.addLine (result.second, true); + } + } } -} - -void MenuStateConnectedGame::setupUIFromGameSettings(GameSettings *gameSettings, bool errorOnMissingData) { - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - - updateDataSynchDetailText = true; - vector tilesets,techtree; - - if(gameSettings == NULL) { - throw megaglest_runtime_error("gameSettings == NULL"); - } - - - checkBoxScenario.setValue((gameSettings->getScenario() != "")); - if(checkBoxScenario.getValue() == true) { - int originalFOWValue = listBoxFogOfWar.getSelectedItemIndex(); - - string scenario = gameSettings->getScenario(); - listBoxScenario.setSelectedItem(formatString(scenario)); - string file = Scenario::getScenarioPath(dirList, scenario); - - bool isTutorial = Scenario::isGameTutorial(file); - Scenario::loadScenarioInfo(file, &scenarioInfo, isTutorial); - - gameSettings->setScenarioDir(Scenario::getScenarioPath(dirList, scenarioInfo.name)); - - gameSettings->setDefaultResources(scenarioInfo.defaultResources); - gameSettings->setDefaultUnits(scenarioInfo.defaultUnits); - gameSettings->setDefaultVictoryConditions(scenarioInfo.defaultVictoryConditions); - - if(scenarioInfo.fogOfWar == false && scenarioInfo.fogOfWar_exploredFlag == false) { - listBoxFogOfWar.setSelectedItemIndex(2); - } - else if(scenarioInfo.fogOfWar_exploredFlag == true) { - listBoxFogOfWar.setSelectedItemIndex(1); - } - else { - listBoxFogOfWar.setSelectedItemIndex(0); - } - - checkBoxAllowTeamUnitSharing.setValue(scenarioInfo.allowTeamUnitSharing); - checkBoxAllowTeamResourceSharing.setValue(scenarioInfo.allowTeamResourceSharing); - - if(originalFOWValue != listBoxFogOfWar.getSelectedItemIndex()) { - cleanupMapPreviewTexture(); - } - } - - if( listBoxMapFilter.getSelectedItemIndex()!=gameSettings->getMapFilter()){ - switchToMapGroup(gameSettings->getMapFilter()); -// printf("Switching to Map filter group %d \n",gameSettings->getMapFilter()); - } - - string scenarioDir = Scenario::getScenarioDir(dirList, gameSettings->getScenario()); - setupMapList(gameSettings->getScenario()); - setupTechList(gameSettings->getScenario()); - setupTilesetList(gameSettings->getScenario()); - - - //printf("A gameSettings->getTileset() [%s]\n",gameSettings->getTileset().c_str()); - - if ( getMissingTilesetFromFTPServerInProgress == false - && gameSettings->getTileset() != "") { - // tileset - tilesets = tilesetFiles; - std::for_each(tilesets.begin(), tilesets.end(), FormatString()); - - if(std::find(tilesetFiles.begin(),tilesetFiles.end(),gameSettings->getTileset()) != tilesetFiles.end()) { - lastMissingTileSet = ""; - getMissingTilesetFromFTPServer = ""; - listBoxTileset.setSelectedItem(formatString(gameSettings->getTileset())); - } - else { - // try to get the tileset via ftp - if(ftpClientThread != NULL && - (getMissingTilesetFromFTPServer != gameSettings->getTileset() || - difftime(time(NULL),getMissingTilesetFromFTPServerLastPrompted) > REPROMPT_DOWNLOAD_SECONDS)) { - if(ftpMessageBox.getEnabled() == false) { - getMissingTilesetFromFTPServerLastPrompted = time(NULL); - getMissingTilesetFromFTPServer = gameSettings->getTileset(); - Lang &lang= Lang::getInstance(); - - char szBuf[8096]=""; - snprintf(szBuf,8096,"%s %s ?",lang.getString("DownloadMissingTilesetQuestion").c_str(),gameSettings->getTileset().c_str()); - - // Is the item in the mod center? - MutexSafeWrapper safeMutexThread((modHttpServerThread != NULL ? modHttpServerThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - if(tilesetCacheList.find(getMissingTilesetFromFTPServer) == tilesetCacheList.end()) { - ftpMessageBox.init(lang.getString("Yes"),lang.getString("NoDownload")); - } - else { - ftpMessageBox.init(lang.getString("ModCenter"),lang.getString("GameHost")); - ftpMessageBox.addButton(lang.getString("NoDownload")); - } - safeMutexThread.ReleaseLock(); - - ftpMissingDataType = ftpmsg_MissingTileset; - showFTPMessageBox(szBuf, lang.getString("Question"), false); - } - } - - tilesets.push_back(Lang::getInstance().getString("DataMissing","",true)); - - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - const GameSettings *gameSettings = clientInterface->getGameSettings(); - - if(lastMissingTileSet != gameSettings->getTileset()) { - lastMissingTileSet = gameSettings->getTileset(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - - char szMsg[8096]=""; - if(lang.hasString("DataMissingTileset",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTileset",languageList[i]).c_str(),getHumanPlayerName().c_str(),gameSettings->getTileset().c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is missing the tileset: %s",getHumanPlayerName().c_str(),gameSettings->getTileset().c_str()); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - } - - listBoxTileset.setItems(tilesets); - listBoxTileset.setSelectedItem(Lang::getInstance().getString("DataMissing","",true)); - } - - } - - if(getMissingTechtreeFromFTPServerInProgress == false && - gameSettings->getTech() != "") { - // techtree - techtree = techTreeFiles; - std::for_each(techtree.begin(), techtree.end(), FormatString()); - - if(std::find(techTreeFiles.begin(),techTreeFiles.end(),gameSettings->getTech()) != techTreeFiles.end()) { - - lastMissingTechtree = ""; - getMissingTechtreeFromFTPServer = ""; - reloadFactions(true,gameSettings->getScenario()); - listBoxTechTree.setSelectedItem(formatString(gameSettings->getTech())); - } - else { - // try to get the tileset via ftp - if(ftpClientThread != NULL && (getMissingTechtreeFromFTPServer != gameSettings->getTech() || - difftime(time(NULL),getMissingTechtreeFromFTPServerLastPrompted) > REPROMPT_DOWNLOAD_SECONDS)) { - if(ftpMessageBox.getEnabled() == false) { - getMissingTechtreeFromFTPServerLastPrompted = time(NULL); - getMissingTechtreeFromFTPServer = gameSettings->getTech(); - Lang &lang= Lang::getInstance(); - - char szBuf[8096]=""; - snprintf(szBuf,8096,"%s %s ?",lang.getString("DownloadMissingTechtreeQuestion").c_str(),gameSettings->getTech().c_str()); - - // Is the item in the mod center? - MutexSafeWrapper safeMutexThread((modHttpServerThread != NULL ? modHttpServerThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - if(techCacheList.find(getMissingTechtreeFromFTPServer) == techCacheList.end()) { - ftpMessageBox.init(lang.getString("Yes"),lang.getString("NoDownload")); - } - else { - ftpMessageBox.init(lang.getString("ModCenter"),lang.getString("GameHost")); - ftpMessageBox.addButton(lang.getString("NoDownload")); - } - safeMutexThread.ReleaseLock(); - - ftpMissingDataType = ftpmsg_MissingTechtree; - showFTPMessageBox(szBuf, lang.getString("Question"), false); - } - } - - techtree.push_back(Lang::getInstance().getString("DataMissing","",true)); - - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - const GameSettings *gameSettings = clientInterface->getGameSettings(); - - if(lastMissingTechtree != gameSettings->getTech()) { - lastMissingTechtree = gameSettings->getTech(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - Lang &lang= Lang::getInstance(); - const vector languageList = clientInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int i = 0; i < languageList.size(); ++i) { - - char szMsg[8096]=""; - if(lang.hasString("DataMissingTechtree",languageList[i]) == true) { - snprintf(szMsg,8096,lang.getString("DataMissingTechtree",languageList[i]).c_str(),getHumanPlayerName().c_str(),gameSettings->getTech().c_str()); - } - else { - snprintf(szMsg,8096,"Player: %s is missing the techtree: %s",getHumanPlayerName().c_str(),gameSettings->getTech().c_str()); - } - clientInterface->sendTextMessage(szMsg,-1, lang.isLanguageLocal(languageList[i]),languageList[i]); - } - } - - vector translatedTechs; - for(unsigned int i= 0; i < techTreeFiles.size(); i++) { - string txTech = techTree->getTranslatedName(techTreeFiles.at(i)); - translatedTechs.push_back(txTech); - } - listBoxTechTree.setItems(techtree,translatedTechs); - listBoxTechTree.setSelectedItem(Lang::getInstance().getString("DataMissing","",true)); - } - } - - // factions - bool hasFactions = true; - if(currentFactionName != gameSettings->getTech() && gameSettings->getTech() != "") { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] hasFactions = %d, currentFactionName [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,hasFactions,currentFactionName.c_str()); - currentFactionName = gameSettings->getTech(); - hasFactions = loadFactions(gameSettings,false); - } - else { - // do this to process special faction types like observers - loadFactions(gameSettings,false); - } - - - if(getMissingMapFromFTPServerInProgress == false && - gameSettings->getMap() != "" && gameSettings->getMapFilter()==listBoxMapFilter.getSelectedItemIndex()) - { - // map - bool missingMap=false; - string mapFile = gameSettings->getMap(); - mapFile = formatString(mapFile); - - if(currentMap != gameSettings->getMap()) {// load the setup again - currentMap = gameSettings->getMap(); - } - bool mapLoaded = loadMapInfo(Config::getMapPath(currentMap,scenarioDir,false), &mapInfo, true); - if(mapLoaded == false) { - // try to get the map via ftp - if(ftpClientThread != NULL && (getMissingMapFromFTPServer != currentMap || - difftime(time(NULL),getMissingMapFromFTPServerLastPrompted) > REPROMPT_DOWNLOAD_SECONDS)) { - if(ftpMessageBox.getEnabled() == false) { - getMissingMapFromFTPServerLastPrompted = time(NULL); - getMissingMapFromFTPServer = currentMap; - Lang &lang= Lang::getInstance(); - - char szBuf[8096]=""; - snprintf(szBuf,8096,"%s %s ?",lang.getString("DownloadMissingMapQuestion").c_str(),currentMap.c_str()); - - // Is the item in the mod center? - MutexSafeWrapper safeMutexThread((modHttpServerThread != NULL ? modHttpServerThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - if(mapCacheList.find(getMissingMapFromFTPServer) == mapCacheList.end()) { - ftpMessageBox.init(lang.getString("Yes"),lang.getString("NoDownload")); - } - else { - ftpMessageBox.init(lang.getString("ModCenter"),lang.getString("GameHost")); - ftpMessageBox.addButton(lang.getString("NoDownload")); - } - safeMutexThread.ReleaseLock(); - - ftpMissingDataType = ftpmsg_MissingMap; - showFTPMessageBox(szBuf, lang.getString("Question"), false); - } - } - - formattedPlayerSortedMaps[gameSettings->getMapFilter()].push_back(Lang::getInstance().getString("DataMissing","",true)); - mapFile = Lang::getInstance().getString("DataMissing","",true); - missingMap=true; - } - - if( isHeadlessAdmin() && !missingMap && mapFile!=listBoxMap.getSelectedItem()){ - //console.addLine("Headless server does not have map, switching to next one"); - if(isfirstSwitchingMapMessage){ - isfirstSwitchingMapMessage=false; - }else{ - console.addLine(Lang::getInstance().getString("HeadlessServerDoesNotHaveMap","",true)); - } - } - listBoxMap.setItems(formattedPlayerSortedMaps[gameSettings->getMapFilter()]); - - //printf("Setting map from game settings map:%s , settingsfilter=%d , boxfilter=%d \n",gameSettings->getMap().c_str(),gameSettings->getMapFilter(),listBoxMapFilter.getSelectedItemIndex()); - listBoxMap.setSelectedItem(mapFile); - labelMapInfo.setText(mapInfo.desc); - } - - // FogOfWar - if(checkBoxScenario.getValue() == false) { - int originalFOWValue = listBoxFogOfWar.getSelectedItemIndex(); - listBoxFogOfWar.setSelectedItemIndex(0); // default is 0! - if(gameSettings->getFogOfWar() == false){ - listBoxFogOfWar.setSelectedItemIndex(2); - } - if((gameSettings->getFlagTypes1() & ft1_show_map_resources) == ft1_show_map_resources){ - if(gameSettings->getFogOfWar() == true){ - listBoxFogOfWar.setSelectedItemIndex(1); - } - } - if(originalFOWValue != listBoxFogOfWar.getSelectedItemIndex()) { - cleanupMapPreviewTexture(); - } - } - - // Allow Observers - if(gameSettings->getAllowObservers()) { - checkBoxAllowObservers.setValue(true); - } - else - { - checkBoxAllowObservers.setValue(false); - } - - if((gameSettings->getFlagTypes1() & ft1_allow_team_switching) == ft1_allow_team_switching){ - checkBoxEnableSwitchTeamMode.setValue(true); - } - else { - checkBoxEnableSwitchTeamMode.setValue(false); - } - listBoxAISwitchTeamAcceptPercent.setSelectedItem(intToStr(gameSettings->getAiAcceptSwitchTeamPercentChance())); - listBoxFallbackCpuMultiplier.setSelectedItemIndex(gameSettings->getFallbackCpuMultiplier()); - - if((gameSettings->getFlagTypes1() & ft1_allow_shared_team_units) == ft1_allow_shared_team_units) { - checkBoxAllowTeamUnitSharing.setValue(true); - } - else { - checkBoxAllowTeamUnitSharing.setValue(false); - } - - if((gameSettings->getFlagTypes1() & ft1_allow_shared_team_resources) == ft1_allow_shared_team_resources) { - checkBoxAllowTeamResourceSharing.setValue(true); - } - else { - checkBoxAllowTeamResourceSharing.setValue(false); - } - - checkBoxAllowNativeLanguageTechtree.setValue(gameSettings->getNetworkAllowNativeLanguageTechtree()); - - // Control - for(int i=0; igetJoinGameInProgress() == false) { - listBoxFactions[i].setEditable(false); - listBoxTeams[i].setEditable(false); - } - } - - labelPlayerStatus[i].setTexture(NULL);; - } - - if(hasFactions == true && gameSettings != NULL) { - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface *clientInterface = networkManager.getClientInterface(); - - //for(int i=0; i < gameSettings->getFactionCount(); ++i){ - for(int i=0; i < GameConstants::maxPlayers; ++i) { - int slot = gameSettings->getStartLocationIndex(i); - - if(slot == clientInterface->getPlayerIndex()){ - labelPlayerNames[slot].setEditable(true); - } - else { - labelPlayerNames[slot].setEditable(false); - } - - if(i >= mapInfo.players) { - if( gameSettings->getFactionControl(i) != ctNetworkUnassigned) { - continue; - } - else if(clientInterface->getPlayerIndex() != slot) { - continue; - } - } - - if( gameSettings->getFactionControl(i) == ctNetwork || - gameSettings->getFactionControl(i) == ctNetworkUnassigned || - gameSettings->getFactionControl(i) == ctHuman) { - switch(gameSettings->getNetworkPlayerStatuses(i)) { - case npst_BeRightBack: - labelPlayerStatus[slot].setTexture(CoreData::getInstance().getStatusBRBTexture()); - break; - case npst_Ready: - labelPlayerStatus[slot].setTexture(CoreData::getInstance().getStatusReadyTexture()); - break; - case npst_PickSettings: - labelPlayerStatus[slot].setTexture(CoreData::getInstance().getStatusNotReadyTexture()); - break; - case npst_Disconnected: - labelPlayerStatus[slot].setTexture(NULL); - break; - - default: - labelPlayerStatus[slot].setTexture(NULL); - break; - } - } - - listBoxControls[slot].setSelectedItemIndex(gameSettings->getFactionControl(i),errorOnMissingData); - listBoxRMultiplier[slot].setSelectedItemIndex(gameSettings->getResourceMultiplierIndex(i),errorOnMissingData); - listBoxTeams[slot].setSelectedItemIndex(gameSettings->getTeam(i),errorOnMissingData); - listBoxFactions[slot].setSelectedItem(formatString(gameSettings->getFactionTypeName(i)),false); - - if( gameSettings->getFactionControl(i) == ctNetwork || - gameSettings->getFactionControl(i) == ctNetworkUnassigned) { - labelNetStatus[slot].setText(gameSettings->getNetworkPlayerName(i)); - if( gameSettings->getThisFactionIndex() != i && - gameSettings->getNetworkPlayerName(i) != "" && - gameSettings->getNetworkPlayerName(i) != GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) { - labelPlayerNames[slot].setText(gameSettings->getNetworkPlayerName(i)); - } - } - - ControlType ct= gameSettings->getFactionControl(i); - if (ct == ctHuman || ct == ctNetwork || ct == ctClosed) { - listBoxRMultiplier[slot].setEnabled(false); - listBoxRMultiplier[slot].setVisible(false); - } - else { - listBoxRMultiplier[slot].setEnabled(true); - listBoxRMultiplier[slot].setVisible(true); - } - - if((gameSettings->getFactionControl(i) == ctNetwork || - gameSettings->getFactionControl(i) == ctNetworkUnassigned) && - gameSettings->getThisFactionIndex() == i) { - - // set my current slot to ctHuman - if(gameSettings->getFactionControl(i) != ctNetworkUnassigned) { - listBoxControls[slot].setSelectedItemIndex(ctHuman); - } - if(checkBoxScenario.getValue() == false) { - if(clientInterface->getJoinGameInProgress() == false) { - listBoxFactions[slot].setEditable(true); - listBoxTeams[slot].setEditable(true); - } - } - - if(labelPlayerNames[slot].getText() == "" && - gameSettings->getNetworkPlayerName(i) != "" && - gameSettings->getNetworkPlayerName(i) != GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) { - labelPlayerNames[slot].setText(gameSettings->getNetworkPlayerName(i)); - } - } - } - settingsReceivedFromServer=true; - initialSettingsReceivedFromServer=true; - - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - - if(enableFactionTexturePreview == true) { - if( clientInterface != NULL && clientInterface->isConnected() && - gameSettings != NULL) { - - if( currentTechName_factionPreview != gameSettings->getTech() || - currentFactionName_factionPreview != gameSettings->getFactionTypeName(gameSettings->getThisFactionIndex())) { - - currentTechName_factionPreview=gameSettings->getTech(); - currentFactionName_factionPreview=gameSettings->getFactionTypeName(gameSettings->getThisFactionIndex()); - - initFactionPreview(gameSettings); - } - } - } - -} - -void MenuStateConnectedGame::initFactionPreview(const GameSettings *gameSettings) { - string factionVideoUrl = ""; - string factionVideoUrlFallback = ""; - - string factionDefinitionXML = Game::findFactionLogoFile(gameSettings, NULL,currentFactionName_factionPreview + ".xml"); - if(factionDefinitionXML != "" && currentFactionName_factionPreview != GameConstants::RANDOMFACTION_SLOTNAME && - currentFactionName_factionPreview != GameConstants::OBSERVER_SLOTNAME && fileExists(factionDefinitionXML) == true) { - XmlTree xmlTree; - std::map mapExtraTagReplacementValues; - xmlTree.load(factionDefinitionXML, Properties::getTagReplacementValues(&mapExtraTagReplacementValues)); - const XmlNode *factionNode= xmlTree.getRootNode(); - if(factionNode->hasAttribute("faction-preview-video") == true) { - factionVideoUrl = factionNode->getAttribute("faction-preview-video")->getValue(); - } - - factionVideoUrlFallback = Game::findFactionLogoFile(gameSettings, NULL,"preview_video.*"); - if(factionVideoUrl == "") { - factionVideoUrl = factionVideoUrlFallback; - factionVideoUrlFallback = ""; - } - } - - if(factionVideoUrl != "") { - if(CoreData::getInstance().getMenuMusic()->getVolume() != 0) { - CoreData::getInstance().getMenuMusic()->setVolume(0); - factionVideoSwitchedOffVolume=true; - } - - if(currentFactionLogo != factionVideoUrl) { - currentFactionLogo = factionVideoUrl; - if(GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false && - ::Shared::Graphics::VideoPlayer::hasBackEndVideoPlayer() == true) { - - if(factionVideo != NULL) { - factionVideo->closePlayer(); - delete factionVideo; - factionVideo = NULL; - } - string introVideoFile = factionVideoUrl; - string introVideoFileFallback = factionVideoUrlFallback; - - Context *c= GraphicsInterface::getInstance().getCurrentContext(); - PlatformContextGl *glCtx = static_cast(c)->getPlatformContextGlPtr(); - SDL_Window *window = glCtx->getScreenWindow(); - SDL_Surface *screen = glCtx->getScreenSurface(); - - string vlcPluginsPath = Config::getInstance().getString("VideoPlayerPluginsPath",""); - //printf("screen->w = %d screen->h = %d screen->format->BitsPerPixel = %d\n",screen->w,screen->h,screen->format->BitsPerPixel); - factionVideo = new VideoPlayer( - &Renderer::getInstance(), - introVideoFile, - introVideoFileFallback, - window, - 0,0, - screen->w, - screen->h, - screen->format->BitsPerPixel, - true, - vlcPluginsPath, - SystemFlags::VERBOSE_MODE_ENABLED); - factionVideo->initPlayer(); - } - } - } - else { - //switch on music again!! - Config &config = Config::getInstance(); - float configVolume = (config.getInt("SoundVolumeMusic") / 100.f); - if(factionVideoSwitchedOffVolume){ - if(CoreData::getInstance().getMenuMusic()->getVolume() != configVolume) { - CoreData::getInstance().getMenuMusic()->setVolume(configVolume); - } - factionVideoSwitchedOffVolume=false; - } - - if(factionVideo != NULL) { - factionVideo->closePlayer(); - delete factionVideo; - factionVideo = NULL; - } - } - - if(factionVideo == NULL) { - string factionLogo = Game::findFactionLogoFile(gameSettings, NULL,GameConstants::PREVIEW_SCREEN_FILE_FILTER); - if(factionLogo == "") { - factionLogo = Game::findFactionLogoFile(gameSettings, NULL); - } - if(currentFactionLogo != factionLogo) { - currentFactionLogo = factionLogo; - loadFactionTexture(currentFactionLogo); - } - } -} - -void MenuStateConnectedGame::RestoreLastGameSettings() { - // Ensure we have set the gamesettings at least once - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - GameSettings gameSettings = *clientInterface->getGameSettings(); - CoreData::getInstance().loadGameSettingsFromFile(HEADLESS_SAVED_GAME_FILENAME,&gameSettings); - if(gameSettings.getMap() == "") { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - loadGameSettings(&gameSettings); - } - - setupUIFromGameSettings(&gameSettings, false); - - needToBroadcastServerSettings=true; - broadcastServerSettingsDelayTimer=time(NULL); - noReceiveTimer=time(NULL); - -} - -int MenuStateConnectedGame::setupMapList(string scenario) { - int initialMapSelection = 0; - - try { - Config &config = Config::getInstance(); - vector invalidMapList; - string scenarioDir = Scenario::getScenarioDir(dirList, scenario); - vector pathList = config.getPathListForType(ptMaps,scenarioDir); - vector allMaps = MapPreview::findAllValidMaps(pathList,scenarioDir,false,true,&invalidMapList); - // sort map list non case sensitive - std::sort(allMaps.begin(),allMaps.end(),compareNonCaseSensitive); - if(scenario != "") { - vector allMaps2 = MapPreview::findAllValidMaps(config.getPathListForType(ptMaps,""),"",false,true,&invalidMapList); - copy(allMaps2.begin(), allMaps2.end(), std::inserter(allMaps, allMaps.begin())); - std::sort(allMaps.begin(),allMaps.end(),compareNonCaseSensitive); - } - - if (allMaps.empty()) { - throw megaglest_runtime_error("No maps were found!"); - } - vector results; - copy(allMaps.begin(), allMaps.end(), std::back_inserter(results)); - mapFiles = results; - - for(unsigned int i = 0; i < GameConstants::maxPlayers+1; ++i) { - playerSortedMaps[i].clear(); - formattedPlayerSortedMaps[i].clear(); - } - - copy(mapFiles.begin(), mapFiles.end(), std::back_inserter(playerSortedMaps[0])); - copy(playerSortedMaps[0].begin(), playerSortedMaps[0].end(), std::back_inserter(formattedPlayerSortedMaps[0])); - std::for_each(formattedPlayerSortedMaps[0].begin(), formattedPlayerSortedMaps[0].end(), FormatString()); - - formattedMapFiles.clear(); - for(int i= 0; i < (int)mapFiles.size(); i++){// fetch info and put map in right list - loadMapInfo(Config::getMapPath(mapFiles.at(i), scenarioDir, false), &mapInfo, false); - - if(GameConstants::maxPlayers+1 <= mapInfo.players) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"Sorted map list [%d] does not match\ncurrent map playercount [%d]\nfor file [%s]\nmap [%s]",GameConstants::maxPlayers+1,mapInfo.players,Config::getMapPath(mapFiles.at(i), "", false).c_str(),mapInfo.desc.c_str()); - throw megaglest_runtime_error(szBuf); - } - playerSortedMaps[mapInfo.players].push_back(mapFiles.at(i)); - formattedPlayerSortedMaps[mapInfo.players].push_back(formatString(mapFiles.at(i))); - if(config.getString("InitialMap", "Conflict") == formattedPlayerSortedMaps[mapInfo.players].back()){ - initialMapSelection= i; - } - formattedMapFiles.push_back(formatString(mapFiles.at(i))); - } - - if(scenario != "") { - string file = Scenario::getScenarioPath(dirList, scenario); - loadScenarioInfo(file, &scenarioInfo); - - loadMapInfo(Config::getMapPath(scenarioInfo.mapName, scenarioDir, true), &mapInfo, false); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] listBoxMap.getSelectedItemIndex() = %d, mapFiles.size() = " MG_SIZE_T_SPECIFIER ", mapInfo.players = %d, formattedPlayerSortedMaps[mapInfo.players].size() = " MG_SIZE_T_SPECIFIER ", scenarioInfo.mapName [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,listBoxMap.getSelectedItemIndex(),mapFiles.size(),mapInfo.players,formattedPlayerSortedMaps[mapInfo.players].size(),scenarioInfo.mapName.c_str()); - listBoxMap.setItems(formattedPlayerSortedMaps[mapInfo.players]); - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - throw megaglest_runtime_error(szBuf); - //abort(); - } - - return initialMapSelection; -} - -int MenuStateConnectedGame::setupTechList(string scenario, bool forceLoad) { - int initialTechSelection = 0; - try { - Config &config = Config::getInstance(); - - string scenarioDir = Scenario::getScenarioDir(dirList, scenario); - vector results; - vector techPaths = config.getPathListForType(ptTechs,scenarioDir); - findDirs(techPaths, results); - - if(results.empty()) { - throw megaglest_runtime_error("No tech-trees were found!"); - } - - techTreeFiles= results; - - vector translatedTechs; - - for(unsigned int i= 0; i < results.size(); i++) { - //printf("TECHS i = %d results [%s] scenario [%s]\n",i,results[i].c_str(),scenario.c_str()); - - results.at(i)= formatString(results.at(i)); - if(config.getString("InitialTechTree", "Megapack") == results.at(i)) { - initialTechSelection= i; - } - string txTech = techTree->getTranslatedName(techTreeFiles.at(i), forceLoad); - translatedTechs.push_back(formatString(txTech)); - } - - - listBoxTechTree.setItems(results,translatedTechs); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - throw megaglest_runtime_error(szBuf); - } - - return initialTechSelection; -} - -void MenuStateConnectedGame::setupTilesetList(string scenario) { - try { - Config &config = Config::getInstance(); - - string scenarioDir = Scenario::getScenarioDir(dirList, scenario); - - vector results; - findDirs(config.getPathListForType(ptTilesets,scenarioDir), results); - if (results.empty()) { - //throw megaglest_runtime_error("No tile-sets were found!"); - showMessageBox( "No tile-sets were found!", "Error", false); - } - else { - tilesetFiles= results; - std::for_each(results.begin(), results.end(), FormatString()); - - listBoxTileset.setItems(results); - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - throw megaglest_runtime_error(szBuf); - } -} - -void MenuStateConnectedGame::loadScenarioInfo(string file, ScenarioInfo *scenarioInfo) { - bool isTutorial = Scenario::isGameTutorial(file); - Scenario::loadScenarioInfo(file, scenarioInfo, isTutorial); - - previewLoadDelayTimer=time(NULL); - needToLoadTextures=true; -} - -}}//end namespace + + void + MenuStateConnectedGame::setupUIFromGameSettings (GameSettings * + gameSettings, + bool errorOnMissingData) + { + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + + updateDataSynchDetailText = true; + vector < string > tilesets, techtree; + + if (gameSettings == NULL) + { + throw megaglest_runtime_error ("gameSettings == NULL"); + } + + + checkBoxScenario.setValue ((gameSettings->getScenario () != "")); + if (checkBoxScenario.getValue () == true) + { + int + originalFOWValue = listBoxFogOfWar.getSelectedItemIndex (); + + string scenario = gameSettings->getScenario (); + listBoxScenario.setSelectedItem (formatString (scenario)); + string file = Scenario::getScenarioPath (dirList, scenario); + + bool isTutorial = Scenario::isGameTutorial (file); + Scenario::loadScenarioInfo (file, &scenarioInfo, isTutorial); + + gameSettings->setScenarioDir (Scenario::getScenarioPath + (dirList, scenarioInfo.name)); + + gameSettings->setDefaultResources (scenarioInfo.defaultResources); + gameSettings->setDefaultUnits (scenarioInfo.defaultUnits); + gameSettings-> + setDefaultVictoryConditions (scenarioInfo.defaultVictoryConditions); + + if (scenarioInfo.fogOfWar == false + && scenarioInfo.fogOfWar_exploredFlag == false) + { + listBoxFogOfWar.setSelectedItemIndex (2); + } + else if (scenarioInfo.fogOfWar_exploredFlag == true) + { + listBoxFogOfWar.setSelectedItemIndex (1); + } + else + { + listBoxFogOfWar.setSelectedItemIndex (0); + } + + checkBoxAllowTeamUnitSharing. + setValue (scenarioInfo.allowTeamUnitSharing); + checkBoxAllowTeamResourceSharing. + setValue (scenarioInfo.allowTeamResourceSharing); + + if (originalFOWValue != listBoxFogOfWar.getSelectedItemIndex ()) + { + cleanupMapPreviewTexture (); + } + } + + if (listBoxMapFilter.getSelectedItemIndex () != + gameSettings->getMapFilter ()) + { + switchToMapGroup (gameSettings->getMapFilter ()); +// printf("Switching to Map filter group %d \n",gameSettings->getMapFilter()); + } + + string + scenarioDir = + Scenario::getScenarioDir (dirList, gameSettings->getScenario ()); + setupMapList (gameSettings->getScenario ()); + setupTechList (gameSettings->getScenario ()); + setupTilesetList (gameSettings->getScenario ()); + + +//printf("A gameSettings->getTileset() [%s]\n",gameSettings->getTileset().c_str()); + + if (getMissingTilesetFromFTPServerInProgress == false + && gameSettings->getTileset () != "") + { +// tileset + tilesets = tilesetFiles; + std::for_each (tilesets.begin (), tilesets.end (), FormatString ()); + + if (std::find (tilesetFiles.begin (), tilesetFiles.end (), + gameSettings->getTileset ()) != tilesetFiles.end ()) + { + lastMissingTileSet = ""; + getMissingTilesetFromFTPServer = ""; + listBoxTileset.setSelectedItem (formatString + (gameSettings->getTileset ())); + } + else + { +// try to get the tileset via ftp + if (ftpClientThread != NULL && + (getMissingTilesetFromFTPServer != gameSettings->getTileset () + || difftime (time (NULL), + getMissingTilesetFromFTPServerLastPrompted) > + REPROMPT_DOWNLOAD_SECONDS)) + { + if (ftpMessageBox.getEnabled () == false) + { + getMissingTilesetFromFTPServerLastPrompted = time (NULL); + getMissingTilesetFromFTPServer = gameSettings->getTileset (); + Lang & lang = Lang::getInstance (); + + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "%s %s ?", + lang. + getString ("DownloadMissingTilesetQuestion").c_str (), + gameSettings->getTileset ().c_str ()); + +// Is the item in the mod center? + MutexSafeWrapper + safeMutexThread ((modHttpServerThread != + NULL ? + modHttpServerThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + if (tilesetCacheList.find (getMissingTilesetFromFTPServer) == + tilesetCacheList.end ()) + { + ftpMessageBox.init (lang.getString ("Yes"), + lang.getString ("NoDownload")); + } + else + { + ftpMessageBox.init (lang.getString ("ModCenter"), + lang.getString ("GameHost")); + ftpMessageBox.addButton (lang.getString ("NoDownload")); + } + safeMutexThread.ReleaseLock (); + + ftpMissingDataType = ftpmsg_MissingTileset; + showFTPMessageBox (szBuf, lang.getString ("Question"), false); + } + } + + tilesets. + push_back (Lang:: + getInstance ().getString ("DataMissing", "", true)); + + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + const GameSettings * + gameSettings = clientInterface->getGameSettings (); + + if (lastMissingTileSet != gameSettings->getTileset ()) + { + lastMissingTileSet = gameSettings->getTileset (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTileset", languageList[i]) == + true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingTileset", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + gameSettings->getTileset ().c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s is missing the tileset: %s", + getHumanPlayerName ().c_str (), + gameSettings->getTileset ().c_str ()); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + } + + listBoxTileset.setItems (tilesets); + listBoxTileset. + setSelectedItem (Lang:: + getInstance ().getString ("DataMissing", "", + true)); + } + + } + + if (getMissingTechtreeFromFTPServerInProgress == false && + gameSettings->getTech () != "") + { +// techtree + techtree = techTreeFiles; + std::for_each (techtree.begin (), techtree.end (), FormatString ()); + + if (std::find (techTreeFiles.begin (), techTreeFiles.end (), + gameSettings->getTech ()) != techTreeFiles.end ()) + { + + lastMissingTechtree = ""; + getMissingTechtreeFromFTPServer = ""; + reloadFactions (true, gameSettings->getScenario ()); + listBoxTechTree.setSelectedItem (formatString + (gameSettings->getTech ())); + } + else + { +// try to get the tileset via ftp + if (ftpClientThread != NULL + && (getMissingTechtreeFromFTPServer != gameSettings->getTech () + || difftime (time (NULL), + getMissingTechtreeFromFTPServerLastPrompted) > + REPROMPT_DOWNLOAD_SECONDS)) + { + if (ftpMessageBox.getEnabled () == false) + { + getMissingTechtreeFromFTPServerLastPrompted = time (NULL); + getMissingTechtreeFromFTPServer = gameSettings->getTech (); + Lang & lang = Lang::getInstance (); + + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "%s %s ?", + lang. + getString ("DownloadMissingTechtreeQuestion").c_str + (), gameSettings->getTech ().c_str ()); + +// Is the item in the mod center? + MutexSafeWrapper + safeMutexThread ((modHttpServerThread != + NULL ? + modHttpServerThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + if (techCacheList.find (getMissingTechtreeFromFTPServer) == + techCacheList.end ()) + { + ftpMessageBox.init (lang.getString ("Yes"), + lang.getString ("NoDownload")); + } + else + { + ftpMessageBox.init (lang.getString ("ModCenter"), + lang.getString ("GameHost")); + ftpMessageBox.addButton (lang.getString ("NoDownload")); + } + safeMutexThread.ReleaseLock (); + + ftpMissingDataType = ftpmsg_MissingTechtree; + showFTPMessageBox (szBuf, lang.getString ("Question"), false); + } + } + + techtree. + push_back (Lang:: + getInstance ().getString ("DataMissing", "", true)); + + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + const GameSettings * + gameSettings = clientInterface->getGameSettings (); + + if (lastMissingTechtree != gameSettings->getTech ()) + { + lastMissingTechtree = gameSettings->getTech (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + Lang & lang = Lang::getInstance (); + const + vector < + string > + languageList = + clientInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int i = 0; i < languageList.size (); ++i) + { + + char + szMsg[8096] = ""; + if (lang.hasString ("DataMissingTechtree", languageList[i]) == + true) + { + snprintf (szMsg, 8096, + lang.getString ("DataMissingTechtree", + languageList[i]).c_str (), + getHumanPlayerName ().c_str (), + gameSettings->getTech ().c_str ()); + } + else + { + snprintf (szMsg, 8096, + "Player: %s is missing the techtree: %s", + getHumanPlayerName ().c_str (), + gameSettings->getTech ().c_str ()); + } + clientInterface->sendTextMessage (szMsg, -1, + lang.isLanguageLocal + (languageList[i]), + languageList[i]); + } + } + + vector < string > translatedTechs; + for (unsigned int i = 0; i < techTreeFiles.size (); i++) + { + string + txTech = techTree->getTranslatedName (techTreeFiles.at (i)); + translatedTechs.push_back (txTech); + } + listBoxTechTree.setItems (techtree, translatedTechs); + listBoxTechTree. + setSelectedItem (Lang:: + getInstance ().getString ("DataMissing", "", + true)); + } + } + +// factions + bool hasFactions = true; + if (currentFactionName != gameSettings->getTech () + && gameSettings->getTech () != "") + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] hasFactions = %d, currentFactionName [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, hasFactions, + currentFactionName.c_str ()); + currentFactionName = gameSettings->getTech (); + hasFactions = loadFactions (gameSettings, false); + } + else + { +// do this to process special faction types like observers + loadFactions (gameSettings, false); + } + + + if (getMissingMapFromFTPServerInProgress == false && + gameSettings->getMap () != "" + && gameSettings->getMapFilter () == + listBoxMapFilter.getSelectedItemIndex ()) + { +// map + bool missingMap = false; + string mapFile = gameSettings->getMap (); + mapFile = formatString (mapFile); + + if (currentMap != gameSettings->getMap ()) + { // load the setup again + currentMap = gameSettings->getMap (); + } + bool + mapLoaded = + loadMapInfo (Config::getMapPath (currentMap, scenarioDir, false), + &mapInfo, true); + if (mapLoaded == false) + { +// try to get the map via ftp + if (ftpClientThread != NULL + && (getMissingMapFromFTPServer != currentMap + || difftime (time (NULL), + getMissingMapFromFTPServerLastPrompted) > + REPROMPT_DOWNLOAD_SECONDS)) + { + if (ftpMessageBox.getEnabled () == false) + { + getMissingMapFromFTPServerLastPrompted = time (NULL); + getMissingMapFromFTPServer = currentMap; + Lang & lang = Lang::getInstance (); + + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "%s %s ?", + lang. + getString ("DownloadMissingMapQuestion").c_str (), + currentMap.c_str ()); + +// Is the item in the mod center? + MutexSafeWrapper + safeMutexThread ((modHttpServerThread != + NULL ? + modHttpServerThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + + intToStr (__LINE__)); + if (mapCacheList.find (getMissingMapFromFTPServer) == + mapCacheList.end ()) + { + ftpMessageBox.init (lang.getString ("Yes"), + lang.getString ("NoDownload")); + } + else + { + ftpMessageBox.init (lang.getString ("ModCenter"), + lang.getString ("GameHost")); + ftpMessageBox.addButton (lang.getString ("NoDownload")); + } + safeMutexThread.ReleaseLock (); + + ftpMissingDataType = ftpmsg_MissingMap; + showFTPMessageBox (szBuf, lang.getString ("Question"), false); + } + } + + formattedPlayerSortedMaps[gameSettings-> + getMapFilter ()].push_back (Lang:: + getInstance + ().getString + ("DataMissing", + "", true)); + mapFile = Lang::getInstance ().getString ("DataMissing", "", true); + missingMap = true; + } + + if (isHeadlessAdmin () && !missingMap + && mapFile != listBoxMap.getSelectedItem ()) + { +//console.addLine("Headless server does not have map, switching to next one"); + if (isfirstSwitchingMapMessage) + { + isfirstSwitchingMapMessage = false; + } + else + { + console.addLine (Lang::getInstance ().getString + ("HeadlessServerDoesNotHaveMap", "", true)); + } + } + listBoxMap.setItems (formattedPlayerSortedMaps + [gameSettings->getMapFilter ()]); + +//printf("Setting map from game settings map:%s , settingsfilter=%d , boxfilter=%d \n",gameSettings->getMap().c_str(),gameSettings->getMapFilter(),listBoxMapFilter.getSelectedItemIndex()); + listBoxMap.setSelectedItem (mapFile); + labelMapInfo.setText (mapInfo.desc); + } + +// FogOfWar + if (checkBoxScenario.getValue () == false) + { + int + originalFOWValue = listBoxFogOfWar.getSelectedItemIndex (); + listBoxFogOfWar.setSelectedItemIndex (0); // default is 0! + if (gameSettings->getFogOfWar () == false) + { + listBoxFogOfWar.setSelectedItemIndex (2); + } + if ((gameSettings->getFlagTypes1 () & ft1_show_map_resources) == + ft1_show_map_resources) + { + if (gameSettings->getFogOfWar () == true) + { + listBoxFogOfWar.setSelectedItemIndex (1); + } + } + if (originalFOWValue != listBoxFogOfWar.getSelectedItemIndex ()) + { + cleanupMapPreviewTexture (); + } + } + +// Allow Observers + if (gameSettings->getAllowObservers ()) + { + checkBoxAllowObservers.setValue (true); + } + else + { + checkBoxAllowObservers.setValue (false); + } + + if ((gameSettings->getFlagTypes1 () & ft1_allow_team_switching) == + ft1_allow_team_switching) + { + checkBoxEnableSwitchTeamMode.setValue (true); + } + else + { + checkBoxEnableSwitchTeamMode.setValue (false); + } + listBoxAISwitchTeamAcceptPercent.setSelectedItem (intToStr + (gameSettings->getAiAcceptSwitchTeamPercentChance + ())); + listBoxFallbackCpuMultiplier. + setSelectedItemIndex (gameSettings->getFallbackCpuMultiplier ()); + + if ((gameSettings->getFlagTypes1 () & ft1_allow_shared_team_units) == + ft1_allow_shared_team_units) + { + checkBoxAllowTeamUnitSharing.setValue (true); + } + else + { + checkBoxAllowTeamUnitSharing.setValue (false); + } + + if ((gameSettings->getFlagTypes1 () & ft1_allow_shared_team_resources) + == ft1_allow_shared_team_resources) + { + checkBoxAllowTeamResourceSharing.setValue (true); + } + else + { + checkBoxAllowTeamResourceSharing.setValue (false); + } + + checkBoxAllowNativeLanguageTechtree. + setValue (gameSettings->getNetworkAllowNativeLanguageTechtree ()); + +// Control + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + listBoxControls[i].setSelectedItemIndex (ctClosed); + + if (isHeadlessAdmin () == false) + { + if (clientInterface->getJoinGameInProgress () == false) + { + listBoxFactions[i].setEditable (false); + listBoxTeams[i].setEditable (false); + } + } + + labelPlayerStatus[i].setTexture (NULL);; + } + + if (hasFactions == true && gameSettings != NULL) + { + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + +//for(int i=0; i < gameSettings->getFactionCount(); ++i){ + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + int + slot = gameSettings->getStartLocationIndex (i); + + if (slot == clientInterface->getPlayerIndex ()) + { + labelPlayerNames[slot].setEditable (true); + } + else + { + labelPlayerNames[slot].setEditable (false); + } + + if (i >= mapInfo.players) + { + if (gameSettings->getFactionControl (i) != ctNetworkUnassigned) + { + continue; + } + else if (clientInterface->getPlayerIndex () != slot) + { + continue; + } + } + + if (gameSettings->getFactionControl (i) == ctNetwork || + gameSettings->getFactionControl (i) == ctNetworkUnassigned || + gameSettings->getFactionControl (i) == ctHuman) + { + switch (gameSettings->getNetworkPlayerStatuses (i)) + { + case npst_BeRightBack: + labelPlayerStatus[slot]. + setTexture (CoreData::getInstance ().getStatusBRBTexture ()); + break; + case npst_Ready: + labelPlayerStatus[slot]. + setTexture (CoreData:: + getInstance ().getStatusReadyTexture ()); + break; + case npst_PickSettings: + labelPlayerStatus[slot]. + setTexture (CoreData:: + getInstance ().getStatusNotReadyTexture ()); + break; + case npst_Disconnected: + labelPlayerStatus[slot].setTexture (NULL); + break; + + default: + labelPlayerStatus[slot].setTexture (NULL); + break; + } + } + + listBoxControls[slot]. + setSelectedItemIndex (gameSettings->getFactionControl (i), + errorOnMissingData); + listBoxRMultiplier[slot]. + setSelectedItemIndex (gameSettings->getResourceMultiplierIndex + (i), errorOnMissingData); + listBoxTeams[slot].setSelectedItemIndex (gameSettings->getTeam (i), + errorOnMissingData); + listBoxFactions[slot].setSelectedItem (formatString + (gameSettings-> + getFactionTypeName (i)), + false); + + if (gameSettings->getFactionControl (i) == ctNetwork || + gameSettings->getFactionControl (i) == ctNetworkUnassigned) + { + labelNetStatus[slot]. + setText (gameSettings->getNetworkPlayerName (i)); + if (gameSettings->getThisFactionIndex () != i + && gameSettings->getNetworkPlayerName (i) != "" + && gameSettings->getNetworkPlayerName (i) != + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) + { + labelPlayerNames[slot]. + setText (gameSettings->getNetworkPlayerName (i)); + } + } + + ControlType ct = gameSettings->getFactionControl (i); + if (ct == ctHuman || ct == ctNetwork || ct == ctClosed) + { + listBoxRMultiplier[slot].setEnabled (false); + listBoxRMultiplier[slot].setVisible (false); + } + else + { + listBoxRMultiplier[slot].setEnabled (true); + listBoxRMultiplier[slot].setVisible (true); + } + + if ((gameSettings->getFactionControl (i) == ctNetwork || + gameSettings->getFactionControl (i) == ctNetworkUnassigned) && + gameSettings->getThisFactionIndex () == i) + { + +// set my current slot to ctHuman + if (gameSettings->getFactionControl (i) != ctNetworkUnassigned) + { + listBoxControls[slot].setSelectedItemIndex (ctHuman); + } + if (checkBoxScenario.getValue () == false) + { + if (clientInterface->getJoinGameInProgress () == false) + { + listBoxFactions[slot].setEditable (true); + listBoxTeams[slot].setEditable (true); + } + } + + if (labelPlayerNames[slot].getText () == "" && + gameSettings->getNetworkPlayerName (i) != "" && + gameSettings->getNetworkPlayerName (i) != + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) + { + labelPlayerNames[slot]. + setText (gameSettings->getNetworkPlayerName (i)); + } + } + } + settingsReceivedFromServer = true; + initialSettingsReceivedFromServer = true; + + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + + if (enableFactionTexturePreview == true) + { + if (clientInterface != NULL && clientInterface->isConnected () && + gameSettings != NULL) + { + + if (currentTechName_factionPreview != gameSettings->getTech () || + currentFactionName_factionPreview != + gameSettings-> + getFactionTypeName (gameSettings->getThisFactionIndex ())) + { + + currentTechName_factionPreview = gameSettings->getTech (); + currentFactionName_factionPreview = + gameSettings-> + getFactionTypeName (gameSettings->getThisFactionIndex ()); + + initFactionPreview (gameSettings); + } + } + } + + } + + void + MenuStateConnectedGame::initFactionPreview (const GameSettings * + gameSettings) + { + string factionVideoUrl = ""; + string factionVideoUrlFallback = ""; + + string + factionDefinitionXML = + Game::findFactionLogoFile (gameSettings, NULL, + currentFactionName_factionPreview + + ".xml"); + if (factionDefinitionXML != "" + && currentFactionName_factionPreview != + GameConstants::RANDOMFACTION_SLOTNAME + && currentFactionName_factionPreview != + GameConstants::OBSERVER_SLOTNAME + && fileExists (factionDefinitionXML) == true) + { + XmlTree xmlTree; + std::map < string, string > mapExtraTagReplacementValues; + xmlTree.load (factionDefinitionXML, + Properties::getTagReplacementValues + (&mapExtraTagReplacementValues)); + const XmlNode * + factionNode = xmlTree.getRootNode (); + if (factionNode->hasAttribute ("faction-preview-video") == true) + { + factionVideoUrl = + factionNode->getAttribute ("faction-preview-video")->getValue (); + } + + factionVideoUrlFallback = + Game::findFactionLogoFile (gameSettings, NULL, "preview_video.*"); + if (factionVideoUrl == "") + { + factionVideoUrl = factionVideoUrlFallback; + factionVideoUrlFallback = ""; + } + } + + if (factionVideoUrl != "") + { + if (CoreData::getInstance ().getMenuMusic ()->getVolume () != 0) + { + CoreData::getInstance ().getMenuMusic ()->setVolume (0); + factionVideoSwitchedOffVolume = true; + } + + if (currentFactionLogo != factionVideoUrl) + { + currentFactionLogo = factionVideoUrl; + if (GlobalStaticFlags::getIsNonGraphicalModeEnabled () == false + &&::Shared::Graphics::VideoPlayer::hasBackEndVideoPlayer () == + true) + { + + if (factionVideo != NULL) + { + factionVideo->closePlayer (); + delete factionVideo; + factionVideo = NULL; + } + string introVideoFile = factionVideoUrl; + string introVideoFileFallback = factionVideoUrlFallback; + + Context * + c = GraphicsInterface::getInstance ().getCurrentContext (); + PlatformContextGl * + glCtx = + static_cast < ContextGl * >(c)->getPlatformContextGlPtr (); + SDL_Window * + window = glCtx->getScreenWindow (); + SDL_Surface * + screen = glCtx->getScreenSurface (); + + string + vlcPluginsPath = + Config::getInstance ().getString ("VideoPlayerPluginsPath", ""); +//printf("screen->w = %d screen->h = %d screen->format->BitsPerPixel = %d\n",screen->w,screen->h,screen->format->BitsPerPixel); + factionVideo = new VideoPlayer (&Renderer::getInstance (), + introVideoFile, + introVideoFileFallback, + window, + 0, 0, + screen->w, + screen->h, + screen->format->BitsPerPixel, + true, + vlcPluginsPath, + SystemFlags::VERBOSE_MODE_ENABLED); + factionVideo->initPlayer (); + } + } + } + else + { +//switch on music again!! + Config & config = Config::getInstance (); + float + configVolume = (config.getInt ("SoundVolumeMusic") / 100.f); + if (factionVideoSwitchedOffVolume) + { + if (CoreData::getInstance ().getMenuMusic ()->getVolume () != + configVolume) + { + CoreData::getInstance (). + getMenuMusic ()->setVolume (configVolume); + } + factionVideoSwitchedOffVolume = false; + } + + if (factionVideo != NULL) + { + factionVideo->closePlayer (); + delete factionVideo; + factionVideo = NULL; + } + } + + if (factionVideo == NULL) + { + string + factionLogo = + Game::findFactionLogoFile (gameSettings, NULL, + GameConstants::PREVIEW_SCREEN_FILE_FILTER); + if (factionLogo == "") + { + factionLogo = Game::findFactionLogoFile (gameSettings, NULL); + } + if (currentFactionLogo != factionLogo) + { + currentFactionLogo = factionLogo; + loadFactionTexture (currentFactionLogo); + } + } + } + + void + MenuStateConnectedGame::RestoreLastGameSettings () + { +// Ensure we have set the gamesettings at least once + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface * + clientInterface = networkManager.getClientInterface (); + GameSettings gameSettings = *clientInterface->getGameSettings (); + CoreData:: + getInstance ().loadGameSettingsFromFile (HEADLESS_SAVED_GAME_FILENAME, + &gameSettings); + if (gameSettings.getMap () == "") + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + loadGameSettings (&gameSettings); + } + + setupUIFromGameSettings (&gameSettings, false); + + needToBroadcastServerSettings = true; + broadcastServerSettingsDelayTimer = time (NULL); + noReceiveTimer = time (NULL); + + } + + int + MenuStateConnectedGame::setupMapList (string scenario) + { + int + initialMapSelection = 0; + + try + { + Config & config = Config::getInstance (); + vector < string > invalidMapList; + string scenarioDir = Scenario::getScenarioDir (dirList, scenario); + vector < string > pathList = + config.getPathListForType (ptMaps, scenarioDir); + vector < string > allMaps = + MapPreview::findAllValidMaps (pathList, scenarioDir, false, true, + &invalidMapList); +// sort map list non case sensitive + std::sort (allMaps.begin (), allMaps.end (), compareNonCaseSensitive); + if (scenario != "") + { + vector < string > allMaps2 = + MapPreview:: + findAllValidMaps (config.getPathListForType (ptMaps, ""), "", + false, true, &invalidMapList); + copy (allMaps2.begin (), allMaps2.end (), + std::inserter (allMaps, allMaps.begin ())); + std::sort (allMaps.begin (), allMaps.end (), + compareNonCaseSensitive); + } + + if (allMaps.empty ()) + { + throw megaglest_runtime_error ("No maps were found!"); + } + vector < string > results; + copy (allMaps.begin (), allMaps.end (), std::back_inserter (results)); + mapFiles = results; + + for (unsigned int i = 0; i < GameConstants::maxPlayers + 1; ++i) + { + playerSortedMaps[i].clear (); + formattedPlayerSortedMaps[i].clear (); + } + + copy (mapFiles.begin (), mapFiles.end (), + std::back_inserter (playerSortedMaps[0])); + copy (playerSortedMaps[0].begin (), playerSortedMaps[0].end (), + std::back_inserter (formattedPlayerSortedMaps[0])); + std::for_each (formattedPlayerSortedMaps[0].begin (), + formattedPlayerSortedMaps[0].end (), FormatString ()); + + formattedMapFiles.clear (); + for (int i = 0; i < (int) mapFiles.size (); i++) + { // fetch info and put map in right list + loadMapInfo (Config::getMapPath + (mapFiles.at (i), scenarioDir, false), &mapInfo, + false); + + if (GameConstants::maxPlayers + 1 <= mapInfo.players) + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, + "Sorted map list [%d] does not match\ncurrent map playercount [%d]\nfor file [%s]\nmap [%s]", + GameConstants::maxPlayers + 1, mapInfo.players, + Config::getMapPath (mapFiles.at (i), "", + false).c_str (), + mapInfo.desc.c_str ()); + throw megaglest_runtime_error (szBuf); + } + playerSortedMaps[mapInfo.players].push_back (mapFiles.at (i)); + formattedPlayerSortedMaps[mapInfo.players].push_back (formatString + (mapFiles.at + (i))); + if (config.getString ("InitialMap", "Conflict") == + formattedPlayerSortedMaps[mapInfo.players].back ()) + { + initialMapSelection = i; + } + formattedMapFiles.push_back (formatString (mapFiles.at (i))); + } + + if (scenario != "") + { + string file = Scenario::getScenarioPath (dirList, scenario); + loadScenarioInfo (file, &scenarioInfo); + + loadMapInfo (Config::getMapPath + (scenarioInfo.mapName, scenarioDir, true), &mapInfo, + false); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("In [%s::%s Line %d] listBoxMap.getSelectedItemIndex() = %d, mapFiles.size() = " + MG_SIZE_T_SPECIFIER + ", mapInfo.players = %d, formattedPlayerSortedMaps[mapInfo.players].size() = " + MG_SIZE_T_SPECIFIER ", scenarioInfo.mapName [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), __FUNCTION__, + __LINE__, listBoxMap.getSelectedItemIndex (), mapFiles.size (), + mapInfo.players, + formattedPlayerSortedMaps[mapInfo.players].size (), + scenarioInfo.mapName.c_str ()); + listBoxMap.setItems (formattedPlayerSortedMaps[mapInfo.players]); + } + } + catch (const std::exception & ex) + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + throw megaglest_runtime_error (szBuf); +//abort(); + } + + return initialMapSelection; + } + + int + MenuStateConnectedGame::setupTechList (string scenario, bool forceLoad) + { + int + initialTechSelection = 0; + try + { + Config & config = Config::getInstance (); + + string scenarioDir = Scenario::getScenarioDir (dirList, scenario); + vector < string > results; + vector < string > techPaths = + config.getPathListForType (ptTechs, scenarioDir); + findDirs (techPaths, results); + + if (results.empty ()) + { + throw megaglest_runtime_error ("No tech-trees were found!"); + } + + techTreeFiles = results; + + vector < string > translatedTechs; + + for (unsigned int i = 0; i < results.size (); i++) + { +//printf("TECHS i = %d results [%s] scenario [%s]\n",i,results[i].c_str(),scenario.c_str()); + + results.at (i) = formatString (results.at (i)); + if (config.getString ("InitialTechTree", "Megapack") == + results.at (i)) + { + initialTechSelection = i; + } + string + txTech = + techTree->getTranslatedName (techTreeFiles.at (i), forceLoad); + translatedTechs.push_back (formatString (txTech)); + } + + + listBoxTechTree.setItems (results, translatedTechs); + } + catch (const std::exception & ex) + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + throw megaglest_runtime_error (szBuf); + } + + return initialTechSelection; + } + + void + MenuStateConnectedGame::setupTilesetList (string scenario) + { + try + { + Config & config = Config::getInstance (); + + string scenarioDir = Scenario::getScenarioDir (dirList, scenario); + + vector < string > results; + findDirs (config.getPathListForType (ptTilesets, scenarioDir), + results); + if (results.empty ()) + { +//throw megaglest_runtime_error("No tile-sets were found!"); + showMessageBox ("No tile-sets were found!", "Error", false); + } + else + { + tilesetFiles = results; + std::for_each (results.begin (), results.end (), FormatString ()); + + listBoxTileset.setItems (results); + } + } + catch (const std::exception & ex) + { + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + throw megaglest_runtime_error (szBuf); + } + } + + void + MenuStateConnectedGame::loadScenarioInfo (string file, + ScenarioInfo * scenarioInfo) + { + bool isTutorial = Scenario::isGameTutorial (file); + Scenario::loadScenarioInfo (file, scenarioInfo, isTutorial); + + previewLoadDelayTimer = time (NULL); + needToLoadTextures = true; + } + +}} //end namespace diff --git a/source/glest_game/menu/menu_state_connected_game.h b/source/glest_game/menu/menu_state_connected_game.h index 090562103..cc297e994 100644 --- a/source/glest_game/menu/menu_state_connected_game.h +++ b/source/glest_game/menu/menu_state_connected_game.h @@ -1,329 +1,349 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATECONNECTEDGAME_H_ -#define _GLEST_GAME_MENUSTATECONNECTEDGAME_H_ +# define _GLEST_GAME_MENUSTATECONNECTEDGAME_H_ -#ifdef WIN32 - #include - #include -#endif +# ifdef WIN32 +# include +# include +# endif -#include "main_menu.h" -#include "chat_manager.h" -#include "map_preview.h" -#include "miniftpclient.h" -#include "common_scoped_ptr.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "chat_manager.h" +# include "map_preview.h" +# include "miniftpclient.h" +# include "common_scoped_ptr.h" +# include "leak_dumper.h" -namespace Shared { namespace Graphics { - class VideoPlayer; +namespace Shared +{ + namespace Graphics + { + class VideoPlayer; }} -namespace Glest { namespace Game { +namespace Glest +{ + namespace Game + { -class TechTree; + class TechTree; -enum JoinMenu { - jmSimple, - jmMasterserver, + enum JoinMenu + { + jmSimple, + jmMasterserver, - jmCount -}; + jmCount + }; -enum FTPMessageType { - ftpmsg_MissingNone, - ftpmsg_MissingMap, - ftpmsg_MissingTileset, - ftpmsg_MissingTechtree -}; + enum FTPMessageType + { + ftpmsg_MissingNone, + ftpmsg_MissingMap, + ftpmsg_MissingTileset, + ftpmsg_MissingTechtree + }; // =============================== -// class MenuStateConnectedGame +// class MenuStateConnectedGame // =============================== -class MenuStateConnectedGame: public MenuState, public FTPClientCallbackInterface, public SimpleTaskCallbackInterface { -private: - GraphicButton buttonDisconnect; - GraphicLabel labelControl; - GraphicLabel labelRMultiplier; - GraphicLabel labelFaction; - GraphicLabel labelTeam; - GraphicLabel labelMap; - GraphicLabel labelFogOfWar; - GraphicLabel labelTechTree; - GraphicLabel labelTileset; - GraphicLabel labelMapInfo; - GraphicLabel labelStatus; - GraphicLabel labelInfo; - GraphicLabel labelWaitingForPlayers; - GraphicButton buttonRestoreLastSettings; - - //GraphicLabel labelPathFinderType; - //GraphicListBox listBoxPathFinderType; - - GraphicLabel labelMapPlayerCount; - GraphicListBox listBoxMapPlayerCount; - - GraphicLabel labelAdvanced; - GraphicListBox listBoxAdvanced; - - GraphicListBox listBoxMap; - GraphicListBox listBoxFogOfWar; - GraphicListBox listBoxTechTree; - GraphicListBox listBoxTileset; - GraphicLabel labelPlayers[GameConstants::maxPlayers]; - GraphicLabel labelPlayerNames[GameConstants::maxPlayers]; - GraphicListBox listBoxControls[GameConstants::maxPlayers]; - GraphicListBox listBoxRMultiplier[GameConstants::maxPlayers]; - GraphicListBox listBoxFactions[GameConstants::maxPlayers]; - GraphicListBox listBoxTeams[GameConstants::maxPlayers]; - GraphicLabel labelNetStatus[GameConstants::maxPlayers]; - GraphicButton grabSlotButton[GameConstants::maxPlayers]; - - GraphicListBox listBoxPlayerStatus; - GraphicLabel labelPlayerStatus[GameConstants::maxPlayers]; - - GraphicLabel labelMapFilter; - GraphicListBox listBoxMapFilter; - - GraphicLabel labelAllowObservers; - GraphicCheckBox checkBoxAllowObservers; - - GraphicLabel labelAllowNativeLanguageTechtree; - GraphicCheckBox checkBoxAllowNativeLanguageTechtree; - - GraphicLabel *activeInputLabel; - - time_t timerLabelFlash; - GraphicLabel labelDataSynchInfo; - - MapInfo mapInfo; - Texture2D *mapPreviewTexture; - bool zoomedMap; - int render_mapPreviewTexture_X; - int render_mapPreviewTexture_Y; - int render_mapPreviewTexture_W; - int render_mapPreviewTexture_H; - - bool needToSetChangedGameSettings; - time_t lastSetChangedGameSettings; - bool updateDataSynchDetailText; - - int soundConnectionCount; - - //Console console; - ChatManager chatManager; - bool showFullConsole; - - string currentFactionName; - string currentMap; - JoinMenu returnMenuInfo; - bool settingsReceivedFromServer; - time_t lastNetworkSendPing; - int pingCount; - bool initialSettingsReceivedFromServer; - - string lastMapDataSynchError; - string lastTileDataSynchError; - string lastTechtreeDataSynchError; - - int8 switchSetupRequestFlagType; - string defaultPlayerName; - - bool enableFactionTexturePreview; - bool enableMapPreview; - - string currentTechName_factionPreview; - string currentFactionName_factionPreview; - string currentFactionLogo; - Texture2D *factionTexture; - ::Shared::Graphics::VideoPlayer *factionVideo; - bool factionVideoSwitchedOffVolume; - - MapPreview mapPreview; - - GraphicMessageBox mainMessageBox; - - std::string lastMissingMap; - std::string lastMissingTechtree; - std::string lastMissingTileSet; - - vector mapFiles; - vector techTreeFiles; - vector tilesetFiles; - vector factionFiles; + class MenuStateConnectedGame:public MenuState, + public FTPClientCallbackInterface, public SimpleTaskCallbackInterface + { + private: + GraphicButton buttonDisconnect; + GraphicLabel labelControl; + GraphicLabel labelRMultiplier; + GraphicLabel labelFaction; + GraphicLabel labelTeam; + GraphicLabel labelMap; + GraphicLabel labelFogOfWar; + GraphicLabel labelTechTree; + GraphicLabel labelTileset; + GraphicLabel labelMapInfo; + GraphicLabel labelStatus; + GraphicLabel labelInfo; + GraphicLabel labelWaitingForPlayers; + GraphicButton buttonRestoreLastSettings; + +//GraphicLabel labelPathFinderType; +//GraphicListBox listBoxPathFinderType; + + GraphicLabel labelMapPlayerCount; + GraphicListBox listBoxMapPlayerCount; + + GraphicLabel labelAdvanced; + GraphicListBox listBoxAdvanced; + + GraphicListBox listBoxMap; + GraphicListBox listBoxFogOfWar; + GraphicListBox listBoxTechTree; + GraphicListBox listBoxTileset; + GraphicLabel labelPlayers[GameConstants::maxPlayers]; + GraphicLabel labelPlayerNames[GameConstants::maxPlayers]; + GraphicListBox listBoxControls[GameConstants::maxPlayers]; + GraphicListBox listBoxRMultiplier[GameConstants::maxPlayers]; + GraphicListBox listBoxFactions[GameConstants::maxPlayers]; + GraphicListBox listBoxTeams[GameConstants::maxPlayers]; + GraphicLabel labelNetStatus[GameConstants::maxPlayers]; + GraphicButton grabSlotButton[GameConstants::maxPlayers]; + + GraphicListBox listBoxPlayerStatus; + GraphicLabel labelPlayerStatus[GameConstants::maxPlayers]; + + GraphicLabel labelMapFilter; + GraphicListBox listBoxMapFilter; + + GraphicLabel labelAllowObservers; + GraphicCheckBox checkBoxAllowObservers; + + GraphicLabel labelAllowNativeLanguageTechtree; + GraphicCheckBox checkBoxAllowNativeLanguageTechtree; + + GraphicLabel *activeInputLabel; + + time_t timerLabelFlash; + GraphicLabel labelDataSynchInfo; + + MapInfo mapInfo; + Texture2D *mapPreviewTexture; + bool zoomedMap; + int render_mapPreviewTexture_X; + int render_mapPreviewTexture_Y; + int render_mapPreviewTexture_W; + int render_mapPreviewTexture_H; + + bool needToSetChangedGameSettings; + time_t lastSetChangedGameSettings; + bool updateDataSynchDetailText; + + int soundConnectionCount; + +//Console console; + ChatManager chatManager; + bool showFullConsole; + + string currentFactionName; + string currentMap; + JoinMenu returnMenuInfo; + bool settingsReceivedFromServer; + time_t lastNetworkSendPing; + int pingCount; + bool initialSettingsReceivedFromServer; + + string lastMapDataSynchError; + string lastTileDataSynchError; + string lastTechtreeDataSynchError; + + int8 switchSetupRequestFlagType; + string defaultPlayerName; + + bool enableFactionTexturePreview; + bool enableMapPreview; + + string currentTechName_factionPreview; + string currentFactionName_factionPreview; + string currentFactionLogo; + Texture2D *factionTexture; + ::Shared::Graphics::VideoPlayer * factionVideo; + bool factionVideoSwitchedOffVolume; + + MapPreview mapPreview; + + GraphicMessageBox mainMessageBox; + + std::string lastMissingMap; + std::string lastMissingTechtree; + std::string lastMissingTileSet; + + vector < string > mapFiles; + vector < string > techTreeFiles; + vector < string > tilesetFiles; + vector < string > factionFiles; - vector playerSortedMaps[GameConstants::maxPlayers+1]; - vector formattedPlayerSortedMaps[GameConstants::maxPlayers+1]; - vector formattedMapFiles; + vector < string > playerSortedMaps[GameConstants::maxPlayers + 1]; + vector < string > + formattedPlayerSortedMaps[GameConstants::maxPlayers + 1]; + vector < string > formattedMapFiles; - GraphicMessageBox ftpMessageBox; - FTPClientThread *ftpClientThread; - FTPMessageType ftpMissingDataType; + GraphicMessageBox ftpMessageBox; + FTPClientThread *ftpClientThread; + FTPMessageType ftpMissingDataType; + + SimpleTaskThread *modHttpServerThread; + std::vector < std::string > tilesetListRemote; + std::map < string, ModInfo > tilesetCacheList; + std::vector < std::string > techListRemote; + std::map < string, ModInfo > techCacheList; + std::vector < std::string > mapListRemote; + std::map < string, ModInfo > mapCacheList; - SimpleTaskThread *modHttpServerThread; - std::vector tilesetListRemote; - std::map tilesetCacheList; - std::vector techListRemote; - std::map techCacheList; - std::vector mapListRemote; - std::map mapCacheList; + std::map < string, uint32 > mapCRCUpdateList; - std::map mapCRCUpdateList; + string getMissingMapFromFTPServer; + bool getMissingMapFromFTPServerInProgress; + time_t getMissingMapFromFTPServerLastPrompted; - string getMissingMapFromFTPServer; - bool getMissingMapFromFTPServerInProgress; - time_t getMissingMapFromFTPServerLastPrompted; + string getMissingTilesetFromFTPServer; + bool getMissingTilesetFromFTPServerInProgress; + time_t getMissingTilesetFromFTPServerLastPrompted; - string getMissingTilesetFromFTPServer; - bool getMissingTilesetFromFTPServerInProgress; - time_t getMissingTilesetFromFTPServerLastPrompted; + string getMissingTechtreeFromFTPServer; + bool getMissingTechtreeFromFTPServerInProgress; + time_t getMissingTechtreeFromFTPServerLastPrompted; - string getMissingTechtreeFromFTPServer; - bool getMissingTechtreeFromFTPServerInProgress; - time_t getMissingTechtreeFromFTPServerLastPrompted; + string getInProgressSavedGameFromFTPServer; + bool getInProgressSavedGameFromFTPServerInProgress; + bool readyToJoinInProgressGame; - string getInProgressSavedGameFromFTPServer; - bool getInProgressSavedGameFromFTPServerInProgress; - bool readyToJoinInProgressGame; + string lastCheckedCRCTilesetName; + string lastCheckedCRCTechtreeName; + string lastCheckedCRCMapName; + uint32 lastCheckedCRCTilesetValue; + uint32 lastCheckedCRCTechtreeValue; + uint32 lastCheckedCRCMapValue; + vector < pair < string, uint32 > >factionCRCList; + + std::map < string, pair < int, string > >fileFTPProgressList; + GraphicButton buttonCancelDownloads; + + GraphicLabel labelEnableSwitchTeamMode; + GraphicCheckBox checkBoxEnableSwitchTeamMode; + + GraphicLabel labelAllowTeamUnitSharing; + GraphicCheckBox checkBoxAllowTeamUnitSharing; + + GraphicLabel labelAllowTeamResourceSharing; + GraphicCheckBox checkBoxAllowTeamResourceSharing; + + GraphicLabel labelAISwitchTeamAcceptPercent; + GraphicListBox listBoxAISwitchTeamAcceptPercent; + GraphicLabel labelFallbackCpuMultiplier; + GraphicListBox listBoxFallbackCpuMultiplier; + + + GraphicButton buttonPlayNow; + + GraphicCheckBox checkBoxScenario; + GraphicLabel labelScenario; + GraphicListBox listBoxScenario; + vector < string > scenarioFiles; + ScenarioInfo scenarioInfo; + vector < string > dirList; + string autoloadScenarioName; + time_t previewLoadDelayTimer; + bool needToLoadTextures; + bool enableScenarioTexturePreview; + Texture2D *scenarioLogoTexture; - string lastCheckedCRCTilesetName; - string lastCheckedCRCTechtreeName; - string lastCheckedCRCMapName; - uint32 lastCheckedCRCTilesetValue; - uint32 lastCheckedCRCTechtreeValue; - uint32 lastCheckedCRCMapValue; - vector > factionCRCList; + bool needToBroadcastServerSettings; + time_t broadcastServerSettingsDelayTimer; + int lastGameSettingsReceivedCount; + + time_t noReceiveTimer; - std::map > fileFTPProgressList; - GraphicButton buttonCancelDownloads; + bool launchingNewGame; + bool isfirstSwitchingMapMessage; + auto_ptr < TechTree > techTree; - GraphicLabel labelEnableSwitchTeamMode; - GraphicCheckBox checkBoxEnableSwitchTeamMode; + GameSettings originalGamesettings; + bool validOriginalGameSettings; + GameSettings displayedGamesettings; + bool validDisplayedGamesettings; + + + public: - GraphicLabel labelAllowTeamUnitSharing; - GraphicCheckBox checkBoxAllowTeamUnitSharing; + MenuStateConnectedGame (Program * program, MainMenu * mainMenu, + JoinMenu joinMenuInfo = + jmSimple, bool openNetworkSlots = false); + virtual ~ MenuStateConnectedGame (); - GraphicLabel labelAllowTeamResourceSharing; - GraphicCheckBox checkBoxAllowTeamResourceSharing; + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void render (); + void update (); - GraphicLabel labelAISwitchTeamAcceptPercent; - GraphicListBox listBoxAISwitchTeamAcceptPercent; - GraphicLabel labelFallbackCpuMultiplier; - GraphicListBox listBoxFallbackCpuMultiplier; + virtual bool textInput (std::string text); + virtual void keyDown (SDL_KeyboardEvent key); + virtual void keyPress (SDL_KeyboardEvent c); + virtual void keyUp (SDL_KeyboardEvent key); + + virtual bool isInSpecialKeyCaptureEvent (); + virtual void reloadUI (); - GraphicButton buttonPlayNow; + virtual bool isVideoPlaying (); - GraphicCheckBox checkBoxScenario; - GraphicLabel labelScenario; - GraphicListBox listBoxScenario; - vector scenarioFiles; - ScenarioInfo scenarioInfo; - vector dirList; - string autoloadScenarioName; - time_t previewLoadDelayTimer; - bool needToLoadTextures; - bool enableScenarioTexturePreview; - Texture2D *scenarioLogoTexture; + private: - bool needToBroadcastServerSettings; - time_t broadcastServerSettingsDelayTimer; - int lastGameSettingsReceivedCount; - - time_t noReceiveTimer; - - bool launchingNewGame; - bool isfirstSwitchingMapMessage; - auto_ptr techTree; - - GameSettings originalGamesettings; - bool validOriginalGameSettings; - GameSettings displayedGamesettings; - bool validDisplayedGamesettings; - - -public: - - MenuStateConnectedGame(Program *program, MainMenu *mainMenu, JoinMenu joinMenuInfo=jmSimple, bool openNetworkSlots= false); - virtual ~MenuStateConnectedGame(); - - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - void update(); - - virtual bool textInput(std::string text); - virtual void keyDown(SDL_KeyboardEvent key); - virtual void keyPress(SDL_KeyboardEvent c); - virtual void keyUp(SDL_KeyboardEvent key); - - virtual bool isInSpecialKeyCaptureEvent(); - - virtual void reloadUI(); - - virtual bool isVideoPlaying(); - -private: - - bool hasNetworkGameSettings(); - bool loadFactions(const GameSettings *gameSettings,bool errorOnNoFactions); - void returnToJoinMenu(); - string getHumanPlayerName(); - void setActiveInputLabel(GraphicLabel *newLable); - - void loadFactionTexture(string filepath); - bool loadMapInfo(string file, MapInfo *mapInfo, bool loadMapPreview); - void showMessageBox(const string &text, const string &header, bool toggle); - - void showFTPMessageBox(const string &text, const string &header, bool toggle); - virtual void FTPClient_CallbackEvent(string itemName, - FTP_Client_CallbackType type, pair result,void *userdata); - - int32 getNetworkPlayerStatus(); - void cleanupMapPreviewTexture(); - - void mouseClickAdmin(int x, int y, MouseButton mouseButton,string advanceToItemStartingWith); - void switchToNextMapGroup(const int direction); - void switchToMapGroup(int filterIndex); - string getCurrentMapFile(); - void loadGameSettings(GameSettings *gameSettings); - void reloadFactions(bool keepExistingSelectedItem,string scenario); - void PlayNow(bool saveGame); - bool isHeadlessAdmin(); - void broadCastGameSettingsToHeadlessServer(bool forceNow); - void updateResourceMultiplier(const int index); - - void RestoreLastGameSettings(); - void setupUIFromGameSettings(GameSettings *gameSettings, bool errorOnMissingData); - - int setupMapList(string scenario); - int setupTechList(string scenario, bool forceLoad=false); - void setupTilesetList(string scenario); - - void loadScenarioInfo(string file, ScenarioInfo *scenarioInfo); - void initFactionPreview(const GameSettings *gameSettings); - - virtual void simpleTask(BaseThread *callingThread,void *userdata); - string refreshTilesetModInfo(string tilesetInfo); - string refreshTechModInfo(string techInfo); - string refreshMapModInfo(string mapInfo); - string getMapCRC(string mapName); - - void disconnectFromServer(); -}; - -}}//end namespace + bool hasNetworkGameSettings (); + bool loadFactions (const GameSettings * gameSettings, + bool errorOnNoFactions); + void returnToJoinMenu (); + string getHumanPlayerName (); + void setActiveInputLabel (GraphicLabel * newLable); + + void loadFactionTexture (string filepath); + bool loadMapInfo (string file, MapInfo * mapInfo, bool loadMapPreview); + void showMessageBox (const string & text, const string & header, + bool toggle); + + void showFTPMessageBox (const string & text, const string & header, + bool toggle); + virtual void FTPClient_CallbackEvent (string itemName, + FTP_Client_CallbackType type, + pair < FTP_Client_ResultType, + string > result, void *userdata); + + int32 getNetworkPlayerStatus (); + void cleanupMapPreviewTexture (); + + void mouseClickAdmin (int x, int y, MouseButton mouseButton, + string advanceToItemStartingWith); + void switchToNextMapGroup (const int direction); + void switchToMapGroup (int filterIndex); + string getCurrentMapFile (); + void loadGameSettings (GameSettings * gameSettings); + void reloadFactions (bool keepExistingSelectedItem, string scenario); + void PlayNow (bool saveGame); + bool isHeadlessAdmin (); + void broadCastGameSettingsToHeadlessServer (bool forceNow); + void updateResourceMultiplier (const int index); + + void RestoreLastGameSettings (); + void setupUIFromGameSettings (GameSettings * gameSettings, + bool errorOnMissingData); + + int setupMapList (string scenario); + int setupTechList (string scenario, bool forceLoad = false); + void setupTilesetList (string scenario); + + void loadScenarioInfo (string file, ScenarioInfo * scenarioInfo); + void initFactionPreview (const GameSettings * gameSettings); + + virtual void simpleTask (BaseThread * callingThread, void *userdata); + string refreshTilesetModInfo (string tilesetInfo); + string refreshTechModInfo (string techInfo); + string refreshMapModInfo (string mapInfo); + string getMapCRC (string mapName); + + void disconnectFromServer (); + }; + +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_custom_game.cpp b/source/glest_game/menu/menu_state_custom_game.cpp index a2e2765be..b2be2c32a 100644 --- a/source/glest_game/menu/menu_state_custom_game.cpp +++ b/source/glest_game/menu/menu_state_custom_game.cpp @@ -1,25 +1,25 @@ // -// menu_state_custom_game.cpp: game setup menu as it appears to -// to the host +// menu_state_custom_game.cpp: game setup menu as it appears to +// to the host // -// This file is part of ZetaGlest +// This file is part of ZetaGlest // -// Copyright (C) 2018 The ZetaGlest team +// Copyright (C) 2018 The ZetaGlest team // -// ZetaGlest is a fork of MegaGlest +// ZetaGlest is a fork of MegaGlest // -// 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 3 of the License, or -// (at your option) any later version. +// 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 3 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. +// 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, see +// You should have received a copy of the GNU General Public License +// along with this program. If not, see #include "menu_state_custom_game.h" #include "renderer.h" @@ -46,5231 +46,8244 @@ #include "gen_uuid.h" #include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { -using namespace ::Shared::Util; + using namespace::Shared::Util; -const int MASTERSERVER_BROADCAST_MAX_WAIT_RESPONSE_SECONDS = 15; -const int MASTERSERVER_BROADCAST_PUBLISH_SECONDS = 6; -const int BROADCAST_MAP_DELAY_SECONDS = 5; -const int BROADCAST_SETTINGS_SECONDS = 4; -static const char *SAVED_GAME_FILENAME = "lastCustomGameSettings.mgg"; -static const char *DEFAULT_GAME_FILENAME = "data/defaultGameSetup.mgg"; -static const char *DEFAULT_NETWORKGAME_FILENAME = "data/defaultNetworkGameSetup.mgg"; + const int MASTERSERVER_BROADCAST_MAX_WAIT_RESPONSE_SECONDS = 15; + const int MASTERSERVER_BROADCAST_PUBLISH_SECONDS = 6; + const int BROADCAST_MAP_DELAY_SECONDS = 5; + const int BROADCAST_SETTINGS_SECONDS = 4; + static const char *SAVED_GAME_FILENAME = "lastCustomGameSettings.mgg"; + static const char *DEFAULT_GAME_FILENAME = "data/defaultGameSetup.mgg"; + static const char *DEFAULT_NETWORKGAME_FILENAME = + "data/defaultNetworkGameSetup.mgg"; -const int mapPreviewTexture_X = 5; -const int mapPreviewTexture_Y = 185; -const int mapPreviewTexture_W = 150; -const int mapPreviewTexture_H = 150; + const int mapPreviewTexture_X = 5; + const int mapPreviewTexture_Y = 185; + const int mapPreviewTexture_W = 150; + const int mapPreviewTexture_H = 150; -struct FormatString { - void operator()(string &s) { - s = formatString(s); - } -}; + struct FormatString + { + void operator () (string & s) + { + s = formatString (s); + } + }; // ===================================================== -// class MenuStateCustomGame +// class MenuStateCustomGame // ===================================================== -enum THREAD_NOTIFIER_TYPE { - tnt_MASTERSERVER = 1, - tnt_CLIENTS = 2 -}; - -MenuStateCustomGame::MenuStateCustomGame(Program *program, MainMenu *mainMenu, - bool openNetworkSlots,ParentMenuState parentMenuState, bool autostart, - GameSettings *settings, bool masterserverMode, - string autoloadScenarioName) : - MenuState(program, mainMenu, "new-game") { - try { - - this->headlessServerMode = masterserverMode; - if(this->headlessServerMode == true) { - printf("Waiting for players to join and start a game...\n"); - } - - this->gameUUID = getUUIDAsString(); - - this->zoomedMap=false; - this->render_mapPreviewTexture_X = mapPreviewTexture_X; - this->render_mapPreviewTexture_Y = mapPreviewTexture_Y; - this->render_mapPreviewTexture_W = mapPreviewTexture_W; - this->render_mapPreviewTexture_H = mapPreviewTexture_H; - - this->lastMasterServerSettingsUpdateCount = 0; - this->masterserverModeMinimalResources = true; - this->parentMenuState=parentMenuState; - this->factionVideo = NULL; - factionVideoSwitchedOffVolume=false; - - //printf("this->masterserverMode = %d [%d]\n",this->masterserverMode,masterserverMode); - - forceWaitForShutdown = true; - this->autostart = autostart; - this->autoStartSettings = settings; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] autostart = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,autostart); - - containerName = "CustomGame"; - activeInputLabel=NULL; - showGeneralError = false; - generalErrorToShow = "---"; - currentFactionLogo = ""; - factionTexture=NULL; - currentTechName_factionPreview=""; - currentFactionName_factionPreview=""; - mapPreviewTexture=NULL; - hasCheckedForUPNP = false; - needToPublishDelayed=false; - mapPublishingDelayTimer=time(NULL); - headlessHasConnectedPlayer=false; - - lastCheckedCRCTilesetName = ""; - lastCheckedCRCTechtreeName = ""; - lastCheckedCRCMapName = ""; - - last_Forced_CheckedCRCTilesetName = ""; - last_Forced_CheckedCRCTechtreeName = ""; - last_Forced_CheckedCRCMapName = ""; - - lastCheckedCRCTilesetValue = 0; - lastCheckedCRCTechtreeValue = 0; - lastCheckedCRCMapValue = 0; - - publishToMasterserverThread = NULL; - publishToClientsThread = NULL; - - Lang &lang= Lang::getInstance(); - NetworkManager &networkManager= NetworkManager::getInstance(); - Config &config = Config::getInstance(); - defaultPlayerName = config.getString("NetPlayerName",Socket::getHostName().c_str()); - enableFactionTexturePreview = config.getBool("FactionPreview","true"); - enableMapPreview = config.getBool("MapPreview","true"); - - showFullConsole=false; - - enableScenarioTexturePreview = Config::getInstance().getBool("EnableScenarioTexturePreview","true"); - scenarioLogoTexture=NULL; - previewLoadDelayTimer=time(NULL); - needToLoadTextures=true; - this->autoloadScenarioName = autoloadScenarioName; - this->dirList = Config::getInstance().getPathListForType(ptScenarios); - - mainMessageBox.registerGraphicComponent(containerName,"mainMessageBox"); - mainMessageBox.init(lang.getString("Ok"),500,300); - mainMessageBox.setEnabled(false); - mainMessageBoxState=0; - - //initialize network interface - NetworkManager::getInstance().end(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - serverInitError = false; - try { - networkManager.init(nrServer,openNetworkSlots); - } - catch(const std::exception &ex) { - serverInitError = true; - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nNetwork init error:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - showGeneralError=true; - generalErrorToShow = szBuf; - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - needToSetChangedGameSettings = false; - needToRepublishToMasterserver = false; - needToBroadcastServerSettings = false; - lastGameSettingsreceivedCount = -1; - showMasterserverError = false; - tMasterserverErrorElapsed = 0; - masterServererErrorToShow = "---"; - lastSetChangedGameSettings = 0; - lastMasterserverPublishing = 0; - lastNetworkPing = 0; - soundConnectionCount=0; - - techTree.reset(new TechTree(config.getPathListForType(ptTechs))); - - int labelOffset=23; - int setupPos=605; - int mapHeadPos=300; //330; - int mapPos=mapHeadPos-labelOffset; - int aHeadPos=240; - int aPos=aHeadPos-labelOffset; - int networkHeadPos=700; - int networkPos=networkHeadPos-labelOffset; - int xoffset=10; - - //create - int buttonx=165; - int buttony=180; - - // player status - listBoxPlayerStatus.registerGraphicComponent(containerName,"listBoxPlayerStatus"); - listBoxPlayerStatus.init(buttonx, buttony, 165); - vector playerStatuses; - playerStatuses.push_back(lang.getString("PlayerStatusSetup")); - playerStatuses.push_back(lang.getString("PlayerStatusBeRightBack")); - playerStatuses.push_back(lang.getString("PlayerStatusReady")); - listBoxPlayerStatus.setItems(playerStatuses); - listBoxPlayerStatus.setSelectedItemIndex(2,true); - listBoxPlayerStatus.setTextColor(Vec3f(0.0f,1.0f,0.0f)); - listBoxPlayerStatus.setLighted(false); - listBoxPlayerStatus.setVisible(true); - buttonx+=180; - - buttonReturn.registerGraphicComponent(containerName,"buttonReturn"); - buttonReturn.init(buttonx, buttony, 125); - buttonx+=132; - - buttonRestoreLastSettings.registerGraphicComponent(containerName,"buttonRestoreLastSettings"); - buttonRestoreLastSettings.init(buttonx, buttony, 240); - buttonx+=247; - - buttonPlayNow.registerGraphicComponent(containerName,"buttonPlayNow"); - buttonPlayNow.init(buttonx, buttony, 125); - - labelLocalGameVersion.registerGraphicComponent(containerName,"labelLocalGameVersion"); - labelLocalGameVersion.init(10, networkHeadPos+labelOffset); - - labelLocalIP.registerGraphicComponent(containerName,"labelLocalIP"); - labelLocalIP.init(360, networkHeadPos+labelOffset); - - string ipText = "none"; - std::vector ipList = Socket::getLocalIPAddressList(); - if(ipList.empty() == false) { - ipText = ""; - for(int idx = 0; idx < (int)ipList.size(); idx++) { - string ip = ipList[idx]; - if(ipText != "") { - ipText += ", "; - } - ipText += ip; - } - } - string serverPort=config.getString("PortServer", intToStr(GameConstants::serverPort).c_str()); - string externalPort=config.getString("PortExternal", serverPort.c_str()); - labelLocalIP.setText(lang.getString("LanIP") + ipText + " ( "+serverPort+" / "+externalPort+" )"); - ServerSocket::setExternalPort(strToInt(externalPort)); - - if(EndsWith(glestVersionString, "-dev") == false){ - labelLocalGameVersion.setText(glestVersionString); - } - else { - //labelLocalGameVersion.setText(glestVersionString + " [" + getCompileDateTime() + ", " + getGITRevisionString() + "]"); - labelLocalGameVersion.setText(glestVersionString + " [" + getGITRevisionString() + "]"); - } - - xoffset=65; - // MapFilter - labelMapFilter.registerGraphicComponent(containerName,"labelMapFilter"); - labelMapFilter.init(xoffset+325, mapHeadPos); - labelMapFilter.setText(lang.getString("MapFilter")); - - listBoxMapFilter.registerGraphicComponent(containerName,"listBoxMapFilter"); - listBoxMapFilter.init(xoffset+325, mapPos, 80); - listBoxMapFilter.pushBackItem("-"); - for(int i=1; i 0) { - listBoxTechTree.setSelectedItemIndex(initialTechSelection); - } - - labelTechTree.registerGraphicComponent(containerName,"labelTechTree"); - labelTechTree.init(xoffset+700, mapHeadPos); - labelTechTree.setText(lang.getString("TechTree")); - - // fog - o - war - // @350 ? 300 ? - labelFogOfWar.registerGraphicComponent(containerName,"labelFogOfWar"); - labelFogOfWar.init(xoffset+100, aHeadPos, 165); - labelFogOfWar.setText(lang.getString("FogOfWar")); - - listBoxFogOfWar.registerGraphicComponent(containerName,"listBoxFogOfWar"); - listBoxFogOfWar.init(xoffset+100, aPos, 165); - listBoxFogOfWar.pushBackItem(lang.getString("Enabled")); - listBoxFogOfWar.pushBackItem(lang.getString("Explored")); - listBoxFogOfWar.pushBackItem(lang.getString("Disabled")); - listBoxFogOfWar.setSelectedItemIndex(0); - - // Allow Observers - labelAllowObservers.registerGraphicComponent(containerName,"labelAllowObservers"); - labelAllowObservers.init(xoffset+325, aHeadPos, 80); - labelAllowObservers.setText(lang.getString("AllowObservers")); - - checkBoxAllowObservers.registerGraphicComponent(containerName,"checkBoxAllowObservers"); - checkBoxAllowObservers.init(xoffset+325, aPos); - checkBoxAllowObservers.setValue(false); - - vector rMultiplier; - for(int i=0; i<45; ++i){ - rMultiplier.push_back(floatToStr(0.5f+0.1f*i,1)); - } - - labelFallbackCpuMultiplier.registerGraphicComponent(containerName,"labelFallbackCpuMultiplier"); - labelFallbackCpuMultiplier.init(xoffset+500, aHeadPos, 80); - labelFallbackCpuMultiplier.setText(lang.getString("FallbackCpuMultiplier")); - - listBoxFallbackCpuMultiplier.registerGraphicComponent(containerName,"listBoxFallbackCpuMultiplier"); - listBoxFallbackCpuMultiplier.init(xoffset+500, aPos, 80); - listBoxFallbackCpuMultiplier.setItems(rMultiplier); - listBoxFallbackCpuMultiplier.setSelectedItem("1.0"); - - // Allow Switch Team Mode - labelEnableSwitchTeamMode.registerGraphicComponent(containerName,"labelEnableSwitchTeamMode"); - labelEnableSwitchTeamMode.init(xoffset+325, aHeadPos+45, 80); - labelEnableSwitchTeamMode.setText(lang.getString("EnableSwitchTeamMode")); - - checkBoxEnableSwitchTeamMode.registerGraphicComponent(containerName,"checkBoxEnableSwitchTeamMode"); - checkBoxEnableSwitchTeamMode.init(xoffset+325, aPos+45); - checkBoxEnableSwitchTeamMode.setValue(false); - - labelAISwitchTeamAcceptPercent.registerGraphicComponent(containerName,"labelAISwitchTeamAcceptPercent"); - labelAISwitchTeamAcceptPercent.init(xoffset+500, aHeadPos+45, 80); - labelAISwitchTeamAcceptPercent.setText(lang.getString("AISwitchTeamAcceptPercent")); - - listBoxAISwitchTeamAcceptPercent.registerGraphicComponent(containerName,"listBoxAISwitchTeamAcceptPercent"); - listBoxAISwitchTeamAcceptPercent.init(xoffset+500, aPos+45, 80); - for(int i = 0; i <= 100; i = i + 10) { - listBoxAISwitchTeamAcceptPercent.pushBackItem(intToStr(i)); - } - listBoxAISwitchTeamAcceptPercent.setSelectedItem(intToStr(30)); - - labelAllowNativeLanguageTechtree.registerGraphicComponent(containerName,"labelAllowNativeLanguageTechtree"); - labelAllowNativeLanguageTechtree.init(xoffset+700, aHeadPos+45); - labelAllowNativeLanguageTechtree.setText(lang.getString("AllowNativeLanguageTechtree")); - - checkBoxAllowNativeLanguageTechtree.registerGraphicComponent(containerName,"checkBoxAllowNativeLanguageTechtree"); - checkBoxAllowNativeLanguageTechtree.init(xoffset+700, aPos+45); - checkBoxAllowNativeLanguageTechtree.setValue(false); - - // Network Scenario - int scenarioX=xoffset+700; - int scenarioY=aPos; - labelScenario.registerGraphicComponent(containerName,"labelScenario"); - labelScenario.init(scenarioX, aHeadPos); - labelScenario.setText(lang.getString("Scenario")); - listBoxScenario.registerGraphicComponent(containerName,"listBoxScenario"); - listBoxScenario.init(scenarioX+30, scenarioY,190); - checkBoxScenario.registerGraphicComponent(containerName,"checkBoxScenario"); - checkBoxScenario.init(scenarioX, scenarioY); - checkBoxScenario.setValue(false); - - //scenario listbox - vector resultsScenarios; - findDirs(dirList, resultsScenarios); - // Filter out only scenarios with no network slots - for(int i= 0; i < (int)resultsScenarios.size(); ++i) { - string scenario = resultsScenarios[i]; - string file = Scenario::getScenarioPath(dirList, scenario); - - try { - if(file != "") { - bool isTutorial = Scenario::isGameTutorial(file); - Scenario::loadScenarioInfo(file, &scenarioInfo, isTutorial); - - bool isNetworkScenario = false; - for(unsigned int j = 0; isNetworkScenario == false && j < (unsigned int)GameConstants::maxPlayers; ++j) { - if(scenarioInfo.factionControls[j] == ctNetwork) { - isNetworkScenario = true; - } - } - if(isNetworkScenario == true) { - scenarioFiles.push_back(scenario); - } - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError loading scenario [%s]:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,scenario.c_str(),ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - showGeneralError=true; - generalErrorToShow = szBuf; - //throw megaglest_runtime_error(szBuf); - } - } - resultsScenarios.clear(); - for(int i = 0; i < (int)scenarioFiles.size(); ++i) { - resultsScenarios.push_back(formatString(scenarioFiles[i])); - } - listBoxScenario.setItems(resultsScenarios); - if(resultsScenarios.empty() == true) { - checkBoxScenario.setEnabled(false); - } - // Advanced Options - labelAdvanced.registerGraphicComponent(containerName,"labelAdvanced"); - labelAdvanced.init(scenarioX, 80, 80); - labelAdvanced.setText(lang.getString("AdvancedGameOptions")); - - checkBoxAdvanced.registerGraphicComponent(containerName,"checkBoxAdvanced"); - checkBoxAdvanced.init(scenarioX, 80-labelOffset); - checkBoxAdvanced.setValue(false); - - // network things - // PublishServer - xoffset=90; - - labelPublishServer.registerGraphicComponent(containerName,"labelPublishServer"); - labelPublishServer.init(20, networkHeadPos, 100); - labelPublishServer.setText(lang.getString("PublishServer")); - - checkBoxPublishServer.registerGraphicComponent(containerName,"checkBoxPublishServer"); - checkBoxPublishServer.init(20, networkPos); - - checkBoxPublishServer.setValue(false); - if((this->headlessServerMode == true || - (openNetworkSlots == true && parentMenuState != pLanGame)) && - GlobalStaticFlags::isFlagSet(gsft_lan_mode) == false) { - checkBoxPublishServer.setValue(true); - } - - labelGameName.registerGraphicComponent(containerName,"labelGameName"); - labelGameName.init(20+checkBoxPublishServer.getW()+5, networkPos,200); - labelGameName.setFont(CoreData::getInstance().getMenuFontBig()); - labelGameName.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelGameName.setText(createGameName()); - labelGameName.setEditable(true); - labelGameName.setMaxEditWidth(20); - labelGameName.setMaxEditRenderWidth(200); - - - bool allowInProgressJoin = Config::getInstance().getBool("EnableJoinInProgressGame","true"); - labelAllowInGameJoinPlayer.registerGraphicComponent(containerName,"labelAllowInGameJoinPlayer"); - labelAllowInGameJoinPlayer.init(50, networkPos - 30, 80); - labelAllowInGameJoinPlayer.setText(lang.getString("AllowInGameJoinPlayer")); - labelAllowInGameJoinPlayer.setVisible(allowInProgressJoin); - - checkBoxAllowInGameJoinPlayer.registerGraphicComponent(containerName,"checkBoxAllowInGameJoinPlayer"); - checkBoxAllowInGameJoinPlayer.init(20, networkPos - 30); - checkBoxAllowInGameJoinPlayer.setValue(false); - checkBoxAllowInGameJoinPlayer.setVisible(allowInProgressJoin); - - - labelAllowTeamUnitSharing.registerGraphicComponent(containerName,"labelAllowTeamUnitSharing"); - labelAllowTeamUnitSharing.init(xoffset+410, 670, 80); - labelAllowTeamUnitSharing.setText(lang.getString("AllowTeamUnitSharing")); - labelAllowTeamUnitSharing.setVisible(true); - - checkBoxAllowTeamUnitSharing.registerGraphicComponent(containerName,"checkBoxAllowTeamUnitSharing"); - checkBoxAllowTeamUnitSharing.init(xoffset+612, 670); - checkBoxAllowTeamUnitSharing.setValue(false); - checkBoxAllowTeamUnitSharing.setVisible(true); - - labelAllowTeamResourceSharing.registerGraphicComponent(containerName,"labelAllowTeamResourceSharing"); - labelAllowTeamResourceSharing.init(xoffset+410, 640, 80); - labelAllowTeamResourceSharing.setText(lang.getString("AllowTeamResourceSharing")); - labelAllowTeamResourceSharing.setVisible(true); - - checkBoxAllowTeamResourceSharing.registerGraphicComponent(containerName,"checkBoxAllowTeamResourceSharing"); - checkBoxAllowTeamResourceSharing.init(xoffset+612, 640); - checkBoxAllowTeamResourceSharing.setValue(false); - checkBoxAllowTeamResourceSharing.setVisible(true); - - - // Network Pause for lagged clients - labelNetworkPauseGameForLaggedClients.registerGraphicComponent(containerName,"labelNetworkPauseGameForLaggedClients"); - labelNetworkPauseGameForLaggedClients.init(labelAllowTeamResourceSharing.getX(), networkHeadPos, 80); - labelNetworkPauseGameForLaggedClients.setText(lang.getString("NetworkPauseGameForLaggedClients")); - - checkBoxNetworkPauseGameForLaggedClients.registerGraphicComponent(containerName,"checkBoxNetworkPauseGameForLaggedClients"); - checkBoxNetworkPauseGameForLaggedClients.init(checkBoxAllowTeamResourceSharing.getX(), networkHeadPos); - checkBoxNetworkPauseGameForLaggedClients.setValue(true); - - //list boxes - xoffset=5; - int rowHeight=27; - for(int i=0; iheadlessServerMode = masterserverMode; + if (this->headlessServerMode == true) + { + printf ("Waiting for players to join and start a game...\n"); + } + + this->gameUUID = getUUIDAsString (); + + this->zoomedMap = false; + this->render_mapPreviewTexture_X = mapPreviewTexture_X; + this->render_mapPreviewTexture_Y = mapPreviewTexture_Y; + this->render_mapPreviewTexture_W = mapPreviewTexture_W; + this->render_mapPreviewTexture_H = mapPreviewTexture_H; + + this->lastMasterServerSettingsUpdateCount = 0; + this->masterserverModeMinimalResources = true; + this->parentMenuState = parentMenuState; + this->factionVideo = NULL; + factionVideoSwitchedOffVolume = false; + +//printf("this->masterserverMode = %d [%d]\n",this->masterserverMode,masterserverMode); + + forceWaitForShutdown = true; + this->autostart = autostart; + this->autoStartSettings = settings; + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] autostart = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, autostart); + + containerName = "CustomGame"; + activeInputLabel = NULL; + showGeneralError = false; + generalErrorToShow = "---"; + currentFactionLogo = ""; + factionTexture = NULL; + currentTechName_factionPreview = ""; + currentFactionName_factionPreview = ""; + mapPreviewTexture = NULL; + hasCheckedForUPNP = false; + needToPublishDelayed = false; + mapPublishingDelayTimer = time (NULL); + headlessHasConnectedPlayer = false; + + lastCheckedCRCTilesetName = ""; + lastCheckedCRCTechtreeName = ""; + lastCheckedCRCMapName = ""; + + last_Forced_CheckedCRCTilesetName = ""; + last_Forced_CheckedCRCTechtreeName = ""; + last_Forced_CheckedCRCMapName = ""; + + lastCheckedCRCTilesetValue = 0; + lastCheckedCRCTechtreeValue = 0; + lastCheckedCRCMapValue = 0; + + publishToMasterserverThread = NULL; + publishToClientsThread = NULL; + + Lang & lang = Lang::getInstance (); + NetworkManager & networkManager = NetworkManager::getInstance (); + Config & config = Config::getInstance (); + defaultPlayerName = + config.getString ("NetPlayerName", Socket::getHostName ().c_str ()); + enableFactionTexturePreview = + config.getBool ("FactionPreview", "true"); + enableMapPreview = config.getBool ("MapPreview", "true"); + + showFullConsole = false; + + enableScenarioTexturePreview = + Config::getInstance ().getBool ("EnableScenarioTexturePreview", + "true"); + scenarioLogoTexture = NULL; + previewLoadDelayTimer = time (NULL); + needToLoadTextures = true; + this->autoloadScenarioName = autoloadScenarioName; + this->dirList = + Config::getInstance ().getPathListForType (ptScenarios); + + mainMessageBox.registerGraphicComponent (containerName, + "mainMessageBox"); + mainMessageBox.init (lang.getString ("Ok"), 500, 300); + mainMessageBox.setEnabled (false); + mainMessageBoxState = 0; + +//initialize network interface + NetworkManager::getInstance ().end (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + serverInitError = false; + try + { + networkManager.init (nrServer, openNetworkSlots); + } + catch (const std::exception & ex) + { + serverInitError = true; + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nNetwork init error:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + showGeneralError = true; + generalErrorToShow = szBuf; + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + needToSetChangedGameSettings = false; + needToRepublishToMasterserver = false; + needToBroadcastServerSettings = false; + lastGameSettingsreceivedCount = -1; + showMasterserverError = false; + tMasterserverErrorElapsed = 0; + masterServererErrorToShow = "---"; + lastSetChangedGameSettings = 0; + lastMasterserverPublishing = 0; + lastNetworkPing = 0; + soundConnectionCount = 0; + + techTree.reset (new TechTree (config.getPathListForType (ptTechs))); + + int labelOffset = 23; + int setupPos = 605; + int mapHeadPos = 300; //330; + int mapPos = mapHeadPos - labelOffset; + int aHeadPos = 240; + int aPos = aHeadPos - labelOffset; + int networkHeadPos = 700; + int networkPos = networkHeadPos - labelOffset; + int xoffset = 10; + +//create + int buttonx = 165; + int buttony = 180; + +// player status + listBoxPlayerStatus.registerGraphicComponent (containerName, + "listBoxPlayerStatus"); + listBoxPlayerStatus.init (buttonx, buttony, 165); + vector < string > playerStatuses; + playerStatuses.push_back (lang.getString ("PlayerStatusSetup")); + playerStatuses.push_back (lang.getString ("PlayerStatusBeRightBack")); + playerStatuses.push_back (lang.getString ("PlayerStatusReady")); + listBoxPlayerStatus.setItems (playerStatuses); + listBoxPlayerStatus.setSelectedItemIndex (2, true); + listBoxPlayerStatus.setTextColor (Vec3f (0.0f, 1.0f, 0.0f)); + listBoxPlayerStatus.setLighted (false); + listBoxPlayerStatus.setVisible (true); + buttonx += 180; + + buttonReturn.registerGraphicComponent (containerName, "buttonReturn"); + buttonReturn.init (buttonx, buttony, 125); + buttonx += 132; + + buttonRestoreLastSettings.registerGraphicComponent (containerName, + "buttonRestoreLastSettings"); + buttonRestoreLastSettings.init (buttonx, buttony, 240); + buttonx += 247; + + buttonPlayNow.registerGraphicComponent (containerName, + "buttonPlayNow"); + buttonPlayNow.init (buttonx, buttony, 125); + + labelLocalGameVersion.registerGraphicComponent (containerName, + "labelLocalGameVersion"); + labelLocalGameVersion.init (10, networkHeadPos + labelOffset); + + labelLocalIP.registerGraphicComponent (containerName, "labelLocalIP"); + labelLocalIP.init (360, networkHeadPos + labelOffset); + + string ipText = "none"; + std::vector < std::string > ipList = Socket::getLocalIPAddressList (); + if (ipList.empty () == false) + { + ipText = ""; + for (int idx = 0; idx < (int) ipList.size (); idx++) + { + string ip = ipList[idx]; + if (ipText != "") + { + ipText += ", "; + } + ipText += ip; + } + } + string serverPort = config.getString ("PortServer", + intToStr + (GameConstants:: + serverPort).c_str ()); + string externalPort = + config.getString ("PortExternal", serverPort.c_str ()); + labelLocalIP.setText (lang.getString ("LanIP") + ipText + " ( " + + serverPort + " / " + externalPort + " )"); + ServerSocket::setExternalPort (strToInt (externalPort)); + + if (EndsWith (glestVersionString, "-dev") == false) + { + labelLocalGameVersion.setText (glestVersionString); + } + else + { +//labelLocalGameVersion.setText(glestVersionString + " [" + getCompileDateTime() + ", " + getGITRevisionString() + "]"); + labelLocalGameVersion.setText (glestVersionString + " [" + + getGITRevisionString () + "]"); + } + + xoffset = 65; +// MapFilter + labelMapFilter.registerGraphicComponent (containerName, + "labelMapFilter"); + labelMapFilter.init (xoffset + 325, mapHeadPos); + labelMapFilter.setText (lang.getString ("MapFilter")); + + listBoxMapFilter.registerGraphicComponent (containerName, + "listBoxMapFilter"); + listBoxMapFilter.init (xoffset + 325, mapPos, 80); + listBoxMapFilter.pushBackItem ("-"); + for (int i = 1; i < GameConstants::maxPlayers + 1; ++i) + { + listBoxMapFilter.pushBackItem (intToStr (i)); + } + listBoxMapFilter.setSelectedItemIndex (0); + +// Map + labelMap.registerGraphicComponent (containerName, "labelMap"); + labelMap.init (xoffset + 100, mapHeadPos); + labelMap.setText (lang.getString ("Map")); + +//map listBox + listBoxMap.registerGraphicComponent (containerName, "listBoxMap"); + listBoxMap.init (xoffset + 100, mapPos, 220); +// put them all in a set, to weed out duplicates (gbm & mgm with same name) +// will also ensure they are alphabetically listed (rather than how the OS provides them) + int initialMapSelection = setupMapList (""); + listBoxMap.setItems (formattedPlayerSortedMaps[0]); + listBoxMap.setSelectedItemIndex (initialMapSelection); + + labelMapInfo.registerGraphicComponent (containerName, "labelMapInfo"); + labelMapInfo.init (xoffset + 100, mapPos - labelOffset - 10, 200, 40); + + labelTileset.registerGraphicComponent (containerName, "labelTileset"); + labelTileset.init (xoffset + 500, mapHeadPos); + labelTileset.setText (lang.getString ("Tileset")); + +//tileset listBox + listBoxTileset.registerGraphicComponent (containerName, + "listBoxTileset"); + listBoxTileset.init (xoffset + 500, mapPos, 160); + + setupTilesetList (""); + Chrono seed (true); + srand ((unsigned int) seed.getCurTicks ()); + + listBoxTileset.setSelectedItemIndex (rand () % + listBoxTileset.getItemCount ()); + +//tech Tree listBox + int initialTechSelection = setupTechList ("", true); + + listBoxTechTree.registerGraphicComponent (containerName, + "listBoxTechTree"); + listBoxTechTree.init (xoffset + 700, mapPos, 180); + if (listBoxTechTree.getItemCount () > 0) + { + listBoxTechTree.setSelectedItemIndex (initialTechSelection); + } + + labelTechTree.registerGraphicComponent (containerName, + "labelTechTree"); + labelTechTree.init (xoffset + 700, mapHeadPos); + labelTechTree.setText (lang.getString ("TechTree")); + +// fog - o - war +// @350 ? 300 ? + labelFogOfWar.registerGraphicComponent (containerName, + "labelFogOfWar"); + labelFogOfWar.init (xoffset + 100, aHeadPos, 165); + labelFogOfWar.setText (lang.getString ("FogOfWar")); + + listBoxFogOfWar.registerGraphicComponent (containerName, + "listBoxFogOfWar"); + listBoxFogOfWar.init (xoffset + 100, aPos, 165); + listBoxFogOfWar.pushBackItem (lang.getString ("Enabled")); + listBoxFogOfWar.pushBackItem (lang.getString ("Explored")); + listBoxFogOfWar.pushBackItem (lang.getString ("Disabled")); + listBoxFogOfWar.setSelectedItemIndex (0); + +// Allow Observers + labelAllowObservers.registerGraphicComponent (containerName, + "labelAllowObservers"); + labelAllowObservers.init (xoffset + 325, aHeadPos, 80); + labelAllowObservers.setText (lang.getString ("AllowObservers")); + + checkBoxAllowObservers.registerGraphicComponent (containerName, + "checkBoxAllowObservers"); + checkBoxAllowObservers.init (xoffset + 325, aPos); + checkBoxAllowObservers.setValue (false); + + vector < string > rMultiplier; + for (int i = 0; i < 45; ++i) + { + rMultiplier.push_back (floatToStr (0.5f + 0.1f * i, 1)); + } + + labelFallbackCpuMultiplier.registerGraphicComponent (containerName, + "labelFallbackCpuMultiplier"); + labelFallbackCpuMultiplier.init (xoffset + 500, aHeadPos, 80); + labelFallbackCpuMultiplier.setText (lang.getString + ("FallbackCpuMultiplier")); + + listBoxFallbackCpuMultiplier.registerGraphicComponent (containerName, + "listBoxFallbackCpuMultiplier"); + listBoxFallbackCpuMultiplier.init (xoffset + 500, aPos, 80); + listBoxFallbackCpuMultiplier.setItems (rMultiplier); + listBoxFallbackCpuMultiplier.setSelectedItem ("1.0"); + +// Allow Switch Team Mode + labelEnableSwitchTeamMode.registerGraphicComponent (containerName, + "labelEnableSwitchTeamMode"); + labelEnableSwitchTeamMode.init (xoffset + 325, aHeadPos + 45, 80); + labelEnableSwitchTeamMode.setText (lang.getString + ("EnableSwitchTeamMode")); + + checkBoxEnableSwitchTeamMode.registerGraphicComponent (containerName, + "checkBoxEnableSwitchTeamMode"); + checkBoxEnableSwitchTeamMode.init (xoffset + 325, aPos + 45); + checkBoxEnableSwitchTeamMode.setValue (false); + + labelAISwitchTeamAcceptPercent.registerGraphicComponent + (containerName, "labelAISwitchTeamAcceptPercent"); + labelAISwitchTeamAcceptPercent.init (xoffset + 500, aHeadPos + 45, + 80); + labelAISwitchTeamAcceptPercent.setText (lang.getString + ("AISwitchTeamAcceptPercent")); + + listBoxAISwitchTeamAcceptPercent.registerGraphicComponent + (containerName, "listBoxAISwitchTeamAcceptPercent"); + listBoxAISwitchTeamAcceptPercent.init (xoffset + 500, aPos + 45, 80); + for (int i = 0; i <= 100; i = i + 10) + { + listBoxAISwitchTeamAcceptPercent.pushBackItem (intToStr (i)); + } + listBoxAISwitchTeamAcceptPercent.setSelectedItem (intToStr (30)); + + labelAllowNativeLanguageTechtree.registerGraphicComponent + (containerName, "labelAllowNativeLanguageTechtree"); + labelAllowNativeLanguageTechtree.init (xoffset + 700, aHeadPos + 45); + labelAllowNativeLanguageTechtree.setText (lang.getString + ("AllowNativeLanguageTechtree")); + + checkBoxAllowNativeLanguageTechtree.registerGraphicComponent + (containerName, "checkBoxAllowNativeLanguageTechtree"); + checkBoxAllowNativeLanguageTechtree.init (xoffset + 700, aPos + 45); + checkBoxAllowNativeLanguageTechtree.setValue (false); + +// Network Scenario + int scenarioX = xoffset + 700; + int scenarioY = aPos; + labelScenario.registerGraphicComponent (containerName, + "labelScenario"); + labelScenario.init (scenarioX, aHeadPos); + labelScenario.setText (lang.getString ("Scenario")); + listBoxScenario.registerGraphicComponent (containerName, + "listBoxScenario"); + listBoxScenario.init (scenarioX + 30, scenarioY, 190); + checkBoxScenario.registerGraphicComponent (containerName, + "checkBoxScenario"); + checkBoxScenario.init (scenarioX, scenarioY); + checkBoxScenario.setValue (false); + +//scenario listbox + vector < string > resultsScenarios; + findDirs (dirList, resultsScenarios); +// Filter out only scenarios with no network slots + for (int i = 0; i < (int) resultsScenarios.size (); ++i) + { + string scenario = resultsScenarios[i]; + string file = Scenario::getScenarioPath (dirList, scenario); + + try + { + if (file != "") + { + bool isTutorial = Scenario::isGameTutorial (file); + Scenario::loadScenarioInfo (file, &scenarioInfo, isTutorial); + + bool isNetworkScenario = false; + for (unsigned int j = 0; + isNetworkScenario == false + && j < (unsigned int) GameConstants::maxPlayers; ++j) + { + if (scenarioInfo.factionControls[j] == ctNetwork) + { + isNetworkScenario = true; + } + } + if (isNetworkScenario == true) + { + scenarioFiles.push_back (scenario); + } + } + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d]\nError loading scenario [%s]:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, scenario.c_str (), ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", + szBuf); + + showGeneralError = true; + generalErrorToShow = szBuf; +//throw megaglest_runtime_error(szBuf); + } + } + resultsScenarios.clear (); + for (int i = 0; i < (int) scenarioFiles.size (); ++i) + { + resultsScenarios.push_back (formatString (scenarioFiles[i])); + } + listBoxScenario.setItems (resultsScenarios); + if (resultsScenarios.empty () == true) + { + checkBoxScenario.setEnabled (false); + } +// Advanced Options + labelAdvanced.registerGraphicComponent (containerName, + "labelAdvanced"); + labelAdvanced.init (scenarioX, 80, 80); + labelAdvanced.setText (lang.getString ("AdvancedGameOptions")); + + checkBoxAdvanced.registerGraphicComponent (containerName, + "checkBoxAdvanced"); + checkBoxAdvanced.init (scenarioX, 80 - labelOffset); + checkBoxAdvanced.setValue (false); + +// network things +// PublishServer + xoffset = 90; + + labelPublishServer.registerGraphicComponent (containerName, + "labelPublishServer"); + labelPublishServer.init (20, networkHeadPos, 100); + labelPublishServer.setText (lang.getString ("PublishServer")); + + checkBoxPublishServer.registerGraphicComponent (containerName, + "checkBoxPublishServer"); + checkBoxPublishServer.init (20, networkPos); + + checkBoxPublishServer.setValue (false); + if ((this->headlessServerMode == true || + (openNetworkSlots == true && parentMenuState != pLanGame)) && + GlobalStaticFlags::isFlagSet (gsft_lan_mode) == false) + { + checkBoxPublishServer.setValue (true); + } + + labelGameName.registerGraphicComponent (containerName, + "labelGameName"); + labelGameName.init (20 + checkBoxPublishServer.getW () + 5, + networkPos, 200); + labelGameName.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelGameName. + setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelGameName.setText (createGameName ()); + labelGameName.setEditable (true); + labelGameName.setMaxEditWidth (20); + labelGameName.setMaxEditRenderWidth (200); + + + bool allowInProgressJoin = + Config::getInstance ().getBool ("EnableJoinInProgressGame", "true"); + labelAllowInGameJoinPlayer.registerGraphicComponent (containerName, + "labelAllowInGameJoinPlayer"); + labelAllowInGameJoinPlayer.init (50, networkPos - 30, 80); + labelAllowInGameJoinPlayer.setText (lang.getString + ("AllowInGameJoinPlayer")); + labelAllowInGameJoinPlayer.setVisible (allowInProgressJoin); + + checkBoxAllowInGameJoinPlayer.registerGraphicComponent (containerName, + "checkBoxAllowInGameJoinPlayer"); + checkBoxAllowInGameJoinPlayer.init (20, networkPos - 30); + checkBoxAllowInGameJoinPlayer.setValue (false); + checkBoxAllowInGameJoinPlayer.setVisible (allowInProgressJoin); + + + labelAllowTeamUnitSharing.registerGraphicComponent (containerName, + "labelAllowTeamUnitSharing"); + labelAllowTeamUnitSharing.init (xoffset + 410, 670, 80); + labelAllowTeamUnitSharing.setText (lang.getString + ("AllowTeamUnitSharing")); + labelAllowTeamUnitSharing.setVisible (true); + + checkBoxAllowTeamUnitSharing.registerGraphicComponent (containerName, + "checkBoxAllowTeamUnitSharing"); + checkBoxAllowTeamUnitSharing.init (xoffset + 612, 670); + checkBoxAllowTeamUnitSharing.setValue (false); + checkBoxAllowTeamUnitSharing.setVisible (true); + + labelAllowTeamResourceSharing.registerGraphicComponent (containerName, + "labelAllowTeamResourceSharing"); + labelAllowTeamResourceSharing.init (xoffset + 410, 640, 80); + labelAllowTeamResourceSharing.setText (lang.getString + ("AllowTeamResourceSharing")); + labelAllowTeamResourceSharing.setVisible (true); + + checkBoxAllowTeamResourceSharing.registerGraphicComponent + (containerName, "checkBoxAllowTeamResourceSharing"); + checkBoxAllowTeamResourceSharing.init (xoffset + 612, 640); + checkBoxAllowTeamResourceSharing.setValue (false); + checkBoxAllowTeamResourceSharing.setVisible (true); + + +// Network Pause for lagged clients + labelNetworkPauseGameForLaggedClients.registerGraphicComponent + (containerName, "labelNetworkPauseGameForLaggedClients"); + labelNetworkPauseGameForLaggedClients.init + (labelAllowTeamResourceSharing.getX (), networkHeadPos, 80); + labelNetworkPauseGameForLaggedClients.setText (lang.getString + ("NetworkPauseGameForLaggedClients")); + + checkBoxNetworkPauseGameForLaggedClients.registerGraphicComponent + (containerName, "checkBoxNetworkPauseGameForLaggedClients"); + checkBoxNetworkPauseGameForLaggedClients.init + (checkBoxAllowTeamResourceSharing.getX (), networkHeadPos); + checkBoxNetworkPauseGameForLaggedClients.setValue (true); + +//list boxes + xoffset = 5; + int rowHeight = 27; + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + + labelPlayers[i].registerGraphicComponent (containerName, + "labelPlayers" + + intToStr (i)); + labelPlayers[i].init (xoffset - 1, + setupPos - 30 - i * rowHeight + 2); + labelPlayers[i]. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + labelPlayers[i]. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + + labelPlayerStatus[i].registerGraphicComponent (containerName, + "labelPlayerStatus" + + intToStr (i)); + labelPlayerStatus[i].init (xoffset + 14, + setupPos - 30 - i * rowHeight + 2); + labelPlayerNames[i].registerGraphicComponent (containerName, + "labelPlayerNames" + + intToStr (i)); + labelPlayerNames[i].init (xoffset + 30, + setupPos - 30 - i * rowHeight); + + listBoxControls[i].registerGraphicComponent (containerName, + "listBoxControls" + + intToStr (i)); + listBoxControls[i].init (xoffset + 160, + setupPos - 30 - i * rowHeight, 174); + + buttonBlockPlayers[i].registerGraphicComponent (containerName, + "buttonBlockPlayers" + + intToStr (i)); +//buttonBlockPlayers[i].init(xoffset+355, setupPos-30-i*rowHeight, 70); + buttonBlockPlayers[i].init (xoffset + 185, + setupPos - 30 - i * rowHeight, 124); + buttonBlockPlayers[i].setText (lang.getString ("BlockPlayer")); + buttonBlockPlayers[i]. + setFont (CoreData::getInstance ().getDisplayFontSmall ()); + buttonBlockPlayers[i]. + setFont3D (CoreData::getInstance ().getDisplayFontSmall3D ()); + + listBoxRMultiplier[i].registerGraphicComponent (containerName, + "listBoxRMultiplier" + + intToStr (i)); + listBoxRMultiplier[i].init (xoffset + 336, + setupPos - 30 - i * rowHeight, 70); + + listBoxFactions[i].registerGraphicComponent (containerName, + "listBoxFactions" + + intToStr (i)); + listBoxFactions[i].init (xoffset + 411, + setupPos - 30 - i * rowHeight, 247); + listBoxFactions[i].setLeftControlled (true); + + listBoxTeams[i].registerGraphicComponent (containerName, + "listBoxTeams" + + intToStr (i)); + listBoxTeams[i].init (xoffset + 660, + setupPos - 30 - i * rowHeight, 60); + listBoxTeams[i].setLighted (true); + + labelNetStatus[i].registerGraphicComponent (containerName, + "labelNetStatus" + + intToStr (i)); + labelNetStatus[i].init (xoffset + 726, + setupPos - 30 - i * rowHeight, 60); + labelNetStatus[i]. + setFont (CoreData::getInstance ().getDisplayFontSmall ()); + labelNetStatus[i]. + setFont3D (CoreData::getInstance ().getDisplayFontSmall3D ()); + } + + buttonClearBlockedPlayers.registerGraphicComponent (containerName, + "buttonClearBlockedPlayers"); + buttonClearBlockedPlayers.init (xoffset + 160, + setupPos - 30 - 8 * rowHeight, + 174 + 2 + 70); + + labelControl.registerGraphicComponent (containerName, "labelControl"); + labelControl.init (xoffset + 160, setupPos, 50, GraphicListBox::defH, + true); + labelControl.setText (lang.getString ("Control")); + + labelRMultiplier.registerGraphicComponent (containerName, + "labelRMultiplier"); + labelRMultiplier.init (xoffset + 310, setupPos, 50, + GraphicListBox::defH, true); + + labelFaction.registerGraphicComponent (containerName, "labelFaction"); + labelFaction.init (xoffset + 411, setupPos, 50, GraphicListBox::defH, + true); + labelFaction.setText (lang.getString ("Faction")); + + labelTeam.registerGraphicComponent (containerName, "labelTeam"); + labelTeam.init (xoffset + 660, setupPos, 50, GraphicListBox::defH, + true); + labelTeam.setText (lang.getString ("Team")); + + labelControl.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelControl.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelRMultiplier.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelRMultiplier. + setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelFaction.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelFaction.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelTeam.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelTeam.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + +//xoffset=100; + +//texts + buttonClearBlockedPlayers. + setText (lang.getString ("BlockPlayerClear")); + buttonReturn.setText (lang.getString ("Return")); + buttonPlayNow.setText (lang.getString ("PlayNow")); + buttonRestoreLastSettings.setText (lang.getString + ("ReloadLastGameSettings")); + + vector < string > controlItems; + controlItems.push_back (lang.getString ("Closed")); + controlItems.push_back (lang.getString ("CpuEasy")); + controlItems.push_back (lang.getString ("Cpu")); + controlItems.push_back (lang.getString ("CpuUltra")); + controlItems.push_back (lang.getString ("CpuMega")); + controlItems.push_back (lang.getString ("Network")); + controlItems.push_back (lang.getString ("NetworkUnassigned")); + controlItems.push_back (lang.getString ("Human")); + + if (config.getBool ("EnableNetworkCpu", "false") == true) + { + controlItems.push_back (lang.getString ("NetworkCpuEasy")); + controlItems.push_back (lang.getString ("NetworkCpu")); + controlItems.push_back (lang.getString ("NetworkCpuUltra")); + controlItems.push_back (lang.getString ("NetworkCpuMega")); + } + + vector < string > teamItems; + for (int i = 1; i <= GameConstants::maxPlayers; ++i) + { + teamItems.push_back (intToStr (i)); + } + for (int i = GameConstants::maxPlayers + 1; + i <= GameConstants::maxPlayers + GameConstants::specialFactions; + ++i) + { + teamItems.push_back (intToStr (i)); + } + + reloadFactions (false, ""); + + if (factionFiles.empty () == true) + { + showGeneralError = true; + generalErrorToShow = + "[#1] There are no factions for the tech tree [" + + techTreeFiles[listBoxTechTree.getSelectedItemIndex ()] + "]"; + } + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + labelPlayerStatus[i].setText (" "); + labelPlayerStatus[i]. + setTexture (CoreData::getInstance ().getStatusReadyTexture ()); + labelPlayerStatus[i].setH (16); + labelPlayerStatus[i].setW (12); + +//labelPlayers[i].setText(lang.getString("Player")+" "+intToStr(i)); + labelPlayers[i].setText (intToStr (i + 1)); + labelPlayerNames[i].setText ("*"); + labelPlayerNames[i].setMaxEditWidth (16); + labelPlayerNames[i].setMaxEditRenderWidth (127); + + listBoxTeams[i].setItems (teamItems); + listBoxTeams[i].setSelectedItemIndex (i); + lastSelectedTeamIndex[i] = listBoxTeams[i].getSelectedItemIndex (); + + listBoxControls[i].setItems (controlItems); + listBoxRMultiplier[i].setItems (rMultiplier); + listBoxRMultiplier[i].setSelectedItem ("1.0"); + labelNetStatus[i].setText (""); + } + + loadMapInfo (Config::getMapPath (getCurrentMapFile ()), &mapInfo, + true); + labelMapInfo.setText (mapInfo.desc); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +//init controllers + if (serverInitError == false) + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + if (serverInterface == NULL) + { + throw megaglest_runtime_error ("serverInterface == NULL"); + } + if (this->headlessServerMode == true) + { + listBoxControls[0].setSelectedItemIndex (ctNetwork); + updateResourceMultiplier (0); + } + else + { + setSlotHuman (0); + updateResourceMultiplier (0); + } + labelPlayerNames[0].setText (""); + labelPlayerNames[0].setText (getHumanPlayerName ()); + + if (openNetworkSlots == true) + { + for (int i = 1; i < mapInfo.players; ++i) + { + listBoxControls[i].setSelectedItemIndex (ctNetwork); + } + } + else + { + listBoxControls[1].setSelectedItemIndex (ctCpu); + } + updateControlers (); + updateNetworkSlots (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + +// Ensure we have set the gamesettings at least once + GameSettings gameSettings; + loadGameSettings (&gameSettings); + + serverInterface->setGameSettings (&gameSettings, false); + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + updateAllResourceMultiplier (); + +// write hint to console: + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + + console.addLine (lang.getString ("ToSwitchOffMusicPress") + " - \"" + + configKeys.getString ("ToggleMusic") + "\""); + + chatManager.init (&console, -1, true); + + GraphicComponent::applyAllCustomProperties (containerName); + + static string mutexOwnerId = + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + string ("_") + intToStr (__LINE__); + publishToMasterserverThread = + new SimpleTaskThread (this, 0, 300, false, + (void *) tnt_MASTERSERVER); + publishToMasterserverThread->setUniqueID (mutexOwnerId); + + static string mutexOwnerId2 = + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + string ("_") + intToStr (__LINE__); + publishToClientsThread = + new SimpleTaskThread (this, 0, 200, false, (void *) tnt_CLIENTS, + false); + publishToClientsThread->setUniqueID (mutexOwnerId2); + + publishToMasterserverThread->start (); + publishToClientsThread->start (); + + if (openNetworkSlots == true) + { + string data_path = + getGameReadWritePath (GameConstants::path_data_CacheLookupKey); + + if (fileExists (data_path + DEFAULT_NETWORKGAME_FILENAME) == true) + loadGameSettings (data_path + DEFAULT_NETWORKGAME_FILENAME); + } + else + { + string data_path = + getGameReadWritePath (GameConstants::path_data_CacheLookupKey); + + if (fileExists (data_path + DEFAULT_GAME_FILENAME) == true) + loadGameSettings (data_path + DEFAULT_GAME_FILENAME); + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + throw megaglest_runtime_error (szBuf); + } } - buttonClearBlockedPlayers.registerGraphicComponent(containerName,"buttonClearBlockedPlayers"); - buttonClearBlockedPlayers.init(xoffset+160, setupPos-30-8*rowHeight, 174+2+70); + string MenuStateCustomGame::createGameName (string controllingPlayer) + { + Config & config = Config::getInstance (); + string serverTitle = config.getString ("ServerTitle", ""); - labelControl.registerGraphicComponent(containerName,"labelControl"); - labelControl.init(xoffset+160, setupPos, 50, GraphicListBox::defH, true); - labelControl.setText(lang.getString("Control")); - - labelRMultiplier.registerGraphicComponent(containerName,"labelRMultiplier"); - labelRMultiplier.init(xoffset+310, setupPos, 50, GraphicListBox::defH, true); - - labelFaction.registerGraphicComponent(containerName,"labelFaction"); - labelFaction.init(xoffset+411, setupPos, 50, GraphicListBox::defH, true); - labelFaction.setText(lang.getString("Faction")); - - labelTeam.registerGraphicComponent(containerName,"labelTeam"); - labelTeam.init(xoffset+660, setupPos, 50, GraphicListBox::defH, true); - labelTeam.setText(lang.getString("Team")); - - labelControl.setFont(CoreData::getInstance().getMenuFontBig()); - labelControl.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelRMultiplier.setFont(CoreData::getInstance().getMenuFontBig()); - labelRMultiplier.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelFaction.setFont(CoreData::getInstance().getMenuFontBig()); - labelFaction.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelTeam.setFont(CoreData::getInstance().getMenuFontBig()); - labelTeam.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - //xoffset=100; - - //texts - buttonClearBlockedPlayers.setText(lang.getString("BlockPlayerClear")); - buttonReturn.setText(lang.getString("Return")); - buttonPlayNow.setText(lang.getString("PlayNow")); - buttonRestoreLastSettings.setText(lang.getString("ReloadLastGameSettings")); - - vector controlItems; - controlItems.push_back(lang.getString("Closed")); - controlItems.push_back(lang.getString("CpuEasy")); - controlItems.push_back(lang.getString("Cpu")); - controlItems.push_back(lang.getString("CpuUltra")); - controlItems.push_back(lang.getString("CpuMega")); - controlItems.push_back(lang.getString("Network")); - controlItems.push_back(lang.getString("NetworkUnassigned")); - controlItems.push_back(lang.getString("Human")); - - if(config.getBool("EnableNetworkCpu","false") == true) { - controlItems.push_back(lang.getString("NetworkCpuEasy")); - controlItems.push_back(lang.getString("NetworkCpu")); - controlItems.push_back(lang.getString("NetworkCpuUltra")); - controlItems.push_back(lang.getString("NetworkCpuMega")); - } - - vector teamItems; - for(int i = 1; i <= GameConstants::maxPlayers; ++i) { - teamItems.push_back(intToStr(i)); - } - for(int i = GameConstants::maxPlayers + 1; i <= GameConstants::maxPlayers + GameConstants::specialFactions; ++i) { - teamItems.push_back(intToStr(i)); - } - - reloadFactions(false,""); - - if(factionFiles.empty() == true) { - showGeneralError=true; - generalErrorToShow = "[#1] There are no factions for the tech tree [" + techTreeFiles[listBoxTechTree.getSelectedItemIndex()] + "]"; + if (serverTitle != "" && controllingPlayer == "") + { + return serverTitle; + } + else if (this->headlessServerMode == true) + { + if (controllingPlayer != "") + { + return controllingPlayer + " controls"; + } + else + { + return "[H] " + defaultPlayerName; + } + } + else + { + string defaultPlayerNameEnd = + defaultPlayerName.substr (defaultPlayerName.size () - 1, 1); + if (defaultPlayerNameEnd == "s") + { + return defaultPlayerName + "' game"; + } + else + { + return defaultPlayerName + "'s game"; + } + } } - for(int i=0; i < GameConstants::maxPlayers; ++i) { - labelPlayerStatus[i].setText(" "); - labelPlayerStatus[i].setTexture(CoreData::getInstance().getStatusReadyTexture()); - labelPlayerStatus[i].setH(16); - labelPlayerStatus[i].setW(12); + void MenuStateCustomGame::reloadUI () + { + Lang & lang = Lang::getInstance (); + Config & config = Config::getInstance (); - //labelPlayers[i].setText(lang.getString("Player")+" "+intToStr(i)); - labelPlayers[i].setText(intToStr(i+1)); - labelPlayerNames[i].setText("*"); - labelPlayerNames[i].setMaxEditWidth(16); - labelPlayerNames[i].setMaxEditRenderWidth(127); + console.resetFonts (); + mainMessageBox.init (lang.getString ("Ok"), 500, 300); - listBoxTeams[i].setItems(teamItems); - listBoxTeams[i].setSelectedItemIndex(i); - lastSelectedTeamIndex[i] = listBoxTeams[i].getSelectedItemIndex(); - listBoxControls[i].setItems(controlItems); - listBoxRMultiplier[i].setItems(rMultiplier); - listBoxRMultiplier[i].setSelectedItem("1.0"); - labelNetStatus[i].setText(""); + if (EndsWith (glestVersionString, "-dev") == false) + { + labelLocalGameVersion.setText (glestVersionString); + } + else + { +//labelLocalGameVersion.setText(glestVersionString + " [" + getCompileDateTime() + ", " + getGITRevisionString() + "]"); + labelLocalGameVersion.setText (glestVersionString + " [" + + getGITRevisionString () + "]"); + } + +//vector teamItems, controlItems, results , rMultiplier; + + string ipText = "none"; + std::vector < std::string > ipList = Socket::getLocalIPAddressList (); + if (ipList.empty () == false) + { + ipText = ""; + for (int idx = 0; idx < (int) ipList.size (); idx++) + { + string ip = ipList[idx]; + if (ipText != "") + { + ipText += ", "; + } + ipText += ip; + } + } + string serverPort = config.getString ("PortServer", + intToStr + (GameConstants:: + serverPort).c_str ()); + string externalPort = + config.getString ("PortExternal", serverPort.c_str ()); + + labelLocalIP.setText (lang.getString ("LanIP") + ipText + " ( " + + serverPort + " / " + externalPort + " )"); + + labelMap.setText (lang.getString ("Map")); + + labelMapFilter.setText (lang.getString ("MapFilter")); + + labelTileset.setText (lang.getString ("Tileset")); + + labelTechTree.setText (lang.getString ("TechTree")); + + labelAllowNativeLanguageTechtree.setText (lang.getString + ("AllowNativeLanguageTechtree")); + + labelFogOfWar.setText (lang.getString ("FogOfWar")); + + std::vector < std::string > listBoxData; + listBoxData.push_back (lang.getString ("Enabled")); + listBoxData.push_back (lang.getString ("Explored")); + listBoxData.push_back (lang.getString ("Disabled")); + listBoxFogOfWar.setItems (listBoxData); + +// Allow Observers + labelAllowObservers.setText (lang.getString ("AllowObservers")); + +// Allow Switch Team Mode + labelEnableSwitchTeamMode. + setText (lang.getString ("EnableSwitchTeamMode")); + + labelAllowInGameJoinPlayer.setText (lang.getString + ("AllowInGameJoinPlayer")); + + labelAllowTeamUnitSharing. + setText (lang.getString ("AllowTeamUnitSharing")); + labelAllowTeamResourceSharing. + setText (lang.getString ("AllowTeamResourceSharing")); + + labelAISwitchTeamAcceptPercent.setText (lang.getString + ("AISwitchTeamAcceptPercent")); + + listBoxData.clear (); + +// Advanced Options + labelAdvanced.setText (lang.getString ("AdvancedGameOptions")); + + labelPublishServer.setText (lang.getString ("PublishServer")); + + labelGameName.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelGameName.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + + labelGameName.setText (createGameName ()); + + labelNetworkPauseGameForLaggedClients.setText (lang.getString + ("NetworkPauseGameForLaggedClients")); + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + buttonBlockPlayers[i].setText (lang.getString ("BlockPlayer")); + } + + labelControl.setText (lang.getString ("Control")); + + labelFaction.setText (lang.getString ("Faction")); + + labelTeam.setText (lang.getString ("Team")); + + labelControl.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelControl.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelRMultiplier.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelRMultiplier. + setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelFaction.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelFaction.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelTeam.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelTeam.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + +//texts + buttonClearBlockedPlayers.setText (lang.getString ("BlockPlayerClear")); + buttonReturn.setText (lang.getString ("Return")); + buttonPlayNow.setText (lang.getString ("PlayNow")); + buttonRestoreLastSettings.setText (lang.getString + ("ReloadLastGameSettings")); + + vector < string > controlItems; + controlItems.push_back (lang.getString ("Closed")); + controlItems.push_back (lang.getString ("CpuEasy")); + controlItems.push_back (lang.getString ("Cpu")); + controlItems.push_back (lang.getString ("CpuUltra")); + controlItems.push_back (lang.getString ("CpuMega")); + controlItems.push_back (lang.getString ("Network")); + controlItems.push_back (lang.getString ("NetworkUnassigned")); + controlItems.push_back (lang.getString ("Human")); + + if (config.getBool ("EnableNetworkCpu", "false") == true) + { + controlItems.push_back (lang.getString ("NetworkCpuEasy")); + controlItems.push_back (lang.getString ("NetworkCpu")); + controlItems.push_back (lang.getString ("NetworkCpuUltra")); + controlItems.push_back (lang.getString ("NetworkCpuMega")); + } + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + labelPlayers[i].setText (intToStr (i + 1)); + + listBoxControls[i].setItems (controlItems); + } + + labelFallbackCpuMultiplier.setText (lang.getString + ("FallbackCpuMultiplier")); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + vector < string > playerStatuses; + playerStatuses.push_back (lang.getString ("PlayerStatusSetup")); + playerStatuses.push_back (lang.getString ("PlayerStatusBeRightBack")); + playerStatuses.push_back (lang.getString ("PlayerStatusReady")); + listBoxPlayerStatus.setItems (playerStatuses); + + labelScenario.setText (lang.getString ("Scenario")); + + reloadFactions (true, + (checkBoxScenario.getValue () == + true ? + scenarioFiles[listBoxScenario.getSelectedItemIndex ()] + : "")); + +// write hint to console: + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + + console.addLine (lang.getString ("ToSwitchOffMusicPress") + " - \"" + + configKeys.getString ("ToggleMusic") + "\""); + + chatManager.init (&console, -1, true); + + GraphicComponent::reloadFontsForRegisterGraphicComponents + (containerName); } - loadMapInfo(Config::getMapPath(getCurrentMapFile()), &mapInfo, true); - labelMapInfo.setText(mapInfo.desc); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - //init controllers - if(serverInitError == false) { - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - if(serverInterface == NULL) { - throw megaglest_runtime_error("serverInterface == NULL"); - } - if(this->headlessServerMode == true) { - listBoxControls[0].setSelectedItemIndex(ctNetwork); - updateResourceMultiplier(0); - } - else { - setSlotHuman(0); - updateResourceMultiplier(0); - } - labelPlayerNames[0].setText(""); - labelPlayerNames[0].setText(getHumanPlayerName()); - - if(openNetworkSlots == true) { - for(int i= 1; i< mapInfo.players; ++i){ - listBoxControls[i].setSelectedItemIndex(ctNetwork); - } - } - else{ - listBoxControls[1].setSelectedItemIndex(ctCpu); - } - updateControlers(); - updateNetworkSlots(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - // Ensure we have set the gamesettings at least once - GameSettings gameSettings; - loadGameSettings(&gameSettings); - - serverInterface->setGameSettings(&gameSettings,false); - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - updateAllResourceMultiplier(); - - // write hint to console: - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - - console.addLine(lang.getString("ToSwitchOffMusicPress") + " - \"" + configKeys.getString("ToggleMusic") + "\""); - - chatManager.init(&console, -1,true); - - GraphicComponent::applyAllCustomProperties(containerName); - - static string mutexOwnerId = string(extractFileFromDirectoryPath(__FILE__).c_str()) + string("_") + intToStr(__LINE__); - publishToMasterserverThread = new SimpleTaskThread(this,0,300,false,(void *)tnt_MASTERSERVER); - publishToMasterserverThread->setUniqueID(mutexOwnerId); - - static string mutexOwnerId2 = string(extractFileFromDirectoryPath(__FILE__).c_str()) + string("_") + intToStr(__LINE__); - publishToClientsThread = new SimpleTaskThread(this,0,200,false,(void *)tnt_CLIENTS,false); - publishToClientsThread->setUniqueID(mutexOwnerId2); - - publishToMasterserverThread->start(); - publishToClientsThread->start(); - - if(openNetworkSlots == true) { - string data_path = getGameReadWritePath(GameConstants::path_data_CacheLookupKey); - - if(fileExists(data_path + DEFAULT_NETWORKGAME_FILENAME) == true) - loadGameSettings(data_path + DEFAULT_NETWORKGAME_FILENAME); - } - else { - string data_path = getGameReadWritePath(GameConstants::path_data_CacheLookupKey); - - if(fileExists(data_path + DEFAULT_GAME_FILENAME) == true) - loadGameSettings(data_path + DEFAULT_GAME_FILENAME); - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - throw megaglest_runtime_error(szBuf); - } -} - -string MenuStateCustomGame::createGameName(string controllingPlayer){ - Config &config = Config::getInstance(); - string serverTitle=config.getString("ServerTitle",""); - - if(serverTitle!="" && controllingPlayer == ""){ - return serverTitle; - } - else if (this->headlessServerMode == true) { - if (controllingPlayer != "") { - return controllingPlayer + " controls"; - } else { - return "[H] " + defaultPlayerName; - } - } else { - string defaultPlayerNameEnd = defaultPlayerName.substr(defaultPlayerName.size()-1, 1); - if(defaultPlayerNameEnd == "s") { - return defaultPlayerName+"' game"; - } else { - return defaultPlayerName+"'s game"; - } - } -} - -void MenuStateCustomGame::reloadUI() { - Lang &lang= Lang::getInstance(); - Config &config = Config::getInstance(); - - console.resetFonts(); - mainMessageBox.init(lang.getString("Ok"),500,300); - - - if(EndsWith(glestVersionString, "-dev") == false){ - labelLocalGameVersion.setText(glestVersionString); - } - else { - //labelLocalGameVersion.setText(glestVersionString + " [" + getCompileDateTime() + ", " + getGITRevisionString() + "]"); - labelLocalGameVersion.setText(glestVersionString + " [" + getGITRevisionString() + "]"); - } - - //vector teamItems, controlItems, results , rMultiplier; - - string ipText = "none"; - std::vector ipList = Socket::getLocalIPAddressList(); - if(ipList.empty() == false) { - ipText = ""; - for(int idx = 0; idx < (int)ipList.size(); idx++) { - string ip = ipList[idx]; - if(ipText != "") { - ipText += ", "; - } - ipText += ip; - } - } - string serverPort=config.getString("PortServer", intToStr(GameConstants::serverPort).c_str()); - string externalPort=config.getString("PortExternal", serverPort.c_str()); - - labelLocalIP.setText(lang.getString("LanIP") + ipText + " ( "+serverPort+" / "+externalPort+" )"); - - labelMap.setText(lang.getString("Map")); - - labelMapFilter.setText(lang.getString("MapFilter")); - - labelTileset.setText(lang.getString("Tileset")); - - labelTechTree.setText(lang.getString("TechTree")); - - labelAllowNativeLanguageTechtree.setText(lang.getString("AllowNativeLanguageTechtree")); - - labelFogOfWar.setText(lang.getString("FogOfWar")); - - std::vector listBoxData; - listBoxData.push_back(lang.getString("Enabled")); - listBoxData.push_back(lang.getString("Explored")); - listBoxData.push_back(lang.getString("Disabled")); - listBoxFogOfWar.setItems(listBoxData); - - // Allow Observers - labelAllowObservers.setText(lang.getString("AllowObservers")); - - // Allow Switch Team Mode - labelEnableSwitchTeamMode.setText(lang.getString("EnableSwitchTeamMode")); - - labelAllowInGameJoinPlayer.setText(lang.getString("AllowInGameJoinPlayer")); - - labelAllowTeamUnitSharing.setText(lang.getString("AllowTeamUnitSharing")); - labelAllowTeamResourceSharing.setText(lang.getString("AllowTeamResourceSharing")); - - labelAISwitchTeamAcceptPercent.setText(lang.getString("AISwitchTeamAcceptPercent")); - - listBoxData.clear(); - - // Advanced Options - labelAdvanced.setText(lang.getString("AdvancedGameOptions")); - - labelPublishServer.setText(lang.getString("PublishServer")); - - labelGameName.setFont(CoreData::getInstance().getMenuFontBig()); - labelGameName.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - labelGameName.setText(createGameName()); - - labelNetworkPauseGameForLaggedClients.setText(lang.getString("NetworkPauseGameForLaggedClients")); - - for(int i=0; i < GameConstants::maxPlayers; ++i) { - buttonBlockPlayers[i].setText(lang.getString("BlockPlayer")); - } - - labelControl.setText(lang.getString("Control")); - - labelFaction.setText(lang.getString("Faction")); - - labelTeam.setText(lang.getString("Team")); - - labelControl.setFont(CoreData::getInstance().getMenuFontBig()); - labelControl.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelRMultiplier.setFont(CoreData::getInstance().getMenuFontBig()); - labelRMultiplier.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelFaction.setFont(CoreData::getInstance().getMenuFontBig()); - labelFaction.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelTeam.setFont(CoreData::getInstance().getMenuFontBig()); - labelTeam.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - //texts - buttonClearBlockedPlayers.setText(lang.getString("BlockPlayerClear")); - buttonReturn.setText(lang.getString("Return")); - buttonPlayNow.setText(lang.getString("PlayNow")); - buttonRestoreLastSettings.setText(lang.getString("ReloadLastGameSettings")); - - vector controlItems; - controlItems.push_back(lang.getString("Closed")); - controlItems.push_back(lang.getString("CpuEasy")); - controlItems.push_back(lang.getString("Cpu")); - controlItems.push_back(lang.getString("CpuUltra")); - controlItems.push_back(lang.getString("CpuMega")); - controlItems.push_back(lang.getString("Network")); - controlItems.push_back(lang.getString("NetworkUnassigned")); - controlItems.push_back(lang.getString("Human")); - - if(config.getBool("EnableNetworkCpu","false") == true) { - controlItems.push_back(lang.getString("NetworkCpuEasy")); - controlItems.push_back(lang.getString("NetworkCpu")); - controlItems.push_back(lang.getString("NetworkCpuUltra")); - controlItems.push_back(lang.getString("NetworkCpuMega")); - } - - for(int i=0; i < GameConstants::maxPlayers; ++i) { - labelPlayers[i].setText(intToStr(i+1)); - - listBoxControls[i].setItems(controlItems); - } - - labelFallbackCpuMultiplier.setText(lang.getString("FallbackCpuMultiplier")); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - vector playerStatuses; - playerStatuses.push_back(lang.getString("PlayerStatusSetup")); - playerStatuses.push_back(lang.getString("PlayerStatusBeRightBack")); - playerStatuses.push_back(lang.getString("PlayerStatusReady")); - listBoxPlayerStatus.setItems(playerStatuses); - - labelScenario.setText(lang.getString("Scenario")); - - reloadFactions(true,(checkBoxScenario.getValue() == true ? scenarioFiles[listBoxScenario.getSelectedItemIndex()] : "")); - - // write hint to console: - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - - console.addLine(lang.getString("ToSwitchOffMusicPress") + " - \"" + configKeys.getString("ToggleMusic") + "\""); - - chatManager.init(&console, -1,true); - - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} - -void MenuStateCustomGame::cleanupThread(SimpleTaskThread **thread) { - //printf("LINE: %d *thread = %p\n",__LINE__,*thread); - - if(thread != NULL && *thread != NULL) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1 cleanupThread callingThread [%p]\n",*thread); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - SimpleTaskThread *threadPtr = *thread; - int value = threadPtr->getUserdataAsInt(); - THREAD_NOTIFIER_TYPE threadType = (THREAD_NOTIFIER_TYPE)value; - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1. cleanupThread callingThread [%p] value = %d\n",*thread,value); + void MenuStateCustomGame::cleanupThread (SimpleTaskThread ** thread) + { +//printf("LINE: %d *thread = %p\n",__LINE__,*thread); + + if (thread != NULL && *thread != NULL) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#1 cleanupThread callingThread [%p]\n", *thread); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + SimpleTaskThread *threadPtr = *thread; + int value = threadPtr->getUserdataAsInt (); + THREAD_NOTIFIER_TYPE threadType = (THREAD_NOTIFIER_TYPE) value; + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#1. cleanupThread callingThread [%p] value = %d\n", + *thread, value); needToBroadcastServerSettings = false; needToRepublishToMasterserver = false; - lastNetworkPing = time(NULL); - threadPtr->setThreadOwnerValid(false); + lastNetworkPing = time (NULL); + threadPtr->setThreadOwnerValid (false); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1.. cleanupThread callingThread [%p] value = %d\n",*thread,value); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#1.. cleanupThread callingThread [%p] value = %d\n", + *thread, value); - if(forceWaitForShutdown == true) { - time_t elapsed = time(NULL); - threadPtr->signalQuit(); + if (forceWaitForShutdown == true) + { + time_t elapsed = time (NULL); + threadPtr->signalQuit (); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1a cleanupThread callingThread [%p]\n",*thread); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#1a cleanupThread callingThread [%p]\n", *thread); - for(;(threadPtr->canShutdown(false) == false || - threadPtr->getRunningStatus() == true) && - difftime((long int)time(NULL),elapsed) <= 15;) { - //sleep(150); - } + for (; (threadPtr->canShutdown (false) == false || + threadPtr->getRunningStatus () == true) && + difftime ((long int) time (NULL), elapsed) <= 15;) + { +//sleep(150); + } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1b cleanupThread callingThread [%p]\n",*thread); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#1b cleanupThread callingThread [%p]\n", *thread); - if(threadPtr->canShutdown(true) == true && - threadPtr->getRunningStatus() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1c cleanupThread callingThread [%p]\n",*thread); + if (threadPtr->canShutdown (true) == true && + threadPtr->getRunningStatus () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#1c cleanupThread callingThread [%p]\n", *thread); - delete threadPtr; - //printf("LINE: %d *thread = %p\n",__LINE__,*thread); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - else { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1d cleanupThread callingThread [%p]\n",*thread); + delete threadPtr; +//printf("LINE: %d *thread = %p\n",__LINE__,*thread); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + } + else + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#1d cleanupThread callingThread [%p]\n", *thread); - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error cannot shutdown thread\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - //SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("%s",szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d] Error cannot shutdown thread\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); +//SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("%s", szBuf); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", + szBuf); - if(threadType == tnt_MASTERSERVER) { - threadPtr->setOverrideShutdownTask(shutdownTaskStatic); - } - threadPtr->setDeleteSelfOnExecutionDone(true); - threadPtr->setDeleteAfterExecute(true); - //printf("LINE: %d *thread = %p\n",__LINE__,*thread); - } - threadPtr = NULL; - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1e cleanupThread callingThread [%p]\n",*thread); + if (threadType == tnt_MASTERSERVER) + { + threadPtr->setOverrideShutdownTask (shutdownTaskStatic); + } + threadPtr->setDeleteSelfOnExecutionDone (true); + threadPtr->setDeleteAfterExecute (true); +//printf("LINE: %d *thread = %p\n",__LINE__,*thread); + } + threadPtr = NULL; +//if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1e cleanupThread callingThread [%p]\n",*thread); } - else { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1f cleanupThread callingThread [%p]\n",*thread); - threadPtr->signalQuit(); - sleep(0); - if(threadPtr->canShutdown(true) == true && - threadPtr->getRunningStatus() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1g cleanupThread callingThread [%p]\n",*thread); - delete threadPtr; - //printf("LINE: %d *thread = %p\n",__LINE__,*thread); - } - else { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#1h cleanupThread callingThread [%p]\n",*thread); - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error cannot shutdown thread\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - //SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("%s",szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); + else + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#1f cleanupThread callingThread [%p]\n", *thread); + threadPtr->signalQuit (); + sleep (0); + if (threadPtr->canShutdown (true) == true && + threadPtr->getRunningStatus () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#1g cleanupThread callingThread [%p]\n", *thread); + delete threadPtr; +//printf("LINE: %d *thread = %p\n",__LINE__,*thread); + } + else + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#1h cleanupThread callingThread [%p]\n", *thread); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d] Error cannot shutdown thread\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); +//SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("%s", szBuf); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", + szBuf); - if(threadType == tnt_MASTERSERVER) { - threadPtr->setOverrideShutdownTask(shutdownTaskStatic); - } - threadPtr->setDeleteSelfOnExecutionDone(true); - threadPtr->setDeleteAfterExecute(true); - //printf("LINE: %d *thread = %p\n",__LINE__,*thread); - } + if (threadType == tnt_MASTERSERVER) + { + threadPtr->setOverrideShutdownTask (shutdownTaskStatic); + } + threadPtr->setDeleteSelfOnExecutionDone (true); + threadPtr->setDeleteAfterExecute (true); +//printf("LINE: %d *thread = %p\n",__LINE__,*thread); + } } *thread = NULL; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n#2 cleanupThread callingThread [%p]\n",*thread); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\n#2 cleanupThread callingThread [%p]\n", *thread); + } +//printf("LINE: %d *thread = %p\n",__LINE__,*thread); } - //printf("LINE: %d *thread = %p\n",__LINE__,*thread); -} -void MenuStateCustomGame::cleanup() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + void MenuStateCustomGame::cleanup () + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - if(publishToMasterserverThread) { - //printf("LINE: %d\n",__LINE__); - cleanupThread(&publishToMasterserverThread); - } - if(publishToClientsThread) { - //printf("LINE: %d\n",__LINE__); - cleanupThread(&publishToClientsThread); - } + if (publishToMasterserverThread) + { +//printf("LINE: %d\n",__LINE__); + cleanupThread (&publishToMasterserverThread); + } + if (publishToClientsThread) + { +//printf("LINE: %d\n",__LINE__); + cleanupThread (&publishToClientsThread); + } - //printf("LINE: %d\n",__LINE__); +//printf("LINE: %d\n",__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - cleanupMapPreviewTexture(); + cleanupMapPreviewTexture (); - if(factionVideo != NULL) { - factionVideo->closePlayer(); - delete factionVideo; - factionVideo = NULL; - } + if (factionVideo != NULL) + { + factionVideo->closePlayer (); + delete factionVideo; + factionVideo = NULL; + } - if(forceWaitForShutdown == true) { - NetworkManager::getInstance().end(); - } + if (forceWaitForShutdown == true) + { + NetworkManager::getInstance ().end (); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } -MenuStateCustomGame::~MenuStateCustomGame() { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + MenuStateCustomGame::~MenuStateCustomGame () + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); - cleanup(); + cleanup (); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + } -void MenuStateCustomGame::returnToParentMenu() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + void MenuStateCustomGame::returnToParentMenu () + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - needToBroadcastServerSettings = false; - needToRepublishToMasterserver = false; - lastNetworkPing = time(NULL); - ParentMenuState parentMenuState = this->parentMenuState; + needToBroadcastServerSettings = false; + needToRepublishToMasterserver = false; + lastNetworkPing = time (NULL); + ParentMenuState parentMenuState = this->parentMenuState; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - forceWaitForShutdown = false; - if(parentMenuState==pMasterServer) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - cleanup(); - mainMenu->setState(new MenuStateMasterserver(program, mainMenu)); - } - else if(parentMenuState==pLanGame) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - cleanup(); - mainMenu->setState(new MenuStateJoinGame(program, mainMenu)); - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - cleanup(); - mainMenu->setState(new MenuStateNewGame(program, mainMenu)); - } + forceWaitForShutdown = false; + if (parentMenuState == pMasterServer) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + cleanup (); + mainMenu->setState (new MenuStateMasterserver (program, mainMenu)); + } + else if (parentMenuState == pLanGame) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + cleanup (); + mainMenu->setState (new MenuStateJoinGame (program, mainMenu)); + } + else + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + cleanup (); + mainMenu->setState (new MenuStateNewGame (program, mainMenu)); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } -void MenuStateCustomGame::mouseClick(int x, int y, MouseButton mouseButton) { - if(isMasterserverMode() == true) { - return; - } + void MenuStateCustomGame::mouseClick (int x, int y, + MouseButton mouseButton) + { + if (isMasterserverMode () == true) + { + return; + } - try { - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - int oldListBoxMapfilterIndex=listBoxMapFilter.getSelectedItemIndex(); + try + { + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + int oldListBoxMapfilterIndex = + listBoxMapFilter.getSelectedItemIndex (); - if(mainMessageBox.getEnabled()){ - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - soundRenderer.playFx(coreData.getClickSoundA()); - if(button == 0) { - mainMessageBox.setEnabled(false); + if (mainMessageBox.getEnabled ()) + { + int button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (button == 0) + { + mainMessageBox.setEnabled (false); + } + } + } + else + { + string advanceToItemStartingWith = ""; + if (::Shared::Platform::Window::isKeyStateModPressed (KMOD_SHIFT) == + true) + { + const wchar_t lastKey =::Shared::Platform:: + Window::extractLastKeyPressed (); +// string helpString = ""; +// helpString = lastKey; +// printf("lastKey = '%s'\n",helpString.c_str()); + advanceToItemStartingWith = lastKey; + } + + if (mapPreviewTexture != NULL) + { +// printf("X: %d Y: %d [%d, %d, %d, %d]\n", +// x, y, +// this->render_mapPreviewTexture_X, this->render_mapPreviewTexture_X + this->render_mapPreviewTexture_W, +// this->render_mapPreviewTexture_Y, this->render_mapPreviewTexture_Y + this->render_mapPreviewTexture_H); + + if (x >= this->render_mapPreviewTexture_X + && x <= + this->render_mapPreviewTexture_X + + this->render_mapPreviewTexture_W + && y >= this->render_mapPreviewTexture_Y + && y <= + this->render_mapPreviewTexture_Y + + this->render_mapPreviewTexture_H) + { + + if (this->render_mapPreviewTexture_X == + mapPreviewTexture_X + && this->render_mapPreviewTexture_Y == + mapPreviewTexture_Y + && this->render_mapPreviewTexture_W == + mapPreviewTexture_W + && this->render_mapPreviewTexture_H == mapPreviewTexture_H) + { + + const Metrics & metrics = Metrics::getInstance (); + + this->render_mapPreviewTexture_X = 0; + this->render_mapPreviewTexture_Y = 0; + this->render_mapPreviewTexture_W = metrics.getVirtualW (); + this->render_mapPreviewTexture_H = metrics.getVirtualH (); + this->zoomedMap = true; + + cleanupMapPreviewTexture (); + } + else + { + this->render_mapPreviewTexture_X = mapPreviewTexture_X; + this->render_mapPreviewTexture_Y = mapPreviewTexture_Y; + this->render_mapPreviewTexture_W = mapPreviewTexture_W; + this->render_mapPreviewTexture_H = mapPreviewTexture_H; + this->zoomedMap = false; + + cleanupMapPreviewTexture (); + } + return; + } + if (this->zoomedMap == true) + { + return; + } + } + + if (activeInputLabel != NULL + && !(activeInputLabel->mouseClick (x, y))) + { + setActiveInputLabel (NULL); + } + if (buttonReturn.mouseClick (x, y) || serverInitError == true) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + soundRenderer.playFx (coreData.getClickSoundA ()); + + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + needToBroadcastServerSettings = false; + needToRepublishToMasterserver = false; + lastNetworkPing = time (NULL); + safeMutex.ReleaseLock (); + safeMutexCLI.ReleaseLock (); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + returnToParentMenu (); + return; + } + else if (buttonPlayNow.mouseClick (x, y) + && buttonPlayNow.getEnabled ()) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + PlayNow (true); + return; + } + else if (buttonRestoreLastSettings.mouseClick (x, y) + && buttonRestoreLastSettings.getEnabled ()) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + + RestoreLastGameSettings (); + } + else if (listBoxMap.mouseClick (x, y, advanceToItemStartingWith)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s\n", + getCurrentMapFile ().c_str ()); + + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + loadMapInfo (Config::getMapPath (getCurrentMapFile (), "", false), + &mapInfo, true); + labelMapInfo.setText (mapInfo.desc); + updateControlers (); + updateNetworkSlots (); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { +//delay publishing for 5 seconds + needToPublishDelayed = true; + mapPublishingDelayTimer = time (NULL); + } + } + else if (checkBoxAdvanced.getValue () == 1 + && listBoxFogOfWar.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + cleanupMapPreviewTexture (); + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else if (checkBoxAdvanced.getValue () == 1 + && checkBoxAllowObservers.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + reloadFactions (true, + (checkBoxScenario.getValue () == + true ? + scenarioFiles + [listBoxScenario.getSelectedItemIndex ()] : "")); + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else if (checkBoxAllowInGameJoinPlayer.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + serverInterface->setAllowInGameConnections + (checkBoxAllowInGameJoinPlayer.getValue () == true); + } + else if (checkBoxAdvanced.getValue () == 1 + && checkBoxAllowTeamUnitSharing.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else if (checkBoxAdvanced.getValue () == 1 + && checkBoxAllowTeamResourceSharing.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else if (checkBoxAllowNativeLanguageTechtree.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else if (checkBoxAdvanced.getValue () == 1 + && checkBoxEnableSwitchTeamMode.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else if (checkBoxAdvanced.getValue () == 1 + && listBoxAISwitchTeamAcceptPercent.getEnabled () + && listBoxAISwitchTeamAcceptPercent.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else if (checkBoxAdvanced.getValue () == 1 + && listBoxFallbackCpuMultiplier.getEditable () == true + && listBoxFallbackCpuMultiplier.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else if (checkBoxAdvanced.mouseClick (x, y)) + { + } + else + if (listBoxTileset.mouseClick (x, y, advanceToItemStartingWith)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + if (hasNetworkGameSettings () == true) + { + +//delay publishing for 5 seconds + needToPublishDelayed = true; + mapPublishingDelayTimer = time (NULL); + } + } + else if (listBoxMapFilter.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + switchToNextMapGroup (listBoxMapFilter.getSelectedItemIndex () - + oldListBoxMapfilterIndex); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s\n", + getCurrentMapFile ().c_str ()); + + loadMapInfo (Config::getMapPath (getCurrentMapFile ()), + &mapInfo, true); + labelMapInfo.setText (mapInfo.desc); + updateControlers (); + updateNetworkSlots (); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else + if (listBoxTechTree.mouseClick (x, y, advanceToItemStartingWith)) + { + reloadFactions (listBoxTechTree.getItemCount () <= 1, + (checkBoxScenario.getValue () == + true ? + scenarioFiles + [listBoxScenario.getSelectedItemIndex ()] : "")); + + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + else if (checkBoxPublishServer.mouseClick (x, y) + && checkBoxPublishServer.getEditable ()) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + needToRepublishToMasterserver = true; + soundRenderer.playFx (coreData.getClickSoundC ()); + + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + serverInterface-> + setPublishEnabled (checkBoxPublishServer.getValue () == true); + } + else if (labelGameName.mouseClick (x, y) + && checkBoxPublishServer.getEditable ()) + { + setActiveInputLabel (&labelGameName); + } + else if (checkBoxAdvanced.getValue () == 1 + && checkBoxNetworkPauseGameForLaggedClients.mouseClick (x, + y)) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + + soundRenderer.playFx (coreData.getClickSoundC ()); + } + else if (listBoxScenario.mouseClick (x, y) + || checkBoxScenario.mouseClick (x, y)) + { + processScenario (); + } + else + { + for (int i = 0; i < mapInfo.players; ++i) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + +// set multiplier + if (listBoxRMultiplier[i].mouseClick (x, y)) + { +//printf("Line: %d multiplier index: %d i: %d itemcount: %d\n",__LINE__,listBoxRMultiplier[i].getSelectedItemIndex(),i,listBoxRMultiplier[i].getItemCount()); + +//for(int indexData = 0; indexData < listBoxRMultiplier[i].getItemCount(); ++indexData) { +//string item = listBoxRMultiplier[i].getItem(indexData); + +//printf("Item index: %d value: %s\n",indexData,item.c_str()); +//} + } + +//ensure thet only 1 human player is present + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + ConnectionSlot *slot = serverInterface->getSlot (i, true); + + bool checkControTypeClicked = false; + int selectedControlItemIndex = + listBoxControls[i].getSelectedItemIndex (); + if (selectedControlItemIndex != ctNetwork + || (selectedControlItemIndex == ctNetwork + && (slot == NULL || slot->isConnected () == false))) + { + checkControTypeClicked = true; + } + +//printf("checkControTypeClicked = %d selectedControlItemIndex = %d i = %d\n",checkControTypeClicked,selectedControlItemIndex,i); + + if (selectedControlItemIndex != ctHuman && + checkControTypeClicked == true && + listBoxControls[i].mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + ControlType currentControlType = + static_cast < ControlType > + (listBoxControls[i].getSelectedItemIndex ()); + int slotsToChangeStart = i; + int slotsToChangeEnd = i; +// If control is pressed while changing player types then change all other slots to same type + if (::Shared::Platform:: + Window::isKeyStateModPressed (KMOD_CTRL) == true + && currentControlType != ctHuman) + { + slotsToChangeStart = 0; + slotsToChangeEnd = mapInfo.players - 1; } - } - } - else { - string advanceToItemStartingWith = ""; - if(::Shared::Platform::Window::isKeyStateModPressed(KMOD_SHIFT) == true) { - const wchar_t lastKey = ::Shared::Platform::Window::extractLastKeyPressed(); -// string helpString = ""; -// helpString = lastKey; -// printf("lastKey = '%s'\n",helpString.c_str()); - advanceToItemStartingWith = lastKey; - } - if(mapPreviewTexture != NULL) { -// printf("X: %d Y: %d [%d, %d, %d, %d]\n", -// x, y, -// this->render_mapPreviewTexture_X, this->render_mapPreviewTexture_X + this->render_mapPreviewTexture_W, -// this->render_mapPreviewTexture_Y, this->render_mapPreviewTexture_Y + this->render_mapPreviewTexture_H); - - if( x >= this->render_mapPreviewTexture_X && x <= this->render_mapPreviewTexture_X + this->render_mapPreviewTexture_W && - y >= this->render_mapPreviewTexture_Y && y <= this->render_mapPreviewTexture_Y + this->render_mapPreviewTexture_H) { - - if( this->render_mapPreviewTexture_X == mapPreviewTexture_X && - this->render_mapPreviewTexture_Y == mapPreviewTexture_Y && - this->render_mapPreviewTexture_W == mapPreviewTexture_W && - this->render_mapPreviewTexture_H == mapPreviewTexture_H) { - - const Metrics &metrics= Metrics::getInstance(); - - this->render_mapPreviewTexture_X = 0; - this->render_mapPreviewTexture_Y = 0; - this->render_mapPreviewTexture_W = metrics.getVirtualW(); - this->render_mapPreviewTexture_H = metrics.getVirtualH(); - this->zoomedMap = true; - - cleanupMapPreviewTexture(); - } - else { - this->render_mapPreviewTexture_X = mapPreviewTexture_X; - this->render_mapPreviewTexture_Y = mapPreviewTexture_Y; - this->render_mapPreviewTexture_W = mapPreviewTexture_W; - this->render_mapPreviewTexture_H = mapPreviewTexture_H; - this->zoomedMap = false; - - cleanupMapPreviewTexture(); - } - return; - } - if(this->zoomedMap == true){ - return; - } - } - - if(activeInputLabel!=NULL && !(activeInputLabel->mouseClick(x,y))){ - setActiveInputLabel(NULL); - } - if(buttonReturn.mouseClick(x,y) || serverInitError == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - soundRenderer.playFx(coreData.getClickSoundA()); - - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - needToBroadcastServerSettings = false; - needToRepublishToMasterserver = false; - lastNetworkPing = time(NULL); - safeMutex.ReleaseLock(); - safeMutexCLI.ReleaseLock(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - returnToParentMenu(); - return; - } - else if(buttonPlayNow.mouseClick(x,y) && buttonPlayNow.getEnabled()) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - PlayNow(true); - return; - } - else if(buttonRestoreLastSettings.mouseClick(x,y) && buttonRestoreLastSettings.getEnabled()) { - soundRenderer.playFx(coreData.getClickSoundB()); - - RestoreLastGameSettings(); - } - else if(listBoxMap.mouseClick(x, y,advanceToItemStartingWith)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s\n", getCurrentMapFile().c_str()); - - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - loadMapInfo(Config::getMapPath(getCurrentMapFile(),"",false), &mapInfo, true); - labelMapInfo.setText(mapInfo.desc); - updateControlers(); - updateNetworkSlots(); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) { - //delay publishing for 5 seconds - needToPublishDelayed=true; - mapPublishingDelayTimer=time(NULL); - } - } - else if (checkBoxAdvanced.getValue() == 1 && listBoxFogOfWar.mouseClick(x, y)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - cleanupMapPreviewTexture(); - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if (checkBoxAdvanced.getValue() == 1 && checkBoxAllowObservers.mouseClick(x, y)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - reloadFactions(true,(checkBoxScenario.getValue() == true ? scenarioFiles[listBoxScenario.getSelectedItemIndex()] : "")); - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if (checkBoxAllowInGameJoinPlayer.mouseClick(x, y)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - serverInterface->setAllowInGameConnections(checkBoxAllowInGameJoinPlayer.getValue() == true); - } - else if (checkBoxAdvanced.getValue() == 1 && checkBoxAllowTeamUnitSharing.mouseClick(x, y)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if (checkBoxAdvanced.getValue() == 1 && checkBoxAllowTeamResourceSharing.mouseClick(x, y)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if (checkBoxAllowNativeLanguageTechtree.mouseClick(x, y)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) - { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if (checkBoxAdvanced.getValue() == 1 && checkBoxEnableSwitchTeamMode.mouseClick(x, y)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) - { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if (checkBoxAdvanced.getValue() == 1 && listBoxAISwitchTeamAcceptPercent.getEnabled() && listBoxAISwitchTeamAcceptPercent.mouseClick(x, y)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) - { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if (checkBoxAdvanced.getValue() == 1 && listBoxFallbackCpuMultiplier.getEditable() == true && listBoxFallbackCpuMultiplier.mouseClick(x, y)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) - { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if (checkBoxAdvanced.mouseClick(x, y)) { - } - else if(listBoxTileset.mouseClick(x, y,advanceToItemStartingWith)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - if(hasNetworkGameSettings() == true) - { - - //delay publishing for 5 seconds - needToPublishDelayed=true; - mapPublishingDelayTimer=time(NULL); - } - } - else if(listBoxMapFilter.mouseClick(x, y)){ - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - switchToNextMapGroup(listBoxMapFilter.getSelectedItemIndex()-oldListBoxMapfilterIndex); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s\n", getCurrentMapFile().c_str()); - - loadMapInfo(Config::getMapPath(getCurrentMapFile()), &mapInfo, true); - labelMapInfo.setText(mapInfo.desc); - updateControlers(); - updateNetworkSlots(); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) - { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if(listBoxTechTree.mouseClick(x, y,advanceToItemStartingWith)){ - reloadFactions(listBoxTechTree.getItemCount() <= 1,(checkBoxScenario.getValue() == true ? scenarioFiles[listBoxScenario.getSelectedItemIndex()] : "")); - - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) - { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if(checkBoxPublishServer.mouseClick(x, y) && checkBoxPublishServer.getEditable()) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - needToRepublishToMasterserver = true; - soundRenderer.playFx(coreData.getClickSoundC()); - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - serverInterface->setPublishEnabled(checkBoxPublishServer.getValue() == true); - } - else if(labelGameName.mouseClick(x, y) && checkBoxPublishServer.getEditable()){ - setActiveInputLabel(&labelGameName); - } - else if(checkBoxAdvanced.getValue() == 1 && checkBoxNetworkPauseGameForLaggedClients.mouseClick(x, y)) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - if(hasNetworkGameSettings() == true) - { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - - soundRenderer.playFx(coreData.getClickSoundC()); - } - else if(listBoxScenario.mouseClick(x, y) || checkBoxScenario.mouseClick(x,y)) { - processScenario(); - } - else { - for(int i = 0; i < mapInfo.players; ++i) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - // set multiplier - if(listBoxRMultiplier[i].mouseClick(x, y)) { - //printf("Line: %d multiplier index: %d i: %d itemcount: %d\n",__LINE__,listBoxRMultiplier[i].getSelectedItemIndex(),i,listBoxRMultiplier[i].getItemCount()); - - //for(int indexData = 0; indexData < listBoxRMultiplier[i].getItemCount(); ++indexData) { - //string item = listBoxRMultiplier[i].getItem(indexData); - - //printf("Item index: %d value: %s\n",indexData,item.c_str()); - //} - } - - //ensure thet only 1 human player is present - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - ConnectionSlot *slot = serverInterface->getSlot(i,true); - - bool checkControTypeClicked = false; - int selectedControlItemIndex = listBoxControls[i].getSelectedItemIndex(); - if(selectedControlItemIndex != ctNetwork || - (selectedControlItemIndex == ctNetwork && (slot == NULL || slot->isConnected() == false))) { - checkControTypeClicked = true; - } - - //printf("checkControTypeClicked = %d selectedControlItemIndex = %d i = %d\n",checkControTypeClicked,selectedControlItemIndex,i); - - if(selectedControlItemIndex != ctHuman && - checkControTypeClicked == true && - listBoxControls[i].mouseClick(x, y)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - ControlType currentControlType = static_cast( - listBoxControls[i].getSelectedItemIndex()); - int slotsToChangeStart = i; - int slotsToChangeEnd = i; - // If control is pressed while changing player types then change all other slots to same type - if(::Shared::Platform::Window::isKeyStateModPressed(KMOD_CTRL) == true && - currentControlType != ctHuman) { - slotsToChangeStart = 0; - slotsToChangeEnd = mapInfo.players-1; - } - - for(int index = slotsToChangeStart; index <= slotsToChangeEnd; ++index) { - if(index != i && static_cast( - listBoxControls[index].getSelectedItemIndex()) != ctHuman) { - listBoxControls[index].setSelectedItemIndex(listBoxControls[i].getSelectedItemIndex()); - } - // Skip over networkunassigned - if(listBoxControls[index].getSelectedItemIndex() == ctNetworkUnassigned && - selectedControlItemIndex != ctNetworkUnassigned) { - listBoxControls[index].mouseClick(x, y); - } - - //look for human players - int humanIndex1= -1; - int humanIndex2= -1; - for(int j = 0; j < GameConstants::maxPlayers; ++j) { - ControlType ct= static_cast(listBoxControls[j].getSelectedItemIndex()); - if(ct == ctHuman) { - if(humanIndex1 == -1) { - humanIndex1= j; - } - else { - humanIndex2= j; - } - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] humanIndex1 = %d, humanIndex2 = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,humanIndex1,humanIndex2); - - //no human - if(humanIndex1 == -1 && humanIndex2 == -1) { - setSlotHuman(index); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] i = %d, labelPlayerNames[i].getText() [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,index,labelPlayerNames[index].getText().c_str()); - - //printf("humanIndex1 = %d humanIndex2 = %d i = %d listBoxControls[i].getSelectedItemIndex() = %d\n",humanIndex1,humanIndex2,i,listBoxControls[i].getSelectedItemIndex()); - } - //2 humans - else if(humanIndex1 != -1 && humanIndex2 != -1) { - int closeSlotIndex = (humanIndex1 == index ? humanIndex2: humanIndex1); - int humanSlotIndex = (closeSlotIndex == humanIndex1 ? humanIndex2 : humanIndex1); - - string origPlayName = labelPlayerNames[closeSlotIndex].getText(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] closeSlotIndex = %d, origPlayName [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,closeSlotIndex,origPlayName.c_str()); - - listBoxControls[closeSlotIndex].setSelectedItemIndex(ctClosed); - setSlotHuman(humanSlotIndex); - labelPlayerNames[humanSlotIndex].setText((origPlayName != "" ? origPlayName : getHumanPlayerName())); - } - updateNetworkSlots(); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - updateResourceMultiplier(index); - } - } - else if(buttonClearBlockedPlayers.mouseClick(x, y)) { - soundRenderer.playFx(coreData.getClickSoundB()); - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - if(serverInterface != NULL) { - ServerSocket *serverSocket = serverInterface->getServerSocket(); - if(serverSocket != NULL) { - serverSocket->clearBlockedIPAddress(); - } - } - } - else if(buttonBlockPlayers[i].mouseClick(x, y)) { - soundRenderer.playFx(coreData.getClickSoundB()); - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - if(serverInterface != NULL) { - if(serverInterface->getSlot(i,true) != NULL && - serverInterface->getSlot(i,true)->isConnected()) { - - ServerSocket *serverSocket = serverInterface->getServerSocket(); - if(serverSocket != NULL) { - serverSocket->addIPAddressToBlockedList(serverInterface->getSlot(i,true)->getIpAddress()); - - Lang &lang= Lang::getInstance(); - const vector languageList = serverInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int j = 0; j < languageList.size(); ++j) { - char szMsg[8096]=""; - if(lang.hasString("BlockPlayerServerMsg",languageList[j]) == true) { - snprintf(szMsg,8096,lang.getString("BlockPlayerServerMsg",languageList[j]).c_str(),serverInterface->getSlot(i,true)->getIpAddress().c_str()); - } - else { - snprintf(szMsg,8096,"The server has temporarily blocked IP Address [%s] from this game.",serverInterface->getSlot(i,true)->getIpAddress().c_str()); - } - - serverInterface->sendTextMessage(szMsg,-1, true,languageList[j]); - } - sleep(1); - serverInterface->getSlot(i,true)->close(); - } - } - } - } - else if(listBoxFactions[i].mouseClick(x, y,advanceToItemStartingWith)) { - // Disallow CPU players to be observers - if(factionFiles[listBoxFactions[i].getSelectedItemIndex()] == formatString(GameConstants::OBSERVER_SLOTNAME) && - (listBoxControls[i].getSelectedItemIndex() == ctCpuEasy || listBoxControls[i].getSelectedItemIndex() == ctCpu || - listBoxControls[i].getSelectedItemIndex() == ctCpuUltra || listBoxControls[i].getSelectedItemIndex() == ctCpuMega)) { - listBoxFactions[i].setSelectedItemIndex(0); - } - // - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) - { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - else if(listBoxTeams[i].mouseClick(x, y)) - { - if(factionFiles[listBoxFactions[i].getSelectedItemIndex()] != formatString(GameConstants::OBSERVER_SLOTNAME)) { - if(listBoxTeams[i].getSelectedItemIndex() + 1 != (GameConstants::maxPlayers + fpt_Observer)) { - lastSelectedTeamIndex[i] = listBoxTeams[i].getSelectedItemIndex(); - } - } - else { - lastSelectedTeamIndex[i] = -1; - } - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) - { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL);; - } - } - else if(labelPlayerNames[i].mouseClick(x, y)) { - ControlType ct= static_cast(listBoxControls[i].getSelectedItemIndex()); - if(ct == ctHuman) { - setActiveInputLabel(&labelPlayerNames[i]); - break; - } - } - } - } - } - - if(hasNetworkGameSettings() == true && listBoxPlayerStatus.mouseClick(x,y)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - soundRenderer.playFx(coreData.getClickSoundC()); - if(getNetworkPlayerStatus()==npst_PickSettings) - { - listBoxPlayerStatus.setTextColor(Vec3f(1.0f,0.0f,0.0f)); - listBoxPlayerStatus.setLighted(true); - } - else if(getNetworkPlayerStatus()==npst_BeRightBack) - { - listBoxPlayerStatus.setTextColor(Vec3f(1.0f,1.0f,0.0f)); - listBoxPlayerStatus.setLighted(true); - } - else if(getNetworkPlayerStatus()==npst_Ready) - { - listBoxPlayerStatus.setTextColor(Vec3f(0.0f,1.0f,0.0f)); - listBoxPlayerStatus.setLighted(false); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - showGeneralError=true; - generalErrorToShow = szBuf; - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateCustomGame::updateAllResourceMultiplier() { - for(int j=0; j(listBoxControls[index].getSelectedItemIndex()); - if(ct == ctCpuEasy || ct == ctNetworkCpuEasy) - { - listBoxRMultiplier[index].setSelectedItem(floatToStr(GameConstants::easyMultiplier,1)); - listBoxRMultiplier[index].setEnabled(checkBoxScenario.getValue() == false); - } - else if(ct == ctCpu || ct == ctNetworkCpu) { - listBoxRMultiplier[index].setSelectedItem(floatToStr(GameConstants::normalMultiplier,1)); - listBoxRMultiplier[index].setEnabled(checkBoxScenario.getValue() == false); - } - else if(ct == ctCpuUltra || ct == ctNetworkCpuUltra) - { - listBoxRMultiplier[index].setSelectedItem(floatToStr(GameConstants::ultraMultiplier,1)); - listBoxRMultiplier[index].setEnabled(checkBoxScenario.getValue() == false); - } - else if(ct == ctCpuMega || ct == ctNetworkCpuMega) - { - listBoxRMultiplier[index].setSelectedItem(floatToStr(GameConstants::megaMultiplier,1)); - listBoxRMultiplier[index].setEnabled(checkBoxScenario.getValue() == false); - } - //if(ct == ctHuman || ct == ctNetwork || ct == ctClosed) { - else { - listBoxRMultiplier[index].setSelectedItem(floatToStr(GameConstants::normalMultiplier,1)); - listBoxRMultiplier[index].setEnabled(false); - //!!!listBoxRMultiplier[index].setEnabled(checkBoxScenario.getValue() == false); - } - - listBoxRMultiplier[index].setEditable(listBoxRMultiplier[index].getEnabled()); - listBoxRMultiplier[index].setVisible(ct != ctHuman && ct != ctNetwork && ct != ctClosed); - //listBoxRMultiplier[index].setVisible(ct != ctClosed); - - //printf("Line: %d multiplier index: %d index: %d\n",__LINE__,listBoxRMultiplier[index].getSelectedItemIndex(),index); -} - -void MenuStateCustomGame::loadGameSettings(const std::string &fileName) { - // Ensure we have set the gamesettings at least once - GameSettings gameSettings = loadGameSettingsFromFile(fileName); - if(gameSettings.getMap() == "") { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - loadGameSettings(&gameSettings); - } - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - serverInterface->setGameSettings(&gameSettings,false); - - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } -} - -void MenuStateCustomGame::RestoreLastGameSettings() { - loadGameSettings(SAVED_GAME_FILENAME); -} - -bool MenuStateCustomGame::checkNetworkPlayerDataSynch(bool checkMapCRC, - bool checkTileSetCRC, bool checkTechTreeCRC) { - ServerInterface* serverInterface = NetworkManager::getInstance().getServerInterface(); - - bool dataSynchCheckOk = true; - for(int i= 0; i < mapInfo.players; ++i) { - if(listBoxControls[i].getSelectedItemIndex() == ctNetwork) { - - MutexSafeWrapper safeMutex(serverInterface->getSlotMutex(i),CODE_AT_LINE); - ConnectionSlot *slot = serverInterface->getSlot(i,false); - if( slot != NULL && slot->isConnected() && - (slot->getAllowDownloadDataSynch() == true || - slot->getAllowGameDataSynchCheck() == true)) { - - if(checkMapCRC == true && - slot->getNetworkGameDataSynchCheckOkMap() == false) { - dataSynchCheckOk = false; - break; - } - if(checkTileSetCRC == true && - slot->getNetworkGameDataSynchCheckOkTile() == false) { - dataSynchCheckOk = false; - break; - } - if(checkTechTreeCRC == true && - slot->getNetworkGameDataSynchCheckOkTech() == false) { - dataSynchCheckOk = false; - break; - } - } - } - } - - return dataSynchCheckOk; -} - -void MenuStateCustomGame::PlayNow(bool saveGame) { - if(listBoxTechTree.getItemCount() <= 0) { - mainMessageBoxState=1; - - char szMsg[8096]=""; - strcpy(szMsg,"Cannot start game.\nThere are no tech-trees!\n"); - printf("%s",szMsg); - - showMessageBox(szMsg, "", false); - return; - } - - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(saveGame == true) { - saveGameSettingsToFile(SAVED_GAME_FILENAME); - } - - forceWaitForShutdown = false; - closeUnusedSlots(); - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - soundRenderer.playFx(coreData.getClickSoundC()); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - std::vector randomFactionSelectionList; - int RandomCount = 0; - for(int i= 0; i < mapInfo.players; ++i) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - // Check for random faction selection and choose the faction now - if(listBoxControls[i].getSelectedItemIndex() != ctClosed) { - if(listBoxFactions[i].getSelectedItem() == formatString(GameConstants::RANDOMFACTION_SLOTNAME) && - listBoxFactions[i].getItemCount() > 1) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] i = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i); - - // Max 1000 tries to get a random, unused faction - for(int findRandomFaction = 1; findRandomFaction < 1000; ++findRandomFaction) { - Chrono seed(true); - srand((unsigned int)seed.getCurTicks() + findRandomFaction); - - int selectedFactionIndex = rand() % listBoxFactions[i].getItemCount(); - string selectedFactionName = listBoxFactions[i].getItem(selectedFactionIndex); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] selectedFactionName [%s] selectedFactionIndex = %d, findRandomFaction = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,selectedFactionName.c_str(),selectedFactionIndex,findRandomFaction); - - if( selectedFactionName != formatString(GameConstants::RANDOMFACTION_SLOTNAME) && - selectedFactionName != formatString(GameConstants::OBSERVER_SLOTNAME) && - std::find(randomFactionSelectionList.begin(),randomFactionSelectionList.end(),selectedFactionName) == randomFactionSelectionList.end()) { - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - listBoxFactions[i].setSelectedItem(selectedFactionName); - randomFactionSelectionList.push_back(selectedFactionName); - break; - } - } - - if(listBoxFactions[i].getSelectedItem() == formatString(GameConstants::RANDOMFACTION_SLOTNAME)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] RandomCount = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,RandomCount); - - // Find first real faction and use it - int factionIndexToUse = RandomCount; - for(int useIdx = 0; useIdx < listBoxFactions[i].getItemCount(); useIdx++) { - string selectedFactionName = listBoxFactions[i].getItem(useIdx); - if( selectedFactionName != formatString(GameConstants::RANDOMFACTION_SLOTNAME) && - selectedFactionName != formatString(GameConstants::OBSERVER_SLOTNAME)) { - factionIndexToUse = useIdx; - break; - } - } - listBoxFactions[i].setSelectedItemIndex(factionIndexToUse); - randomFactionSelectionList.push_back(listBoxFactions[i].getItem(factionIndexToUse)); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] i = %d, listBoxFactions[i].getSelectedItem() [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,listBoxFactions[i].getSelectedItem().c_str()); - - RandomCount++; - } - } - } - - if(RandomCount > 0) { - needToSetChangedGameSettings = true; - } - - safeMutex.ReleaseLock(true); - safeMutexCLI.ReleaseLock(true); - GameSettings gameSettings; - loadGameSettings(&gameSettings, true); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - - // Send the game settings to each client if we have at least one networked client - safeMutex.Lock(); - safeMutexCLI.Lock(); - - bool dataSynchCheckOk = checkNetworkPlayerDataSynch(true, true, true); - - // Ensure we have no dangling network players - for(int i= 0; i < GameConstants::maxPlayers; ++i) { - if(listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - mainMessageBoxState=1; - - Lang &lang= Lang::getInstance(); - string sMsg = ""; - if(lang.hasString("NetworkSlotUnassignedErrorUI") == true) { - sMsg = lang.getString("NetworkSlotUnassignedErrorUI"); - } - else { - sMsg = "Cannot start game.\nSome player(s) are not in a network game slot!"; - } - - showMessageBox(sMsg, "", false); - - const vector languageList = serverInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int j = 0; j < languageList.size(); ++j) { - char szMsg[8096]=""; - if(lang.hasString("NetworkSlotUnassignedError",languageList[j]) == true) { - string msg_string = lang.getString("NetworkSlotUnassignedError"); -#ifdef WIN32 - strncpy(szMsg,msg_string.c_str(),min((int)msg_string.length(),8095)); -#else - strncpy(szMsg,msg_string.c_str(),std::min((int)msg_string.length(),8095)); -#endif - } - else { - strcpy(szMsg,"Cannot start game, some player(s) are not in a network game slot!"); - } - - serverInterface->sendTextMessage(szMsg,-1, true,languageList[j]); - } - - safeMutex.ReleaseLock(); - safeMutexCLI.ReleaseLock(); - return; - } - } - - if(dataSynchCheckOk == false) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - mainMessageBoxState=1; - showMessageBox("You cannot start the game because\none or more clients do not have the same game data!", "Data Mismatch Error", false); - - safeMutex.ReleaseLock(); - safeMutexCLI.ReleaseLock(); - return; - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if( (hasNetworkGameSettings() == true && - needToSetChangedGameSettings == true) || (RandomCount > 0)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - serverInterface->setGameSettings(&gameSettings,true); - serverInterface->broadcastGameSetup(&gameSettings); - - needToSetChangedGameSettings = false; - lastSetChangedGameSettings = time(NULL); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - // Last check, stop human player from being in same slot as network - if(isMasterserverMode() == false) { - bool hasHuman = false; - for(int i= 0; i < mapInfo.players; ++i) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - // Check for random faction selection and choose the faction now - if(listBoxControls[i].getSelectedItemIndex() == ctHuman) { - hasHuman = true; - break; - } - } - if(hasHuman == false) { - mainMessageBoxState=1; - - Lang &lang= Lang::getInstance(); - string sMsg = lang.getString("NetworkSlotNoHumanErrorUI","",true); - showMessageBox(sMsg, "", false); - - const vector languageList = serverInterface->getGameSettings()->getUniqueNetworkPlayerLanguages(); - for(unsigned int j = 0; j < languageList.size(); ++j) { - sMsg = lang.getString("NetworkSlotNoHumanError","",true); - - serverInterface->sendTextMessage(sMsg,-1, true,languageList[j]); - } - - safeMutex.ReleaseLock(); - safeMutexCLI.ReleaseLock(); - return; - } - } - - // Tell the server Interface whether or not to publish game status updates to masterserver - serverInterface->setNeedToRepublishToMasterserver(checkBoxPublishServer.getValue() == true); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - bool bOkToStart = serverInterface->launchGame(&gameSettings); - if(bOkToStart == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if( checkBoxPublishServer.getEditable() && - checkBoxPublishServer.getValue() == true) { - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - needToRepublishToMasterserver = true; - lastMasterserverPublishing = 0; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - needToBroadcastServerSettings = false; - needToRepublishToMasterserver = false; - lastNetworkPing = time(NULL); - safeMutex.ReleaseLock(); - safeMutexCLI.ReleaseLock(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - assert(program != NULL); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - cleanup(); - Game *newGame = new Game(program, &gameSettings, this->headlessServerMode); - forceWaitForShutdown = false; - program->setState(newGame); - return; - } - else { - safeMutex.ReleaseLock(); - safeMutexCLI.ReleaseLock(); - } - } -} - -void MenuStateCustomGame::mouseMove(int x, int y, const MouseState *ms) { - if(isMasterserverMode() == true) { - return; - } - - if (mainMessageBox.getEnabled()) { - mainMessageBox.mouseMove(x, y); - } - buttonReturn.mouseMove(x, y); - buttonPlayNow.mouseMove(x, y); - buttonRestoreLastSettings.mouseMove(x, y); - buttonClearBlockedPlayers.mouseMove(x, y); - - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - listBoxRMultiplier[i].mouseMove(x, y); - listBoxControls[i].mouseMove(x, y); - buttonBlockPlayers[i].mouseMove(x, y); - listBoxFactions[i].mouseMove(x, y); - listBoxTeams[i].mouseMove(x, y); - } - - listBoxMap.mouseMove(x, y); - - if(checkBoxAdvanced.getValue() == 1) { - listBoxFogOfWar.mouseMove(x, y); - checkBoxAllowObservers.mouseMove(x, y); - - checkBoxEnableSwitchTeamMode.mouseMove(x, y); - listBoxAISwitchTeamAcceptPercent.mouseMove(x, y); - listBoxFallbackCpuMultiplier.mouseMove(x, y); - - labelNetworkPauseGameForLaggedClients.mouseMove(x, y); - checkBoxNetworkPauseGameForLaggedClients.mouseMove(x, y); - - labelAllowTeamUnitSharing.mouseMove(x,y); - checkBoxAllowTeamUnitSharing.mouseMove(x,y); - labelAllowTeamResourceSharing.mouseMove(x,y); - checkBoxAllowTeamResourceSharing.mouseMove(x,y); - } - checkBoxAllowInGameJoinPlayer.mouseMove(x, y); - - checkBoxAllowNativeLanguageTechtree.mouseMove(x, y); - - listBoxTileset.mouseMove(x, y); - listBoxMapFilter.mouseMove(x, y); - listBoxTechTree.mouseMove(x, y); - checkBoxPublishServer.mouseMove(x, y); - - checkBoxAdvanced.mouseMove(x, y); - - checkBoxScenario.mouseMove(x, y); - listBoxScenario.mouseMove(x, y); -} - -bool MenuStateCustomGame::isMasterserverMode() const { - return (this->headlessServerMode == true && this->masterserverModeMinimalResources == true); - //return false; -} - -bool MenuStateCustomGame::isVideoPlaying() { - bool result = false; - if(factionVideo != NULL) { - result = factionVideo->isPlaying(); - } - return result; -} - -void MenuStateCustomGame::render() { - try { - Renderer &renderer= Renderer::getInstance(); - - if(mainMessageBox.getEnabled() == false) { - if(factionTexture != NULL) { - if(factionVideo == NULL || factionVideo->isPlaying() == false) { - renderer.renderTextureQuad(800,600,200,150,factionTexture,1.0f); - } - } - } - if(factionVideo != NULL) { - if(factionVideo->isPlaying() == true) { - factionVideo->playFrame(false); - } - else { - if(GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false && - ::Shared::Graphics::VideoPlayer::hasBackEndVideoPlayer() == true) { - if(factionVideo != NULL) { - factionVideo->closePlayer(); - delete factionVideo; - factionVideo = NULL; - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - if(serverInterface != NULL) { - initFactionPreview(serverInterface->getGameSettings()); - } - } - } - } - } - - if(mainMessageBox.getEnabled()) { - renderer.renderMessageBox(&mainMessageBox); - - renderer.renderButton(&buttonReturn); - } - else { - if(mapPreviewTexture != NULL) { - //renderer.renderTextureQuad(5,185,150,150,mapPreviewTexture,1.0f); - renderer.renderTextureQuad( this->render_mapPreviewTexture_X, - this->render_mapPreviewTexture_Y, - this->render_mapPreviewTexture_W, - this->render_mapPreviewTexture_H, - mapPreviewTexture,1.0f); - if(this->zoomedMap==true) { - return; - } - //printf("=================> Rendering map preview texture\n"); - } - if(scenarioLogoTexture != NULL) { - renderer.renderTextureQuad(300,350,400,300,scenarioLogoTexture,1.0f); - //renderer.renderBackground(scenarioLogoTexture); - } - - renderer.renderButton(&buttonReturn); - renderer.renderButton(&buttonPlayNow); - renderer.renderButton(&buttonRestoreLastSettings); - - // Get a reference to the player texture cache - std::map &crcPlayerTextureCache = CacheManager::getCachedItem< std::map >(GameConstants::playerTextureCacheLookupKey); - - // START - this code ensure player title and player names don't overlap - int offsetPosition=0; - for(int i=0; i < GameConstants::maxPlayers; ++i) { - FontMetrics *fontMetrics= NULL; - if(Renderer::renderText3DEnabled == false) { - fontMetrics = labelPlayers[i].getFont()->getMetrics(); - } - else { - fontMetrics = labelPlayers[i].getFont3D()->getMetrics(); - } - if(fontMetrics == NULL) { - throw megaglest_runtime_error("fontMetrics == NULL"); - } - int curWidth = (fontMetrics->getTextWidth(labelPlayers[i].getText())); - int newOffsetPosition = labelPlayers[i].getX() + curWidth + 2; - - //printf("labelPlayers[i].getX() = %d curWidth = %d labelPlayerNames[i].getX() = %d offsetPosition = %d newOffsetPosition = %d [%s]\n",labelPlayers[i].getX(),curWidth,labelPlayerNames[i].getX(),offsetPosition,newOffsetPosition,labelPlayers[i].getText().c_str()); - - if(labelPlayers[i].getX() + curWidth >= labelPlayerNames[i].getX()) { - if(offsetPosition < newOffsetPosition) { - offsetPosition = newOffsetPosition; - } - } - } - // END - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - if(hasNetworkGameSettings() == true) { - renderer.renderListBox(&listBoxPlayerStatus); - if( serverInterface != NULL && - serverInterface->getServerSocket() != NULL ) { - renderer.renderButton(&buttonClearBlockedPlayers); - } - } - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - if(listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - //printf("Player #%d [%s] control = %d\n",i,labelPlayerNames[i].getText().c_str(),listBoxControls[i].getSelectedItemIndex()); - - labelPlayers[i].setVisible(true); - labelPlayerNames[i].setVisible(true); - listBoxControls[i].setVisible(true); - listBoxFactions[i].setVisible(true); - listBoxTeams[i].setVisible(true); - labelNetStatus[i].setVisible(true); - } - - if( hasNetworkGameSettings() == true && - listBoxControls[i].getSelectedItemIndex() != ctClosed) { - - renderer.renderLabel(&labelPlayerStatus[i]); - } - - if(crcPlayerTextureCache[i] != NULL) { - // Render the player # label the player's color - Vec3f playerColor = crcPlayerTextureCache[i]->getPixmap()->getPixel3f(0, 0); - renderer.renderLabel(&labelPlayers[i],&playerColor); - } - else { - renderer.renderLabel(&labelPlayers[i]); - } - - if(offsetPosition > 0) { - labelPlayerNames[i].setX(offsetPosition); - } - renderer.renderLabel(&labelPlayerNames[i]); - - renderer.renderListBox(&listBoxControls[i]); - - if( hasNetworkGameSettings() == true && - listBoxControls[i].getSelectedItemIndex() != ctClosed) { - - renderer.renderLabel(&labelPlayerStatus[i]); - - if(listBoxControls[i].getSelectedItemIndex() == ctNetwork || listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - if( serverInterface != NULL && - serverInterface->getSlot(i,true) != NULL && - serverInterface->getSlot(i,true)->isConnected()) { - renderer.renderButton(&buttonBlockPlayers[i]); - } - } - } - - if(listBoxControls[i].getSelectedItemIndex()!=ctClosed){ - renderer.renderListBox(&listBoxRMultiplier[i]); - renderer.renderListBox(&listBoxFactions[i]); - - int teamnumber=listBoxTeams[i].getSelectedItemIndex(); - Vec3f teamcolor=Vec3f(1.0f,1.0f,1.0f); - if(teamnumber>=0 && teamnumber<8){ - teamcolor=crcPlayerTextureCache[teamnumber]->getPixmap()->getPixel3f(0, 0); - } - listBoxTeams[i].setTextColor(teamcolor); - - renderer.renderListBox(&listBoxTeams[i]); - renderer.renderLabel(&labelNetStatus[i]); - } - } - - renderer.renderLabel(&labelLocalGameVersion); - renderer.renderLabel(&labelLocalIP); - renderer.renderLabel(&labelMap); - - if(checkBoxAdvanced.getValue() == 1) { - renderer.renderLabel(&labelFogOfWar); - renderer.renderLabel(&labelAllowObservers); - renderer.renderLabel(&labelFallbackCpuMultiplier); - - renderer.renderLabel(&labelEnableSwitchTeamMode); - renderer.renderLabel(&labelAISwitchTeamAcceptPercent); - - renderer.renderListBox(&listBoxFogOfWar); - renderer.renderCheckBox(&checkBoxAllowObservers); - - renderer.renderCheckBox(&checkBoxEnableSwitchTeamMode); - renderer.renderListBox(&listBoxAISwitchTeamAcceptPercent); - renderer.renderListBox(&listBoxFallbackCpuMultiplier); - - renderer.renderLabel(&labelAllowTeamUnitSharing); - renderer.renderCheckBox(&checkBoxAllowTeamUnitSharing); - - renderer.renderLabel(&labelAllowTeamResourceSharing); - renderer.renderCheckBox(&checkBoxAllowTeamResourceSharing); - } - renderer.renderLabel(&labelAllowInGameJoinPlayer); - renderer.renderCheckBox(&checkBoxAllowInGameJoinPlayer); - - renderer.renderLabel(&labelTileset); - renderer.renderLabel(&labelMapFilter); - renderer.renderLabel(&labelTechTree); - renderer.renderLabel(&labelControl); - renderer.renderLabel(&labelFaction); - renderer.renderLabel(&labelTeam); - renderer.renderLabel(&labelMapInfo); - renderer.renderLabel(&labelAdvanced); - - renderer.renderListBox(&listBoxMap); - renderer.renderListBox(&listBoxTileset); - renderer.renderListBox(&listBoxMapFilter); - renderer.renderListBox(&listBoxTechTree); - renderer.renderCheckBox(&checkBoxAdvanced); - - if(checkBoxPublishServer.getEditable()) - { - renderer.renderCheckBox(&checkBoxPublishServer); - renderer.renderLabel(&labelPublishServer); - renderer.renderLabel(&labelGameName); - if(checkBoxAdvanced.getValue() == 1) { - renderer.renderLabel(&labelNetworkPauseGameForLaggedClients); - renderer.renderCheckBox(&checkBoxNetworkPauseGameForLaggedClients); - } - } - - renderer.renderCheckBox(&checkBoxScenario); - renderer.renderLabel(&labelScenario); - if(checkBoxScenario.getValue() == true) { - renderer.renderListBox(&listBoxScenario); - } - - renderer.renderLabel(&labelAllowNativeLanguageTechtree); - renderer.renderCheckBox(&checkBoxAllowNativeLanguageTechtree); - } - - if(program != NULL) program->renderProgramMsgBox(); - - if( enableMapPreview == true && - mapPreview.hasFileLoaded() == true) { - - if(mapPreviewTexture == NULL) { - bool renderAll = (listBoxFogOfWar.getSelectedItemIndex() == 2); - //printf("=================> Rendering map preview into a texture BEFORE (%p)\n", mapPreviewTexture); - - //renderer.renderMapPreview(&mapPreview, renderAll, 10, 350,&mapPreviewTexture); - renderer.renderMapPreview(&mapPreview, renderAll, - this->render_mapPreviewTexture_X, - this->render_mapPreviewTexture_Y, - &mapPreviewTexture); - - //printf("=================> Rendering map preview into a texture AFTER (%p)\n", mapPreviewTexture); - } - } - - if(mainMessageBox.getEnabled() == false) { - if(hasNetworkGameSettings() == true) { - renderer.renderChatManager(&chatManager); - } - } - renderer.renderConsole(&console,showFullConsole?consoleFull:consoleStoredAndNormal); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - //throw megaglest_runtime_error(szBuf); - - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - showGeneralError=true; - generalErrorToShow = szBuf; - } -} - -void MenuStateCustomGame::switchSetupForSlots(SwitchSetupRequest **switchSetupRequests, - ServerInterface *& serverInterface, int startIndex, int endIndex, bool onlyNetworkUnassigned) { - for(int i= startIndex; i < endIndex; ++i) { - if(switchSetupRequests[i] != NULL) { - //printf("Switch slot = %d control = %d newIndex = %d currentindex = %d onlyNetworkUnassigned = %d\n",i,listBoxControls[i].getSelectedItemIndex(),switchSetupRequests[i]->getToFactionIndex(),switchSetupRequests[i]->getCurrentFactionIndex(),onlyNetworkUnassigned); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] switchSetupRequests[i]->getSwitchFlags() = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,switchSetupRequests[i]->getSwitchFlags()); - - if(onlyNetworkUnassigned == true && listBoxControls[i].getSelectedItemIndex() != ctNetworkUnassigned) { - if(i < mapInfo.players || (i >= mapInfo.players && listBoxControls[i].getSelectedItemIndex() != ctNetwork)) { - continue; - } - } - - if(listBoxControls[i].getSelectedItemIndex() == ctNetwork || listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] switchSetupRequests[i]->getToFactionIndex() = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,switchSetupRequests[i]->getToSlotIndex()); - - if(switchSetupRequests[i]->getToSlotIndex() != -1) { - int newFactionIdx = switchSetupRequests[i]->getToSlotIndex(); - - //printf("switchSlot request from %d to %d\n",switchSetupRequests[i]->getCurrentFactionIndex(),switchSetupRequests[i]->getToFactionIndex()); - int switchFactionIdx = switchSetupRequests[i]->getCurrentSlotIndex(); - if(serverInterface->switchSlot(switchFactionIdx,newFactionIdx)) { - try { - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - ConnectionSlot *slot = serverInterface->getSlot(newFactionIdx,true); - - if(switchSetupRequests[i]->getSelectedFactionName() != "" && - (slot != NULL && - switchSetupRequests[i]->getSelectedFactionName() != Lang::getInstance().getString("DataMissing",slot->getNetworkPlayerLanguage(),true) && - switchSetupRequests[i]->getSelectedFactionName() != "???DataMissing???")) { - listBoxFactions[newFactionIdx].setSelectedItem(switchSetupRequests[i]->getSelectedFactionName()); - } - if(switchSetupRequests[i]->getToTeam() != -1) { - listBoxTeams[newFactionIdx].setSelectedItemIndex(switchSetupRequests[i]->getToTeam()); - } - if(switchSetupRequests[i]->getNetworkPlayerName() != "") { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] i = %d, labelPlayerNames[newFactionIdx].getText() [%s] switchSetupRequests[i]->getNetworkPlayerName() [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,labelPlayerNames[newFactionIdx].getText().c_str(),switchSetupRequests[i]->getNetworkPlayerName().c_str()); - labelPlayerNames[newFactionIdx].setText(switchSetupRequests[i]->getNetworkPlayerName()); - } - - if(listBoxControls[switchFactionIdx].getSelectedItemIndex() == ctNetworkUnassigned) { - serverInterface->removeSlot(switchFactionIdx); - listBoxControls[switchFactionIdx].setSelectedItemIndex(ctClosed); - - labelPlayers[switchFactionIdx].setVisible(switchFactionIdx+1 <= mapInfo.players); - labelPlayerNames[switchFactionIdx].setVisible(switchFactionIdx+1 <= mapInfo.players); - listBoxControls[switchFactionIdx].setVisible(switchFactionIdx+1 <= mapInfo.players); - listBoxFactions[switchFactionIdx].setVisible(switchFactionIdx+1 <= mapInfo.players); - listBoxTeams[switchFactionIdx].setVisible(switchFactionIdx+1 <= mapInfo.players); - labelNetStatus[switchFactionIdx].setVisible(switchFactionIdx+1 <= mapInfo.players); - } - } - catch(const runtime_error &e) { - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,e.what()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] caught exception error = [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,e.what()); - } - } - } - else { - try { - int factionIdx = switchSetupRequests[i]->getCurrentSlotIndex(); - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - ConnectionSlot *slot = serverInterface->getSlot(factionIdx,true); - - if(switchSetupRequests[i]->getSelectedFactionName() != "" && - (slot != NULL && - switchSetupRequests[i]->getSelectedFactionName() != Lang::getInstance().getString("DataMissing",slot->getNetworkPlayerLanguage(),true) && - switchSetupRequests[i]->getSelectedFactionName() != "???DataMissing???")) { - listBoxFactions[i].setSelectedItem(switchSetupRequests[i]->getSelectedFactionName()); - } - if(switchSetupRequests[i]->getToTeam() != -1) { - listBoxTeams[i].setSelectedItemIndex(switchSetupRequests[i]->getToTeam()); - } - - if((switchSetupRequests[i]->getSwitchFlags() & ssrft_NetworkPlayerName) == ssrft_NetworkPlayerName) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, switchSetupRequests[i]->getSwitchFlags() = %d, switchSetupRequests[i]->getNetworkPlayerName() [%s], labelPlayerNames[i].getText() [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,switchSetupRequests[i]->getSwitchFlags(),switchSetupRequests[i]->getNetworkPlayerName().c_str(),labelPlayerNames[i].getText().c_str()); - - if(switchSetupRequests[i]->getNetworkPlayerName() != GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) { - labelPlayerNames[i].setText(switchSetupRequests[i]->getNetworkPlayerName()); - } - else { - labelPlayerNames[i].setText(""); - } - } - } - catch(const runtime_error &e) { - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,e.what()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] caught exception error = [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,e.what()); - } - } - } - - delete switchSetupRequests[i]; - switchSetupRequests[i]=NULL; - } - } -} - -void MenuStateCustomGame::update() { - Chrono chrono; - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled) chrono.start(); - - // Test openal buffer underrun issue - //sleep(200); - // END - - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - try { - if(serverInitError == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(showGeneralError) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - - showGeneralError=false; - mainMessageBoxState=1; - showMessageBox( generalErrorToShow, "Error", false); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(this->headlessServerMode == false) { - return; - } - } - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - Lang& lang= Lang::getInstance(); - - if( serverInterface != NULL && serverInterface->getServerSocket() != NULL ){ - buttonClearBlockedPlayers.setEditable( serverInterface->getServerSocket()->hasBlockedIPAddresses()); - } - - if(this->autoloadScenarioName != "") { - listBoxScenario.setSelectedItem(formatString(this->autoloadScenarioName),false); - lastSetChangedGameSettings = time(NULL); - if(serverInterface != NULL){ - lastGameSettingsreceivedCount=serverInterface->getGameSettingsUpdateCount(); - } - if(listBoxScenario.getSelectedItem() != formatString(this->autoloadScenarioName)) { - mainMessageBoxState=1; - showMessageBox( "Could not find scenario name: " + formatString(this->autoloadScenarioName), "Scenario Missing", false); - this->autoloadScenarioName = ""; - } - else { - loadScenarioInfo(Scenario::getScenarioPath(dirList, scenarioFiles[listBoxScenario.getSelectedItemIndex()]), &scenarioInfo); - //labelInfo.setText(scenarioInfo.desc); - - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - CoreData &coreData= CoreData::getInstance(); - soundRenderer.playFx(coreData.getClickSoundC()); - //launchGame(); - PlayNow(true); - return; - } - } - - if(needToLoadTextures) { - // this delay is done to make it possible to switch faster - if(difftime((long int)time(NULL), previewLoadDelayTimer) >= 2){ - //loadScenarioPreviewTexture(); - needToLoadTextures= false; - } - } - - //bool haveAtLeastOneNetworkClientConnected = false; - bool hasOneNetworkSlotOpen = false; - int currentConnectionCount=0; - Config &config = Config::getInstance(); - - bool masterServerErr = showMasterserverError; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(masterServerErr) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(EndsWith(masterServererErrorToShow, "wrong router setup") == true) { - masterServererErrorToShow=lang.getString("WrongRouterSetup"); - } - - Lang &lang= Lang::getInstance(); - string publishText = " (disabling publish)"; - if(lang.hasString("PublishDisabled") == true) { - publishText = lang.getString("PublishDisabled"); - } - - masterServererErrorToShow += "\n\n"+ publishText; - showMasterserverError=false; - mainMessageBoxState=1; - showMessageBox( masterServererErrorToShow, lang.getString("ErrorFromMasterserver"), false); - - if(this->headlessServerMode == false) { - checkBoxPublishServer.setValue(false); - } - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - serverInterface->setPublishEnabled(checkBoxPublishServer.getValue() == true); - } - else if(showGeneralError) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - showGeneralError=false; - mainMessageBoxState=1; - showMessageBox( generalErrorToShow, "Error", false); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(this->headlessServerMode == true && serverInterface == NULL) { - throw megaglest_runtime_error("serverInterface == NULL"); - } - if(this->headlessServerMode == true && serverInterface->getGameSettingsUpdateCount() > lastMasterServerSettingsUpdateCount && - serverInterface->getGameSettings() != NULL) { - const GameSettings *settings = serverInterface->getGameSettings(); - //printf("\n\n\n\n=====#1 got settings [%d] [%d]:\n%s\n",lastMasterServerSettingsUpdateCount,serverInterface->getGameSettingsUpdateCount(),settings->toString().c_str()); - - lastMasterServerSettingsUpdateCount = serverInterface->getGameSettingsUpdateCount(); - //printf("#2 custom menu got map [%s]\n",settings->getMap().c_str()); - - setupUIFromGameSettings(*settings); - printf("received Settings map filter=%d\n",settings->getMapFilter()); - - GameSettings gameSettings; - loadGameSettings(&gameSettings); - - //printf("\n\n\n\n=====#1.1 got settings [%d] [%d]:\n%s\n",lastMasterServerSettingsUpdateCount,serverInterface->getGameSettingsUpdateCount(),gameSettings.toString().c_str()); - - } - if(this->headlessServerMode == true && serverInterface->getMasterserverAdminRequestLaunch() == true) { - serverInterface->setMasterserverAdminRequestLaunch(false); - safeMutex.ReleaseLock(); - safeMutexCLI.ReleaseLock(); - - PlayNow(false); - return; - } - - // handle setting changes from clients - SwitchSetupRequest ** switchSetupRequests = serverInterface->getSwitchSetupRequests(); - //!!! - switchSetupForSlots(switchSetupRequests, serverInterface, 0, mapInfo.players, false); - switchSetupForSlots(switchSetupRequests, serverInterface, mapInfo.players, GameConstants::maxPlayers, true); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - GameSettings gameSettings; - loadGameSettings(&gameSettings); - - listBoxAISwitchTeamAcceptPercent.setEnabled(checkBoxEnableSwitchTeamMode.getValue()); - - int factionCount = 0; - for(int i= 0; i< mapInfo.players; ++i) { - if(hasNetworkGameSettings() == true) { - if(listBoxControls[i].getSelectedItemIndex() != ctClosed) { - int slotIndex = factionCount; - if(listBoxControls[i].getSelectedItemIndex() == ctHuman) { - switch(gameSettings.getNetworkPlayerStatuses(slotIndex)) { - case npst_BeRightBack: - labelPlayerStatus[i].setTexture(CoreData::getInstance().getStatusBRBTexture()); - break; - case npst_Ready: - labelPlayerStatus[i].setTexture(CoreData::getInstance().getStatusReadyTexture()); - break; - case npst_PickSettings: - labelPlayerStatus[i].setTexture(CoreData::getInstance().getStatusNotReadyTexture()); - break; - case npst_Disconnected: - labelPlayerStatus[i].setTexture(NULL); - break; - - default: - labelPlayerStatus[i].setTexture(NULL); - break; - } - } - else { - labelPlayerStatus[i].setTexture(NULL); - } - - factionCount++; - } - else { - labelPlayerStatus[i].setTexture(NULL); - } - } - - if(listBoxControls[i].getSelectedItemIndex() == ctNetwork || - listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - hasOneNetworkSlotOpen=true; - - if(serverInterface->getSlot(i,true) != NULL && - serverInterface->getSlot(i,true)->isConnected()) { - - if(hasNetworkGameSettings() == true) { - switch(serverInterface->getSlot(i,true)->getNetworkPlayerStatus()) { - case npst_BeRightBack: - labelPlayerStatus[i].setTexture(CoreData::getInstance().getStatusBRBTexture()); - break; - case npst_Ready: - labelPlayerStatus[i].setTexture(CoreData::getInstance().getStatusReadyTexture()); - break; - case npst_PickSettings: - default: - labelPlayerStatus[i].setTexture(CoreData::getInstance().getStatusNotReadyTexture()); - break; - } - } - - serverInterface->getSlot(i,true)->setName(labelPlayerNames[i].getText()); - - //printf("FYI we have at least 1 client connected, slot = %d'\n",i); - - //haveAtLeastOneNetworkClientConnected = true; - if(serverInterface->getSlot(i,true) != NULL && - serverInterface->getSlot(i,true)->getConnectHasHandshaked()) { - currentConnectionCount++; + for (int index = slotsToChangeStart; + index <= slotsToChangeEnd; ++index) + { + if (index != i + && static_cast < ControlType > + (listBoxControls[index].getSelectedItemIndex ()) != + ctHuman) + { + listBoxControls[index].setSelectedItemIndex + (listBoxControls[i].getSelectedItemIndex ()); + } +// Skip over networkunassigned + if (listBoxControls[index].getSelectedItemIndex () == + ctNetworkUnassigned + && selectedControlItemIndex != ctNetworkUnassigned) + { + listBoxControls[index].mouseClick (x, y); + } + +//look for human players + int humanIndex1 = -1; + int humanIndex2 = -1; + for (int j = 0; j < GameConstants::maxPlayers; ++j) + { + ControlType ct = + static_cast < ControlType > + (listBoxControls[j].getSelectedItemIndex ()); + if (ct == ctHuman) + { + if (humanIndex1 == -1) + { + humanIndex1 = j; + } + else + { + humanIndex2 = j; + } } - string label = (serverInterface->getSlot(i,true) != NULL ? serverInterface->getSlot(i,true)->getVersionString() : ""); - - if(serverInterface->getSlot(i,true) != NULL && - serverInterface->getSlot(i,true)->getAllowDownloadDataSynch() == true && - serverInterface->getSlot(i,true)->getAllowGameDataSynchCheck() == true) { - if(serverInterface->getSlot(i,true)->getNetworkGameDataSynchCheckOk() == false) { - label += " -waiting to synch:"; - if(serverInterface->getSlot(i,true)->getNetworkGameDataSynchCheckOkMap() == false) { - label = label + " map"; - } - if(serverInterface->getSlot(i,true)->getNetworkGameDataSynchCheckOkTile() == false) { - label = label + " tile"; - } - if(serverInterface->getSlot(i,true)->getNetworkGameDataSynchCheckOkTech() == false) { - label = label + " techtree"; - } - } - else { - label += " - data synch is ok"; - } - } - else { - if(serverInterface->getSlot(i,true) != NULL && - serverInterface->getSlot(i,true)->getAllowGameDataSynchCheck() == true && - serverInterface->getSlot(i,true)->getNetworkGameDataSynchCheckOk() == false) { - label += " -synch mismatch:"; - - if(serverInterface->getSlot(i,true) != NULL && serverInterface->getSlot(i,true)->getNetworkGameDataSynchCheckOkMap() == false) { - label = label + " map"; - - if(serverInterface->getSlot(i,true)->getReceivedDataSynchCheck() == true && - lastMapDataSynchError != "map CRC mismatch, " + listBoxMap.getSelectedItem()) { - lastMapDataSynchError = "map CRC mismatch, " + listBoxMap.getSelectedItem(); - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - serverInterface->sendTextMessage(lastMapDataSynchError,-1, true,""); - } - } - - if(serverInterface->getSlot(i,true) != NULL && - serverInterface->getSlot(i,true)->getNetworkGameDataSynchCheckOkTile() == false) { - label = label + " tile"; - - if(serverInterface->getSlot(i,true)->getReceivedDataSynchCheck() == true && - lastTileDataSynchError != "tile CRC mismatch, " + listBoxTileset.getSelectedItem()) { - lastTileDataSynchError = "tile CRC mismatch, " + listBoxTileset.getSelectedItem(); - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - serverInterface->sendTextMessage(lastTileDataSynchError,-1,true,""); - } - } - - if(serverInterface->getSlot(i,true) != NULL && - serverInterface->getSlot(i,true)->getNetworkGameDataSynchCheckOkTech() == false) { - label = label + " techtree"; - - if(serverInterface->getSlot(i,true)->getReceivedDataSynchCheck() == true) { - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - string report = serverInterface->getSlot(i,true)->getNetworkGameDataSynchCheckTechMismatchReport(); - - if(lastTechtreeDataSynchError != "techtree CRC mismatch" + report) { - lastTechtreeDataSynchError = "techtree CRC mismatch" + report; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] report: %s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,report.c_str()); - - serverInterface->sendTextMessage("techtree CRC mismatch",-1,true,""); - vector reportLineTokens; - Tokenize(report,reportLineTokens,"\n"); - for(int reportLine = 0; reportLine < (int)reportLineTokens.size(); ++reportLine) { - serverInterface->sendTextMessage(reportLineTokens[reportLine],-1,true,""); - } - } - } - } - - if(serverInterface->getSlot(i,true) != NULL) { - serverInterface->getSlot(i,true)->setReceivedDataSynchCheck(false); - } - } - } - - //float pingTime = serverInterface->getSlot(i)->getThreadedPingMS(serverInterface->getSlot(i)->getIpAddress().c_str()); - char szBuf[8096]=""; - snprintf(szBuf,8096,"%s",label.c_str()); - - labelNetStatus[i].setText(szBuf); - } - else { - string port = "("+intToStr(config.getInt("PortServer"))+")"; - labelNetStatus[i].setText("--- " + port); - } - } - else{ - labelNetStatus[i].setText(""); - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - //ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - - if(checkBoxScenario.getValue() == false) { - for(int i= 0; i< GameConstants::maxPlayers; ++i) { - if(i >= mapInfo.players) { - listBoxControls[i].setEditable(false); - listBoxControls[i].setEnabled(false); - - //printf("In [%s::%s] Line: %d i = %d mapInfo.players = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,mapInfo.players); - } - else if(listBoxControls[i].getSelectedItemIndex() != ctNetworkUnassigned) { - ConnectionSlot *slot = serverInterface->getSlot(i,true); - if((listBoxControls[i].getSelectedItemIndex() != ctNetwork) || - (listBoxControls[i].getSelectedItemIndex() == ctNetwork && (slot == NULL || slot->isConnected() == false))) { - listBoxControls[i].setEditable(true); - listBoxControls[i].setEnabled(true); - } - else { - listBoxControls[i].setEditable(false); - listBoxControls[i].setEnabled(false); - - //printf("In [%s::%s] Line: %d i = %d mapInfo.players = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,mapInfo.players); - } - } - else { - listBoxControls[i].setEditable(false); - listBoxControls[i].setEnabled(false); - - //printf("In [%s::%s] Line: %d i = %d mapInfo.players = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,mapInfo.players); - } - } - } - - bool checkDataSynch = (serverInterface->getAllowGameDataSynchCheck() == true && - needToSetChangedGameSettings == true && - (( difftime((long int)time(NULL),lastSetChangedGameSettings) >= BROADCAST_SETTINGS_SECONDS)|| - (this->headlessServerMode == true))); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - // Send the game settings to each client if we have at least one networked client - if(checkDataSynch == true) { - serverInterface->setGameSettings(&gameSettings,false); - needToSetChangedGameSettings = false; - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(this->headlessServerMode == true || hasOneNetworkSlotOpen == true || - checkBoxAllowInGameJoinPlayer.getValue() == true) { - if(this->headlessServerMode == true && - GlobalStaticFlags::isFlagSet(gsft_lan_mode) == false) { - checkBoxPublishServer.setValue(true); - } - listBoxFallbackCpuMultiplier.setEditable(true); - checkBoxPublishServer.setEditable(true); - - // Masterserver always needs one network slot - if(this->headlessServerMode == true && hasOneNetworkSlotOpen == false) { - bool anyoneConnected = false; - for(int i= 0; i < mapInfo.players; ++i) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - ConnectionSlot *slot = serverInterface->getSlot(i,true); - if(slot != NULL && slot->isConnected() == true) { - anyoneConnected = true; - break; - } - } - - for(int i= 0; i < mapInfo.players; ++i) { - if(anyoneConnected == false && listBoxControls[i].getSelectedItemIndex() != ctNetwork) { - listBoxControls[i].setSelectedItemIndex(ctNetwork); - } - } - - updateNetworkSlots(); - } - } - else { - checkBoxPublishServer.setValue(false); - checkBoxPublishServer.setEditable(false); - listBoxFallbackCpuMultiplier.setEditable(false); - listBoxFallbackCpuMultiplier.setSelectedItem("1.0"); - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - serverInterface->setPublishEnabled(checkBoxPublishServer.getValue() == true); - } - - bool republishToMaster = (difftime((long int)time(NULL),lastMasterserverPublishing) >= MASTERSERVER_BROADCAST_PUBLISH_SECONDS); - - if(republishToMaster == true) { - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - lastMasterserverPublishing = time(NULL); - } - } - - bool callPublishNow = (checkBoxPublishServer.getEditable() && - checkBoxPublishServer.getValue() == true && - needToRepublishToMasterserver == true); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(callPublishNow == true) { - // give it to me baby, aha aha ... - publishToMasterserver(); - } - if(needToPublishDelayed) { - // this delay is done to make it possible to switch over maps which are not meant to be distributed - if((difftime((long int)time(NULL), mapPublishingDelayTimer) >= BROADCAST_MAP_DELAY_SECONDS) || - (this->headlessServerMode == true) ){ - // after 5 seconds we are allowed to publish again! - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - // set to normal.... - needToPublishDelayed=false; - } - } - if(needToPublishDelayed == false || headlessServerMode == true) { - bool broadCastSettings = (difftime((long int)time(NULL),lastSetChangedGameSettings) >= BROADCAST_SETTINGS_SECONDS); - - if(headlessServerMode==true){ - // publish settings directly when we receive them - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - if(lastGameSettingsreceivedCountgetGameSettingsUpdateCount()){ - needToBroadcastServerSettings=true; - lastSetChangedGameSettings = time(NULL); - lastGameSettingsreceivedCount=serverInterface->getGameSettingsUpdateCount(); - } - } - - if(broadCastSettings == true) { - needToBroadcastServerSettings=true; - lastSetChangedGameSettings = time(NULL); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - //broadCastSettings = (difftime(time(NULL),lastSetChangedGameSettings) >= 2); - //if (broadCastSettings == true) {// reset timer here on bottom becasue used for different things - // lastSetChangedGameSettings = time(NULL); - //} - } - - if(this->headlessServerMode == true) { - lastPlayerDisconnected(); - } - - //call the chat manager - chatManager.updateNetwork(); - - //console - console.update(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(currentConnectionCount > soundConnectionCount){ - soundConnectionCount = currentConnectionCount; - SoundRenderer::getInstance().playFx(CoreData::getInstance().getAttentionSound()); - //switch on music again!! - Config &config = Config::getInstance(); - float configVolume = (config.getInt("SoundVolumeMusic") / 100.f); - CoreData::getInstance().getMenuMusic()->setVolume(configVolume); - } - soundConnectionCount = currentConnectionCount; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(enableFactionTexturePreview == true) { - if( currentTechName_factionPreview != gameSettings.getTech() || - currentFactionName_factionPreview != gameSettings.getFactionTypeName(gameSettings.getThisFactionIndex())) { - - currentTechName_factionPreview=gameSettings.getTech(); - currentFactionName_factionPreview=gameSettings.getFactionTypeName(gameSettings.getThisFactionIndex()); - - initFactionPreview(&gameSettings); - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) SystemFlags::OutputDebug(SystemFlags::debugPerformance,"In [%s::%s Line: %d] took msecs: %lld\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,chrono.getMillis()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugPerformance).enabled && chrono.getMillis() > 0) chrono.start(); - - if(autostart == true) { - autostart = false; - safeMutex.ReleaseLock(); - safeMutexCLI.ReleaseLock(); - if(autoStartSettings != NULL) { - - setupUIFromGameSettings(*autoStartSettings); - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - serverInterface->setGameSettings(autoStartSettings,false); - } - else { - RestoreLastGameSettings(); - } - PlayNow((autoStartSettings == NULL)); - return; - } - } - catch(megaglest_runtime_error& ex) { - //abort(); - //printf("1111111bbbb ex.wantStackTrace() = %d\n",ex.wantStackTrace()); - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - //printf("2222222bbbb ex.wantStackTrace() = %d\n",ex.wantStackTrace()); - - showGeneralError=true; - generalErrorToShow = szBuf; - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - showGeneralError=true; - generalErrorToShow = szBuf; - } -} - -void MenuStateCustomGame::initFactionPreview(const GameSettings *gameSettings) { - string factionVideoUrl = ""; - string factionVideoUrlFallback = ""; - - string factionDefinitionXML = Game::findFactionLogoFile(gameSettings, NULL,currentFactionName_factionPreview + ".xml"); - if(factionDefinitionXML != "" && currentFactionName_factionPreview != GameConstants::RANDOMFACTION_SLOTNAME && - currentFactionName_factionPreview != GameConstants::OBSERVER_SLOTNAME && fileExists(factionDefinitionXML) == true) { - XmlTree xmlTree; - std::map mapExtraTagReplacementValues; - xmlTree.load(factionDefinitionXML, Properties::getTagReplacementValues(&mapExtraTagReplacementValues)); - const XmlNode *factionNode= xmlTree.getRootNode(); - if(factionNode->hasAttribute("faction-preview-video") == true) { - factionVideoUrl = factionNode->getAttribute("faction-preview-video")->getValue(); - } - - factionVideoUrlFallback = Game::findFactionLogoFile(gameSettings, NULL,"preview_video.*"); - if(factionVideoUrl == "") { - factionVideoUrl = factionVideoUrlFallback; - factionVideoUrlFallback = ""; - } - } - //printf("currentFactionName_factionPreview [%s] random [%s] observer [%s] factionVideoUrl [%s]\n",currentFactionName_factionPreview.c_str(),GameConstants::RANDOMFACTION_SLOTNAME,GameConstants::OBSERVER_SLOTNAME,factionVideoUrl.c_str()); - - - if(factionVideoUrl != "") { - //SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - if(CoreData::getInstance().getMenuMusic()->getVolume() != 0) { - CoreData::getInstance().getMenuMusic()->setVolume(0); - factionVideoSwitchedOffVolume=true; - } - - if(currentFactionLogo != factionVideoUrl) { - currentFactionLogo = factionVideoUrl; - if(GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false && - ::Shared::Graphics::VideoPlayer::hasBackEndVideoPlayer() == true) { - - if(factionVideo != NULL) { - factionVideo->closePlayer(); - delete factionVideo; - factionVideo = NULL; - } - string introVideoFile = factionVideoUrl; - string introVideoFileFallback = factionVideoUrlFallback; - - Context *c= GraphicsInterface::getInstance().getCurrentContext(); - SDL_Window *window = static_cast(c)->getPlatformContextGlPtr()->getScreenWindow(); - SDL_Surface *screen = static_cast(c)->getPlatformContextGlPtr()->getScreenSurface(); - - string vlcPluginsPath = Config::getInstance().getString("VideoPlayerPluginsPath",""); - //printf("screen->w = %d screen->h = %d screen->format->BitsPerPixel = %d\n",screen->w,screen->h,screen->format->BitsPerPixel); - factionVideo = new VideoPlayer( - &Renderer::getInstance(), - introVideoFile, - introVideoFileFallback, - window, - 0,0, - screen->w, - screen->h, - screen->format->BitsPerPixel, - true, - vlcPluginsPath, - SystemFlags::VERBOSE_MODE_ENABLED); - factionVideo->initPlayer(); - } - } - } - else { - //SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - //switch on music again!! - Config &config = Config::getInstance(); - float configVolume = (config.getInt("SoundVolumeMusic") / 100.f); - if(factionVideoSwitchedOffVolume){ - if(CoreData::getInstance().getMenuMusic()->getVolume() != configVolume) { - CoreData::getInstance().getMenuMusic()->setVolume(configVolume); - } - factionVideoSwitchedOffVolume=false; - } - - if(factionVideo != NULL) { - factionVideo->closePlayer(); - delete factionVideo; - factionVideo = NULL; - } - } - - if(factionVideo == NULL) { - string factionLogo = Game::findFactionLogoFile(gameSettings, NULL,GameConstants::PREVIEW_SCREEN_FILE_FILTER); - if(factionLogo == "") { - factionLogo = Game::findFactionLogoFile(gameSettings, NULL); - } - if(currentFactionLogo != factionLogo) { - currentFactionLogo = factionLogo; - loadFactionTexture(currentFactionLogo); - } - } -} - -void MenuStateCustomGame::publishToMasterserver() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - int slotCountUsed=0; - int slotCountHumans=0; - int slotCountConnectedPlayers=0; - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - GameSettings gameSettings; - loadGameSettings(&gameSettings); - Config &config= Config::getInstance(); - //string serverinfo=""; - - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - publishToServerInfo.clear(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - for(int i= 0; i < mapInfo.players; ++i) { - if(listBoxControls[i].getSelectedItemIndex() != ctClosed) { - slotCountUsed++; - } - - if(listBoxControls[i].getSelectedItemIndex() == ctNetwork || listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) - { - slotCountHumans++; - if(serverInterface->getSlot(i,true) != NULL && - serverInterface->getSlot(i,true)->isConnected()) { - slotCountConnectedPlayers++; - } - } - else if(listBoxControls[i].getSelectedItemIndex() == ctHuman) { - slotCountHumans++; - slotCountConnectedPlayers++; - } - } - - publishToServerInfo["uuid"] = Config::getInstance().getString("PlayerId",""); - - //?status=waiting&system=linux&info=titus - publishToServerInfo["glestVersion"] = glestVersionString; - publishToServerInfo["platform"] = getPlatformNameString() + "-" + getGITRevisionString(); - publishToServerInfo["binaryCompileDate"] = getCompileDateTime(); - - //game info: - publishToServerInfo["serverTitle"] = gameSettings.getGameName(); - //ip is automatically set - - //game setup info: - - //publishToServerInfo["tech"] = listBoxTechTree.getSelectedItem(); - publishToServerInfo["tech"] = techTreeFiles[listBoxTechTree.getSelectedItemIndex()]; - //publishToServerInfo["map"] = listBoxMap.getSelectedItem(); - publishToServerInfo["map"] = getCurrentMapFile(); - //publishToServerInfo["tileset"] = listBoxTileset.getSelectedItem(); - publishToServerInfo["tileset"] = tilesetFiles[listBoxTileset.getSelectedItemIndex()]; - - publishToServerInfo["activeSlots"] = intToStr(slotCountUsed); - publishToServerInfo["networkSlots"] = intToStr(slotCountHumans); - publishToServerInfo["connectedClients"] = intToStr(slotCountConnectedPlayers); - - string serverPort=config.getString("PortServer", intToStr(GameConstants::serverPort).c_str()); - string externalPort=config.getString("PortExternal", serverPort.c_str()); - publishToServerInfo["externalconnectport"] = externalPort; - publishToServerInfo["privacyPlease"] = intToStr(config.getBool("PrivacyPlease","false")); - - publishToServerInfo["gameStatus"] = intToStr(game_status_waiting_for_players); - if(slotCountHumans <= slotCountConnectedPlayers) { - publishToServerInfo["gameStatus"] = intToStr(game_status_waiting_for_start); - } - - publishToServerInfo["gameUUID"] = gameSettings.getGameUUID(); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateCustomGame::setupTask(BaseThread *callingThread,void *userdata) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\nsetupTask callingThread [%p] userdata [%p]\n",callingThread,userdata); - if(userdata != NULL) { - int value = *((int*)&userdata); - THREAD_NOTIFIER_TYPE threadType = (THREAD_NOTIFIER_TYPE)value; - //printf("\n\nsetupTask callingThread [%p] userdata [%p]\n",callingThread,userdata); - if(threadType == tnt_MASTERSERVER) { - MenuStateCustomGame::setupTaskStatic(callingThread); - } - } -} -void MenuStateCustomGame::shutdownTask(BaseThread *callingThread,void *userdata) { - //printf("\n\nshutdownTask callingThread [%p] userdata [%p]\n",callingThread,userdata); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\nshutdownTask callingThread [%p] userdata [%p]\n",callingThread,userdata); - if(userdata != NULL) { - int value = *((int*)&userdata); - THREAD_NOTIFIER_TYPE threadType = (THREAD_NOTIFIER_TYPE)value; - //printf("\n\nshutdownTask callingThread [%p] userdata [%p]\n",callingThread,userdata); - if(threadType == tnt_MASTERSERVER) { - MenuStateCustomGame::shutdownTaskStatic(callingThread); - } - } -} -void MenuStateCustomGame::setupTaskStatic(BaseThread *callingThread) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - CURL *handle = SystemFlags::initHTTP(); - callingThread->setGenericData(handle); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} -void MenuStateCustomGame::shutdownTaskStatic(BaseThread *callingThread) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - //printf("LINE: %d\n",__LINE__); - CURL *handle = callingThread->getGenericData(); - SystemFlags::cleanupHTTP(&handle); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateCustomGame::simpleTask(BaseThread *callingThread,void *userdata) { - //printf("\n\nSimple Task callingThread [%p] userdata [%p]\n",callingThread,userdata); - int value = *((int*)&userdata); - //printf("\n\nSimple Task callingThread [%p] userdata [%p] value = %d\n",callingThread,userdata,value); - - THREAD_NOTIFIER_TYPE threadType = (THREAD_NOTIFIER_TYPE)value; - if(threadType == tnt_MASTERSERVER) { - simpleTaskForMasterServer(callingThread); - } - else if(threadType == tnt_CLIENTS) { - simpleTaskForClients(callingThread); - } -} - -void MenuStateCustomGame::simpleTaskForMasterServer(BaseThread *callingThread) { - try { - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - A\n"); - - MutexSafeWrapper safeMutexThreadOwner(callingThread->getMutexThreadOwnerValid(),string(__FILE__) + "_" + intToStr(__LINE__)); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - return; - } - - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - B\n"); - - MutexSafeWrapper safeMutex(callingThread->getMutexThreadObjectAccessor(),string(__FILE__) + "_" + intToStr(__LINE__)); - bool republish = (needToRepublishToMasterserver == true && publishToServerInfo.empty() == false); - needToRepublishToMasterserver = false; - std::map newPublishToServerInfo = publishToServerInfo; - publishToServerInfo.clear(); - - //printf("simpleTask broadCastSettings = %d\n",broadCastSettings); - - if(callingThread->getQuitStatus() == true) { - return; - } - - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - C\n"); - - if(republish == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - string request = Config::getInstance().getString("Masterserver"); - if(request != "") { - endPathWithSlash(request,false); - } - request += "addServerInfo.php?"; - - //CURL *handle = SystemFlags::initHTTP(); - CURL *handle = callingThread->getGenericData(); - - int paramIndex = 0; - for(std::map::const_iterator iterMap = newPublishToServerInfo.begin(); - iterMap != newPublishToServerInfo.end(); ++iterMap) { - - request += iterMap->first; - request += "="; - request += SystemFlags::escapeURL(iterMap->second,handle); - - paramIndex++; - if(paramIndex < (int)newPublishToServerInfo.size()) { - request += "&"; + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] humanIndex1 = %d, humanIndex2 = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, + humanIndex1, humanIndex2); + +//no human + if (humanIndex1 == -1 && humanIndex2 == -1) + { + setSlotHuman (index); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] i = %d, labelPlayerNames[i].getText() [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, index, + labelPlayerNames + [index].getText ().c_str ()); + +//printf("humanIndex1 = %d humanIndex2 = %d i = %d listBoxControls[i].getSelectedItemIndex() = %d\n",humanIndex1,humanIndex2,i,listBoxControls[i].getSelectedItemIndex()); + } +//2 humans + else if (humanIndex1 != -1 && humanIndex2 != -1) + { + int closeSlotIndex = + (humanIndex1 == index ? humanIndex2 : humanIndex1); + int humanSlotIndex = + (closeSlotIndex == + humanIndex1 ? humanIndex2 : humanIndex1); + + string origPlayName = + labelPlayerNames[closeSlotIndex].getText (); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] closeSlotIndex = %d, origPlayName [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, + closeSlotIndex, + origPlayName.c_str ()); + + listBoxControls[closeSlotIndex].setSelectedItemIndex + (ctClosed); + setSlotHuman (humanSlotIndex); + labelPlayerNames[humanSlotIndex].setText ((origPlayName != + "" ? + origPlayName : + getHumanPlayerName + ())); + } + updateNetworkSlots (); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + updateResourceMultiplier (index); } - } + } + else if (buttonClearBlockedPlayers.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("The Lobby request is:\n%s\n",request.c_str()); + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + if (serverInterface != NULL) + { + ServerSocket *serverSocket = + serverInterface->getServerSocket (); + if (serverSocket != NULL) + { + serverSocket->clearBlockedIPAddress (); + } + } + } + else if (buttonBlockPlayers[i].mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] the request is:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,request.c_str()); - safeMutex.ReleaseLock(true); - safeMutexThreadOwner.ReleaseLock(); + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + if (serverInterface != NULL) + { + if (serverInterface->getSlot (i, true) != NULL && + serverInterface->getSlot (i, true)->isConnected ()) + { - std::string serverInfo = SystemFlags::getHTTP(request,handle); - //SystemFlags::cleanupHTTP(&handle); + ServerSocket *serverSocket = + serverInterface->getServerSocket (); + if (serverSocket != NULL) + { + serverSocket->addIPAddressToBlockedList + (serverInterface->getSlot (i, true)->getIpAddress ()); - MutexSafeWrapper safeMutexThreadOwner2(callingThread->getMutexThreadOwnerValid(),string(__FILE__) + "_" + intToStr(__LINE__)); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner2.isValidMutex() == false) { - return; - } - safeMutex.Lock(); + Lang & lang = Lang::getInstance (); + const vector < string > languageList = + serverInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages + (); + for (unsigned int j = 0; j < languageList.size (); ++j) + { + char szMsg[8096] = ""; + if (lang.hasString ("BlockPlayerServerMsg", + languageList[j]) == true) + { + snprintf (szMsg, 8096, + lang.getString + ("BlockPlayerServerMsg", + languageList[j]).c_str (), + serverInterface->getSlot (i, + true)->getIpAddress + ().c_str ()); + } + else + { + snprintf (szMsg, 8096, + "The server has temporarily blocked IP Address [%s] from this game.", + serverInterface->getSlot (i, + true)->getIpAddress + ().c_str ()); + } - //printf("the result is:\n'%s'\n",serverInfo.c_str()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] the result is:\n'%s'\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,serverInfo.c_str()); + serverInterface->sendTextMessage (szMsg, -1, true, + languageList[j]); + } + sleep (1); + serverInterface->getSlot (i, true)->close (); + } + } + } + } + else + if (listBoxFactions[i].mouseClick + (x, y, advanceToItemStartingWith)) + { +// Disallow CPU players to be observers + if (factionFiles + [listBoxFactions[i].getSelectedItemIndex ()] == + formatString (GameConstants::OBSERVER_SLOTNAME) + && (listBoxControls[i].getSelectedItemIndex () == + ctCpuEasy + || listBoxControls[i].getSelectedItemIndex () == ctCpu + || listBoxControls[i].getSelectedItemIndex () == + ctCpuUltra + || listBoxControls[i].getSelectedItemIndex () == + ctCpuMega)) + { + listBoxFactions[i].setSelectedItemIndex (0); + } +// - // uncomment to enable router setup check of this server - if(EndsWith(serverInfo, "OK") == false) { - if(callingThread->getQuitStatus() == true) { - return; + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; } - // Give things another chance to see if we can get a connection from the master server - if(tMasterserverErrorElapsed > 0 && - difftime((long int)time(NULL),tMasterserverErrorElapsed) > MASTERSERVER_BROADCAST_MAX_WAIT_RESPONSE_SECONDS) { - showMasterserverError=true; - masterServererErrorToShow = (serverInfo != "" ? serverInfo : "No Reply"); + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); } - else { - if(tMasterserverErrorElapsed == 0) { - tMasterserverErrorElapsed = time(NULL); - } - - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line %d] error checking response from masterserver elapsed seconds = %.2f / %d\nResponse:\n%s\n", - extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,difftime((long int)time(NULL),tMasterserverErrorElapsed),MASTERSERVER_BROADCAST_MAX_WAIT_RESPONSE_SECONDS,serverInfo.c_str()); - - needToRepublishToMasterserver = true; + } + else if (listBoxTeams[i].mouseClick (x, y)) + { + if (factionFiles + [listBoxFactions[i].getSelectedItemIndex ()] != + formatString (GameConstants::OBSERVER_SLOTNAME)) + { + if (listBoxTeams[i].getSelectedItemIndex () + 1 != + (GameConstants::maxPlayers + fpt_Observer)) + { + lastSelectedTeamIndex[i] = + listBoxTeams[i].getSelectedItemIndex (); + } } + else + { + lastSelectedTeamIndex[i] = -1; + } + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL);; + } + } + else if (labelPlayerNames[i].mouseClick (x, y)) + { + ControlType ct = + static_cast < ControlType > + (listBoxControls[i].getSelectedItemIndex ()); + if (ct == ctHuman) + { + setActiveInputLabel (&labelPlayerNames[i]); + break; + } + } } - } - else { - safeMutexThreadOwner.ReleaseLock(); + } } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (hasNetworkGameSettings () == true + && listBoxPlayerStatus.mouseClick (x, y)) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - D\n"); + soundRenderer.playFx (coreData.getClickSoundC ()); + if (getNetworkPlayerStatus () == npst_PickSettings) + { + listBoxPlayerStatus.setTextColor (Vec3f (1.0f, 0.0f, 0.0f)); + listBoxPlayerStatus.setLighted (true); + } + else if (getNetworkPlayerStatus () == npst_BeRightBack) + { + listBoxPlayerStatus.setTextColor (Vec3f (1.0f, 1.0f, 0.0f)); + listBoxPlayerStatus.setLighted (true); + } + else if (getNetworkPlayerStatus () == npst_Ready) + { + listBoxPlayerStatus.setTextColor (Vec3f (0.0f, 1.0f, 0.0f)); + listBoxPlayerStatus.setLighted (false); + } - safeMutex.ReleaseLock(); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - F\n"); + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + showGeneralError = true; + generalErrorToShow = szBuf; + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - if(callingThread->getQuitStatus() == false) { - //throw megaglest_runtime_error(szBuf); - showGeneralError=true; - generalErrorToShow = ex.what(); - } - } + void MenuStateCustomGame::updateAllResourceMultiplier () + { + for (int j = 0; j < GameConstants::maxPlayers; ++j) + { + updateResourceMultiplier (j); + } + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} + void MenuStateCustomGame::updateResourceMultiplier (const int index) + { +//printf("Line: %d multiplier index: %d index: %d\n",__LINE__,listBoxRMultiplier[index].getSelectedItemIndex(),index); -void MenuStateCustomGame::simpleTaskForClients(BaseThread *callingThread) { - try { - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - A\n"); + ControlType ct = + static_cast < ControlType > + (listBoxControls[index].getSelectedItemIndex ()); + if (ct == ctCpuEasy || ct == ctNetworkCpuEasy) + { + listBoxRMultiplier[index].setSelectedItem (floatToStr + (GameConstants:: + easyMultiplier, 1)); + listBoxRMultiplier[index].setEnabled (checkBoxScenario.getValue () == + false); + } + else if (ct == ctCpu || ct == ctNetworkCpu) + { + listBoxRMultiplier[index].setSelectedItem (floatToStr + (GameConstants:: + normalMultiplier, 1)); + listBoxRMultiplier[index].setEnabled (checkBoxScenario.getValue () == + false); + } + else if (ct == ctCpuUltra || ct == ctNetworkCpuUltra) + { + listBoxRMultiplier[index].setSelectedItem (floatToStr + (GameConstants:: + ultraMultiplier, 1)); + listBoxRMultiplier[index].setEnabled (checkBoxScenario.getValue () == + false); + } + else if (ct == ctCpuMega || ct == ctNetworkCpuMega) + { + listBoxRMultiplier[index].setSelectedItem (floatToStr + (GameConstants:: + megaMultiplier, 1)); + listBoxRMultiplier[index].setEnabled (checkBoxScenario.getValue () == + false); + } +//if(ct == ctHuman || ct == ctNetwork || ct == ctClosed) { + else + { + listBoxRMultiplier[index].setSelectedItem (floatToStr + (GameConstants:: + normalMultiplier, 1)); + listBoxRMultiplier[index].setEnabled (false); +//!!!listBoxRMultiplier[index].setEnabled(checkBoxScenario.getValue() == false); + } - MutexSafeWrapper safeMutexThreadOwner(callingThread->getMutexThreadOwnerValid(),string(__FILE__) + "_" + intToStr(__LINE__)); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { + listBoxRMultiplier[index]. + setEditable (listBoxRMultiplier[index].getEnabled ()); + listBoxRMultiplier[index].setVisible (ct != ctHuman && ct != ctNetwork + && ct != ctClosed); +//listBoxRMultiplier[index].setVisible(ct != ctClosed); + +//printf("Line: %d multiplier index: %d index: %d\n",__LINE__,listBoxRMultiplier[index].getSelectedItemIndex(),index); + } + + void MenuStateCustomGame::loadGameSettings (const std::string & fileName) + { +// Ensure we have set the gamesettings at least once + GameSettings gameSettings = loadGameSettingsFromFile (fileName); + if (gameSettings.getMap () == "") + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + loadGameSettings (&gameSettings); + } + + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + serverInterface->setGameSettings (&gameSettings, false); + + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor () + : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + + void MenuStateCustomGame::RestoreLastGameSettings () + { + loadGameSettings (SAVED_GAME_FILENAME); + } + + bool MenuStateCustomGame::checkNetworkPlayerDataSynch (bool checkMapCRC, + bool + checkTileSetCRC, + bool + checkTechTreeCRC) + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + + bool dataSynchCheckOk = true; + for (int i = 0; i < mapInfo.players; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () == ctNetwork) + { + + MutexSafeWrapper safeMutex (serverInterface->getSlotMutex (i), + CODE_AT_LINE); + ConnectionSlot *slot = serverInterface->getSlot (i, false); + if (slot != NULL && slot->isConnected () && + (slot->getAllowDownloadDataSynch () == true || + slot->getAllowGameDataSynchCheck () == true)) + { + + if (checkMapCRC == true && + slot->getNetworkGameDataSynchCheckOkMap () == false) + { + dataSynchCheckOk = false; + break; + } + if (checkTileSetCRC == true && + slot->getNetworkGameDataSynchCheckOkTile () == false) + { + dataSynchCheckOk = false; + break; + } + if (checkTechTreeCRC == true && + slot->getNetworkGameDataSynchCheckOkTech () == false) + { + dataSynchCheckOk = false; + break; + } + } + } + } + + return dataSynchCheckOk; + } + + void MenuStateCustomGame::PlayNow (bool saveGame) + { + if (listBoxTechTree.getItemCount () <= 0) + { + mainMessageBoxState = 1; + + char szMsg[8096] = ""; + strcpy (szMsg, "Cannot start game.\nThere are no tech-trees!\n"); + printf ("%s", szMsg); + + showMessageBox (szMsg, "", false); + return; + } + + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor () + : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (saveGame == true) + { + saveGameSettingsToFile (SAVED_GAME_FILENAME); + } + + forceWaitForShutdown = false; + closeUnusedSlots (); + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + soundRenderer.playFx (coreData.getClickSoundC ()); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + std::vector < string > randomFactionSelectionList; + int RandomCount = 0; + for (int i = 0; i < mapInfo.players; ++i) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +// Check for random faction selection and choose the faction now + if (listBoxControls[i].getSelectedItemIndex () != ctClosed) + { + if (listBoxFactions[i].getSelectedItem () == + formatString (GameConstants::RANDOMFACTION_SLOTNAME) + && listBoxFactions[i].getItemCount () > 1) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] i = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i); + +// Max 1000 tries to get a random, unused faction + for (int findRandomFaction = 1; findRandomFaction < 1000; + ++findRandomFaction) + { + Chrono seed (true); + srand ((unsigned int) seed.getCurTicks () + findRandomFaction); + + int selectedFactionIndex = + rand () % listBoxFactions[i].getItemCount (); + string selectedFactionName = + listBoxFactions[i].getItem (selectedFactionIndex); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] selectedFactionName [%s] selectedFactionIndex = %d, findRandomFaction = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, + selectedFactionName.c_str (), + selectedFactionIndex, + findRandomFaction); + + if (selectedFactionName != + formatString (GameConstants::RANDOMFACTION_SLOTNAME) + && selectedFactionName != + formatString (GameConstants::OBSERVER_SLOTNAME) + && std::find (randomFactionSelectionList.begin (), + randomFactionSelectionList.end (), + selectedFactionName) == + randomFactionSelectionList.end ()) + { + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + listBoxFactions[i].setSelectedItem (selectedFactionName); + randomFactionSelectionList.push_back (selectedFactionName); + break; + } + } + + if (listBoxFactions[i].getSelectedItem () == + formatString (GameConstants::RANDOMFACTION_SLOTNAME)) + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] RandomCount = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, RandomCount); + +// Find first real faction and use it + int factionIndexToUse = RandomCount; + for (int useIdx = 0; + useIdx < listBoxFactions[i].getItemCount (); useIdx++) + { + string selectedFactionName = + listBoxFactions[i].getItem (useIdx); + if (selectedFactionName != + formatString (GameConstants::RANDOMFACTION_SLOTNAME) + && selectedFactionName != + formatString (GameConstants::OBSERVER_SLOTNAME)) + { + factionIndexToUse = useIdx; + break; + } + } + listBoxFactions[i].setSelectedItemIndex (factionIndexToUse); + randomFactionSelectionList.push_back (listBoxFactions[i].getItem + (factionIndexToUse)); + } + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] i = %d, listBoxFactions[i].getSelectedItem() [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i, + listBoxFactions[i].getSelectedItem (). + c_str ()); + + RandomCount++; + } + } + } + + if (RandomCount > 0) + { + needToSetChangedGameSettings = true; + } + + safeMutex.ReleaseLock (true); + safeMutexCLI.ReleaseLock (true); + GameSettings gameSettings; + loadGameSettings (&gameSettings, true); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + +// Send the game settings to each client if we have at least one networked client + safeMutex.Lock (); + safeMutexCLI.Lock (); + + bool dataSynchCheckOk = checkNetworkPlayerDataSynch (true, true, true); + +// Ensure we have no dangling network players + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () == ctNetworkUnassigned) + { + mainMessageBoxState = 1; + + Lang & lang = Lang::getInstance (); + string sMsg = ""; + if (lang.hasString ("NetworkSlotUnassignedErrorUI") == true) + { + sMsg = lang.getString ("NetworkSlotUnassignedErrorUI"); + } + else + { + sMsg = + "Cannot start game.\nSome player(s) are not in a network game slot!"; + } + + showMessageBox (sMsg, "", false); + + const vector < string > languageList = + serverInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int j = 0; j < languageList.size (); ++j) + { + char szMsg[8096] = ""; + if (lang.hasString ("NetworkSlotUnassignedError", + languageList[j]) == true) + { + string msg_string = + lang.getString ("NetworkSlotUnassignedError"); +#ifdef WIN32 + strncpy (szMsg, msg_string.c_str (), + min ((int) msg_string.length (), 8095)); +#else + strncpy (szMsg, msg_string.c_str (), + std::min ((int) msg_string.length (), 8095)); +#endif + } + else + { + strcpy (szMsg, + "Cannot start game, some player(s) are not in a network game slot!"); + } + + serverInterface->sendTextMessage (szMsg, -1, true, + languageList[j]); + } + + safeMutex.ReleaseLock (); + safeMutexCLI.ReleaseLock (); + return; + } + } + + if (dataSynchCheckOk == false) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + mainMessageBoxState = 1; + showMessageBox + ("You cannot start the game because\none or more clients do not have the same game data!", + "Data Mismatch Error", false); + + safeMutex.ReleaseLock (); + safeMutexCLI.ReleaseLock (); + return; + } + else + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + if ((hasNetworkGameSettings () == true + && needToSetChangedGameSettings == true) || (RandomCount > 0)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + serverInterface->setGameSettings (&gameSettings, true); + serverInterface->broadcastGameSetup (&gameSettings); + + needToSetChangedGameSettings = false; + lastSetChangedGameSettings = time (NULL); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +// Last check, stop human player from being in same slot as network + if (isMasterserverMode () == false) + { + bool hasHuman = false; + for (int i = 0; i < mapInfo.players; ++i) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +// Check for random faction selection and choose the faction now + if (listBoxControls[i].getSelectedItemIndex () == ctHuman) + { + hasHuman = true; + break; + } + } + if (hasHuman == false) + { + mainMessageBoxState = 1; + + Lang & lang = Lang::getInstance (); + string sMsg = + lang.getString ("NetworkSlotNoHumanErrorUI", "", true); + showMessageBox (sMsg, "", false); + + const vector < string > languageList = + serverInterface-> + getGameSettings ()->getUniqueNetworkPlayerLanguages (); + for (unsigned int j = 0; j < languageList.size (); ++j) + { + sMsg = lang.getString ("NetworkSlotNoHumanError", "", true); + + serverInterface->sendTextMessage (sMsg, -1, true, + languageList[j]); + } + + safeMutex.ReleaseLock (); + safeMutexCLI.ReleaseLock (); return; + } } - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - B\n"); +// Tell the server Interface whether or not to publish game status updates to masterserver + serverInterface->setNeedToRepublishToMasterserver + (checkBoxPublishServer.getValue () == true); - MutexSafeWrapper safeMutex(callingThread->getMutexThreadObjectAccessor(),string(__FILE__) + "_" + intToStr(__LINE__)); - bool broadCastSettings = needToBroadcastServerSettings; + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + bool bOkToStart = serverInterface->launchGame (&gameSettings); + if (bOkToStart == true) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - //printf("simpleTask broadCastSettings = %d\n",broadCastSettings); + if (checkBoxPublishServer.getEditable () && + checkBoxPublishServer.getValue () == true) + { - needToBroadcastServerSettings = false; - bool hasClientConnection = false; + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - if(broadCastSettings == true) { - ServerInterface *serverInterface = NetworkManager::getInstance().getServerInterface(false); - if(serverInterface != NULL) { - hasClientConnection = serverInterface->hasClientConnection(); + needToRepublishToMasterserver = true; + lastMasterserverPublishing = 0; + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + needToBroadcastServerSettings = false; + needToRepublishToMasterserver = false; + lastNetworkPing = time (NULL); + safeMutex.ReleaseLock (); + safeMutexCLI.ReleaseLock (); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + assert (program != NULL); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + cleanup (); + Game *newGame = + new Game (program, &gameSettings, this->headlessServerMode); + forceWaitForShutdown = false; + program->setState (newGame); + return; + } + else + { + safeMutex.ReleaseLock (); + safeMutexCLI.ReleaseLock (); + } + } + } + + void MenuStateCustomGame::mouseMove (int x, int y, const MouseState * ms) + { + if (isMasterserverMode () == true) + { + return; + } + + if (mainMessageBox.getEnabled ()) + { + mainMessageBox.mouseMove (x, y); + } + buttonReturn.mouseMove (x, y); + buttonPlayNow.mouseMove (x, y); + buttonRestoreLastSettings.mouseMove (x, y); + buttonClearBlockedPlayers.mouseMove (x, y); + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + listBoxRMultiplier[i].mouseMove (x, y); + listBoxControls[i].mouseMove (x, y); + buttonBlockPlayers[i].mouseMove (x, y); + listBoxFactions[i].mouseMove (x, y); + listBoxTeams[i].mouseMove (x, y); + } + + listBoxMap.mouseMove (x, y); + + if (checkBoxAdvanced.getValue () == 1) + { + listBoxFogOfWar.mouseMove (x, y); + checkBoxAllowObservers.mouseMove (x, y); + + checkBoxEnableSwitchTeamMode.mouseMove (x, y); + listBoxAISwitchTeamAcceptPercent.mouseMove (x, y); + listBoxFallbackCpuMultiplier.mouseMove (x, y); + + labelNetworkPauseGameForLaggedClients.mouseMove (x, y); + checkBoxNetworkPauseGameForLaggedClients.mouseMove (x, y); + + labelAllowTeamUnitSharing.mouseMove (x, y); + checkBoxAllowTeamUnitSharing.mouseMove (x, y); + labelAllowTeamResourceSharing.mouseMove (x, y); + checkBoxAllowTeamResourceSharing.mouseMove (x, y); + } + checkBoxAllowInGameJoinPlayer.mouseMove (x, y); + + checkBoxAllowNativeLanguageTechtree.mouseMove (x, y); + + listBoxTileset.mouseMove (x, y); + listBoxMapFilter.mouseMove (x, y); + listBoxTechTree.mouseMove (x, y); + checkBoxPublishServer.mouseMove (x, y); + + checkBoxAdvanced.mouseMove (x, y); + + checkBoxScenario.mouseMove (x, y); + listBoxScenario.mouseMove (x, y); + } + + bool MenuStateCustomGame::isMasterserverMode () const + { + return (this->headlessServerMode == true + && this->masterserverModeMinimalResources == true); +//return false; + } + + bool MenuStateCustomGame::isVideoPlaying () + { + bool result = false; + if (factionVideo != NULL) + { + result = factionVideo->isPlaying (); + } + return result; + } + + void MenuStateCustomGame::render () + { + try + { + Renderer & renderer = Renderer::getInstance (); + + if (mainMessageBox.getEnabled () == false) + { + if (factionTexture != NULL) + { + if (factionVideo == NULL || factionVideo->isPlaying () == false) + { + renderer.renderTextureQuad (800, 600, 200, 150, + factionTexture, 1.0f); } + } } - bool needPing = (difftime((long int)time(NULL),lastNetworkPing) >= GameConstants::networkPingInterval); + if (factionVideo != NULL) + { + if (factionVideo->isPlaying () == true) + { + factionVideo->playFrame (false); + } + else + { + if (GlobalStaticFlags::getIsNonGraphicalModeEnabled () == + false + &&::Shared::Graphics::VideoPlayer::hasBackEndVideoPlayer () == + true) + { + if (factionVideo != NULL) + { + factionVideo->closePlayer (); + delete factionVideo; + factionVideo = NULL; - if(callingThread->getQuitStatus() == true) { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + if (serverInterface != NULL) + { + initFactionPreview (serverInterface->getGameSettings ()); + } + } + } + } + } + + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + + renderer.renderButton (&buttonReturn); + } + else + { + if (mapPreviewTexture != NULL) + { +//renderer.renderTextureQuad(5,185,150,150,mapPreviewTexture,1.0f); + renderer.renderTextureQuad (this->render_mapPreviewTexture_X, + this->render_mapPreviewTexture_Y, + this->render_mapPreviewTexture_W, + this->render_mapPreviewTexture_H, + mapPreviewTexture, 1.0f); + if (this->zoomedMap == true) + { + return; + } +//printf("=================> Rendering map preview texture\n"); + } + if (scenarioLogoTexture != NULL) + { + renderer.renderTextureQuad (300, 350, 400, 300, + scenarioLogoTexture, 1.0f); +//renderer.renderBackground(scenarioLogoTexture); + } + + renderer.renderButton (&buttonReturn); + renderer.renderButton (&buttonPlayNow); + renderer.renderButton (&buttonRestoreLastSettings); + +// Get a reference to the player texture cache + std::map < int, Texture2D * >&crcPlayerTextureCache = + CacheManager::getCachedItem < std::map < int, + Texture2D * >>(GameConstants::playerTextureCacheLookupKey); + +// START - this code ensure player title and player names don't overlap + int offsetPosition = 0; + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + FontMetrics *fontMetrics = NULL; + if (Renderer::renderText3DEnabled == false) + { + fontMetrics = labelPlayers[i].getFont ()->getMetrics (); + } + else + { + fontMetrics = labelPlayers[i].getFont3D ()->getMetrics (); + } + if (fontMetrics == NULL) + { + throw megaglest_runtime_error ("fontMetrics == NULL"); + } + int curWidth = + (fontMetrics->getTextWidth (labelPlayers[i].getText ())); + int newOffsetPosition = labelPlayers[i].getX () + curWidth + 2; + +//printf("labelPlayers[i].getX() = %d curWidth = %d labelPlayerNames[i].getX() = %d offsetPosition = %d newOffsetPosition = %d [%s]\n",labelPlayers[i].getX(),curWidth,labelPlayerNames[i].getX(),offsetPosition,newOffsetPosition,labelPlayers[i].getText().c_str()); + + if (labelPlayers[i].getX () + curWidth >= + labelPlayerNames[i].getX ()) + { + if (offsetPosition < newOffsetPosition) + { + offsetPosition = newOffsetPosition; + } + } + } +// END + + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + if (hasNetworkGameSettings () == true) + { + renderer.renderListBox (&listBoxPlayerStatus); + if (serverInterface != NULL && + serverInterface->getServerSocket () != NULL) + { + renderer.renderButton (&buttonClearBlockedPlayers); + } + } + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { +//printf("Player #%d [%s] control = %d\n",i,labelPlayerNames[i].getText().c_str(),listBoxControls[i].getSelectedItemIndex()); + + labelPlayers[i].setVisible (true); + labelPlayerNames[i].setVisible (true); + listBoxControls[i].setVisible (true); + listBoxFactions[i].setVisible (true); + listBoxTeams[i].setVisible (true); + labelNetStatus[i].setVisible (true); + } + + if (hasNetworkGameSettings () == true && + listBoxControls[i].getSelectedItemIndex () != ctClosed) + { + + renderer.renderLabel (&labelPlayerStatus[i]); + } + + if (crcPlayerTextureCache[i] != NULL) + { +// Render the player # label the player's color + Vec3f playerColor = + crcPlayerTextureCache[i]->getPixmap ()->getPixel3f (0, + 0); + renderer.renderLabel (&labelPlayers[i], &playerColor); + } + else + { + renderer.renderLabel (&labelPlayers[i]); + } + + if (offsetPosition > 0) + { + labelPlayerNames[i].setX (offsetPosition); + } + renderer.renderLabel (&labelPlayerNames[i]); + + renderer.renderListBox (&listBoxControls[i]); + + if (hasNetworkGameSettings () == true && + listBoxControls[i].getSelectedItemIndex () != ctClosed) + { + + renderer.renderLabel (&labelPlayerStatus[i]); + + if (listBoxControls[i].getSelectedItemIndex () == + ctNetwork + || listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + if (serverInterface != NULL + && serverInterface->getSlot (i, true) != NULL + && serverInterface->getSlot (i, true)->isConnected ()) + { + renderer.renderButton (&buttonBlockPlayers[i]); + } + } + } + + if (listBoxControls[i].getSelectedItemIndex () != ctClosed) + { + renderer.renderListBox (&listBoxRMultiplier[i]); + renderer.renderListBox (&listBoxFactions[i]); + + int teamnumber = listBoxTeams[i].getSelectedItemIndex (); + Vec3f teamcolor = Vec3f (1.0f, 1.0f, 1.0f); + if (teamnumber >= 0 && teamnumber < 8) + { + teamcolor = + crcPlayerTextureCache[teamnumber]-> + getPixmap ()->getPixel3f (0, 0); + } + listBoxTeams[i].setTextColor (teamcolor); + + renderer.renderListBox (&listBoxTeams[i]); + renderer.renderLabel (&labelNetStatus[i]); + } + } + + renderer.renderLabel (&labelLocalGameVersion); + renderer.renderLabel (&labelLocalIP); + renderer.renderLabel (&labelMap); + + if (checkBoxAdvanced.getValue () == 1) + { + renderer.renderLabel (&labelFogOfWar); + renderer.renderLabel (&labelAllowObservers); + renderer.renderLabel (&labelFallbackCpuMultiplier); + + renderer.renderLabel (&labelEnableSwitchTeamMode); + renderer.renderLabel (&labelAISwitchTeamAcceptPercent); + + renderer.renderListBox (&listBoxFogOfWar); + renderer.renderCheckBox (&checkBoxAllowObservers); + + renderer.renderCheckBox (&checkBoxEnableSwitchTeamMode); + renderer.renderListBox (&listBoxAISwitchTeamAcceptPercent); + renderer.renderListBox (&listBoxFallbackCpuMultiplier); + + renderer.renderLabel (&labelAllowTeamUnitSharing); + renderer.renderCheckBox (&checkBoxAllowTeamUnitSharing); + + renderer.renderLabel (&labelAllowTeamResourceSharing); + renderer.renderCheckBox (&checkBoxAllowTeamResourceSharing); + } + renderer.renderLabel (&labelAllowInGameJoinPlayer); + renderer.renderCheckBox (&checkBoxAllowInGameJoinPlayer); + + renderer.renderLabel (&labelTileset); + renderer.renderLabel (&labelMapFilter); + renderer.renderLabel (&labelTechTree); + renderer.renderLabel (&labelControl); + renderer.renderLabel (&labelFaction); + renderer.renderLabel (&labelTeam); + renderer.renderLabel (&labelMapInfo); + renderer.renderLabel (&labelAdvanced); + + renderer.renderListBox (&listBoxMap); + renderer.renderListBox (&listBoxTileset); + renderer.renderListBox (&listBoxMapFilter); + renderer.renderListBox (&listBoxTechTree); + renderer.renderCheckBox (&checkBoxAdvanced); + + if (checkBoxPublishServer.getEditable ()) + { + renderer.renderCheckBox (&checkBoxPublishServer); + renderer.renderLabel (&labelPublishServer); + renderer.renderLabel (&labelGameName); + if (checkBoxAdvanced.getValue () == 1) + { + renderer.renderLabel (&labelNetworkPauseGameForLaggedClients); + renderer.renderCheckBox + (&checkBoxNetworkPauseGameForLaggedClients); + } + } + + renderer.renderCheckBox (&checkBoxScenario); + renderer.renderLabel (&labelScenario); + if (checkBoxScenario.getValue () == true) + { + renderer.renderListBox (&listBoxScenario); + } + + renderer.renderLabel (&labelAllowNativeLanguageTechtree); + renderer.renderCheckBox (&checkBoxAllowNativeLanguageTechtree); + } + + if (program != NULL) + program->renderProgramMsgBox (); + + if (enableMapPreview == true && mapPreview.hasFileLoaded () == true) + { + + if (mapPreviewTexture == NULL) + { + bool renderAll = (listBoxFogOfWar.getSelectedItemIndex () == 2); +//printf("=================> Rendering map preview into a texture BEFORE (%p)\n", mapPreviewTexture); + +//renderer.renderMapPreview(&mapPreview, renderAll, 10, 350,&mapPreviewTexture); + renderer.renderMapPreview (&mapPreview, renderAll, + this->render_mapPreviewTexture_X, + this->render_mapPreviewTexture_Y, + &mapPreviewTexture); + +//printf("=================> Rendering map preview into a texture AFTER (%p)\n", mapPreviewTexture); + } + } + + if (mainMessageBox.getEnabled () == false) + { + if (hasNetworkGameSettings () == true) + { + renderer.renderChatManager (&chatManager); + } + } + renderer.renderConsole (&console, + showFullConsole ? consoleFull : + consoleStoredAndNormal); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); +//throw megaglest_runtime_error(szBuf); + + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + showGeneralError = true; + generalErrorToShow = szBuf; + } + } + + void MenuStateCustomGame::switchSetupForSlots (SwitchSetupRequest ** + switchSetupRequests, + ServerInterface * + &serverInterface, + int startIndex, + int endIndex, + bool onlyNetworkUnassigned) + { + for (int i = startIndex; i < endIndex; ++i) + { + if (switchSetupRequests[i] != NULL) + { +//printf("Switch slot = %d control = %d newIndex = %d currentindex = %d onlyNetworkUnassigned = %d\n",i,listBoxControls[i].getSelectedItemIndex(),switchSetupRequests[i]->getToFactionIndex(),switchSetupRequests[i]->getCurrentFactionIndex(),onlyNetworkUnassigned); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] switchSetupRequests[i]->getSwitchFlags() = %d\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__, + switchSetupRequests[i]->getSwitchFlags + ()); + + if (onlyNetworkUnassigned == true + && listBoxControls[i].getSelectedItemIndex () != + ctNetworkUnassigned) + { + if (i < mapInfo.players + || (i >= mapInfo.players + && listBoxControls[i].getSelectedItemIndex () != + ctNetwork)) + { + continue; + } + } + + if (listBoxControls[i].getSelectedItemIndex () == ctNetwork + || listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] switchSetupRequests[i]->getToFactionIndex() = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, + switchSetupRequests[i]->getToSlotIndex + ()); + + if (switchSetupRequests[i]->getToSlotIndex () != -1) + { + int newFactionIdx = switchSetupRequests[i]->getToSlotIndex (); + +//printf("switchSlot request from %d to %d\n",switchSetupRequests[i]->getCurrentFactionIndex(),switchSetupRequests[i]->getToFactionIndex()); + int switchFactionIdx = + switchSetupRequests[i]->getCurrentSlotIndex (); + if (serverInterface->switchSlot + (switchFactionIdx, newFactionIdx)) + { + try + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + ConnectionSlot *slot = + serverInterface->getSlot (newFactionIdx, true); + + if (switchSetupRequests[i]->getSelectedFactionName () != "" + && (slot != NULL + && switchSetupRequests[i]->getSelectedFactionName () + != Lang::getInstance ().getString ("DataMissing", + slot->getNetworkPlayerLanguage + (), true) + && switchSetupRequests[i]->getSelectedFactionName () + != "???DataMissing???")) + { + listBoxFactions[newFactionIdx].setSelectedItem + (switchSetupRequests[i]->getSelectedFactionName ()); + } + if (switchSetupRequests[i]->getToTeam () != -1) + { + listBoxTeams[newFactionIdx].setSelectedItemIndex + (switchSetupRequests[i]->getToTeam ()); + } + if (switchSetupRequests[i]->getNetworkPlayerName () != "") + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] i = %d, labelPlayerNames[newFactionIdx].getText() [%s] switchSetupRequests[i]->getNetworkPlayerName() [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, i, + labelPlayerNames + [newFactionIdx].getText + ().c_str (), + switchSetupRequests + [i]->getNetworkPlayerName (). + c_str ()); + labelPlayerNames[newFactionIdx].setText + (switchSetupRequests[i]->getNetworkPlayerName ()); + } + + if (listBoxControls[switchFactionIdx].getSelectedItemIndex + () == ctNetworkUnassigned) + { + serverInterface->removeSlot (switchFactionIdx); + listBoxControls[switchFactionIdx].setSelectedItemIndex + (ctClosed); + + labelPlayers[switchFactionIdx].setVisible + (switchFactionIdx + 1 <= mapInfo.players); + labelPlayerNames[switchFactionIdx].setVisible + (switchFactionIdx + 1 <= mapInfo.players); + listBoxControls[switchFactionIdx].setVisible + (switchFactionIdx + 1 <= mapInfo.players); + listBoxFactions[switchFactionIdx].setVisible + (switchFactionIdx + 1 <= mapInfo.players); + listBoxTeams[switchFactionIdx].setVisible + (switchFactionIdx + 1 <= mapInfo.players); + labelNetStatus[switchFactionIdx].setVisible + (switchFactionIdx + 1 <= mapInfo.players); + } + } + catch (const runtime_error & e) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, + e.what ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] caught exception error = [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, + e.what ()); + } + } + } + else + { + try + { + int factionIdx = + switchSetupRequests[i]->getCurrentSlotIndex (); + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + ConnectionSlot *slot = + serverInterface->getSlot (factionIdx, true); + + if (switchSetupRequests[i]->getSelectedFactionName () != "" + && (slot != NULL + && switchSetupRequests[i]->getSelectedFactionName () + != Lang::getInstance ().getString ("DataMissing", + slot->getNetworkPlayerLanguage + (), true) + && switchSetupRequests[i]->getSelectedFactionName () + != "???DataMissing???")) + { + listBoxFactions[i].setSelectedItem (switchSetupRequests + [i]->getSelectedFactionName + ()); + } + if (switchSetupRequests[i]->getToTeam () != -1) + { + listBoxTeams[i].setSelectedItemIndex (switchSetupRequests + [i]->getToTeam ()); + } + + if ((switchSetupRequests[i]->getSwitchFlags () & + ssrft_NetworkPlayerName) == ssrft_NetworkPlayerName) + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, switchSetupRequests[i]->getSwitchFlags() = %d, switchSetupRequests[i]->getNetworkPlayerName() [%s], labelPlayerNames[i].getText() [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, i, + switchSetupRequests + [i]->getSwitchFlags (), + switchSetupRequests + [i]->getNetworkPlayerName (). + c_str (), + labelPlayerNames[i].getText (). + c_str ()); + + if (switchSetupRequests[i]->getNetworkPlayerName () != + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) + { + labelPlayerNames[i].setText (switchSetupRequests + [i]->getNetworkPlayerName + ()); + } + else + { + labelPlayerNames[i].setText (""); + } + } + } + catch (const runtime_error & e) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, e.what ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] caught exception error = [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, e.what ()); + } + } + } + + delete switchSetupRequests[i]; + switchSetupRequests[i] = NULL; + } + } + } + + void MenuStateCustomGame::update () + { + Chrono chrono; + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled) + chrono.start (); + +// Test openal buffer underrun issue +//sleep(200); +// END + + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor () + : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + try + { + if (serverInitError == true) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + if (showGeneralError) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + + showGeneralError = false; + mainMessageBoxState = 1; + showMessageBox (generalErrorToShow, "Error", false); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + if (this->headlessServerMode == false) + { return; + } + } + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + Lang & lang = Lang::getInstance (); + + if (serverInterface != NULL + && serverInterface->getServerSocket () != NULL) + { + buttonClearBlockedPlayers. + setEditable (serverInterface->getServerSocket + ()->hasBlockedIPAddresses ()); } - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - C\n"); + if (this->autoloadScenarioName != "") + { + listBoxScenario.setSelectedItem (formatString + (this->autoloadScenarioName), + false); + lastSetChangedGameSettings = time (NULL); + if (serverInterface != NULL) + { + lastGameSettingsreceivedCount = + serverInterface->getGameSettingsUpdateCount (); + } + if (listBoxScenario.getSelectedItem () != + formatString (this->autoloadScenarioName)) + { + mainMessageBoxState = 1; + showMessageBox ("Could not find scenario name: " + + formatString (this->autoloadScenarioName), + "Scenario Missing", false); + this->autoloadScenarioName = ""; + } + else + { + loadScenarioInfo (Scenario::getScenarioPath (dirList, + scenarioFiles + [listBoxScenario.getSelectedItemIndex + ()]), + &scenarioInfo); +//labelInfo.setText(scenarioInfo.desc); - safeMutexThreadOwner.ReleaseLock(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - D\n"); - - if(broadCastSettings == true) { - MutexSafeWrapper safeMutexThreadOwner2(callingThread->getMutexThreadOwnerValid(),string(__FILE__) + "_" + intToStr(__LINE__)); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner2.isValidMutex() == false) { - return; - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - //printf("simpleTask broadCastSettings = %d hasClientConnection = %d\n",broadCastSettings,hasClientConnection); - - if(callingThread->getQuitStatus() == true) { - return; - } - ServerInterface *serverInterface= NetworkManager::getInstance().getServerInterface(false); - if(serverInterface != NULL) { - lastGameSettingsreceivedCount++; - if(this->headlessServerMode == false || (serverInterface->getGameSettingsUpdateCount() <= lastMasterServerSettingsUpdateCount)) { - GameSettings gameSettings; - loadGameSettings(&gameSettings); - - //printf("\n\n\n\n=====#2 got settings [%d] [%d]:\n%s\n",lastMasterServerSettingsUpdateCount,serverInterface->getGameSettingsUpdateCount(),gameSettings.toString().c_str()); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - serverInterface->setGameSettings(&gameSettings,false); - lastMasterServerSettingsUpdateCount = serverInterface->getGameSettingsUpdateCount(); - - if(hasClientConnection == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - serverInterface->broadcastGameSetup(&gameSettings); - } - } - } + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + CoreData & coreData = CoreData::getInstance (); + soundRenderer.playFx (coreData.getClickSoundC ()); +//launchGame(); + PlayNow (true); + return; + } } - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - E\n"); - - if(needPing == true) { - MutexSafeWrapper safeMutexThreadOwner2(callingThread->getMutexThreadOwnerValid(),string(__FILE__) + "_" + intToStr(__LINE__)); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner2.isValidMutex() == false) { - return; - } - - lastNetworkPing = time(NULL); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] Sending nmtPing to clients\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - ServerInterface *serverInterface= NetworkManager::getInstance().getServerInterface(false); - if(serverInterface != NULL) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - NetworkMessagePing *msg = new NetworkMessagePing(GameConstants::networkPingInterval,time(NULL)); - //serverInterface->broadcastPing(&msg); - serverInterface->queueBroadcastMessage(msg); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } + if (needToLoadTextures) + { +// this delay is done to make it possible to switch faster + if (difftime ((long int) time (NULL), previewLoadDelayTimer) >= 2) + { +//loadScenarioPreviewTexture(); + needToLoadTextures = false; + } } - safeMutex.ReleaseLock(); - //printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - F\n"); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); +//bool haveAtLeastOneNetworkClientConnected = false; + bool hasOneNetworkSlotOpen = false; + int currentConnectionCount = 0; + Config & config = Config::getInstance (); - if(callingThread->getQuitStatus() == false) { - //throw megaglest_runtime_error(szBuf); - showGeneralError=true; - generalErrorToShow = ex.what(); - } - } + bool masterServerErr = showMasterserverError; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); -void MenuStateCustomGame::loadGameSettings(GameSettings *gameSettings,bool forceCloseUnusedSlots) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (masterServerErr) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - int factionCount= 0; - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); + if (EndsWith (masterServererErrorToShow, "wrong router setup") == + true) + { + masterServererErrorToShow = lang.getString ("WrongRouterSetup"); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + Lang & lang = Lang::getInstance (); + string publishText = " (disabling publish)"; + if (lang.hasString ("PublishDisabled") == true) + { + publishText = lang.getString ("PublishDisabled"); + } - if(this->headlessServerMode == true && serverInterface->getGameSettingsUpdateCount() > lastMasterServerSettingsUpdateCount && - serverInterface->getGameSettings() != NULL) { - const GameSettings *settings = serverInterface->getGameSettings(); - //printf("\n\n\n\n=====#3 got settings [%d] [%d]:\n%s\n",lastMasterServerSettingsUpdateCount,serverInterface->getGameSettingsUpdateCount(),settings->toString().c_str()); + masterServererErrorToShow += "\n\n" + publishText; + showMasterserverError = false; + mainMessageBoxState = 1; + showMessageBox (masterServererErrorToShow, + lang.getString ("ErrorFromMasterserver"), false); - lastMasterServerSettingsUpdateCount = serverInterface->getGameSettingsUpdateCount(); - //printf("#1 custom menu got map [%s]\n",settings->getMap().c_str()); + if (this->headlessServerMode == false) + { + checkBoxPublishServer.setValue (false); + } - setupUIFromGameSettings(*settings); - } + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + serverInterface-> + setPublishEnabled (checkBoxPublishServer.getValue () == true); + } + else if (showGeneralError) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - gameSettings->setGameName(labelGameName.getText()); + showGeneralError = false; + mainMessageBoxState = 1; + showMessageBox (generalErrorToShow, "Error", false); + } - // Test flags values - //gameSettings->setFlagTypes1(ft1_show_map_resources); - // + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); - if(checkBoxScenario.getValue() == true) { - gameSettings->setScenario(scenarioInfo.name); - gameSettings->setScenarioDir(Scenario::getScenarioPath(dirList, scenarioInfo.name)); + if (this->headlessServerMode == true && serverInterface == NULL) + { + throw megaglest_runtime_error ("serverInterface == NULL"); + } + if (this->headlessServerMode == true + && serverInterface->getGameSettingsUpdateCount () > + lastMasterServerSettingsUpdateCount + && serverInterface->getGameSettings () != NULL) + { + const GameSettings *settings = serverInterface->getGameSettings (); +//printf("\n\n\n\n=====#1 got settings [%d] [%d]:\n%s\n",lastMasterServerSettingsUpdateCount,serverInterface->getGameSettingsUpdateCount(),settings->toString().c_str()); - gameSettings->setDefaultResources(scenarioInfo.defaultResources); - gameSettings->setDefaultUnits(scenarioInfo.defaultUnits); - gameSettings->setDefaultVictoryConditions(scenarioInfo.defaultVictoryConditions); - } - else { - gameSettings->setScenario(""); - gameSettings->setScenarioDir(""); - } + lastMasterServerSettingsUpdateCount = + serverInterface->getGameSettingsUpdateCount (); +//printf("#2 custom menu got map [%s]\n",settings->getMap().c_str()); - gameSettings->setGameUUID(this->gameUUID); + setupUIFromGameSettings (*settings); + printf ("received Settings map filter=%d\n", + settings->getMapFilter ()); - //printf("scenarioInfo.name [%s] [%s] [%s]\n",scenarioInfo.name.c_str(),listBoxMap.getSelectedItem().c_str(),getCurrentMapFile().c_str()); + GameSettings gameSettings; + loadGameSettings (&gameSettings); - gameSettings->setMapFilter(listBoxMapFilter.getSelectedItemIndex()); - gameSettings->setDescription(formatString(getCurrentMapFile())); - gameSettings->setMap(getCurrentMapFile()); - if(tilesetFiles.empty() == false) { - gameSettings->setTileset(tilesetFiles[listBoxTileset.getSelectedItemIndex()]); - } - if(techTreeFiles.empty() == false) { - gameSettings->setTech(techTreeFiles[listBoxTechTree.getSelectedItemIndex()]); - } +//printf("\n\n\n\n=====#1.1 got settings [%d] [%d]:\n%s\n",lastMasterServerSettingsUpdateCount,serverInterface->getGameSettingsUpdateCount(),gameSettings.toString().c_str()); - if(autoStartSettings != NULL) { - gameSettings->setDefaultUnits(autoStartSettings->getDefaultUnits()); - gameSettings->setDefaultResources(autoStartSettings->getDefaultResources()); - gameSettings->setDefaultVictoryConditions(autoStartSettings->getDefaultVictoryConditions()); - } - else if(checkBoxScenario.getValue() == false) { - gameSettings->setDefaultUnits(true); - gameSettings->setDefaultResources(true); - gameSettings->setDefaultVictoryConditions(true); + } + if (this->headlessServerMode == true + && serverInterface->getMasterserverAdminRequestLaunch () == true) + { + serverInterface->setMasterserverAdminRequestLaunch (false); + safeMutex.ReleaseLock (); + safeMutexCLI.ReleaseLock (); + + PlayNow (false); + return; + } + +// handle setting changes from clients + SwitchSetupRequest **switchSetupRequests = + serverInterface->getSwitchSetupRequests (); +//!!! + switchSetupForSlots (switchSetupRequests, serverInterface, 0, + mapInfo.players, false); + switchSetupForSlots (switchSetupRequests, serverInterface, + mapInfo.players, GameConstants::maxPlayers, + true); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + GameSettings gameSettings; + loadGameSettings (&gameSettings); + + listBoxAISwitchTeamAcceptPercent.setEnabled + (checkBoxEnableSwitchTeamMode.getValue ()); + + int factionCount = 0; + for (int i = 0; i < mapInfo.players; ++i) + { + if (hasNetworkGameSettings () == true) + { + if (listBoxControls[i].getSelectedItemIndex () != ctClosed) + { + int slotIndex = factionCount; + if (listBoxControls[i].getSelectedItemIndex () == ctHuman) + { + switch (gameSettings.getNetworkPlayerStatuses (slotIndex)) + { + case npst_BeRightBack: + labelPlayerStatus[i].setTexture (CoreData::getInstance + ().getStatusBRBTexture ()); + break; + case npst_Ready: + labelPlayerStatus[i].setTexture (CoreData::getInstance + ().getStatusReadyTexture + ()); + break; + case npst_PickSettings: + labelPlayerStatus[i].setTexture (CoreData::getInstance + ().getStatusNotReadyTexture + ()); + break; + case npst_Disconnected: + labelPlayerStatus[i].setTexture (NULL); + break; + + default: + labelPlayerStatus[i].setTexture (NULL); + break; + } + } + else + { + labelPlayerStatus[i].setTexture (NULL); + } + + factionCount++; + } + else + { + labelPlayerStatus[i].setTexture (NULL); + } + } + + if (listBoxControls[i].getSelectedItemIndex () == ctNetwork || + listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + hasOneNetworkSlotOpen = true; + + if (serverInterface->getSlot (i, true) != NULL && + serverInterface->getSlot (i, true)->isConnected ()) + { + + if (hasNetworkGameSettings () == true) + { + switch (serverInterface-> + getSlot (i, true)->getNetworkPlayerStatus ()) + { + case npst_BeRightBack: + labelPlayerStatus[i].setTexture (CoreData::getInstance + ().getStatusBRBTexture ()); + break; + case npst_Ready: + labelPlayerStatus[i].setTexture (CoreData::getInstance + ().getStatusReadyTexture + ()); + break; + case npst_PickSettings: + default: + labelPlayerStatus[i].setTexture (CoreData::getInstance + ().getStatusNotReadyTexture + ()); + break; + } + } + + serverInterface->getSlot (i, + true)->setName (labelPlayerNames[i]. + getText ()); + +//printf("FYI we have at least 1 client connected, slot = %d'\n",i); + +//haveAtLeastOneNetworkClientConnected = true; + if (serverInterface->getSlot (i, true) != NULL && + serverInterface->getSlot (i, + true)->getConnectHasHandshaked ()) + { + currentConnectionCount++; + } + string label = + (serverInterface->getSlot (i, true) != + NULL ? serverInterface->getSlot (i, + true)->getVersionString () : + ""); + + if (serverInterface->getSlot (i, true) != NULL && + serverInterface->getSlot (i, + true)->getAllowDownloadDataSynch + () == true + && serverInterface->getSlot (i, + true)->getAllowGameDataSynchCheck + () == true) + { + if (serverInterface->getSlot (i, + true)->getNetworkGameDataSynchCheckOk + () == false) + { + label += " -waiting to synch:"; + if (serverInterface->getSlot (i, + true)->getNetworkGameDataSynchCheckOkMap + () == false) + { + label = label + " map"; + } + if (serverInterface->getSlot (i, + true)->getNetworkGameDataSynchCheckOkTile + () == false) + { + label = label + " tile"; + } + if (serverInterface->getSlot (i, + true)->getNetworkGameDataSynchCheckOkTech + () == false) + { + label = label + " techtree"; + } + } + else + { + label += " - data synch is ok"; + } + } + else + { + if (serverInterface->getSlot (i, true) != NULL && + serverInterface->getSlot (i, + true)->getAllowGameDataSynchCheck + () == true + && serverInterface->getSlot (i, + true)->getNetworkGameDataSynchCheckOk + () == false) + { + label += " -synch mismatch:"; + + if (serverInterface->getSlot (i, true) != NULL + && serverInterface->getSlot (i, + true)->getNetworkGameDataSynchCheckOkMap + () == false) + { + label = label + " map"; + + if (serverInterface->getSlot (i, + true)->getReceivedDataSynchCheck + () == true + && lastMapDataSynchError != + "map CRC mismatch, " + listBoxMap.getSelectedItem ()) + { + lastMapDataSynchError = + "map CRC mismatch, " + listBoxMap.getSelectedItem (); + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + serverInterface->sendTextMessage (lastMapDataSynchError, + -1, true, ""); + } + } + + if (serverInterface->getSlot (i, true) != NULL && + serverInterface->getSlot (i, + true)->getNetworkGameDataSynchCheckOkTile + () == false) + { + label = label + " tile"; + + if (serverInterface->getSlot (i, + true)->getReceivedDataSynchCheck + () == true + && lastTileDataSynchError != + "tile CRC mismatch, " + + listBoxTileset.getSelectedItem ()) + { + lastTileDataSynchError = + "tile CRC mismatch, " + + listBoxTileset.getSelectedItem (); + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + serverInterface->sendTextMessage + (lastTileDataSynchError, -1, true, ""); + } + } + + if (serverInterface->getSlot (i, true) != NULL && + serverInterface->getSlot (i, + true)->getNetworkGameDataSynchCheckOkTech + () == false) + { + label = label + " techtree"; + + if (serverInterface->getSlot (i, + true)->getReceivedDataSynchCheck + () == true) + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + string report = serverInterface->getSlot (i, + true)->getNetworkGameDataSynchCheckTechMismatchReport + (); + + if (lastTechtreeDataSynchError != + "techtree CRC mismatch" + report) + { + lastTechtreeDataSynchError = + "techtree CRC mismatch" + report; + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] report: %s\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, + __LINE__, + report.c_str ()); + + serverInterface->sendTextMessage + ("techtree CRC mismatch", -1, true, ""); + vector < string > reportLineTokens; + Tokenize (report, reportLineTokens, "\n"); + for (int reportLine = 0; + reportLine < + (int) reportLineTokens.size (); ++reportLine) + { + serverInterface->sendTextMessage + (reportLineTokens[reportLine], -1, true, ""); + } + } + } + } + + if (serverInterface->getSlot (i, true) != NULL) + { + serverInterface->getSlot (i, + true)->setReceivedDataSynchCheck + (false); + } + } + } + +//float pingTime = serverInterface->getSlot(i)->getThreadedPingMS(serverInterface->getSlot(i)->getIpAddress().c_str()); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "%s", label.c_str ()); + + labelNetStatus[i].setText (szBuf); + } + else + { + string port = + "(" + intToStr (config.getInt ("PortServer")) + ")"; + labelNetStatus[i].setText ("--- " + port); + } + } + else + { + labelNetStatus[i].setText (""); + } + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +//ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); + + if (checkBoxScenario.getValue () == false) + { + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + if (i >= mapInfo.players) + { + listBoxControls[i].setEditable (false); + listBoxControls[i].setEnabled (false); + +//printf("In [%s::%s] Line: %d i = %d mapInfo.players = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,mapInfo.players); + } + else if (listBoxControls[i].getSelectedItemIndex () != + ctNetworkUnassigned) + { + ConnectionSlot *slot = serverInterface->getSlot (i, true); + if ((listBoxControls[i].getSelectedItemIndex () != + ctNetwork) + || (listBoxControls[i].getSelectedItemIndex () == + ctNetwork && (slot == NULL + || slot->isConnected () == false))) + { + listBoxControls[i].setEditable (true); + listBoxControls[i].setEnabled (true); + } + else + { + listBoxControls[i].setEditable (false); + listBoxControls[i].setEnabled (false); + +//printf("In [%s::%s] Line: %d i = %d mapInfo.players = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,mapInfo.players); + } + } + else + { + listBoxControls[i].setEditable (false); + listBoxControls[i].setEnabled (false); + +//printf("In [%s::%s] Line: %d i = %d mapInfo.players = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,mapInfo.players); + } + } + } + + bool checkDataSynch = + (serverInterface->getAllowGameDataSynchCheck () == true + && needToSetChangedGameSettings == true + && + ((difftime ((long int) time (NULL), lastSetChangedGameSettings) >= + BROADCAST_SETTINGS_SECONDS) + || (this->headlessServerMode == true))); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +// Send the game settings to each client if we have at least one networked client + if (checkDataSynch == true) + { + serverInterface->setGameSettings (&gameSettings, false); + needToSetChangedGameSettings = false; + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (this->headlessServerMode == true || hasOneNetworkSlotOpen == true + || checkBoxAllowInGameJoinPlayer.getValue () == true) + { + if (this->headlessServerMode == true && + GlobalStaticFlags::isFlagSet (gsft_lan_mode) == false) + { + checkBoxPublishServer.setValue (true); + } + listBoxFallbackCpuMultiplier.setEditable (true); + checkBoxPublishServer.setEditable (true); + +// Masterserver always needs one network slot + if (this->headlessServerMode == true + && hasOneNetworkSlotOpen == false) + { + bool anyoneConnected = false; + for (int i = 0; i < mapInfo.players; ++i) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + ConnectionSlot *slot = serverInterface->getSlot (i, true); + if (slot != NULL && slot->isConnected () == true) + { + anyoneConnected = true; + break; + } + } + + for (int i = 0; i < mapInfo.players; ++i) + { + if (anyoneConnected == false + && listBoxControls[i].getSelectedItemIndex () != ctNetwork) + { + listBoxControls[i].setSelectedItemIndex (ctNetwork); + } + } + + updateNetworkSlots (); + } + } + else + { + checkBoxPublishServer.setValue (false); + checkBoxPublishServer.setEditable (false); + listBoxFallbackCpuMultiplier.setEditable (false); + listBoxFallbackCpuMultiplier.setSelectedItem ("1.0"); + + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + serverInterface-> + setPublishEnabled (checkBoxPublishServer.getValue () == true); + } + + bool republishToMaster = + (difftime ((long int) time (NULL), lastMasterserverPublishing) >= + MASTERSERVER_BROADCAST_PUBLISH_SECONDS); + + if (republishToMaster == true) + { + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + lastMasterserverPublishing = time (NULL); + } + } + + bool callPublishNow = (checkBoxPublishServer.getEditable () && + checkBoxPublishServer.getValue () == true && + needToRepublishToMasterserver == true); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (callPublishNow == true) + { +// give it to me baby, aha aha ... + publishToMasterserver (); + } + if (needToPublishDelayed) + { +// this delay is done to make it possible to switch over maps which are not meant to be distributed + if ((difftime ((long int) time (NULL), mapPublishingDelayTimer) >= + BROADCAST_MAP_DELAY_SECONDS) + || (this->headlessServerMode == true)) + { +// after 5 seconds we are allowed to publish again! + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); +// set to normal.... + needToPublishDelayed = false; + } + } + if (needToPublishDelayed == false || headlessServerMode == true) + { + bool broadCastSettings = + (difftime ((long int) time (NULL), lastSetChangedGameSettings) + >= BROADCAST_SETTINGS_SECONDS); + + if (headlessServerMode == true) + { +// publish settings directly when we receive them + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + if (lastGameSettingsreceivedCount < + serverInterface->getGameSettingsUpdateCount ()) + { + needToBroadcastServerSettings = true; + lastSetChangedGameSettings = time (NULL); + lastGameSettingsreceivedCount = + serverInterface->getGameSettingsUpdateCount (); + } + } + + if (broadCastSettings == true) + { + needToBroadcastServerSettings = true; + lastSetChangedGameSettings = time (NULL); + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + +//broadCastSettings = (difftime(time(NULL),lastSetChangedGameSettings) >= 2); +//if (broadCastSettings == true) {// reset timer here on bottom becasue used for different things +// lastSetChangedGameSettings = time(NULL); +//} + } + + if (this->headlessServerMode == true) + { + lastPlayerDisconnected (); + } + +//call the chat manager + chatManager.updateNetwork (); + +//console + console.update (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (currentConnectionCount > soundConnectionCount) + { + soundConnectionCount = currentConnectionCount; + SoundRenderer::getInstance (). + playFx (CoreData::getInstance ().getAttentionSound ()); +//switch on music again!! + Config & config = Config::getInstance (); + float configVolume = (config.getInt ("SoundVolumeMusic") / 100.f); + CoreData::getInstance ().getMenuMusic ()->setVolume (configVolume); + } + soundConnectionCount = currentConnectionCount; + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (enableFactionTexturePreview == true) + { + if (currentTechName_factionPreview != gameSettings.getTech () || + currentFactionName_factionPreview != + gameSettings. + getFactionTypeName (gameSettings.getThisFactionIndex ())) + { + + currentTechName_factionPreview = gameSettings.getTech (); + currentFactionName_factionPreview = + gameSettings. + getFactionTypeName (gameSettings.getThisFactionIndex ()); + + initFactionPreview (&gameSettings); + } + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + SystemFlags::OutputDebug (SystemFlags::debugPerformance, + "In [%s::%s Line: %d] took msecs: %lld\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, chrono.getMillis ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugPerformance).enabled + && chrono.getMillis () > 0) + chrono.start (); + + if (autostart == true) + { + autostart = false; + safeMutex.ReleaseLock (); + safeMutexCLI.ReleaseLock (); + if (autoStartSettings != NULL) + { + + setupUIFromGameSettings (*autoStartSettings); + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + serverInterface->setGameSettings (autoStartSettings, false); + } + else + { + RestoreLastGameSettings (); + } + PlayNow ((autoStartSettings == NULL)); + return; + } + } + catch (megaglest_runtime_error & ex) + { +//abort(); +//printf("1111111bbbb ex.wantStackTrace() = %d\n",ex.wantStackTrace()); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + +//printf("2222222bbbb ex.wantStackTrace() = %d\n",ex.wantStackTrace()); + + showGeneralError = true; + generalErrorToShow = szBuf; + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + showGeneralError = true; + generalErrorToShow = szBuf; + } } - gameSettings->setFogOfWar(listBoxFogOfWar.getSelectedItemIndex() == 0 || - listBoxFogOfWar.getSelectedItemIndex() == 1 ); + void MenuStateCustomGame::initFactionPreview (const GameSettings * + gameSettings) + { + string factionVideoUrl = ""; + string factionVideoUrlFallback = ""; - gameSettings->setAllowObservers(checkBoxAllowObservers.getValue() == 1); + string factionDefinitionXML = + Game::findFactionLogoFile (gameSettings, NULL, + currentFactionName_factionPreview + + ".xml"); + if (factionDefinitionXML != "" + && currentFactionName_factionPreview != + GameConstants::RANDOMFACTION_SLOTNAME + && currentFactionName_factionPreview != + GameConstants::OBSERVER_SLOTNAME + && fileExists (factionDefinitionXML) == true) + { + XmlTree xmlTree; + std::map < string, string > mapExtraTagReplacementValues; + xmlTree.load (factionDefinitionXML, + Properties::getTagReplacementValues + (&mapExtraTagReplacementValues)); + const XmlNode *factionNode = xmlTree.getRootNode (); + if (factionNode->hasAttribute ("faction-preview-video") == true) + { + factionVideoUrl = + factionNode->getAttribute ("faction-preview-video")->getValue (); + } - uint32 valueFlags1 = gameSettings->getFlagTypes1(); - if(listBoxFogOfWar.getSelectedItemIndex() == 1 || - listBoxFogOfWar.getSelectedItemIndex() == 2 ) { + factionVideoUrlFallback = + Game::findFactionLogoFile (gameSettings, NULL, "preview_video.*"); + if (factionVideoUrl == "") + { + factionVideoUrl = factionVideoUrlFallback; + factionVideoUrlFallback = ""; + } + } +//printf("currentFactionName_factionPreview [%s] random [%s] observer [%s] factionVideoUrl [%s]\n",currentFactionName_factionPreview.c_str(),GameConstants::RANDOMFACTION_SLOTNAME,GameConstants::OBSERVER_SLOTNAME,factionVideoUrl.c_str()); + + + if (factionVideoUrl != "") + { +//SoundRenderer &soundRenderer= SoundRenderer::getInstance(); + if (CoreData::getInstance ().getMenuMusic ()->getVolume () != 0) + { + CoreData::getInstance ().getMenuMusic ()->setVolume (0); + factionVideoSwitchedOffVolume = true; + } + + if (currentFactionLogo != factionVideoUrl) + { + currentFactionLogo = factionVideoUrl; + if (GlobalStaticFlags::getIsNonGraphicalModeEnabled () == false + &&::Shared::Graphics::VideoPlayer::hasBackEndVideoPlayer () == + true) + { + + if (factionVideo != NULL) + { + factionVideo->closePlayer (); + delete factionVideo; + factionVideo = NULL; + } + string introVideoFile = factionVideoUrl; + string introVideoFileFallback = factionVideoUrlFallback; + + Context *c = + GraphicsInterface::getInstance ().getCurrentContext (); + SDL_Window *window = + static_cast < + ContextGl * + >(c)->getPlatformContextGlPtr ()->getScreenWindow (); + SDL_Surface *screen = + static_cast < + ContextGl * + >(c)->getPlatformContextGlPtr ()->getScreenSurface (); + + string vlcPluginsPath = + Config::getInstance ().getString ("VideoPlayerPluginsPath", ""); +//printf("screen->w = %d screen->h = %d screen->format->BitsPerPixel = %d\n",screen->w,screen->h,screen->format->BitsPerPixel); + factionVideo = new VideoPlayer (&Renderer::getInstance (), + introVideoFile, + introVideoFileFallback, + window, + 0, 0, + screen->w, + screen->h, + screen->format->BitsPerPixel, + true, vlcPluginsPath, + SystemFlags::VERBOSE_MODE_ENABLED); + factionVideo->initPlayer (); + } + } + } + else + { +//SoundRenderer &soundRenderer= SoundRenderer::getInstance(); +//switch on music again!! + Config & config = Config::getInstance (); + float configVolume = (config.getInt ("SoundVolumeMusic") / 100.f); + if (factionVideoSwitchedOffVolume) + { + if (CoreData::getInstance ().getMenuMusic ()->getVolume () != + configVolume) + { + CoreData::getInstance (). + getMenuMusic ()->setVolume (configVolume); + } + factionVideoSwitchedOffVolume = false; + } + + if (factionVideo != NULL) + { + factionVideo->closePlayer (); + delete factionVideo; + factionVideo = NULL; + } + } + + if (factionVideo == NULL) + { + string factionLogo = Game::findFactionLogoFile (gameSettings, NULL, + GameConstants::PREVIEW_SCREEN_FILE_FILTER); + if (factionLogo == "") + { + factionLogo = Game::findFactionLogoFile (gameSettings, NULL); + } + if (currentFactionLogo != factionLogo) + { + currentFactionLogo = factionLogo; + loadFactionTexture (currentFactionLogo); + } + } + } + + void MenuStateCustomGame::publishToMasterserver () + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + int slotCountUsed = 0; + int slotCountHumans = 0; + int slotCountConnectedPlayers = 0; + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + GameSettings gameSettings; + loadGameSettings (&gameSettings); + Config & config = Config::getInstance (); +//string serverinfo=""; + + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + publishToServerInfo.clear (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + for (int i = 0; i < mapInfo.players; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () != ctClosed) + { + slotCountUsed++; + } + + if (listBoxControls[i].getSelectedItemIndex () == ctNetwork + || listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + slotCountHumans++; + if (serverInterface->getSlot (i, true) != NULL && + serverInterface->getSlot (i, true)->isConnected ()) + { + slotCountConnectedPlayers++; + } + } + else if (listBoxControls[i].getSelectedItemIndex () == ctHuman) + { + slotCountHumans++; + slotCountConnectedPlayers++; + } + } + + publishToServerInfo["uuid"] = + Config::getInstance ().getString ("PlayerId", ""); + +//?status=waiting&system=linux&info=titus + publishToServerInfo["glestVersion"] = glestVersionString; + publishToServerInfo["platform"] = + getPlatformNameString () + "-" + getGITRevisionString (); + publishToServerInfo["binaryCompileDate"] = getCompileDateTime (); + +//game info: + publishToServerInfo["serverTitle"] = gameSettings.getGameName (); +//ip is automatically set + +//game setup info: + +//publishToServerInfo["tech"] = listBoxTechTree.getSelectedItem(); + publishToServerInfo["tech"] = + techTreeFiles[listBoxTechTree.getSelectedItemIndex ()]; +//publishToServerInfo["map"] = listBoxMap.getSelectedItem(); + publishToServerInfo["map"] = getCurrentMapFile (); +//publishToServerInfo["tileset"] = listBoxTileset.getSelectedItem(); + publishToServerInfo["tileset"] = + tilesetFiles[listBoxTileset.getSelectedItemIndex ()]; + + publishToServerInfo["activeSlots"] = intToStr (slotCountUsed); + publishToServerInfo["networkSlots"] = intToStr (slotCountHumans); + publishToServerInfo["connectedClients"] = + intToStr (slotCountConnectedPlayers); + + string serverPort = config.getString ("PortServer", + intToStr + (GameConstants:: + serverPort).c_str ()); + string externalPort = + config.getString ("PortExternal", serverPort.c_str ()); + publishToServerInfo["externalconnectport"] = externalPort; + publishToServerInfo["privacyPlease"] = + intToStr (config.getBool ("PrivacyPlease", "false")); + + publishToServerInfo["gameStatus"] = + intToStr (game_status_waiting_for_players); + if (slotCountHumans <= slotCountConnectedPlayers) + { + publishToServerInfo["gameStatus"] = + intToStr (game_status_waiting_for_start); + } + + publishToServerInfo["gameUUID"] = gameSettings.getGameUUID (); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + + void MenuStateCustomGame::setupTask (BaseThread * callingThread, + void *userdata) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\nsetupTask callingThread [%p] userdata [%p]\n", + callingThread, userdata); + if (userdata != NULL) + { + int value = *((int *) &userdata); + THREAD_NOTIFIER_TYPE threadType = (THREAD_NOTIFIER_TYPE) value; +//printf("\n\nsetupTask callingThread [%p] userdata [%p]\n",callingThread,userdata); + if (threadType == tnt_MASTERSERVER) + { + MenuStateCustomGame::setupTaskStatic (callingThread); + } + } + } + void MenuStateCustomGame::shutdownTask (BaseThread * callingThread, + void *userdata) + { +//printf("\n\nshutdownTask callingThread [%p] userdata [%p]\n",callingThread,userdata); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("\n\nshutdownTask callingThread [%p] userdata [%p]\n", + callingThread, userdata); + if (userdata != NULL) + { + int value = *((int *) &userdata); + THREAD_NOTIFIER_TYPE threadType = (THREAD_NOTIFIER_TYPE) value; +//printf("\n\nshutdownTask callingThread [%p] userdata [%p]\n",callingThread,userdata); + if (threadType == tnt_MASTERSERVER) + { + MenuStateCustomGame::shutdownTaskStatic (callingThread); + } + } + } + void MenuStateCustomGame::setupTaskStatic (BaseThread * callingThread) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + + CURL *handle = SystemFlags::initHTTP (); + callingThread->setGenericData < CURL > (handle); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + } + void MenuStateCustomGame::shutdownTaskStatic (BaseThread * callingThread) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + +//printf("LINE: %d\n",__LINE__); + CURL *handle = callingThread->getGenericData < CURL > (); + SystemFlags::cleanupHTTP (&handle); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + } + + void MenuStateCustomGame::simpleTask (BaseThread * callingThread, + void *userdata) + { +//printf("\n\nSimple Task callingThread [%p] userdata [%p]\n",callingThread,userdata); + int value = *((int *) &userdata); +//printf("\n\nSimple Task callingThread [%p] userdata [%p] value = %d\n",callingThread,userdata,value); + + THREAD_NOTIFIER_TYPE threadType = (THREAD_NOTIFIER_TYPE) value; + if (threadType == tnt_MASTERSERVER) + { + simpleTaskForMasterServer (callingThread); + } + else if (threadType == tnt_CLIENTS) + { + simpleTaskForClients (callingThread); + } + } + + void MenuStateCustomGame::simpleTaskForMasterServer (BaseThread * + callingThread) + { + try + { +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - A\n"); + + MutexSafeWrapper + safeMutexThreadOwner (callingThread->getMutexThreadOwnerValid (), + string (__FILE__) + "_" + + intToStr (__LINE__)); + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + return; + } + +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - B\n"); + + MutexSafeWrapper + safeMutex (callingThread->getMutexThreadObjectAccessor (), + string (__FILE__) + "_" + intToStr (__LINE__)); + bool republish = (needToRepublishToMasterserver == true + && publishToServerInfo.empty () == false); + needToRepublishToMasterserver = false; + std::map < string, string > newPublishToServerInfo = + publishToServerInfo; + publishToServerInfo.clear (); + +//printf("simpleTask broadCastSettings = %d\n",broadCastSettings); + + if (callingThread->getQuitStatus () == true) + { + return; + } + +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - C\n"); + + if (republish == true) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + string request = Config::getInstance ().getString ("Masterserver"); + if (request != "") + { + endPathWithSlash (request, false); + } + request += "addServerInfo.php?"; + +//CURL *handle = SystemFlags::initHTTP(); + CURL *handle = callingThread->getGenericData < CURL > (); + + int paramIndex = 0; + for (std::map < string, string >::const_iterator iterMap = + newPublishToServerInfo.begin (); + iterMap != newPublishToServerInfo.end (); ++iterMap) + { + + request += iterMap->first; + request += "="; + request += SystemFlags::escapeURL (iterMap->second, handle); + + paramIndex++; + if (paramIndex < (int) newPublishToServerInfo.size ()) + { + request += "&"; + } + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("The Lobby request is:\n%s\n", request.c_str ()); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] the request is:\n%s\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__, + request.c_str ()); + safeMutex.ReleaseLock (true); + safeMutexThreadOwner.ReleaseLock (); + + std::string serverInfo = SystemFlags::getHTTP (request, handle); +//SystemFlags::cleanupHTTP(&handle); + + MutexSafeWrapper + safeMutexThreadOwner2 (callingThread->getMutexThreadOwnerValid (), + string (__FILE__) + "_" + + intToStr (__LINE__)); + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner2.isValidMutex () == false) + { + return; + } + safeMutex.Lock (); + +//printf("the result is:\n'%s'\n",serverInfo.c_str()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] the result is:\n'%s'\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__, + serverInfo.c_str ()); + +// uncomment to enable router setup check of this server + if (EndsWith (serverInfo, "OK") == false) + { + if (callingThread->getQuitStatus () == true) + { + return; + } + +// Give things another chance to see if we can get a connection from the master server + if (tMasterserverErrorElapsed > 0 && + difftime ((long int) time (NULL), + tMasterserverErrorElapsed) > + MASTERSERVER_BROADCAST_MAX_WAIT_RESPONSE_SECONDS) + { + showMasterserverError = true; + masterServererErrorToShow = + (serverInfo != "" ? serverInfo : "No Reply"); + } + else + { + if (tMasterserverErrorElapsed == 0) + { + tMasterserverErrorElapsed = time (NULL); + } + + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line %d] error checking response from masterserver elapsed seconds = %.2f / %d\nResponse:\n%s\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), + __FUNCTION__, __LINE__, + difftime ((long int) + time (NULL), + tMasterserverErrorElapsed), + MASTERSERVER_BROADCAST_MAX_WAIT_RESPONSE_SECONDS, + serverInfo.c_str ()); + + needToRepublishToMasterserver = true; + } + } + } + else + { + safeMutexThreadOwner.ReleaseLock (); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - D\n"); + + safeMutex.ReleaseLock (); + +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - F\n"); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + if (callingThread->getQuitStatus () == false) + { +//throw megaglest_runtime_error(szBuf); + showGeneralError = true; + generalErrorToShow = ex.what (); + } + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + + void MenuStateCustomGame::simpleTaskForClients (BaseThread * + callingThread) + { + try + { +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - A\n"); + + MutexSafeWrapper + safeMutexThreadOwner (callingThread->getMutexThreadOwnerValid (), + string (__FILE__) + "_" + + intToStr (__LINE__)); + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + return; + } + +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - B\n"); + + MutexSafeWrapper + safeMutex (callingThread->getMutexThreadObjectAccessor (), + string (__FILE__) + "_" + intToStr (__LINE__)); + bool broadCastSettings = needToBroadcastServerSettings; + +//printf("simpleTask broadCastSettings = %d\n",broadCastSettings); + + needToBroadcastServerSettings = false; + bool hasClientConnection = false; + + if (broadCastSettings == true) + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (false); + if (serverInterface != NULL) + { + hasClientConnection = serverInterface->hasClientConnection (); + } + } + bool needPing = + (difftime ((long int) time (NULL), lastNetworkPing) >= + GameConstants::networkPingInterval); + + if (callingThread->getQuitStatus () == true) + { + return; + } + +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - C\n"); + + safeMutexThreadOwner.ReleaseLock (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - D\n"); + + if (broadCastSettings == true) + { + MutexSafeWrapper + safeMutexThreadOwner2 (callingThread->getMutexThreadOwnerValid (), + string (__FILE__) + "_" + + intToStr (__LINE__)); + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner2.isValidMutex () == false) + { + return; + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + +//printf("simpleTask broadCastSettings = %d hasClientConnection = %d\n",broadCastSettings,hasClientConnection); + + if (callingThread->getQuitStatus () == true) + { + return; + } + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (false); + if (serverInterface != NULL) + { + lastGameSettingsreceivedCount++; + if (this->headlessServerMode == false + || (serverInterface->getGameSettingsUpdateCount () <= + lastMasterServerSettingsUpdateCount)) + { + GameSettings gameSettings; + loadGameSettings (&gameSettings); + +//printf("\n\n\n\n=====#2 got settings [%d] [%d]:\n%s\n",lastMasterServerSettingsUpdateCount,serverInterface->getGameSettingsUpdateCount(),gameSettings.toString().c_str()); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + serverInterface->setGameSettings (&gameSettings, false); + lastMasterServerSettingsUpdateCount = + serverInterface->getGameSettingsUpdateCount (); + + if (hasClientConnection == true) + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + serverInterface->broadcastGameSetup (&gameSettings); + } + } + } + } + +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - E\n"); + + if (needPing == true) + { + MutexSafeWrapper + safeMutexThreadOwner2 (callingThread->getMutexThreadOwnerValid (), + string (__FILE__) + "_" + + intToStr (__LINE__)); + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner2.isValidMutex () == false) + { + return; + } + + lastNetworkPing = time (NULL); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] Sending nmtPing to clients\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (false); + if (serverInterface != NULL) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + NetworkMessagePing *msg = + new NetworkMessagePing (GameConstants::networkPingInterval, + time (NULL)); +//serverInterface->broadcastPing(&msg); + serverInterface->queueBroadcastMessage (msg); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + } + safeMutex.ReleaseLock (); + +//printf("-=-=-=-=- IN MenuStateCustomGame simpleTask - F\n"); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + if (callingThread->getQuitStatus () == false) + { +//throw megaglest_runtime_error(szBuf); + showGeneralError = true; + generalErrorToShow = ex.what (); + } + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + + void MenuStateCustomGame::loadGameSettings (GameSettings * gameSettings, + bool forceCloseUnusedSlots) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + int factionCount = 0; + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (this->headlessServerMode == true + && serverInterface->getGameSettingsUpdateCount () > + lastMasterServerSettingsUpdateCount + && serverInterface->getGameSettings () != NULL) + { + const GameSettings *settings = serverInterface->getGameSettings (); +//printf("\n\n\n\n=====#3 got settings [%d] [%d]:\n%s\n",lastMasterServerSettingsUpdateCount,serverInterface->getGameSettingsUpdateCount(),settings->toString().c_str()); + + lastMasterServerSettingsUpdateCount = + serverInterface->getGameSettingsUpdateCount (); +//printf("#1 custom menu got map [%s]\n",settings->getMap().c_str()); + + setupUIFromGameSettings (*settings); + } + + gameSettings->setGameName (labelGameName.getText ()); + +// Test flags values +//gameSettings->setFlagTypes1(ft1_show_map_resources); +// + + if (checkBoxScenario.getValue () == true) + { + gameSettings->setScenario (scenarioInfo.name); + gameSettings->setScenarioDir (Scenario::getScenarioPath + (dirList, scenarioInfo.name)); + + gameSettings->setDefaultResources (scenarioInfo.defaultResources); + gameSettings->setDefaultUnits (scenarioInfo.defaultUnits); + gameSettings-> + setDefaultVictoryConditions (scenarioInfo.defaultVictoryConditions); + } + else + { + gameSettings->setScenario (""); + gameSettings->setScenarioDir (""); + } + + gameSettings->setGameUUID (this->gameUUID); + +//printf("scenarioInfo.name [%s] [%s] [%s]\n",scenarioInfo.name.c_str(),listBoxMap.getSelectedItem().c_str(),getCurrentMapFile().c_str()); + + gameSettings->setMapFilter (listBoxMapFilter.getSelectedItemIndex ()); + gameSettings->setDescription (formatString (getCurrentMapFile ())); + gameSettings->setMap (getCurrentMapFile ()); + if (tilesetFiles.empty () == false) + { + gameSettings->setTileset (tilesetFiles + [listBoxTileset.getSelectedItemIndex ()]); + } + if (techTreeFiles.empty () == false) + { + gameSettings->setTech (techTreeFiles + [listBoxTechTree.getSelectedItemIndex ()]); + } + + if (autoStartSettings != NULL) + { + gameSettings->setDefaultUnits (autoStartSettings->getDefaultUnits ()); + gameSettings-> + setDefaultResources (autoStartSettings->getDefaultResources ()); + gameSettings-> + setDefaultVictoryConditions + (autoStartSettings->getDefaultVictoryConditions ()); + } + else if (checkBoxScenario.getValue () == false) + { + gameSettings->setDefaultUnits (true); + gameSettings->setDefaultResources (true); + gameSettings->setDefaultVictoryConditions (true); + } + + gameSettings->setFogOfWar (listBoxFogOfWar.getSelectedItemIndex () == 0 + || listBoxFogOfWar.getSelectedItemIndex () == + 1); + + gameSettings->setAllowObservers (checkBoxAllowObservers.getValue () == + 1); + + uint32 valueFlags1 = gameSettings->getFlagTypes1 (); + if (listBoxFogOfWar.getSelectedItemIndex () == 1 || + listBoxFogOfWar.getSelectedItemIndex () == 2) + { valueFlags1 |= ft1_show_map_resources; - gameSettings->setFlagTypes1(valueFlags1); - } - else { + gameSettings->setFlagTypes1 (valueFlags1); + } + else + { valueFlags1 &= ~ft1_show_map_resources; - gameSettings->setFlagTypes1(valueFlags1); - } + gameSettings->setFlagTypes1 (valueFlags1); + } - //gameSettings->setEnableObserverModeAtEndGame(listBoxEnableObserverMode.getSelectedItemIndex() == 0); - gameSettings->setEnableObserverModeAtEndGame(true); - //gameSettings->setPathFinderType(static_cast(listBoxPathFinderType.getSelectedItemIndex())); +//gameSettings->setEnableObserverModeAtEndGame(listBoxEnableObserverMode.getSelectedItemIndex() == 0); + gameSettings->setEnableObserverModeAtEndGame (true); +//gameSettings->setPathFinderType(static_cast(listBoxPathFinderType.getSelectedItemIndex())); - valueFlags1 = gameSettings->getFlagTypes1(); - if(checkBoxEnableSwitchTeamMode.getValue() == true) { + valueFlags1 = gameSettings->getFlagTypes1 (); + if (checkBoxEnableSwitchTeamMode.getValue () == true) + { valueFlags1 |= ft1_allow_team_switching; - gameSettings->setFlagTypes1(valueFlags1); - } - else { + gameSettings->setFlagTypes1 (valueFlags1); + } + else + { valueFlags1 &= ~ft1_allow_team_switching; - gameSettings->setFlagTypes1(valueFlags1); - } - gameSettings->setAiAcceptSwitchTeamPercentChance(strToInt(listBoxAISwitchTeamAcceptPercent.getSelectedItem())); - gameSettings->setFallbackCpuMultiplier(listBoxFallbackCpuMultiplier.getSelectedItemIndex()); + gameSettings->setFlagTypes1 (valueFlags1); + } + gameSettings->setAiAcceptSwitchTeamPercentChance (strToInt + (listBoxAISwitchTeamAcceptPercent.getSelectedItem + ())); + gameSettings-> + setFallbackCpuMultiplier + (listBoxFallbackCpuMultiplier.getSelectedItemIndex ()); - if(checkBoxAllowInGameJoinPlayer.getValue() == true) { + if (checkBoxAllowInGameJoinPlayer.getValue () == true) + { valueFlags1 |= ft1_allow_in_game_joining; - gameSettings->setFlagTypes1(valueFlags1); - } - else { + gameSettings->setFlagTypes1 (valueFlags1); + } + else + { valueFlags1 &= ~ft1_allow_in_game_joining; - gameSettings->setFlagTypes1(valueFlags1); - } + gameSettings->setFlagTypes1 (valueFlags1); + } - if(checkBoxAllowTeamUnitSharing.getValue() == true) { + if (checkBoxAllowTeamUnitSharing.getValue () == true) + { valueFlags1 |= ft1_allow_shared_team_units; - gameSettings->setFlagTypes1(valueFlags1); - } - else { + gameSettings->setFlagTypes1 (valueFlags1); + } + else + { valueFlags1 &= ~ft1_allow_shared_team_units; - gameSettings->setFlagTypes1(valueFlags1); - } + gameSettings->setFlagTypes1 (valueFlags1); + } - if(checkBoxAllowTeamResourceSharing.getValue() == true) { + if (checkBoxAllowTeamResourceSharing.getValue () == true) + { valueFlags1 |= ft1_allow_shared_team_resources; - gameSettings->setFlagTypes1(valueFlags1); - } - else { + gameSettings->setFlagTypes1 (valueFlags1); + } + else + { valueFlags1 &= ~ft1_allow_shared_team_resources; - gameSettings->setFlagTypes1(valueFlags1); - } + gameSettings->setFlagTypes1 (valueFlags1); + } - if(Config::getInstance().getBool("EnableNetworkGameSynchChecks","false") == true) { - //printf("*WARNING* - EnableNetworkGameSynchChecks is enabled\n"); + if (Config::getInstance ().getBool ("EnableNetworkGameSynchChecks", + "false") == true) + { +//printf("*WARNING* - EnableNetworkGameSynchChecks is enabled\n"); valueFlags1 |= ft1_network_synch_checks_verbose; - gameSettings->setFlagTypes1(valueFlags1); + gameSettings->setFlagTypes1 (valueFlags1); - } - else { + } + else + { valueFlags1 &= ~ft1_network_synch_checks_verbose; - gameSettings->setFlagTypes1(valueFlags1); + gameSettings->setFlagTypes1 (valueFlags1); - } - if(Config::getInstance().getBool("EnableNetworkGameSynchMonitor","false") == true) { - //printf("*WARNING* - EnableNetworkGameSynchChecks is enabled\n"); + } + if (Config::getInstance ().getBool ("EnableNetworkGameSynchMonitor", + "false") == true) + { +//printf("*WARNING* - EnableNetworkGameSynchChecks is enabled\n"); valueFlags1 |= ft1_network_synch_checks; - gameSettings->setFlagTypes1(valueFlags1); + gameSettings->setFlagTypes1 (valueFlags1); - } - else { + } + else + { valueFlags1 &= ~ft1_network_synch_checks; - gameSettings->setFlagTypes1(valueFlags1); + gameSettings->setFlagTypes1 (valueFlags1); - } + } - gameSettings->setNetworkAllowNativeLanguageTechtree(checkBoxAllowNativeLanguageTechtree.getValue()); + gameSettings->setNetworkAllowNativeLanguageTechtree + (checkBoxAllowNativeLanguageTechtree.getValue ()); - // First save Used slots - //for(int i=0; iheadlessServerMode == true) { - // switch slot to network, because no human in headless mode - listBoxControls[i].setSelectedItemIndex(ctNetwork) ; - updateResourceMultiplier(i); - } +// First save Used slots +//for(int i=0; iheadlessServerMode == true) + { +// switch slot to network, because no human in headless mode + listBoxControls[i].setSelectedItemIndex (ctNetwork); + updateResourceMultiplier (i); + } - ControlType ct= static_cast(listBoxControls[i].getSelectedItemIndex()); + ControlType ct = + static_cast < ControlType > + (listBoxControls[i].getSelectedItemIndex ()); - if(forceCloseUnusedSlots == true && (ct == ctNetworkUnassigned || ct == ctNetwork)) { - if(serverInterface != NULL && - (serverInterface->getSlot(i,true) == NULL || - serverInterface->getSlot(i,true)->isConnected() == false)) { - if(checkBoxScenario.getValue() == false) { - //printf("Closed A [%d] [%s]\n",i,labelPlayerNames[i].getText().c_str()); + if (forceCloseUnusedSlots == true + && (ct == ctNetworkUnassigned || ct == ctNetwork)) + { + if (serverInterface != NULL && + (serverInterface->getSlot (i, true) == NULL || + serverInterface->getSlot (i, true)->isConnected () == false)) + { + if (checkBoxScenario.getValue () == false) + { +//printf("Closed A [%d] [%s]\n",i,labelPlayerNames[i].getText().c_str()); - listBoxControls[i].setSelectedItemIndex(ctClosed); - ct = ctClosed; - } - } - } - else if(ct == ctNetworkUnassigned && i < mapInfo.players) { - listBoxControls[i].setSelectedItemIndex(ctNetwork); - ct = ctNetwork; - } + listBoxControls[i].setSelectedItemIndex (ctClosed); + ct = ctClosed; + } + } + } + else if (ct == ctNetworkUnassigned && i < mapInfo.players) + { + listBoxControls[i].setSelectedItemIndex (ctNetwork); + ct = ctNetwork; + } - if(ct != ctClosed) { - int slotIndex = factionCount; - gameSettings->setFactionControl(slotIndex, ct); - if(ct == ctHuman) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, slotIndex = %d, getHumanPlayerName(i) [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,slotIndex,getHumanPlayerName(i).c_str()); + if (ct != ctClosed) + { + int slotIndex = factionCount; + gameSettings->setFactionControl (slotIndex, ct); + if (ct == ctHuman) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, slotIndex = %d, getHumanPlayerName(i) [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i, slotIndex, + getHumanPlayerName (i).c_str ()); - gameSettings->setThisFactionIndex(slotIndex); - gameSettings->setNetworkPlayerName(slotIndex, getHumanPlayerName(i)); - gameSettings->setNetworkPlayerUUID(slotIndex,Config::getInstance().getString("PlayerId","")); - gameSettings->setNetworkPlayerPlatform(slotIndex,getPlatformNameString()); - gameSettings->setNetworkPlayerStatuses(slotIndex, getNetworkPlayerStatus()); - Lang &lang= Lang::getInstance(); - gameSettings->setNetworkPlayerLanguages(slotIndex, lang.getLanguage()); - } - else if(serverInterface != NULL && serverInterface->getSlot(i,true) != NULL) { - gameSettings->setNetworkPlayerLanguages(slotIndex, serverInterface->getSlot(i,true)->getNetworkPlayerLanguage()); - } + gameSettings->setThisFactionIndex (slotIndex); + gameSettings->setNetworkPlayerName (slotIndex, + getHumanPlayerName (i)); + gameSettings->setNetworkPlayerUUID (slotIndex, + Config:: + getInstance ().getString + ("PlayerId", "")); + gameSettings->setNetworkPlayerPlatform (slotIndex, + getPlatformNameString ()); + gameSettings->setNetworkPlayerStatuses (slotIndex, + getNetworkPlayerStatus + ()); + Lang & lang = Lang::getInstance (); + gameSettings->setNetworkPlayerLanguages (slotIndex, + lang.getLanguage ()); + } + else if (serverInterface != NULL + && serverInterface->getSlot (i, true) != NULL) + { + gameSettings->setNetworkPlayerLanguages (slotIndex, + serverInterface->getSlot + (i, + true)->getNetworkPlayerLanguage + ()); + } - //if(slotIndex == 0) printf("slotIndex = %d, i = %d, multiplier = %d\n",slotIndex,i,listBoxRMultiplier[i].getSelectedItemIndex()); +//if(slotIndex == 0) printf("slotIndex = %d, i = %d, multiplier = %d\n",slotIndex,i,listBoxRMultiplier[i].getSelectedItemIndex()); - //printf("Line: %d multiplier index: %d slotIndex: %d\n",__LINE__,listBoxRMultiplier[i].getSelectedItemIndex(),slotIndex); - gameSettings->setResourceMultiplierIndex(slotIndex, listBoxRMultiplier[i].getSelectedItemIndex()); - //printf("Line: %d multiplier index: %d slotIndex: %d\n",__LINE__,gameSettings->getResourceMultiplierIndex(slotIndex),slotIndex); +//printf("Line: %d multiplier index: %d slotIndex: %d\n",__LINE__,listBoxRMultiplier[i].getSelectedItemIndex(),slotIndex); + gameSettings->setResourceMultiplierIndex (slotIndex, + listBoxRMultiplier + [i].getSelectedItemIndex + ()); +//printf("Line: %d multiplier index: %d slotIndex: %d\n",__LINE__,gameSettings->getResourceMultiplierIndex(slotIndex),slotIndex); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, factionFiles[listBoxFactions[i].getSelectedItemIndex()] [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,factionFiles[listBoxFactions[i].getSelectedItemIndex()].c_str()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, factionFiles[listBoxFactions[i].getSelectedItemIndex()] [%s]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__, i, + factionFiles[listBoxFactions + [i].getSelectedItemIndex + ()].c_str ()); - gameSettings->setFactionTypeName(slotIndex, factionFiles[listBoxFactions[i].getSelectedItemIndex()]); - if(factionFiles[listBoxFactions[i].getSelectedItemIndex()] == formatString(GameConstants::OBSERVER_SLOTNAME)) { - listBoxTeams[i].setSelectedItem(intToStr(GameConstants::maxPlayers + fpt_Observer)); - } - else if(listBoxTeams[i].getSelectedItem() == intToStr(GameConstants::maxPlayers + fpt_Observer)) { + gameSettings->setFactionTypeName (slotIndex, + factionFiles[listBoxFactions + [i].getSelectedItemIndex + ()]); + if (factionFiles[listBoxFactions[i].getSelectedItemIndex ()] == + formatString (GameConstants::OBSERVER_SLOTNAME)) + { + listBoxTeams[i].setSelectedItem (intToStr + (GameConstants::maxPlayers + + fpt_Observer)); + } + else if (listBoxTeams[i].getSelectedItem () == + intToStr (GameConstants::maxPlayers + fpt_Observer)) + { - //printf("Line: %d lastSelectedTeamIndex[i] = %d \n",__LINE__,lastSelectedTeamIndex[i]); +//printf("Line: %d lastSelectedTeamIndex[i] = %d \n",__LINE__,lastSelectedTeamIndex[i]); - if((listBoxControls[i].getSelectedItemIndex() == ctCpuEasy || listBoxControls[i].getSelectedItemIndex() == ctCpu || - listBoxControls[i].getSelectedItemIndex() == ctCpuUltra || listBoxControls[i].getSelectedItemIndex() == ctCpuMega) && - checkBoxScenario.getValue() == true) { + if ((listBoxControls[i].getSelectedItemIndex () == ctCpuEasy + || listBoxControls[i].getSelectedItemIndex () == ctCpu + || listBoxControls[i].getSelectedItemIndex () == + ctCpuUltra + || listBoxControls[i].getSelectedItemIndex () == + ctCpuMega) && checkBoxScenario.getValue () == true) + { - } - else { - if(lastSelectedTeamIndex[i] >= 0 && lastSelectedTeamIndex[i] + 1 != (GameConstants::maxPlayers + fpt_Observer)) { - if(lastSelectedTeamIndex[i] == 0) { - lastSelectedTeamIndex[i] = GameConstants::maxPlayers-1; - } - else if(lastSelectedTeamIndex[i] == GameConstants::maxPlayers-1) { - lastSelectedTeamIndex[i] = 0; - } + } + else + { + if (lastSelectedTeamIndex[i] >= 0 + && lastSelectedTeamIndex[i] + 1 != + (GameConstants::maxPlayers + fpt_Observer)) + { + if (lastSelectedTeamIndex[i] == 0) + { + lastSelectedTeamIndex[i] = GameConstants::maxPlayers - 1; + } + else if (lastSelectedTeamIndex[i] == + GameConstants::maxPlayers - 1) + { + lastSelectedTeamIndex[i] = 0; + } - listBoxTeams[i].setSelectedItemIndex(lastSelectedTeamIndex[i]); - } - else { - listBoxTeams[i].setSelectedItem(intToStr(1)); - } - } - } + listBoxTeams[i].setSelectedItemIndex (lastSelectedTeamIndex + [i]); + } + else + { + listBoxTeams[i].setSelectedItem (intToStr (1)); + } + } + } - gameSettings->setTeam(slotIndex, listBoxTeams[i].getSelectedItemIndex()); - gameSettings->setStartLocationIndex(slotIndex, i); + gameSettings->setTeam (slotIndex, + listBoxTeams[i].getSelectedItemIndex ()); + gameSettings->setStartLocationIndex (slotIndex, i); - if(listBoxControls[i].getSelectedItemIndex() == ctNetwork || - listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - if(serverInterface != NULL && - serverInterface->getSlot(i,true) != NULL && - serverInterface->getSlot(i,true)->isConnected()) { + if (listBoxControls[i].getSelectedItemIndex () == ctNetwork || + listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + if (serverInterface != NULL && + serverInterface->getSlot (i, true) != NULL && + serverInterface->getSlot (i, true)->isConnected ()) + { - gameSettings->setNetworkPlayerStatuses(slotIndex,serverInterface->getSlot(i,true)->getNetworkPlayerStatus()); + gameSettings->setNetworkPlayerStatuses (slotIndex, + serverInterface->getSlot + (i, + true)->getNetworkPlayerStatus + ()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, connectionSlot->getName() [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,serverInterface->getSlot(i,true)->getName().c_str()); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, connectionSlot->getName() [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i, + serverInterface->getSlot (i, + true)->getName + ().c_str ()); - gameSettings->setNetworkPlayerName(slotIndex, serverInterface->getSlot(i,true)->getName()); - gameSettings->setNetworkPlayerUUID(i,serverInterface->getSlot(i,true)->getUUID()); - gameSettings->setNetworkPlayerPlatform(i,serverInterface->getSlot(i,true)->getPlatform()); - labelPlayerNames[i].setText(serverInterface->getSlot(i,true)->getName()); - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, playername unconnected\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i); + gameSettings->setNetworkPlayerName (slotIndex, + serverInterface->getSlot (i, + true)->getName + ()); + gameSettings->setNetworkPlayerUUID (i, + serverInterface->getSlot (i, + true)->getUUID + ()); + gameSettings->setNetworkPlayerPlatform (i, + serverInterface->getSlot + (i, + true)->getPlatform ()); + labelPlayerNames[i]. + setText (serverInterface->getSlot (i, true)->getName ()); + } + else + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, playername unconnected\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i); - gameSettings->setNetworkPlayerName(slotIndex, GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME); - labelPlayerNames[i].setText(""); - } - } - else if (listBoxControls[i].getSelectedItemIndex() != ctHuman) { - AIPlayerCount++; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, playername is AI (blank)\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i); + gameSettings->setNetworkPlayerName (slotIndex, + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME); + labelPlayerNames[i].setText (""); + } + } + else if (listBoxControls[i].getSelectedItemIndex () != ctHuman) + { + AIPlayerCount++; + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, playername is AI (blank)\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i); - Lang &lang= Lang::getInstance(); - gameSettings->setNetworkPlayerName(slotIndex, lang.getString("AI") + intToStr(AIPlayerCount)); - labelPlayerNames[i].setText(""); - } - if (listBoxControls[i].getSelectedItemIndex() == ctHuman) { - setSlotHuman(i); - } - if(serverInterface != NULL && serverInterface->getSlot(i,true) != NULL) { - gameSettings->setNetworkPlayerUUID(slotIndex,serverInterface->getSlot(i,true)->getUUID()); - gameSettings->setNetworkPlayerPlatform(slotIndex,serverInterface->getSlot(i,true)->getPlatform()); - } + Lang & lang = Lang::getInstance (); + gameSettings->setNetworkPlayerName (slotIndex, + lang.getString ("AI") + + intToStr (AIPlayerCount)); + labelPlayerNames[i].setText (""); + } + if (listBoxControls[i].getSelectedItemIndex () == ctHuman) + { + setSlotHuman (i); + } + if (serverInterface != NULL + && serverInterface->getSlot (i, true) != NULL) + { + gameSettings->setNetworkPlayerUUID (slotIndex, + serverInterface->getSlot (i, + true)->getUUID + ()); + gameSettings->setNetworkPlayerPlatform (slotIndex, + serverInterface->getSlot + (i, + true)->getPlatform ()); + } - factionCount++; - } - else { - //gameSettings->setNetworkPlayerName(""); - gameSettings->setNetworkPlayerStatuses(factionCount, npst_None); - labelPlayerNames[i].setText(""); - } + factionCount++; + } + else + { +//gameSettings->setNetworkPlayerName(""); + gameSettings->setNetworkPlayerStatuses (factionCount, npst_None); + labelPlayerNames[i].setText (""); + } + } + +// Next save closed slots + int closedCount = 0; + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + ControlType ct = + static_cast < ControlType > + (listBoxControls[i].getSelectedItemIndex ()); + if (ct == ctClosed) + { + int slotIndex = factionCount + closedCount; + + gameSettings->setFactionControl (slotIndex, ct); + gameSettings->setTeam (slotIndex, + listBoxTeams[i].getSelectedItemIndex ()); + gameSettings->setStartLocationIndex (slotIndex, i); +//gameSettings->setResourceMultiplierIndex(slotIndex, 10); + listBoxRMultiplier[i].setSelectedItem ("1.0"); + gameSettings->setResourceMultiplierIndex (slotIndex, + listBoxRMultiplier + [i].getSelectedItemIndex + ()); +//printf("Test multiplier = %s\n",listBoxRMultiplier[i].getSelectedItem().c_str()); + + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, factionFiles[listBoxFactions[i].getSelectedItemIndex()] [%s]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__, i, + factionFiles[listBoxFactions + [i].getSelectedItemIndex + ()].c_str ()); + + gameSettings->setFactionTypeName (slotIndex, + factionFiles[listBoxFactions + [i].getSelectedItemIndex + ()]); + gameSettings->setNetworkPlayerName (slotIndex, + GameConstants::NETWORK_SLOT_CLOSED_SLOTNAME); + gameSettings->setNetworkPlayerUUID (slotIndex, ""); + gameSettings->setNetworkPlayerPlatform (slotIndex, ""); + + closedCount++; + } + } + + gameSettings->setFactionCount (factionCount); + + Config & config = Config::getInstance (); + gameSettings->setEnableServerControlledAI (config.getBool + ("ServerControlledAI", + "true")); + gameSettings-> + setNetworkFramePeriod (config.getInt ("NetworkSendFrameCount", "20")); + gameSettings->setNetworkPauseGameForLaggedClients (((checkBoxNetworkPauseGameForLaggedClients.getValue () == true))); + + if (gameSettings->getTileset () != "") + { +// Check if client has different data, if so force a CRC refresh + bool forceRefresh = false; + if (checkNetworkPlayerDataSynch (false, true, false) == false && + last_Forced_CheckedCRCTilesetName != gameSettings->getTileset ()) + { + lastCheckedCRCTilesetName = ""; + forceRefresh = true; + last_Forced_CheckedCRCTilesetName = gameSettings->getTileset (); + } + + if (lastCheckedCRCTilesetName != gameSettings->getTileset ()) + { +//console.addLine("Checking tileset CRC [" + gameSettings->getTileset() + "]"); + lastCheckedCRCTilesetValue = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTilesets, ""), + string ("/") + gameSettings->getTileset () + string ("/*"), + ".xml", NULL, forceRefresh); + if (lastCheckedCRCTilesetValue == 0) + { + lastCheckedCRCTilesetValue = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTilesets, ""), + string ("/") + gameSettings->getTileset () + string ("/*"), + ".xml", NULL, true); + } + lastCheckedCRCTilesetName = gameSettings->getTileset (); + } + gameSettings->setTilesetCRC (lastCheckedCRCTilesetValue); + } + + if (config.getBool ("DisableServerLobbyTechtreeCRCCheck", "false") == + false) + { + if (gameSettings->getTech () != "") + { +// Check if client has different data, if so force a CRC refresh + bool forceRefresh = false; + if (checkNetworkPlayerDataSynch (false, false, true) == false && + last_Forced_CheckedCRCTechtreeName != gameSettings->getTech ()) + { + lastCheckedCRCTechtreeName = ""; + forceRefresh = true; + last_Forced_CheckedCRCTechtreeName = gameSettings->getTech (); + } + + if (lastCheckedCRCTechtreeName != gameSettings->getTech ()) + { +//console.addLine("Checking techtree CRC [" + gameSettings->getTech() + "]"); + lastCheckedCRCTechtreeValue = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + gameSettings->getTech () + "/*", ".xml", NULL, + forceRefresh); + if (lastCheckedCRCTechtreeValue == 0) + { + lastCheckedCRCTechtreeValue = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + gameSettings->getTech () + "/*", ".xml", NULL, true); + } + + reloadFactions (true, + (checkBoxScenario.getValue () == + true ? + scenarioFiles + [listBoxScenario.getSelectedItemIndex ()] : "")); + factionCRCList.clear (); + for (unsigned int factionIdx = 0; + factionIdx < factionFiles.size (); ++factionIdx) + { + string factionName = factionFiles[factionIdx]; + if (factionName != GameConstants::RANDOMFACTION_SLOTNAME + && factionName != GameConstants::OBSERVER_SLOTNAME) + { +//factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/factions/" + factionName + "/*", ".xml", NULL, true); + uint32 factionCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, + ""), + "/" + + gameSettings->getTech + () + "/factions/" + factionName + "/*", + ".xml", + NULL); + if (factionCRC == 0) + { + factionCRC = + getFolderTreeContentsCheckSumRecursively + (config.getPathListForType (ptTechs, ""), + "/" + gameSettings->getTech () + + "/factions/" + factionName + "/*", ".xml", NULL, true); + } + factionCRCList.push_back (make_pair + (factionName, factionCRC)); + } + } +//console.addLine("Found factions: " + intToStr(factionCRCList.size())); + lastCheckedCRCTechtreeName = gameSettings->getTech (); + } + + gameSettings->setFactionCRCList (factionCRCList); + gameSettings->setTechCRC (lastCheckedCRCTechtreeValue); + } + } + + if (gameSettings->getMap () != "") + { +// Check if client has different data, if so force a CRC refresh +//bool forceRefresh = false; + if (checkNetworkPlayerDataSynch (true, false, false) == false && + last_Forced_CheckedCRCMapName != gameSettings->getMap ()) + { + lastCheckedCRCMapName = ""; +//forceRefresh = true; + last_Forced_CheckedCRCMapName = gameSettings->getMap (); + } + + if (lastCheckedCRCMapName != gameSettings->getMap ()) + { + Checksum checksum; + string file = + Config::getMapPath (gameSettings->getMap (), "", false); +//console.addLine("Checking map CRC [" + file + "]"); + checksum.addFile (file); + lastCheckedCRCMapValue = checksum.getSum (); + lastCheckedCRCMapName = gameSettings->getMap (); + } + gameSettings->setMapCRC (lastCheckedCRCMapValue); + } + + if (this->headlessServerMode == true) + { + time_t clientConnectedTime = 0; + bool masterserver_admin_found = false; +//printf("mapInfo.players [%d]\n",mapInfo.players); + + for (int i = 0; i < mapInfo.players; ++i) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + if (listBoxControls[i].getSelectedItemIndex () == ctNetwork + || listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (serverInterface->getSlot (i, true) != NULL + && serverInterface->getSlot (i, true)->isConnected ()) + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +//printf("slot = %d serverInterface->getSlot(i)->getConnectedTime() = %d session key [%d]\n",i,serverInterface->getSlot(i)->getConnectedTime(),serverInterface->getSlot(i)->getSessionKey()); + + if (clientConnectedTime == 0 || + (serverInterface->getSlot (i, true)->getConnectedTime () > 0 + && serverInterface->getSlot (i, + true)->getConnectedTime () < + clientConnectedTime)) + { + clientConnectedTime = + serverInterface->getSlot (i, true)->getConnectedTime (); + gameSettings->setMasterserver_admin (serverInterface->getSlot + (i, + true)->getSessionKey + ()); + gameSettings->setMasterserver_admin_faction_index + (serverInterface->getSlot (i, true)->getPlayerIndex ()); + labelGameName.setText (createGameName + (serverInterface-> + getSlot (i, true)->getName ())); +//printf("slot = %d, admin key [%d] slot connected time[" MG_SIZE_T_SPECIFIER "] clientConnectedTime [" MG_SIZE_T_SPECIFIER "]\n",i,gameSettings->getMasterserver_admin(),serverInterface->getSlot(i)->getConnectedTime(),clientConnectedTime); + } + if (serverInterface->getSlot (i, true)->getSessionKey () == + gameSettings->getMasterserver_admin ()) + { + masterserver_admin_found = true; + } + } + } + } + if (masterserver_admin_found == false) + { + for (int i = mapInfo.players; i < GameConstants::maxPlayers; ++i) + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); +//ConnectionSlot *slot = serverInterface->getSlot(i); + + if (serverInterface->getSlot (i, true) != NULL + && serverInterface->getSlot (i, true)->isConnected ()) + { + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +//printf("slot = %d serverInterface->getSlot(i)->getConnectedTime() = %d session key [%d]\n",i,serverInterface->getSlot(i)->getConnectedTime(),serverInterface->getSlot(i)->getSessionKey()); + + if (clientConnectedTime == 0 || + (serverInterface->getSlot (i, true)->getConnectedTime () > 0 + && serverInterface->getSlot (i, + true)->getConnectedTime () < + clientConnectedTime)) + { + clientConnectedTime = + serverInterface->getSlot (i, true)->getConnectedTime (); + gameSettings->setMasterserver_admin (serverInterface->getSlot + (i, + true)->getSessionKey + ()); + gameSettings->setMasterserver_admin_faction_index + (serverInterface->getSlot (i, true)->getPlayerIndex ()); + labelGameName.setText (createGameName + (serverInterface-> + getSlot (i, true)->getName ())); +//printf("slot = %d, admin key [%d] slot connected time[" MG_SIZE_T_SPECIFIER "] clientConnectedTime [" MG_SIZE_T_SPECIFIER "]\n",i,gameSettings->getMasterserver_admin(),serverInterface->getSlot(i)->getConnectedTime(),clientConnectedTime); + } + if (serverInterface->getSlot (i, true)->getSessionKey () == + gameSettings->getMasterserver_admin ()) + { + masterserver_admin_found = true; + } + } + } + } + + if (masterserver_admin_found == false) + { + labelGameName.setText (createGameName ()); + } + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); } - // Next save closed slots - int closedCount = 0; - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - ControlType ct= static_cast(listBoxControls[i].getSelectedItemIndex()); - if(ct == ctClosed) { - int slotIndex = factionCount + closedCount; + void MenuStateCustomGame::saveGameSettingsToFile (std::string fileName) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - gameSettings->setFactionControl(slotIndex, ct); - gameSettings->setTeam(slotIndex, listBoxTeams[i].getSelectedItemIndex()); - gameSettings->setStartLocationIndex(slotIndex, i); - //gameSettings->setResourceMultiplierIndex(slotIndex, 10); - listBoxRMultiplier[i].setSelectedItem("1.0"); - gameSettings->setResourceMultiplierIndex(slotIndex, listBoxRMultiplier[i].getSelectedItemIndex()); - //printf("Test multiplier = %s\n",listBoxRMultiplier[i].getSelectedItem().c_str()); + GameSettings gameSettings; + loadGameSettings (&gameSettings); + CoreData::getInstance ().saveGameSettingsToFile (fileName, + &gameSettings, + checkBoxAdvanced.getValue + ()); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, factionFiles[listBoxFactions[i].getSelectedItemIndex()] [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,factionFiles[listBoxFactions[i].getSelectedItemIndex()].c_str()); - - gameSettings->setFactionTypeName(slotIndex, factionFiles[listBoxFactions[i].getSelectedItemIndex()]); - gameSettings->setNetworkPlayerName(slotIndex, GameConstants::NETWORK_SLOT_CLOSED_SLOTNAME); - gameSettings->setNetworkPlayerUUID(slotIndex,""); - gameSettings->setNetworkPlayerPlatform(slotIndex,""); - - closedCount++; - } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); } - gameSettings->setFactionCount(factionCount); + void MenuStateCustomGame::KeepCurrentHumanPlayerSlots (GameSettings & + gameSettings) + { +//look for human players + bool foundValidHumanControlTypeInFile = false; + for (int index2 = 0; index2 < GameConstants::maxPlayers; ++index2) + { + ControlType ctFile = + static_cast < ControlType > + (gameSettings.getFactionControl (index2)); + if (ctFile == ctHuman) + { + ControlType ctUI = + static_cast < ControlType > + (listBoxControls[index2].getSelectedItemIndex ()); + if (ctUI != ctNetwork && ctUI != ctNetworkUnassigned) + { + foundValidHumanControlTypeInFile = true; +//printf("Human found in file [%d]\n",index2); + } + else if (labelPlayerNames[index2].getText () == "") + { + foundValidHumanControlTypeInFile = true; + } + } + } - Config &config = Config::getInstance(); - gameSettings->setEnableServerControlledAI(config.getBool("ServerControlledAI","true")); - gameSettings->setNetworkFramePeriod(config.getInt("NetworkSendFrameCount","20")); - gameSettings->setNetworkPauseGameForLaggedClients(((checkBoxNetworkPauseGameForLaggedClients.getValue() == true))); + for (int index = 0; index < GameConstants::maxPlayers; ++index) + { + ControlType ct = + static_cast < ControlType > + (listBoxControls[index].getSelectedItemIndex ()); + if (ct == ctHuman) + { +//printf("Human found in UI [%d] and file [%d]\n",index,foundControlType); - if( gameSettings->getTileset() != "") { - // Check if client has different data, if so force a CRC refresh - bool forceRefresh = false; - if(checkNetworkPlayerDataSynch(false,true, false) == false && - last_Forced_CheckedCRCTilesetName != gameSettings->getTileset()) { - lastCheckedCRCTilesetName = ""; - forceRefresh = true; - last_Forced_CheckedCRCTilesetName = gameSettings->getTileset(); - } + if (foundValidHumanControlTypeInFile == false) + { + gameSettings.setFactionControl (index, ctHuman); + gameSettings.setNetworkPlayerName (index, getHumanPlayerName ()); + } + } - if(lastCheckedCRCTilesetName != gameSettings->getTileset()) { - //console.addLine("Checking tileset CRC [" + gameSettings->getTileset() + "]"); - lastCheckedCRCTilesetValue = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTilesets,""), string("/") + gameSettings->getTileset() + string("/*"), ".xml", NULL,forceRefresh); - if(lastCheckedCRCTilesetValue == 0) { - lastCheckedCRCTilesetValue = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTilesets,""), string("/") + gameSettings->getTileset() + string("/*"), ".xml", NULL, true); - } - lastCheckedCRCTilesetName = gameSettings->getTileset(); - } - gameSettings->setTilesetCRC(lastCheckedCRCTilesetValue); - } - - if(config.getBool("DisableServerLobbyTechtreeCRCCheck","false") == false) { - if(gameSettings->getTech() != "") { - // Check if client has different data, if so force a CRC refresh - bool forceRefresh = false; - if(checkNetworkPlayerDataSynch(false,false,true) == false && - last_Forced_CheckedCRCTechtreeName != gameSettings->getTech()) { - lastCheckedCRCTechtreeName = ""; - forceRefresh = true; - last_Forced_CheckedCRCTechtreeName = gameSettings->getTech(); - } - - if(lastCheckedCRCTechtreeName != gameSettings->getTech()) { - //console.addLine("Checking techtree CRC [" + gameSettings->getTech() + "]"); - lastCheckedCRCTechtreeValue = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/*", ".xml", NULL,forceRefresh); - if(lastCheckedCRCTechtreeValue == 0) { - lastCheckedCRCTechtreeValue = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/*", ".xml", NULL, true); - } - - reloadFactions(true,(checkBoxScenario.getValue() == true ? scenarioFiles[listBoxScenario.getSelectedItemIndex()] : "")); - factionCRCList.clear(); - for(unsigned int factionIdx = 0; factionIdx < factionFiles.size(); ++factionIdx) { - string factionName = factionFiles[factionIdx]; - if(factionName != GameConstants::RANDOMFACTION_SLOTNAME && - factionName != GameConstants::OBSERVER_SLOTNAME) { - //factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/factions/" + factionName + "/*", ".xml", NULL, true); - uint32 factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/factions/" + factionName + "/*", ".xml", NULL); - if(factionCRC == 0) { - factionCRC = getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), "/" + gameSettings->getTech() + "/factions/" + factionName + "/*", ".xml", NULL, true); - } - factionCRCList.push_back(make_pair(factionName,factionCRC)); - } - } - //console.addLine("Found factions: " + intToStr(factionCRCList.size())); - lastCheckedCRCTechtreeName = gameSettings->getTech(); - } - - gameSettings->setFactionCRCList(factionCRCList); - gameSettings->setTechCRC(lastCheckedCRCTechtreeValue); - } - } - - if(gameSettings->getMap() != "") { - // Check if client has different data, if so force a CRC refresh - //bool forceRefresh = false; - if(checkNetworkPlayerDataSynch(true,false,false) == false && - last_Forced_CheckedCRCMapName != gameSettings->getMap()) { - lastCheckedCRCMapName = ""; - //forceRefresh = true; - last_Forced_CheckedCRCMapName = gameSettings->getMap(); - } - - if(lastCheckedCRCMapName != gameSettings->getMap()) { - Checksum checksum; - string file = Config::getMapPath(gameSettings->getMap(),"",false); - //console.addLine("Checking map CRC [" + file + "]"); - checksum.addFile(file); - lastCheckedCRCMapValue = checksum.getSum(); - lastCheckedCRCMapName = gameSettings->getMap(); - } - gameSettings->setMapCRC(lastCheckedCRCMapValue); - } - - if(this->headlessServerMode == true) { - time_t clientConnectedTime = 0; - bool masterserver_admin_found=false; - //printf("mapInfo.players [%d]\n",mapInfo.players); - - for(int i= 0; i < mapInfo.players; ++i) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(listBoxControls[i].getSelectedItemIndex() == ctNetwork || listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if( serverInterface->getSlot(i,true) != NULL && serverInterface->getSlot(i,true)->isConnected()) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - //printf("slot = %d serverInterface->getSlot(i)->getConnectedTime() = %d session key [%d]\n",i,serverInterface->getSlot(i)->getConnectedTime(),serverInterface->getSlot(i)->getSessionKey()); - - if(clientConnectedTime == 0 || - (serverInterface->getSlot(i,true)->getConnectedTime() > 0 && serverInterface->getSlot(i,true)->getConnectedTime() < clientConnectedTime)) { - clientConnectedTime = serverInterface->getSlot(i,true)->getConnectedTime(); - gameSettings->setMasterserver_admin(serverInterface->getSlot(i,true)->getSessionKey()); - gameSettings->setMasterserver_admin_faction_index(serverInterface->getSlot(i,true)->getPlayerIndex()); - labelGameName.setText(createGameName(serverInterface->getSlot(i,true)->getName())); - //printf("slot = %d, admin key [%d] slot connected time[" MG_SIZE_T_SPECIFIER "] clientConnectedTime [" MG_SIZE_T_SPECIFIER "]\n",i,gameSettings->getMasterserver_admin(),serverInterface->getSlot(i)->getConnectedTime(),clientConnectedTime); - } - if(serverInterface->getSlot(i,true)->getSessionKey() == gameSettings->getMasterserver_admin()){ - masterserver_admin_found=true; - } - } - } - } - if(masterserver_admin_found == false ) { - for(int i=mapInfo.players; i < GameConstants::maxPlayers; ++i) { - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - //ConnectionSlot *slot = serverInterface->getSlot(i); - - if( serverInterface->getSlot(i,true) != NULL && serverInterface->getSlot(i,true)->isConnected()) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - //printf("slot = %d serverInterface->getSlot(i)->getConnectedTime() = %d session key [%d]\n",i,serverInterface->getSlot(i)->getConnectedTime(),serverInterface->getSlot(i)->getSessionKey()); - - if(clientConnectedTime == 0 || - (serverInterface->getSlot(i,true)->getConnectedTime() > 0 && serverInterface->getSlot(i,true)->getConnectedTime() < clientConnectedTime)) { - clientConnectedTime = serverInterface->getSlot(i,true)->getConnectedTime(); - gameSettings->setMasterserver_admin(serverInterface->getSlot(i,true)->getSessionKey()); - gameSettings->setMasterserver_admin_faction_index(serverInterface->getSlot(i,true)->getPlayerIndex()); - labelGameName.setText(createGameName(serverInterface->getSlot(i,true)->getName())); - //printf("slot = %d, admin key [%d] slot connected time[" MG_SIZE_T_SPECIFIER "] clientConnectedTime [" MG_SIZE_T_SPECIFIER "]\n",i,gameSettings->getMasterserver_admin(),serverInterface->getSlot(i)->getConnectedTime(),clientConnectedTime); - } - if(serverInterface->getSlot(i,true)->getSessionKey() == gameSettings->getMasterserver_admin()){ - masterserver_admin_found=true; - } - } - } - } - - if(masterserver_admin_found == false) - { - labelGameName.setText(createGameName()); - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateCustomGame::saveGameSettingsToFile(std::string fileName) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - GameSettings gameSettings; - loadGameSettings(&gameSettings); - CoreData::getInstance().saveGameSettingsToFile(fileName, &gameSettings,checkBoxAdvanced.getValue()); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateCustomGame::KeepCurrentHumanPlayerSlots(GameSettings &gameSettings) { - //look for human players - bool foundValidHumanControlTypeInFile = false; - for(int index2 = 0; index2 < GameConstants::maxPlayers; ++index2) { - ControlType ctFile = static_cast(gameSettings.getFactionControl(index2)); - if(ctFile == ctHuman) { - ControlType ctUI = static_cast(listBoxControls[index2].getSelectedItemIndex()); - if(ctUI != ctNetwork && ctUI != ctNetworkUnassigned) { - foundValidHumanControlTypeInFile = true; - //printf("Human found in file [%d]\n",index2); - } - else if(labelPlayerNames[index2].getText() == "") { - foundValidHumanControlTypeInFile = true; - } - } - } - - for(int index = 0; index < GameConstants::maxPlayers; ++index) { - ControlType ct= static_cast(listBoxControls[index].getSelectedItemIndex()); - if(ct == ctHuman) { - //printf("Human found in UI [%d] and file [%d]\n",index,foundControlType); - - if(foundValidHumanControlTypeInFile == false) { - gameSettings.setFactionControl(index,ctHuman); - gameSettings.setNetworkPlayerName(index,getHumanPlayerName()); - } - } - - ControlType ctFile = static_cast(gameSettings.getFactionControl(index)); - if(ctFile == ctHuman) { - gameSettings.setFactionControl(index,ctHuman); - } - } -} - -GameSettings MenuStateCustomGame::loadGameSettingsFromFile(std::string fileName) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - GameSettings gameSettings; - - GameSettings originalGameSettings; - loadGameSettings(&originalGameSettings); - - try { - CoreData::getInstance().loadGameSettingsFromFile(fileName, &gameSettings); - KeepCurrentHumanPlayerSlots(gameSettings); - - // correct game settings for headless: - if(this->headlessServerMode == true) { - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - if(gameSettings.getFactionControl(i)== ctHuman){ - gameSettings.setFactionControl(i,ctNetwork); - } - } - } - setupUIFromGameSettings(gameSettings); - } - catch(const exception &ex) { - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] ERROR = [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - - showMessageBox( ex.what(), "Error", false); - - setupUIFromGameSettings(originalGameSettings); - gameSettings = originalGameSettings; + ControlType ctFile = + static_cast < ControlType > + (gameSettings.getFactionControl (index)); + if (ctFile == ctHuman) + { + gameSettings.setFactionControl (index, ctHuman); + } + } } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + GameSettings MenuStateCustomGame::loadGameSettingsFromFile (std::string + fileName) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - return gameSettings; -} + GameSettings gameSettings; -void MenuStateCustomGame::setupUIFromGameSettings(const GameSettings &gameSettings) { - string humanPlayerName = getHumanPlayerName(); + GameSettings originalGameSettings; + loadGameSettings (&originalGameSettings); - string scenarioDir = ""; - checkBoxScenario.setValue((gameSettings.getScenario() != "")); - if(checkBoxScenario.getValue() == true) { - listBoxScenario.setSelectedItem(formatString(gameSettings.getScenario())); + try + { + CoreData::getInstance ().loadGameSettingsFromFile (fileName, + &gameSettings); + KeepCurrentHumanPlayerSlots (gameSettings); - loadScenarioInfo(Scenario::getScenarioPath(dirList, scenarioFiles[listBoxScenario.getSelectedItemIndex()]), &scenarioInfo); - scenarioDir = Scenario::getScenarioDir(dirList, gameSettings.getScenario()); +// correct game settings for headless: + if (this->headlessServerMode == true) + { + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + if (gameSettings.getFactionControl (i) == ctHuman) + { + gameSettings.setFactionControl (i, ctNetwork); + } + } + } + setupUIFromGameSettings (gameSettings); + } + catch (const exception & ex) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, __LINE__, + ex.what ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] ERROR = [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, ex.what ()); - //printf("scenarioInfo.fogOfWar = %d scenarioInfo.fogOfWar_exploredFlag = %d\n",scenarioInfo.fogOfWar,scenarioInfo.fogOfWar_exploredFlag); - if(scenarioInfo.fogOfWar == false && scenarioInfo.fogOfWar_exploredFlag == false) { - listBoxFogOfWar.setSelectedItemIndex(2); - } - else if(scenarioInfo.fogOfWar_exploredFlag == true) { - listBoxFogOfWar.setSelectedItemIndex(1); - } - else { - listBoxFogOfWar.setSelectedItemIndex(0); - } - checkBoxAllowTeamUnitSharing.setValue(scenarioInfo.allowTeamUnitSharing); - checkBoxAllowTeamResourceSharing.setValue(scenarioInfo.allowTeamResourceSharing); - } - setupMapList(gameSettings.getScenario()); - setupTechList(gameSettings.getScenario(),false); - setupTilesetList(gameSettings.getScenario()); + showMessageBox (ex.what (), "Error", false); - if(checkBoxScenario.getValue() == true) { - //string file = Scenario::getScenarioPath(dirList, gameSettings.getScenario()); - //loadScenarioInfo(file, &scenarioInfo); + setupUIFromGameSettings (originalGameSettings); + gameSettings = originalGameSettings; + } - //printf("#6.1 about to load map [%s]\n",scenarioInfo.mapName.c_str()); - //loadMapInfo(Config::getMapPath(scenarioInfo.mapName, scenarioDir, true), &mapInfo, false); - //printf("#6.2\n"); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - listBoxMapFilter.setSelectedItemIndex(0); - listBoxMap.setItems(formattedPlayerSortedMaps[mapInfo.players]); - listBoxMap.setSelectedItem(formatString(scenarioInfo.mapName)); - } - else { - //printf("gameSettings.getMapFilter()=%d \n",gameSettings.getMapFilter()); - if(gameSettings.getMapFilter() == 0) { - listBoxMapFilter.setSelectedItemIndex(0); - } - else { - listBoxMapFilter.setSelectedItem(intToStr(gameSettings.getMapFilter())); - } - listBoxMap.setItems(formattedPlayerSortedMaps[gameSettings.getMapFilter()]); - } + return gameSettings; + } - //printf("gameSettings.getMap() [%s] [%s]\n",gameSettings.getMap().c_str(),listBoxMap.getSelectedItem().c_str()); + void MenuStateCustomGame::setupUIFromGameSettings (const GameSettings & + gameSettings) + { + string humanPlayerName = getHumanPlayerName (); - string mapFile = gameSettings.getMap(); - if(find(mapFiles.begin(),mapFiles.end(),mapFile) != mapFiles.end()) { - mapFile = formatString(mapFile); - listBoxMap.setSelectedItem(mapFile); + string scenarioDir = ""; + checkBoxScenario.setValue ((gameSettings.getScenario () != "")); + if (checkBoxScenario.getValue () == true) + { + listBoxScenario.setSelectedItem (formatString + (gameSettings.getScenario ())); - loadMapInfo(Config::getMapPath(getCurrentMapFile(),scenarioDir,true), &mapInfo, true); - labelMapInfo.setText(mapInfo.desc); - } + loadScenarioInfo (Scenario::getScenarioPath (dirList, + scenarioFiles + [listBoxScenario.getSelectedItemIndex + ()]), &scenarioInfo); + scenarioDir = + Scenario::getScenarioDir (dirList, gameSettings.getScenario ()); - string tilesetFile = gameSettings.getTileset(); - if(find(tilesetFiles.begin(),tilesetFiles.end(),tilesetFile) != tilesetFiles.end()) { - tilesetFile = formatString(tilesetFile); - listBoxTileset.setSelectedItem(tilesetFile); - } +//printf("scenarioInfo.fogOfWar = %d scenarioInfo.fogOfWar_exploredFlag = %d\n",scenarioInfo.fogOfWar,scenarioInfo.fogOfWar_exploredFlag); + if (scenarioInfo.fogOfWar == false + && scenarioInfo.fogOfWar_exploredFlag == false) + { + listBoxFogOfWar.setSelectedItemIndex (2); + } + else if (scenarioInfo.fogOfWar_exploredFlag == true) + { + listBoxFogOfWar.setSelectedItemIndex (1); + } + else + { + listBoxFogOfWar.setSelectedItemIndex (0); + } + checkBoxAllowTeamUnitSharing. + setValue (scenarioInfo.allowTeamUnitSharing); + checkBoxAllowTeamResourceSharing. + setValue (scenarioInfo.allowTeamResourceSharing); + } + setupMapList (gameSettings.getScenario ()); + setupTechList (gameSettings.getScenario (), false); + setupTilesetList (gameSettings.getScenario ()); - string techtreeFile = gameSettings.getTech(); - if(find(techTreeFiles.begin(),techTreeFiles.end(),techtreeFile) != techTreeFiles.end()) { - techtreeFile = formatString(techtreeFile); - listBoxTechTree.setSelectedItem(techtreeFile); - } + if (checkBoxScenario.getValue () == true) + { +//string file = Scenario::getScenarioPath(dirList, gameSettings.getScenario()); +//loadScenarioInfo(file, &scenarioInfo); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); +//printf("#6.1 about to load map [%s]\n",scenarioInfo.mapName.c_str()); +//loadMapInfo(Config::getMapPath(scenarioInfo.mapName, scenarioDir, true), &mapInfo, false); +//printf("#6.2\n"); - //gameSettings->setDefaultUnits(true); - //gameSettings->setDefaultResources(true); - //gameSettings->setDefaultVictoryConditions(true); + listBoxMapFilter.setSelectedItemIndex (0); + listBoxMap.setItems (formattedPlayerSortedMaps[mapInfo.players]); + listBoxMap.setSelectedItem (formatString (scenarioInfo.mapName)); + } + else + { +//printf("gameSettings.getMapFilter()=%d \n",gameSettings.getMapFilter()); + if (gameSettings.getMapFilter () == 0) + { + listBoxMapFilter.setSelectedItemIndex (0); + } + else + { + listBoxMapFilter.setSelectedItem (intToStr + (gameSettings.getMapFilter ())); + } + listBoxMap.setItems (formattedPlayerSortedMaps + [gameSettings.getMapFilter ()]); + } - //FogOfWar - if(checkBoxScenario.getValue() == false) { - listBoxFogOfWar.setSelectedItemIndex(0); // default is 0! - if(gameSettings.getFogOfWar() == false){ - listBoxFogOfWar.setSelectedItemIndex(2); - } +//printf("gameSettings.getMap() [%s] [%s]\n",gameSettings.getMap().c_str(),listBoxMap.getSelectedItem().c_str()); - if((gameSettings.getFlagTypes1() & ft1_show_map_resources) == ft1_show_map_resources){ - if(gameSettings.getFogOfWar() == true){ - listBoxFogOfWar.setSelectedItemIndex(1); - } - } - } + string mapFile = gameSettings.getMap (); + if (find (mapFiles.begin (), mapFiles.end (), mapFile) != + mapFiles.end ()) + { + mapFile = formatString (mapFile); + listBoxMap.setSelectedItem (mapFile); - //printf("In [%s::%s line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + loadMapInfo (Config::getMapPath + (getCurrentMapFile (), scenarioDir, true), &mapInfo, + true); + labelMapInfo.setText (mapInfo.desc); + } - checkBoxAllowObservers.setValue(gameSettings.getAllowObservers() == true ? true : false); - //listBoxEnableObserverMode.setSelectedItem(gameSettings.getEnableObserverModeAtEndGame() == true ? lang.getString("Yes") : lang.getString("No")); + string tilesetFile = gameSettings.getTileset (); + if (find (tilesetFiles.begin (), tilesetFiles.end (), tilesetFile) != + tilesetFiles.end ()) + { + tilesetFile = formatString (tilesetFile); + listBoxTileset.setSelectedItem (tilesetFile); + } - checkBoxEnableSwitchTeamMode.setValue((gameSettings.getFlagTypes1() & ft1_allow_team_switching) == ft1_allow_team_switching ? true : false); - listBoxAISwitchTeamAcceptPercent.setSelectedItem(intToStr(gameSettings.getAiAcceptSwitchTeamPercentChance())); - listBoxFallbackCpuMultiplier.setSelectedItemIndex(gameSettings.getFallbackCpuMultiplier()); + string techtreeFile = gameSettings.getTech (); + if (find (techTreeFiles.begin (), techTreeFiles.end (), techtreeFile) != + techTreeFiles.end ()) + { + techtreeFile = formatString (techtreeFile); + listBoxTechTree.setSelectedItem (techtreeFile); + } - checkBoxAllowInGameJoinPlayer.setValue((gameSettings.getFlagTypes1() & ft1_allow_in_game_joining) == ft1_allow_in_game_joining ? true : false); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - checkBoxAllowTeamUnitSharing.setValue((gameSettings.getFlagTypes1() & ft1_allow_shared_team_units) == ft1_allow_shared_team_units ? true : false); - checkBoxAllowTeamResourceSharing.setValue((gameSettings.getFlagTypes1() & ft1_allow_shared_team_resources) == ft1_allow_shared_team_resources ? true : false); +//gameSettings->setDefaultUnits(true); +//gameSettings->setDefaultResources(true); +//gameSettings->setDefaultVictoryConditions(true); - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - if(serverInterface != NULL) { - serverInterface->setAllowInGameConnections(checkBoxAllowInGameJoinPlayer.getValue() == true); - } +//FogOfWar + if (checkBoxScenario.getValue () == false) + { + listBoxFogOfWar.setSelectedItemIndex (0); // default is 0! + if (gameSettings.getFogOfWar () == false) + { + listBoxFogOfWar.setSelectedItemIndex (2); + } - checkBoxAllowNativeLanguageTechtree.setValue(gameSettings.getNetworkAllowNativeLanguageTechtree()); + if ((gameSettings.getFlagTypes1 () & ft1_show_map_resources) == + ft1_show_map_resources) + { + if (gameSettings.getFogOfWar () == true) + { + listBoxFogOfWar.setSelectedItemIndex (1); + } + } + } - //listBoxPathFinderType.setSelectedItemIndex(gameSettings.getPathFinderType()); +//printf("In [%s::%s line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - //listBoxEnableServerControlledAI.setSelectedItem(gameSettings.getEnableServerControlledAI() == true ? lang.getString("Yes") : lang.getString("No")); + checkBoxAllowObservers.setValue (gameSettings.getAllowObservers () == + true ? true : false); +//listBoxEnableObserverMode.setSelectedItem(gameSettings.getEnableObserverModeAtEndGame() == true ? lang.getString("Yes") : lang.getString("No")); - //labelNetworkFramePeriod.setText(lang.getString("NetworkFramePeriod")); + checkBoxEnableSwitchTeamMode.setValue ((gameSettings.getFlagTypes1 () & + ft1_allow_team_switching) == + ft1_allow_team_switching ? true : + false); + listBoxAISwitchTeamAcceptPercent.setSelectedItem (intToStr + (gameSettings.getAiAcceptSwitchTeamPercentChance + ())); + listBoxFallbackCpuMultiplier. + setSelectedItemIndex (gameSettings.getFallbackCpuMultiplier ()); - //listBoxNetworkFramePeriod.setSelectedItem(intToStr(gameSettings.getNetworkFramePeriod()/10*10)); + checkBoxAllowInGameJoinPlayer.setValue ((gameSettings.getFlagTypes1 () & + ft1_allow_in_game_joining) == + ft1_allow_in_game_joining ? true + : false); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + checkBoxAllowTeamUnitSharing.setValue ((gameSettings.getFlagTypes1 () & + ft1_allow_shared_team_units) == + ft1_allow_shared_team_units ? + true : false); + checkBoxAllowTeamResourceSharing.setValue ((gameSettings.getFlagTypes1 + () & + ft1_allow_shared_team_resources) + == + ft1_allow_shared_team_resources + ? true : false); - checkBoxNetworkPauseGameForLaggedClients.setValue(gameSettings.getNetworkPauseGameForLaggedClients()); + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + if (serverInterface != NULL) + { + serverInterface->setAllowInGameConnections + (checkBoxAllowInGameJoinPlayer.getValue () == true); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + checkBoxAllowNativeLanguageTechtree. + setValue (gameSettings.getNetworkAllowNativeLanguageTechtree ()); - reloadFactions(false,(checkBoxScenario.getValue() == true ? scenarioFiles[listBoxScenario.getSelectedItemIndex()] : "")); - //reloadFactions(true); +//listBoxPathFinderType.setSelectedItemIndex(gameSettings.getPathFinderType()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d] gameSettings.getFactionCount() = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,gameSettings.getFactionCount()); +//listBoxEnableServerControlledAI.setSelectedItem(gameSettings.getEnableServerControlledAI() == true ? lang.getString("Yes") : lang.getString("No")); - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - int slotIndex = gameSettings.getStartLocationIndex(i); - if(gameSettings.getFactionControl(i) < listBoxControls[slotIndex].getItemCount()) { - listBoxControls[slotIndex].setSelectedItemIndex(gameSettings.getFactionControl(i)); - } +//labelNetworkFramePeriod.setText(lang.getString("NetworkFramePeriod")); - //if(slotIndex == 0) printf("#2 slotIndex = %d, i = %d, multiplier = %d\n",slotIndex,i,listBoxRMultiplier[i].getSelectedItemIndex()); +//listBoxNetworkFramePeriod.setSelectedItem(intToStr(gameSettings.getNetworkFramePeriod()/10*10)); - updateResourceMultiplier(slotIndex); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - //if(slotIndex == 0) printf("#3 slotIndex = %d, i = %d, multiplier = %d\n",slotIndex,i,listBoxRMultiplier[i].getSelectedItemIndex()); + checkBoxNetworkPauseGameForLaggedClients. + setValue (gameSettings.getNetworkPauseGameForLaggedClients ()); - listBoxRMultiplier[slotIndex].setSelectedItemIndex(gameSettings.getResourceMultiplierIndex(i)); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); - //if(slotIndex == 0) printf("#4 slotIndex = %d, i = %d, multiplier = %d\n",slotIndex,i,listBoxRMultiplier[i].getSelectedItemIndex()); + reloadFactions (false, + (checkBoxScenario.getValue () == + true ? + scenarioFiles[listBoxScenario.getSelectedItemIndex ()] + : "")); +//reloadFactions(true); - listBoxTeams[slotIndex].setSelectedItemIndex(gameSettings.getTeam(i)); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d] gameSettings.getFactionCount() = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, __LINE__, + gameSettings.getFactionCount ()); - lastSelectedTeamIndex[slotIndex] = listBoxTeams[slotIndex].getSelectedItemIndex(); + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + int slotIndex = gameSettings.getStartLocationIndex (i); + if (gameSettings.getFactionControl (i) < + listBoxControls[slotIndex].getItemCount ()) + { + listBoxControls[slotIndex]. + setSelectedItemIndex (gameSettings.getFactionControl (i)); + } - string factionName = gameSettings.getFactionTypeName(i); - factionName = formatString(factionName); +//if(slotIndex == 0) printf("#2 slotIndex = %d, i = %d, multiplier = %d\n",slotIndex,i,listBoxRMultiplier[i].getSelectedItemIndex()); - //printf("\n\n\n*** setupUIFromGameSettings A, i = %d, startLoc = %d, factioncontrol = %d, factionName [%s]\n",i,gameSettings.getStartLocationIndex(i),gameSettings.getFactionControl(i),factionName.c_str()); + updateResourceMultiplier (slotIndex); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] factionName = [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,factionName.c_str()); +//if(slotIndex == 0) printf("#3 slotIndex = %d, i = %d, multiplier = %d\n",slotIndex,i,listBoxRMultiplier[i].getSelectedItemIndex()); - if(listBoxFactions[slotIndex].hasItem(factionName) == true) { - listBoxFactions[slotIndex].setSelectedItem(factionName); - } - else { - listBoxFactions[slotIndex].setSelectedItem(formatString(GameConstants::RANDOMFACTION_SLOTNAME)); - } + listBoxRMultiplier[slotIndex]. + setSelectedItemIndex (gameSettings.getResourceMultiplierIndex (i)); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] i = %d, gameSettings.getNetworkPlayerName(i) [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,gameSettings.getNetworkPlayerName(i).c_str()); +//if(slotIndex == 0) printf("#4 slotIndex = %d, i = %d, multiplier = %d\n",slotIndex,i,listBoxRMultiplier[i].getSelectedItemIndex()); - //labelPlayerNames[slotIndex].setText(gameSettings.getNetworkPlayerName(i)); - } + listBoxTeams[slotIndex]. + setSelectedItemIndex (gameSettings.getTeam (i)); - //SetActivePlayerNameEditor(); + lastSelectedTeamIndex[slotIndex] = + listBoxTeams[slotIndex].getSelectedItemIndex (); - updateControlers(); - updateNetworkSlots(); + string factionName = gameSettings.getFactionTypeName (i); + factionName = formatString (factionName); - if(this->headlessServerMode == false && humanPlayerName != "") { - for(int index = 0; index < GameConstants::maxPlayers; ++index) { - ControlType ct= static_cast(listBoxControls[index].getSelectedItemIndex()); - if(ct == ctHuman) { - if(humanPlayerName != labelPlayerNames[index].getText()) { - //printf("Player name changing from [%s] to [%s]\n",labelPlayerNames[index].getText().c_str(),humanPlayerName.c_str()); +//printf("\n\n\n*** setupUIFromGameSettings A, i = %d, startLoc = %d, factioncontrol = %d, factionName [%s]\n",i,gameSettings.getStartLocationIndex(i),gameSettings.getFactionControl(i),factionName.c_str()); - labelPlayerNames[index].setText(""); - labelPlayerNames[index].setText(humanPlayerName); - } - } - } - } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] factionName = [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, factionName.c_str ()); - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } -} + if (listBoxFactions[slotIndex].hasItem (factionName) == true) + { + listBoxFactions[slotIndex].setSelectedItem (factionName); + } + else + { + listBoxFactions[slotIndex].setSelectedItem (formatString + (GameConstants:: + RANDOMFACTION_SLOTNAME)); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] i = %d, gameSettings.getNetworkPlayerName(i) [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i, + gameSettings. + getNetworkPlayerName (i).c_str ()); + +//labelPlayerNames[slotIndex].setText(gameSettings.getNetworkPlayerName(i)); + } + +//SetActivePlayerNameEditor(); + + updateControlers (); + updateNetworkSlots (); + + if (this->headlessServerMode == false && humanPlayerName != "") + { + for (int index = 0; index < GameConstants::maxPlayers; ++index) + { + ControlType ct = + static_cast < ControlType > + (listBoxControls[index].getSelectedItemIndex ()); + if (ct == ctHuman) + { + if (humanPlayerName != labelPlayerNames[index].getText ()) + { +//printf("Player name changing from [%s] to [%s]\n",labelPlayerNames[index].getText().c_str(),humanPlayerName.c_str()); + + labelPlayerNames[index].setText (""); + labelPlayerNames[index].setText (humanPlayerName); + } + } + } + } + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } // ============ PRIVATE =========================== -void MenuStateCustomGame::lastPlayerDisconnected() { - // this is for headless mode only! - // if last player disconnects we load the network defaults. - if(this->headlessServerMode == false) { - return; - } + void MenuStateCustomGame::lastPlayerDisconnected () + { +// this is for headless mode only! +// if last player disconnects we load the network defaults. + if (this->headlessServerMode == false) + { + return; + } - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - bool foundConnectedPlayer=false; - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - if(serverInterface->getSlot(i,true) != NULL && - (listBoxControls[i].getSelectedItemIndex() == ctNetwork || - listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned)) { - if(serverInterface->getSlot(i,true)->isConnected() == true) { - foundConnectedPlayer=true; - } - } - } + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + bool foundConnectedPlayer = false; + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + if (serverInterface->getSlot (i, true) != NULL && + (listBoxControls[i].getSelectedItemIndex () == ctNetwork || + listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned)) + { + if (serverInterface->getSlot (i, true)->isConnected () == true) + { + foundConnectedPlayer = true; + } + } + } - if(!foundConnectedPlayer && headlessHasConnectedPlayer==true ){ - // load defaults - string data_path = getGameReadWritePath(GameConstants::path_data_CacheLookupKey); - if(fileExists(data_path + DEFAULT_NETWORKGAME_FILENAME) == true) - loadGameSettings(data_path + DEFAULT_NETWORKGAME_FILENAME); - } - headlessHasConnectedPlayer=foundConnectedPlayer; -} - -bool MenuStateCustomGame::hasNetworkGameSettings() { - bool hasNetworkSlot = false; - - try { - for(int i=0; i(listBoxControls[i].getSelectedItemIndex()); - if(ct != ctClosed) { - if(ct == ctNetwork || ct == ctNetworkUnassigned) { - hasNetworkSlot = true; - break; - } - } - } - if(hasNetworkSlot == false) { - for(int i=0; i < GameConstants::maxPlayers; ++i) { - ControlType ct= static_cast(listBoxControls[i].getSelectedItemIndex()); - if(ct != ctClosed) { - if(ct == ctNetworkUnassigned) { - hasNetworkSlot = true; - break; - } - } - } - } + if (!foundConnectedPlayer && headlessHasConnectedPlayer == true) + { +// load defaults + string data_path = + getGameReadWritePath (GameConstants::path_data_CacheLookupKey); + if (fileExists (data_path + DEFAULT_NETWORKGAME_FILENAME) == true) + loadGameSettings (data_path + DEFAULT_NETWORKGAME_FILENAME); + } + headlessHasConnectedPlayer = foundConnectedPlayer; } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - showGeneralError=true; - generalErrorToShow = szBuf; - } + bool MenuStateCustomGame::hasNetworkGameSettings () + { + bool hasNetworkSlot = false; - return hasNetworkSlot; -} - -void MenuStateCustomGame::loadMapInfo(string file, MapInfo *mapInfo, bool loadMapPreview) { - try { - Lang &lang= Lang::getInstance(); - if(MapPreview::loadMapInfo(file, mapInfo, lang.getString("MaxPlayers"),lang.getString("Size"),true) == true) { - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - if(serverInterface->getSlot(i,true) != NULL && - (listBoxControls[i].getSelectedItemIndex() == ctNetwork || - listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned)) { - if(serverInterface->getSlot(i,true)->isConnected() == true) { - if(i+1 > mapInfo->players && - listBoxControls[i].getSelectedItemIndex() != ctNetworkUnassigned) { - listBoxControls[i].setSelectedItemIndex(ctNetworkUnassigned); - } - } - } - mapInfo->players = GameConstants::maxPlayers; - labelPlayers[i].setVisible(i+1 <= mapInfo->players); - labelPlayerNames[i].setVisible(i+1 <= mapInfo->players); - listBoxControls[i].setVisible(i+1 <= mapInfo->players); - listBoxFactions[i].setVisible(i+1 <= mapInfo->players); - listBoxTeams[i].setVisible(i+1 <= mapInfo->players); - labelNetStatus[i].setVisible(i+1 <= mapInfo->players); - } - - // Not painting properly so this is on hold - if(loadMapPreview == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - mapPreview.loadFromFile(file.c_str()); - - //printf("Loading map preview MAP\n"); - cleanupMapPreviewTexture(); - } - } - } - catch(exception &e) { - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error [%s] loading map [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,e.what(),file.c_str()); - throw megaglest_runtime_error("Error loading map file: [" + file + "] msg: " + e.what()); - } -} - -void MenuStateCustomGame::updateControlers() { - try { - bool humanPlayer= false; - - for(int i = 0; i < mapInfo.players; ++i) { - if(listBoxControls[i].getSelectedItemIndex() == ctHuman) { - humanPlayer= true; - } - } - - if(humanPlayer == false) { - if(this->headlessServerMode == false) { - bool foundNewSlotForHuman = false; - for(int i = 0; i < mapInfo.players; ++i) { - if(listBoxControls[i].getSelectedItemIndex() == ctClosed) { - setSlotHuman(i); - foundNewSlotForHuman = true; - break; - } - } - - if(foundNewSlotForHuman == false) { - for(int i = 0; i < mapInfo.players; ++i) { - if(listBoxControls[i].getSelectedItemIndex() == ctClosed || - listBoxControls[i].getSelectedItemIndex() == ctCpuEasy || - listBoxControls[i].getSelectedItemIndex() == ctCpu || - listBoxControls[i].getSelectedItemIndex() == ctCpuUltra || - listBoxControls[i].getSelectedItemIndex() == ctCpuMega) { - setSlotHuman(i); - - foundNewSlotForHuman = true; - break; - } - } - } - - if(foundNewSlotForHuman == false) { - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - ConnectionSlot *slot = serverInterface->getSlot(0,true); - if(slot != NULL && slot->isConnected() == true) { - serverInterface->removeSlot(0); - } - setSlotHuman(0); - } - } - } - - for(int i= mapInfo.players; i < GameConstants::maxPlayers; ++i) { - if( listBoxControls[i].getSelectedItemIndex() != ctNetwork && - listBoxControls[i].getSelectedItemIndex() != ctNetworkUnassigned) { - //printf("Closed A [%d] [%s]\n",i,labelPlayerNames[i].getText().c_str()); - - listBoxControls[i].setSelectedItemIndex(ctClosed); - } - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - throw megaglest_runtime_error(szBuf); - } -} - -void MenuStateCustomGame::closeUnusedSlots(){ - try { - if(checkBoxScenario.getValue() == false) { - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - //for(int i= 0; igetSlot(i,true) == NULL || - serverInterface->getSlot(i,true)->isConnected() == false || - serverInterface->getSlot(i,true)->getConnectHasHandshaked() == false) { - //printf("Closed A [%d] [%s]\n",i,labelPlayerNames[i].getText().c_str()); - - listBoxControls[i].setSelectedItemIndex(ctClosed); - } - } - } - updateNetworkSlots(); - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - throw megaglest_runtime_error(szBuf); - } -} - -void MenuStateCustomGame::updateNetworkSlots() { - try { - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - - if(hasNetworkGameSettings() == true) { - if(hasCheckedForUPNP == false) { - - if(checkBoxPublishServer.getValue() == true || - this->headlessServerMode == true) { - - hasCheckedForUPNP = true; - serverInterface->getServerSocket()->NETdiscoverUPnPDevices(); - } + try + { + for (int i = 0; i < mapInfo.players; ++i) + { + ControlType ct = + static_cast < ControlType > + (listBoxControls[i].getSelectedItemIndex ()); + if (ct != ctClosed) + { + if (ct == ctNetwork || ct == ctNetworkUnassigned) + { + hasNetworkSlot = true; + break; } + } } - else { - hasCheckedForUPNP = false; + if (hasNetworkSlot == false) + { + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + ControlType ct = + static_cast < ControlType > + (listBoxControls[i].getSelectedItemIndex ()); + if (ct != ctClosed) + { + if (ct == ctNetworkUnassigned) + { + hasNetworkSlot = true; + break; + } + } + } + } + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, __LINE__, + ex.what ()); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + showGeneralError = true; + generalErrorToShow = szBuf; + } + + return hasNetworkSlot; + } + + void MenuStateCustomGame::loadMapInfo (string file, MapInfo * mapInfo, + bool loadMapPreview) + { + try + { + Lang & lang = Lang::getInstance (); + if (MapPreview::loadMapInfo + (file, mapInfo, lang.getString ("MaxPlayers"), + lang.getString ("Size"), true) == true) + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + if (serverInterface->getSlot (i, true) != NULL && + (listBoxControls[i].getSelectedItemIndex () == ctNetwork + || listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned)) + { + if (serverInterface->getSlot (i, true)->isConnected () == true) + { + if (i + 1 > mapInfo->players && + listBoxControls[i].getSelectedItemIndex () != + ctNetworkUnassigned) + { + listBoxControls[i].setSelectedItemIndex + (ctNetworkUnassigned); + } + } + } + mapInfo->players = GameConstants::maxPlayers; + labelPlayers[i].setVisible (i + 1 <= mapInfo->players); + labelPlayerNames[i].setVisible (i + 1 <= mapInfo->players); + listBoxControls[i].setVisible (i + 1 <= mapInfo->players); + listBoxFactions[i].setVisible (i + 1 <= mapInfo->players); + listBoxTeams[i].setVisible (i + 1 <= mapInfo->players); + labelNetStatus[i].setVisible (i + 1 <= mapInfo->players); + } + +// Not painting properly so this is on hold + if (loadMapPreview == true) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + mapPreview.loadFromFile (file.c_str ()); + +//printf("Loading map preview MAP\n"); + cleanupMapPreviewTexture (); + } + } + } + catch (exception & e) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error [%s] loading map [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, __LINE__, + e.what (), file.c_str ()); + throw megaglest_runtime_error ("Error loading map file: [" + file + + "] msg: " + e.what ()); + } + } + + void MenuStateCustomGame::updateControlers () + { + try + { + bool humanPlayer = false; + + for (int i = 0; i < mapInfo.players; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () == ctHuman) + { + humanPlayer = true; + } } - for(int i= 0; i < GameConstants::maxPlayers; ++i) { - ConnectionSlot *slot = serverInterface->getSlot(i,true); - //printf("A i = %d control type = %d slot [%p]\n",i,listBoxControls[i].getSelectedItemIndex(),slot); - - if(slot == NULL && - listBoxControls[i].getSelectedItemIndex() == ctNetwork) { - try { - serverInterface->addSlot(i); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - showGeneralError=true; - if(serverInterface->isPortBound() == false) { - generalErrorToShow = Lang::getInstance().getString("ErrorBindingPort") + " : " + intToStr(serverInterface->getBindPort()); - } - else { - generalErrorToShow = ex.what(); - } - - // Revert network to CPU - listBoxControls[i].setSelectedItemIndex(ctCpu); - } - } - slot = serverInterface->getSlot(i,true); - if(slot != NULL) { - if((listBoxControls[i].getSelectedItemIndex() != ctNetwork) || - (listBoxControls[i].getSelectedItemIndex() == ctNetwork && - slot->isConnected() == false && i >= mapInfo.players)) { - if(slot->getCanAcceptConnections() == true) { - slot->setCanAcceptConnections(false); - } - if(slot->isConnected() == true) { - if(listBoxControls[i].getSelectedItemIndex() != ctNetworkUnassigned) { - listBoxControls[i].setSelectedItemIndex(ctNetworkUnassigned); - } - } - else { - serverInterface->removeSlot(i); - - if(listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned) { - listBoxControls[i].setSelectedItemIndex(ctClosed); - } - } - } - else if(slot->getCanAcceptConnections() == false) { - slot->setCanAcceptConnections(true); - } - } - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - //throw megaglest_runtime_error(szBuf); - showGeneralError=true; - generalErrorToShow = szBuf; - - } -} - -bool MenuStateCustomGame::textInput(std::string text) { - //printf("In [%s::%s Line: %d] text [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,text.c_str()); - if(activeInputLabel != NULL) { - bool handled = textInputEditLabel(text, &activeInputLabel); - if(handled == true && &labelGameName != activeInputLabel) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - } - else { - if(hasNetworkGameSettings() == true) { - chatManager.textInput(text); - } - } - return false; -} - -void MenuStateCustomGame::keyDown(SDL_KeyboardEvent key) { - if(isMasterserverMode() == true) { - return; - } - - if(activeInputLabel != NULL) { - bool handled = keyDownEditLabel(key, &activeInputLabel); - if(handled == true) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - } - else { - //send key to the chat manager - if(hasNetworkGameSettings() == true) { - chatManager.keyDown(key); - } - if(chatManager.getEditEnabled() == false && - (::Shared::Platform::Window::isKeyStateModPressed(KMOD_SHIFT) == false) ) { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - - //if(key == configKeys.getCharKey("ShowFullConsole")) { - if(isKeyPressed(configKeys.getSDLKey("ShowFullConsole"),key) == true) { - showFullConsole= true; - } - //Toggle music - //else if(key == configKeys.getCharKey("ToggleMusic")) { - else if(isKeyPressed(configKeys.getSDLKey("ToggleMusic"),key) == true) { - Config &config = Config::getInstance(); - Lang &lang= Lang::getInstance(); - - float configVolume = (config.getInt("SoundVolumeMusic") / 100.f); - float currentVolume = CoreData::getInstance().getMenuMusic()->getVolume(); - if(currentVolume > 0) { - CoreData::getInstance().getMenuMusic()->setVolume(0.f); - console.addLine(lang.getString("GameMusic") + " " + lang.getString("Off")); - } - else { - CoreData::getInstance().getMenuMusic()->setVolume(configVolume); - //If the config says zero, use the default music volume - //gameMusic->setVolume(configVolume ? configVolume : 0.9); - console.addLine(lang.getString("GameMusic")); - } - } - //else if(key == configKeys.getCharKey("SaveGUILayout")) { - else if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - bool saved = GraphicComponent::saveAllCustomProperties(containerName); - Lang &lang= Lang::getInstance(); - console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } - } - } -} - -void MenuStateCustomGame::keyPress(SDL_KeyboardEvent c) { - if(isMasterserverMode() == true) { - return; - } - - if(activeInputLabel != NULL) { - bool handled = keyPressEditLabel(c, &activeInputLabel); - if(handled == true && &labelGameName != activeInputLabel) { - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - } - } - else { - if(hasNetworkGameSettings() == true) { - chatManager.keyPress(c); - } - } -} - -void MenuStateCustomGame::keyUp(SDL_KeyboardEvent key) { - if(isMasterserverMode() == true) { - return; - } - - if(activeInputLabel==NULL) { - if(hasNetworkGameSettings() == true) { - chatManager.keyUp(key); - } - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - - if(chatManager.getEditEnabled()) { - //send key to the chat manager - if(hasNetworkGameSettings() == true) { - chatManager.keyUp(key); - } - } - //else if(key == configKeys.getCharKey("ShowFullConsole")) { - else if(isKeyPressed(configKeys.getSDLKey("ShowFullConsole"),key) == true) { - showFullConsole= false; - } - } -} - -void MenuStateCustomGame::showMessageBox(const string &text, const string &header, bool toggle){ - if(!toggle){ - mainMessageBox.setEnabled(false); - } - - if(!mainMessageBox.getEnabled()){ - mainMessageBox.setText(text); - mainMessageBox.setHeader(header); - mainMessageBox.setEnabled(true); - } - else{ - mainMessageBox.setEnabled(false); - } -} - -void MenuStateCustomGame::switchToNextMapGroup(const int direction){ - int i=listBoxMapFilter.getSelectedItemIndex(); - // if there are no maps for the current selection we switch to next selection - while(formattedPlayerSortedMaps[i].empty()){ - i=i+direction; - if(i>GameConstants::maxPlayers){ - i=0; - } - if(i<0){ - i=GameConstants::maxPlayers; - } - } - listBoxMapFilter.setSelectedItemIndex(i); - listBoxMap.setItems(formattedPlayerSortedMaps[i]); -} - -string MenuStateCustomGame::getCurrentMapFile(){ - int i=listBoxMapFilter.getSelectedItemIndex(); - int mapIndex=listBoxMap.getSelectedItemIndex(); - if(playerSortedMaps[i].empty() == false) { - return playerSortedMaps[i].at(mapIndex); - } - return ""; -} - -void MenuStateCustomGame::setActiveInputLabel(GraphicLabel *newLable) { - MenuState::setActiveInputLabel(newLable,&activeInputLabel); -} - -string MenuStateCustomGame::getHumanPlayerName(int index) { - string result = defaultPlayerName; - if(index < 0) { - for(int j = 0; j < GameConstants::maxPlayers; ++j) { - if(listBoxControls[j].getSelectedItemIndex() >= 0) { - ControlType ct = static_cast(listBoxControls[j].getSelectedItemIndex()); - if(ct == ctHuman) { - index = j; - break; - } - } - } - } - - if(index >= 0 && index < GameConstants::maxPlayers && - labelPlayerNames[index].getText() != "" && - labelPlayerNames[index].getText() != GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) { - result = labelPlayerNames[index].getText(); - - if(activeInputLabel != NULL) { - size_t found = result.find_last_of("_"); - if (found != string::npos) { - result = result.substr(0,found); - } - } - } - - return result; -} - -void MenuStateCustomGame::loadFactionTexture(string filepath) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - if(enableFactionTexturePreview == true) { - if(filepath == "") { - factionTexture = NULL; - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] filepath = [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,filepath.c_str()); - - factionTexture = Renderer::findTexture(filepath); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - } -} - -void MenuStateCustomGame::cleanupMapPreviewTexture() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - //printf("CLEANUP map preview texture\n"); - - if(mapPreviewTexture != NULL) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - mapPreviewTexture->end(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - delete mapPreviewTexture; - mapPreviewTexture = NULL; - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -int32 MenuStateCustomGame::getNetworkPlayerStatus() { - int32 result = npst_None; - switch(listBoxPlayerStatus.getSelectedItemIndex()) { - case 2: - result = npst_Ready; - break; - case 1: - result = npst_BeRightBack; - break; - case 0: - default: - result = npst_PickSettings; - break; - } - - return result; -} - -void MenuStateCustomGame::loadScenarioInfo(string file, ScenarioInfo *scenarioInfo) { - //printf("Load scenario file [%s]\n",file.c_str()); - bool isTutorial = Scenario::isGameTutorial(file); - Scenario::loadScenarioInfo(file, scenarioInfo, isTutorial); - - //cleanupPreviewTexture(); - previewLoadDelayTimer=time(NULL); - needToLoadTextures=true; -} - -bool MenuStateCustomGame::isInSpecialKeyCaptureEvent() { - bool result = (chatManager.getEditEnabled() || activeInputLabel != NULL); - return result; -} - -void MenuStateCustomGame::processScenario() { - try { - if(checkBoxScenario.getValue() == true) { - //printf("listBoxScenario.getSelectedItemIndex() = %d [%s] scenarioFiles.size() = %d\n",listBoxScenario.getSelectedItemIndex(),listBoxScenario.getSelectedItem().c_str(),scenarioFiles.size()); - loadScenarioInfo(Scenario::getScenarioPath(dirList, scenarioFiles[listBoxScenario.getSelectedItemIndex()]), &scenarioInfo); - string scenarioDir = Scenario::getScenarioDir(dirList, scenarioInfo.name); - - //printf("scenarioInfo.fogOfWar = %d scenarioInfo.fogOfWar_exploredFlag = %d\n",scenarioInfo.fogOfWar,scenarioInfo.fogOfWar_exploredFlag); - if(scenarioInfo.fogOfWar == false && scenarioInfo.fogOfWar_exploredFlag == false) { - listBoxFogOfWar.setSelectedItemIndex(2); - } - else if(scenarioInfo.fogOfWar_exploredFlag == true) { - listBoxFogOfWar.setSelectedItemIndex(1); - } - else { - listBoxFogOfWar.setSelectedItemIndex(0); - } - - checkBoxAllowTeamUnitSharing.setValue(scenarioInfo.allowTeamUnitSharing); - checkBoxAllowTeamResourceSharing.setValue(scenarioInfo.allowTeamResourceSharing); - - setupTechList(scenarioInfo.name, false); - listBoxTechTree.setSelectedItem(formatString(scenarioInfo.techTreeName)); - reloadFactions(false,scenarioInfo.name); - - setupTilesetList(scenarioInfo.name); - listBoxTileset.setSelectedItem(formatString(scenarioInfo.tilesetName)); - - setupMapList(scenarioInfo.name); - listBoxMap.setSelectedItem(formatString(scenarioInfo.mapName)); - loadMapInfo(Config::getMapPath(getCurrentMapFile(),scenarioDir,true), &mapInfo, true); - labelMapInfo.setText(mapInfo.desc); - - //printf("scenarioInfo.name [%s] [%s]\n",scenarioInfo.name.c_str(),listBoxMap.getSelectedItem().c_str()); - - // Loop twice to set the human slot or else it closes network slots in some cases - for(int humanIndex = 0; humanIndex < 2; ++humanIndex) { - for(int i = 0; i < mapInfo.players; ++i) { - listBoxRMultiplier[i].setSelectedItem(floatToStr(scenarioInfo.resourceMultipliers[i],1)); - - ServerInterface* serverInterface= NetworkManager::getInstance().getServerInterface(); - ConnectionSlot *slot = serverInterface->getSlot(i,true); - - int selectedControlItemIndex = listBoxControls[i].getSelectedItemIndex(); - if(selectedControlItemIndex != ctNetwork || - (selectedControlItemIndex == ctNetwork && (slot == NULL || slot->isConnected() == false))) { - } - - listBoxControls[i].setSelectedItemIndex(scenarioInfo.factionControls[i]); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - // Skip over networkunassigned - //if(listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned && - // selectedControlItemIndex != ctNetworkUnassigned) { - // listBoxControls[i].mouseClick(x, y); - //} - - //look for human players - int humanIndex1= -1; - int humanIndex2= -1; - for(int j = 0; j < GameConstants::maxPlayers; ++j) { - ControlType ct= static_cast(listBoxControls[j].getSelectedItemIndex()); - if(ct == ctHuman) { - if(humanIndex1 == -1) { - humanIndex1= j; - } - else { - humanIndex2= j; - } - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] humanIndex1 = %d, humanIndex2 = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,humanIndex1,humanIndex2); - - //no human - if(humanIndex1 == -1 && humanIndex2 == -1) { - setSlotHuman(i); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] i = %d, labelPlayerNames[i].getText() [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,i,labelPlayerNames[i].getText().c_str()); - - //printf("humanIndex1 = %d humanIndex2 = %d i = %d listBoxControls[i].getSelectedItemIndex() = %d\n",humanIndex1,humanIndex2,i,listBoxControls[i].getSelectedItemIndex()); - } - //2 humans - else if(humanIndex1 != -1 && humanIndex2 != -1) { - int closeSlotIndex = (humanIndex1 == i ? humanIndex2: humanIndex1); - int humanSlotIndex = (closeSlotIndex == humanIndex1 ? humanIndex2 : humanIndex1); - - string origPlayName = labelPlayerNames[closeSlotIndex].getText(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] closeSlotIndex = %d, origPlayName [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,closeSlotIndex,origPlayName.c_str()); - //printf("humanIndex1 = %d humanIndex2 = %d i = %d closeSlotIndex = %d humanSlotIndex = %d\n",humanIndex1,humanIndex2,i,closeSlotIndex,humanSlotIndex); - - listBoxControls[closeSlotIndex].setSelectedItemIndex(ctClosed); - labelPlayerNames[humanSlotIndex].setText((origPlayName != "" ? origPlayName : getHumanPlayerName())); - } - - ControlType ct= static_cast(listBoxControls[i].getSelectedItemIndex()); - if(ct != ctClosed) { - //updateNetworkSlots(); - //updateResourceMultiplier(i); - updateResourceMultiplier(i); - - //printf("Setting scenario faction i = %d [ %s]\n",i,scenarioInfo.factionTypeNames[i].c_str()); - listBoxFactions[i].setSelectedItem(formatString(scenarioInfo.factionTypeNames[i])); - //printf("DONE Setting scenario faction i = %d [ %s]\n",i,scenarioInfo.factionTypeNames[i].c_str()); - - // Disallow CPU players to be observers - if(factionFiles[listBoxFactions[i].getSelectedItemIndex()] == formatString(GameConstants::OBSERVER_SLOTNAME) && - (listBoxControls[i].getSelectedItemIndex() == ctCpuEasy || listBoxControls[i].getSelectedItemIndex() == ctCpu || - listBoxControls[i].getSelectedItemIndex() == ctCpuUltra || listBoxControls[i].getSelectedItemIndex() == ctCpuMega)) { - listBoxFactions[i].setSelectedItemIndex(0); - } - // - - listBoxTeams[i].setSelectedItem(intToStr(scenarioInfo.teams[i])); - if(factionFiles[listBoxFactions[i].getSelectedItemIndex()] != formatString(GameConstants::OBSERVER_SLOTNAME)) { - if(listBoxTeams[i].getSelectedItemIndex() + 1 != (GameConstants::maxPlayers + fpt_Observer)) { - lastSelectedTeamIndex[i] = listBoxTeams[i].getSelectedItemIndex(); - } - // Alow Neutral cpu players - else if(listBoxControls[i].getSelectedItemIndex() == ctCpuEasy || listBoxControls[i].getSelectedItemIndex() == ctCpu || - listBoxControls[i].getSelectedItemIndex() == ctCpuUltra || listBoxControls[i].getSelectedItemIndex() == ctCpuMega) { - lastSelectedTeamIndex[i] = listBoxTeams[i].getSelectedItemIndex(); - } - } - else { - lastSelectedTeamIndex[i] = -1; - } - } - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL);; - } - } - } - - updateControlers(); - updateNetworkSlots(); - - MutexSafeWrapper safeMutex((publishToMasterserverThread != NULL ? publishToMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - MutexSafeWrapper safeMutexCLI((publishToClientsThread != NULL ? publishToClientsThread->getMutexThreadObjectAccessor() : NULL),string(__FILE__) + "_" + intToStr(__LINE__)); - - if(checkBoxPublishServer.getValue() == true) { - needToRepublishToMasterserver = true; - } - if(hasNetworkGameSettings() == true) { - needToSetChangedGameSettings = true; - lastSetChangedGameSettings = time(NULL); - } - - //labelInfo.setText(scenarioInfo.desc); - } - else { - setupMapList(""); - listBoxMap.setSelectedItem(formatString(formattedPlayerSortedMaps[0][0])); - loadMapInfo(Config::getMapPath(getCurrentMapFile(),"",true), &mapInfo, true); - labelMapInfo.setText(mapInfo.desc); - - setupTechList("", false); - reloadFactions(false,""); - setupTilesetList(""); - updateControlers(); - } - SetupUIForScenarios(); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - mainMessageBoxState=1; - showMessageBox( szBuf, "Error detected", false); - } -} - -void MenuStateCustomGame::SetupUIForScenarios() { - try { - if(checkBoxScenario.getValue() == true) { - // START - Disable changes to controls while in Scenario mode - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - listBoxControls[i].setEditable(false); - listBoxFactions[i].setEditable(false); - listBoxRMultiplier[i].setEditable(false); - listBoxTeams[i].setEditable(false); - } - listBoxFogOfWar.setEditable(false); - checkBoxAllowObservers.setEditable(false); - checkBoxAllowTeamUnitSharing.setEditable(false); - checkBoxAllowTeamResourceSharing.setEditable(false); - //listBoxPathFinderType.setEditable(false); - checkBoxEnableSwitchTeamMode.setEditable(false); - listBoxAISwitchTeamAcceptPercent.setEditable(false); - listBoxFallbackCpuMultiplier.setEditable(false); - listBoxMap.setEditable(false); - listBoxTileset.setEditable(false); - listBoxMapFilter.setEditable(false); - listBoxTechTree.setEditable(false); - // END - Disable changes to controls while in Scenario mode - } - else { - // START - Disable changes to controls while in Scenario mode - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - listBoxControls[i].setEditable(true); - listBoxFactions[i].setEditable(true); - listBoxRMultiplier[i].setEditable(true); - listBoxTeams[i].setEditable(true); - } - listBoxFogOfWar.setEditable(true); - checkBoxAllowObservers.setEditable(true); - checkBoxAllowTeamUnitSharing.setEditable(true); - checkBoxAllowTeamResourceSharing.setEditable(true); - //listBoxPathFinderType.setEditable(true); - checkBoxEnableSwitchTeamMode.setEditable(true); - listBoxAISwitchTeamAcceptPercent.setEditable(true); - listBoxFallbackCpuMultiplier.setEditable(true); - listBoxMap.setEditable(true); - listBoxTileset.setEditable(true); - listBoxMapFilter.setEditable(true); - listBoxTechTree.setEditable(true); - // END - Disable changes to controls while in Scenario mode - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - throw megaglest_runtime_error(szBuf); - } - -} - -int MenuStateCustomGame::setupMapList(string scenario) { - int initialMapSelection = 0; - - try { - Config &config = Config::getInstance(); - vector invalidMapList; - string scenarioDir = Scenario::getScenarioDir(dirList, scenario); - vector pathList = config.getPathListForType(ptMaps,scenarioDir); - vector allMaps = MapPreview::findAllValidMaps(pathList,scenarioDir,false,true,&invalidMapList); - if(scenario != "") { - vector allMaps2 = MapPreview::findAllValidMaps(config.getPathListForType(ptMaps,""),"",false,true,&invalidMapList); - copy(allMaps2.begin(), allMaps2.end(), std::inserter(allMaps, allMaps.begin())); - } - // sort map list non case sensitive - std::sort(allMaps.begin(),allMaps.end(),compareNonCaseSensitive); - - if (allMaps.empty()) { - throw megaglest_runtime_error("No maps were found!"); - } - vector results; - copy(allMaps.begin(), allMaps.end(), std::back_inserter(results)); - mapFiles = results; - - for(unsigned int i = 0; i < GameConstants::maxPlayers+1; ++i) { - playerSortedMaps[i].clear(); - formattedPlayerSortedMaps[i].clear(); - } - - // at index=0 fill in the whole list - copy(mapFiles.begin(), mapFiles.end(), std::back_inserter(playerSortedMaps[0])); - copy(playerSortedMaps[0].begin(), playerSortedMaps[0].end(), std::back_inserter(formattedPlayerSortedMaps[0])); - std::for_each(formattedPlayerSortedMaps[0].begin(), formattedPlayerSortedMaps[0].end(), FormatString()); - - // fill playerSortedMaps and formattedPlayerSortedMaps according to map player count - for(int i= 0; i < (int)mapFiles.size(); i++){// fetch info and put map in right list - loadMapInfo(Config::getMapPath(mapFiles.at(i), scenarioDir, false), &mapInfo, false); - - if(GameConstants::maxPlayers+1 <= mapInfo.players) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"Sorted map list [%d] does not match\ncurrent map playercount [%d]\nfor file [%s]\nmap [%s]",GameConstants::maxPlayers+1,mapInfo.players,Config::getMapPath(mapFiles.at(i), "", false).c_str(),mapInfo.desc.c_str()); - throw megaglest_runtime_error(szBuf); - } - playerSortedMaps[mapInfo.players].push_back(mapFiles.at(i)); - formattedPlayerSortedMaps[mapInfo.players].push_back(formatString(mapFiles.at(i))); - if(config.getString("InitialMap", "Conflict") == formattedPlayerSortedMaps[mapInfo.players].back()){ - initialMapSelection= i; - } - } - - //printf("#6 scenario [%s] [%s]\n",scenario.c_str(),scenarioDir.c_str()); - if(scenario != "") { - string file = Scenario::getScenarioPath(dirList, scenario); - loadScenarioInfo(file, &scenarioInfo); - - //printf("#6.1 about to load map [%s]\n",scenarioInfo.mapName.c_str()); - loadMapInfo(Config::getMapPath(scenarioInfo.mapName, scenarioDir, true), &mapInfo, false); - //printf("#6.2\n"); - listBoxMapFilter.setSelectedItem(intToStr(mapInfo.players)); - listBoxMap.setItems(formattedPlayerSortedMaps[mapInfo.players]); - } - else { - listBoxMapFilter.setSelectedItemIndex(0); - listBoxMap.setItems(formattedPlayerSortedMaps[0]); - } - //printf("#7\n"); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - throw megaglest_runtime_error(szBuf); - //abort(); - } - - return initialMapSelection; -} - -int MenuStateCustomGame::setupTechList(string scenario, bool forceLoad) { - int initialTechSelection = 0; - try { - Config &config = Config::getInstance(); - - string scenarioDir = Scenario::getScenarioDir(dirList, scenario); - vector results; - vector techPaths = config.getPathListForType(ptTechs,scenarioDir); - findDirs(techPaths, results); - - if(results.empty()) { - //throw megaglest_runtime_error("No tech-trees were found!"); - printf("No tech-trees were found (custom)!\n"); - } - - techTreeFiles= results; - - vector translatedTechs; - - for(unsigned int i= 0; i < results.size(); i++) { - //printf("TECHS i = %d results [%s] scenario [%s]\n",i,results[i].c_str(),scenario.c_str()); - - results.at(i)= formatString(results.at(i)); - if(config.getString("InitialTechTree", "Megapack") == results.at(i)) { - initialTechSelection= i; - } - string txTech = techTree->getTranslatedName(techTreeFiles.at(i), forceLoad); - translatedTechs.push_back(formatString(txTech)); - } - - - listBoxTechTree.setItems(results,translatedTechs); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - throw megaglest_runtime_error(szBuf); - } - - return initialTechSelection; -} - -void MenuStateCustomGame::reloadFactions(bool keepExistingSelectedItem, string scenario) { - try { - Config &config = Config::getInstance(); - Lang &lang= Lang::getInstance(); - - vector results; - string scenarioDir = Scenario::getScenarioDir(dirList, scenario); - vector techPaths = config.getPathListForType(ptTechs,scenarioDir); - - //printf("#1 techPaths.size() = %d scenarioDir [%s] [%s]\n",techPaths.size(),scenario.c_str(),scenarioDir.c_str()); - - if(listBoxTechTree.getItemCount() > 0) { - for(int idx = 0; idx < (int)techPaths.size(); idx++) { - string &techPath = techPaths[idx]; - endPathWithSlash(techPath); - string factionPath = techPath + techTreeFiles[listBoxTechTree.getSelectedItemIndex()] + "/factions/"; - findDirs(factionPath, results, false, false); - - //printf("idx = %d factionPath [%s] results.size() = %d\n",idx,factionPath.c_str(),results.size()); - - if(results.empty() == false) { - break; - } - } - } - - if(results.empty() == true) { - //throw megaglest_runtime_error("(2)There are no factions for the tech tree [" + techTreeFiles[listBoxTechTree.getSelectedItemIndex()] + "]"); - showGeneralError=true; - if(listBoxTechTree.getItemCount() > 0) { - generalErrorToShow = "[#2] There are no factions for the tech tree [" + techTreeFiles[listBoxTechTree.getSelectedItemIndex()] + "]"; - } - else { - generalErrorToShow = "[#2] There are no factions since there is no tech tree!"; - } - } - -// results.push_back(formatString(GameConstants::RANDOMFACTION_SLOTNAME)); + if (humanPlayer == false) + { + if (this->headlessServerMode == false) + { + bool foundNewSlotForHuman = false; + for (int i = 0; i < mapInfo.players; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () == ctClosed) + { + setSlotHuman (i); + foundNewSlotForHuman = true; + break; + } + } + + if (foundNewSlotForHuman == false) + { + for (int i = 0; i < mapInfo.players; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () == + ctClosed + || listBoxControls[i].getSelectedItemIndex () == + ctCpuEasy + || listBoxControls[i].getSelectedItemIndex () == + ctCpu + || listBoxControls[i].getSelectedItemIndex () == + ctCpuUltra + || listBoxControls[i].getSelectedItemIndex () == + ctCpuMega) + { + setSlotHuman (i); + + foundNewSlotForHuman = true; + break; + } + } + } + + if (foundNewSlotForHuman == false) + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + ConnectionSlot *slot = serverInterface->getSlot (0, true); + if (slot != NULL && slot->isConnected () == true) + { + serverInterface->removeSlot (0); + } + setSlotHuman (0); + } + } + } + + for (int i = mapInfo.players; i < GameConstants::maxPlayers; ++i) + { + if (listBoxControls[i].getSelectedItemIndex () != ctNetwork && + listBoxControls[i].getSelectedItemIndex () != + ctNetworkUnassigned) + { +//printf("Closed A [%d] [%s]\n",i,labelPlayerNames[i].getText().c_str()); + + listBoxControls[i].setSelectedItemIndex (ctClosed); + } + } + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + throw megaglest_runtime_error (szBuf); + } + } + + void MenuStateCustomGame::closeUnusedSlots () + { + try + { + if (checkBoxScenario.getValue () == false) + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); +//for(int i= 0; igetSlot (i, true) == NULL || + serverInterface->getSlot (i, + true)->isConnected () == + false + || serverInterface->getSlot (i, + true)->getConnectHasHandshaked + () == false) + { +//printf("Closed A [%d] [%s]\n",i,labelPlayerNames[i].getText().c_str()); + + listBoxControls[i].setSelectedItemIndex (ctClosed); + } + } + } + updateNetworkSlots (); + } + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + throw megaglest_runtime_error (szBuf); + } + } + + void MenuStateCustomGame::updateNetworkSlots () + { + try + { + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + + if (hasNetworkGameSettings () == true) + { + if (hasCheckedForUPNP == false) + { + + if (checkBoxPublishServer.getValue () == true || + this->headlessServerMode == true) + { + + hasCheckedForUPNP = true; + serverInterface->getServerSocket ()->NETdiscoverUPnPDevices (); + } + } + } + else + { + hasCheckedForUPNP = false; + } + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + ConnectionSlot *slot = serverInterface->getSlot (i, true); +//printf("A i = %d control type = %d slot [%p]\n",i,listBoxControls[i].getSelectedItemIndex(),slot); + + if (slot == NULL && + listBoxControls[i].getSelectedItemIndex () == ctNetwork) + { + try + { + serverInterface->addSlot (i); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", + szBuf); + showGeneralError = true; + if (serverInterface->isPortBound () == false) + { + generalErrorToShow = + Lang::getInstance ().getString ("ErrorBindingPort") + + " : " + intToStr (serverInterface->getBindPort ()); + } + else + { + generalErrorToShow = ex.what (); + } + +// Revert network to CPU + listBoxControls[i].setSelectedItemIndex (ctCpu); + } + } + slot = serverInterface->getSlot (i, true); + if (slot != NULL) + { + if ((listBoxControls[i].getSelectedItemIndex () != ctNetwork) + || (listBoxControls[i].getSelectedItemIndex () == + ctNetwork && slot->isConnected () == false + && i >= mapInfo.players)) + { + if (slot->getCanAcceptConnections () == true) + { + slot->setCanAcceptConnections (false); + } + if (slot->isConnected () == true) + { + if (listBoxControls[i].getSelectedItemIndex () != + ctNetworkUnassigned) + { + listBoxControls[i].setSelectedItemIndex + (ctNetworkUnassigned); + } + } + else + { + serverInterface->removeSlot (i); + + if (listBoxControls[i].getSelectedItemIndex () == + ctNetworkUnassigned) + { + listBoxControls[i].setSelectedItemIndex (ctClosed); + } + } + } + else if (slot->getCanAcceptConnections () == false) + { + slot->setCanAcceptConnections (true); + } + } + } + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); +//throw megaglest_runtime_error(szBuf); + showGeneralError = true; + generalErrorToShow = szBuf; + + } + } + + bool MenuStateCustomGame::textInput (std::string text) + { +//printf("In [%s::%s Line: %d] text [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,text.c_str()); + if (activeInputLabel != NULL) + { + bool handled = textInputEditLabel (text, &activeInputLabel); + if (handled == true && &labelGameName != activeInputLabel) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + } + else + { + if (hasNetworkGameSettings () == true) + { + chatManager.textInput (text); + } + } + return false; + } + + void MenuStateCustomGame::keyDown (SDL_KeyboardEvent key) + { + if (isMasterserverMode () == true) + { + return; + } + + if (activeInputLabel != NULL) + { + bool handled = keyDownEditLabel (key, &activeInputLabel); + if (handled == true) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + } + else + { +//send key to the chat manager + if (hasNetworkGameSettings () == true) + { + chatManager.keyDown (key); + } + if (chatManager.getEditEnabled () == false && + (::Shared::Platform::Window::isKeyStateModPressed (KMOD_SHIFT) == + false)) + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + +//if(key == configKeys.getCharKey("ShowFullConsole")) { + if (isKeyPressed (configKeys.getSDLKey ("ShowFullConsole"), key) + == true) + { + showFullConsole = true; + } +//Toggle music +//else if(key == configKeys.getCharKey("ToggleMusic")) { + else + if (isKeyPressed (configKeys.getSDLKey ("ToggleMusic"), key) + == true) + { + Config & config = Config::getInstance (); + Lang & lang = Lang::getInstance (); + + float configVolume = (config.getInt ("SoundVolumeMusic") / 100.f); + float currentVolume = + CoreData::getInstance ().getMenuMusic ()->getVolume (); + if (currentVolume > 0) + { + CoreData::getInstance ().getMenuMusic ()->setVolume (0.f); + console.addLine (lang.getString ("GameMusic") + " " + + lang.getString ("Off")); + } + else + { + CoreData::getInstance (). + getMenuMusic ()->setVolume (configVolume); +//If the config says zero, use the default music volume +//gameMusic->setVolume(configVolume ? configVolume : 0.9); + console.addLine (lang.getString ("GameMusic")); + } + } +//else if(key == configKeys.getCharKey("SaveGUILayout")) { + else + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) + == true) + { + bool saved = + GraphicComponent::saveAllCustomProperties (containerName); + Lang & lang = Lang::getInstance (); + console.addLine (lang.getString ("GUILayoutSaved") + " [" + + (saved ? lang. + getString ("Yes") : lang.getString ("No")) + + "]"); + } + } + } + } + + void MenuStateCustomGame::keyPress (SDL_KeyboardEvent c) + { + if (isMasterserverMode () == true) + { + return; + } + + if (activeInputLabel != NULL) + { + bool handled = keyPressEditLabel (c, &activeInputLabel); + if (handled == true && &labelGameName != activeInputLabel) + { + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } + } + } + else + { + if (hasNetworkGameSettings () == true) + { + chatManager.keyPress (c); + } + } + } + + void MenuStateCustomGame::keyUp (SDL_KeyboardEvent key) + { + if (isMasterserverMode () == true) + { + return; + } + + if (activeInputLabel == NULL) + { + if (hasNetworkGameSettings () == true) + { + chatManager.keyUp (key); + } + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + + if (chatManager.getEditEnabled ()) + { +//send key to the chat manager + if (hasNetworkGameSettings () == true) + { + chatManager.keyUp (key); + } + } +//else if(key == configKeys.getCharKey("ShowFullConsole")) { + else + if (isKeyPressed (configKeys.getSDLKey ("ShowFullConsole"), key) + == true) + { + showFullConsole = false; + } + } + } + + void MenuStateCustomGame::showMessageBox (const string & text, + const string & header, + bool toggle) + { + if (!toggle) + { + mainMessageBox.setEnabled (false); + } + + if (!mainMessageBox.getEnabled ()) + { + mainMessageBox.setText (text); + mainMessageBox.setHeader (header); + mainMessageBox.setEnabled (true); + } + else + { + mainMessageBox.setEnabled (false); + } + } + + void MenuStateCustomGame::switchToNextMapGroup (const int direction) + { + int i = listBoxMapFilter.getSelectedItemIndex (); +// if there are no maps for the current selection we switch to next selection + while (formattedPlayerSortedMaps[i].empty ()) + { + i = i + direction; + if (i > GameConstants::maxPlayers) + { + i = 0; + } + if (i < 0) + { + i = GameConstants::maxPlayers; + } + } + listBoxMapFilter.setSelectedItemIndex (i); + listBoxMap.setItems (formattedPlayerSortedMaps[i]); + } + + string MenuStateCustomGame::getCurrentMapFile () + { + int i = listBoxMapFilter.getSelectedItemIndex (); + int mapIndex = listBoxMap.getSelectedItemIndex (); + if (playerSortedMaps[i].empty () == false) + { + return playerSortedMaps[i].at (mapIndex); + } + return ""; + } + + void MenuStateCustomGame::setActiveInputLabel (GraphicLabel * newLable) + { + MenuState::setActiveInputLabel (newLable, &activeInputLabel); + } + + string MenuStateCustomGame::getHumanPlayerName (int index) + { + string result = defaultPlayerName; + if (index < 0) + { + for (int j = 0; j < GameConstants::maxPlayers; ++j) + { + if (listBoxControls[j].getSelectedItemIndex () >= 0) + { + ControlType ct = + static_cast < ControlType > + (listBoxControls[j].getSelectedItemIndex ()); + if (ct == ctHuman) + { + index = j; + break; + } + } + } + } + + if (index >= 0 && index < GameConstants::maxPlayers && + labelPlayerNames[index].getText () != "" && + labelPlayerNames[index].getText () != + GameConstants::NETWORK_SLOT_UNCONNECTED_SLOTNAME) + { + result = labelPlayerNames[index].getText (); + + if (activeInputLabel != NULL) + { + size_t found = result.find_last_of ("_"); + if (found != string::npos) + { + result = result.substr (0, found); + } + } + } + + return result; + } + + void MenuStateCustomGame::loadFactionTexture (string filepath) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + if (enableFactionTexturePreview == true) + { + if (filepath == "") + { + factionTexture = NULL; + } + else + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] filepath = [%s]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__, + filepath.c_str ()); + + factionTexture = Renderer::findTexture (filepath); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + } + } + } + + void MenuStateCustomGame::cleanupMapPreviewTexture () + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +//printf("CLEANUP map preview texture\n"); + + if (mapPreviewTexture != NULL) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + mapPreviewTexture->end (); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + delete mapPreviewTexture; + mapPreviewTexture = NULL; + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + + int32 MenuStateCustomGame::getNetworkPlayerStatus () + { + int32 result = npst_None; + switch (listBoxPlayerStatus.getSelectedItemIndex ()) + { + case 2: + result = npst_Ready; + break; + case 1: + result = npst_BeRightBack; + break; + case 0: + default: + result = npst_PickSettings; + break; + } + + return result; + } + + void MenuStateCustomGame::loadScenarioInfo (string file, + ScenarioInfo * scenarioInfo) + { +//printf("Load scenario file [%s]\n",file.c_str()); + bool isTutorial = Scenario::isGameTutorial (file); + Scenario::loadScenarioInfo (file, scenarioInfo, isTutorial); + +//cleanupPreviewTexture(); + previewLoadDelayTimer = time (NULL); + needToLoadTextures = true; + } + + bool MenuStateCustomGame::isInSpecialKeyCaptureEvent () + { + bool result = (chatManager.getEditEnabled () + || activeInputLabel != NULL); + return result; + } + + void MenuStateCustomGame::processScenario () + { + try + { + if (checkBoxScenario.getValue () == true) + { +//printf("listBoxScenario.getSelectedItemIndex() = %d [%s] scenarioFiles.size() = %d\n",listBoxScenario.getSelectedItemIndex(),listBoxScenario.getSelectedItem().c_str(),scenarioFiles.size()); + loadScenarioInfo (Scenario::getScenarioPath (dirList, + scenarioFiles + [listBoxScenario.getSelectedItemIndex + ()]), &scenarioInfo); + string scenarioDir = + Scenario::getScenarioDir (dirList, scenarioInfo.name); + +//printf("scenarioInfo.fogOfWar = %d scenarioInfo.fogOfWar_exploredFlag = %d\n",scenarioInfo.fogOfWar,scenarioInfo.fogOfWar_exploredFlag); + if (scenarioInfo.fogOfWar == false + && scenarioInfo.fogOfWar_exploredFlag == false) + { + listBoxFogOfWar.setSelectedItemIndex (2); + } + else if (scenarioInfo.fogOfWar_exploredFlag == true) + { + listBoxFogOfWar.setSelectedItemIndex (1); + } + else + { + listBoxFogOfWar.setSelectedItemIndex (0); + } + + checkBoxAllowTeamUnitSharing. + setValue (scenarioInfo.allowTeamUnitSharing); + checkBoxAllowTeamResourceSharing. + setValue (scenarioInfo.allowTeamResourceSharing); + + setupTechList (scenarioInfo.name, false); + listBoxTechTree.setSelectedItem (formatString + (scenarioInfo.techTreeName)); + reloadFactions (false, scenarioInfo.name); + + setupTilesetList (scenarioInfo.name); + listBoxTileset.setSelectedItem (formatString + (scenarioInfo.tilesetName)); + + setupMapList (scenarioInfo.name); + listBoxMap.setSelectedItem (formatString (scenarioInfo.mapName)); + loadMapInfo (Config::getMapPath + (getCurrentMapFile (), scenarioDir, true), &mapInfo, + true); + labelMapInfo.setText (mapInfo.desc); + +//printf("scenarioInfo.name [%s] [%s]\n",scenarioInfo.name.c_str(),listBoxMap.getSelectedItem().c_str()); + +// Loop twice to set the human slot or else it closes network slots in some cases + for (int humanIndex = 0; humanIndex < 2; ++humanIndex) + { + for (int i = 0; i < mapInfo.players; ++i) + { + listBoxRMultiplier[i].setSelectedItem (floatToStr + (scenarioInfo. + resourceMultipliers[i], + 1)); + + ServerInterface *serverInterface = + NetworkManager::getInstance ().getServerInterface (); + ConnectionSlot *slot = serverInterface->getSlot (i, true); + + int selectedControlItemIndex = + listBoxControls[i].getSelectedItemIndex (); + if (selectedControlItemIndex != ctNetwork + || (selectedControlItemIndex == ctNetwork + && (slot == NULL || slot->isConnected () == false))) + { + } + + listBoxControls[i]. + setSelectedItemIndex (scenarioInfo.factionControls[i]); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + +// Skip over networkunassigned +//if(listBoxControls[i].getSelectedItemIndex() == ctNetworkUnassigned && +// selectedControlItemIndex != ctNetworkUnassigned) { +// listBoxControls[i].mouseClick(x, y); +//} + +//look for human players + int humanIndex1 = -1; + int humanIndex2 = -1; + for (int j = 0; j < GameConstants::maxPlayers; ++j) + { + ControlType ct = + static_cast < ControlType > + (listBoxControls[j].getSelectedItemIndex ()); + if (ct == ctHuman) + { + if (humanIndex1 == -1) + { + humanIndex1 = j; + } + else + { + humanIndex2 = j; + } + } + } + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] humanIndex1 = %d, humanIndex2 = %d\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, humanIndex1, humanIndex2); + +//no human + if (humanIndex1 == -1 && humanIndex2 == -1) + { + setSlotHuman (i); + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] i = %d, labelPlayerNames[i].getText() [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, i, + labelPlayerNames[i].getText (). + c_str ()); + +//printf("humanIndex1 = %d humanIndex2 = %d i = %d listBoxControls[i].getSelectedItemIndex() = %d\n",humanIndex1,humanIndex2,i,listBoxControls[i].getSelectedItemIndex()); + } +//2 humans + else if (humanIndex1 != -1 && humanIndex2 != -1) + { + int closeSlotIndex = + (humanIndex1 == i ? humanIndex2 : humanIndex1); + int humanSlotIndex = + (closeSlotIndex == humanIndex1 ? humanIndex2 : humanIndex1); + + string origPlayName = + labelPlayerNames[closeSlotIndex].getText (); + + if (SystemFlags::getSystemSettingType + (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] closeSlotIndex = %d, origPlayName [%s]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__, closeSlotIndex, + origPlayName.c_str ()); +//printf("humanIndex1 = %d humanIndex2 = %d i = %d closeSlotIndex = %d humanSlotIndex = %d\n",humanIndex1,humanIndex2,i,closeSlotIndex,humanSlotIndex); + + listBoxControls[closeSlotIndex].setSelectedItemIndex + (ctClosed); + labelPlayerNames[humanSlotIndex].setText ((origPlayName != + "" ? origPlayName : + getHumanPlayerName + ())); + } + + ControlType ct = + static_cast < ControlType > + (listBoxControls[i].getSelectedItemIndex ()); + if (ct != ctClosed) + { +//updateNetworkSlots(); +//updateResourceMultiplier(i); + updateResourceMultiplier (i); + +//printf("Setting scenario faction i = %d [ %s]\n",i,scenarioInfo.factionTypeNames[i].c_str()); + listBoxFactions[i].setSelectedItem (formatString + (scenarioInfo.factionTypeNames + [i])); +//printf("DONE Setting scenario faction i = %d [ %s]\n",i,scenarioInfo.factionTypeNames[i].c_str()); + +// Disallow CPU players to be observers + if (factionFiles + [listBoxFactions[i].getSelectedItemIndex ()] == + formatString (GameConstants::OBSERVER_SLOTNAME) + && (listBoxControls[i].getSelectedItemIndex () == + ctCpuEasy + || listBoxControls[i].getSelectedItemIndex () == ctCpu + || listBoxControls[i].getSelectedItemIndex () == + ctCpuUltra + || listBoxControls[i].getSelectedItemIndex () == + ctCpuMega)) + { + listBoxFactions[i].setSelectedItemIndex (0); + } // -// // Add special Observer Faction -// if(checkBoxAllowObservers.getValue() == 1) { -// results.push_back(formatString(GameConstants::OBSERVER_SLOTNAME)); -// } - vector translatedFactionNames; - factionFiles= results; - for(int i = 0; i < (int)results.size(); ++i) { - results[i]= formatString(results[i]); + listBoxTeams[i].setSelectedItem (intToStr + (scenarioInfo.teams[i])); + if (factionFiles[listBoxFactions[i].getSelectedItemIndex ()] + != formatString (GameConstants::OBSERVER_SLOTNAME)) + { + if (listBoxTeams[i].getSelectedItemIndex () + 1 != + (GameConstants::maxPlayers + fpt_Observer)) + { + lastSelectedTeamIndex[i] = + listBoxTeams[i].getSelectedItemIndex (); + } +// Alow Neutral cpu players + else if (listBoxControls[i].getSelectedItemIndex () == + ctCpuEasy + || listBoxControls[i].getSelectedItemIndex () == + ctCpu + || listBoxControls[i].getSelectedItemIndex () == + ctCpuUltra + || listBoxControls[i].getSelectedItemIndex () == + ctCpuMega) + { + lastSelectedTeamIndex[i] = + listBoxTeams[i].getSelectedItemIndex (); + } + } + else + { + lastSelectedTeamIndex[i] = -1; + } + } - string translatedString = ""; - if(listBoxTechTree.getItemCount() > 0) { - translatedString = techTree->getTranslatedFactionName(techTreeFiles[listBoxTechTree.getSelectedItemIndex()],factionFiles[i]); - } - //printf("translatedString=%s formatString(results[i])=%s \n",translatedString.c_str(),formatString(results[i]).c_str() ); - if(toLower(translatedString)==toLower(results[i])){ - translatedFactionNames.push_back(results[i]); - } - else { - translatedFactionNames.push_back(results[i]+" ("+translatedString+")"); - } - //printf("FACTIONS i = %d results [%s]\n",i,results[i].c_str()); + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"Tech [%s] has faction [%s]\n",techTreeFiles[listBoxTechTree.getSelectedItemIndex()].c_str(),results[i].c_str()); - } - results.push_back(formatString(GameConstants::RANDOMFACTION_SLOTNAME)); - factionFiles.push_back(formatString(GameConstants::RANDOMFACTION_SLOTNAME)); - translatedFactionNames.push_back("*"+lang.getString("Random","",true)+"*"); + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL);; + } + } + } - // Add special Observer Faction - if(checkBoxAllowObservers.getValue() == 1) { - results.push_back(formatString(GameConstants::OBSERVER_SLOTNAME)); - factionFiles.push_back(formatString(GameConstants::OBSERVER_SLOTNAME)); - translatedFactionNames.push_back("*"+lang.getString("Observer","",true)+"*"); - } + updateControlers (); + updateNetworkSlots (); - for(int i = 0; i < GameConstants::maxPlayers; ++i) { - int originalIndex = listBoxFactions[i].getSelectedItemIndex(); - string originalValue = (listBoxFactions[i].getItemCount() > 0 ? listBoxFactions[i].getSelectedItem() : ""); + MutexSafeWrapper + safeMutex ((publishToMasterserverThread != + NULL ? + publishToMasterserverThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); + MutexSafeWrapper + safeMutexCLI ((publishToClientsThread != + NULL ? + publishToClientsThread->getMutexThreadObjectAccessor + () : NULL), + string (__FILE__) + "_" + intToStr (__LINE__)); - listBoxFactions[i].setItems(results,translatedFactionNames); - if( keepExistingSelectedItem == false || - (checkBoxAllowObservers.getValue() == 0 && - originalValue == formatString(GameConstants::OBSERVER_SLOTNAME)) ) { + if (checkBoxPublishServer.getValue () == true) + { + needToRepublishToMasterserver = true; + } + if (hasNetworkGameSettings () == true) + { + needToSetChangedGameSettings = true; + lastSetChangedGameSettings = time (NULL); + } - listBoxFactions[i].setSelectedItemIndex(i % results.size()); +//labelInfo.setText(scenarioInfo.desc); + } + else + { + setupMapList (""); + listBoxMap.setSelectedItem (formatString + (formattedPlayerSortedMaps[0][0])); + loadMapInfo (Config::getMapPath (getCurrentMapFile (), "", true), + &mapInfo, true); + labelMapInfo.setText (mapInfo.desc); - if( originalValue == formatString(GameConstants::OBSERVER_SLOTNAME) && - listBoxFactions[i].getSelectedItem() != formatString(GameConstants::OBSERVER_SLOTNAME)) { - if(listBoxTeams[i].getSelectedItem() == intToStr(GameConstants::maxPlayers + fpt_Observer)) { - listBoxTeams[i].setSelectedItem(intToStr(1)); - } - } - } - else if(originalIndex < (int)results.size()) { - listBoxFactions[i].setSelectedItemIndex(originalIndex); - } - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); + setupTechList ("", false); + reloadFactions (false, ""); + setupTilesetList (""); + updateControlers (); + } + SetupUIForScenarios (); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); - throw megaglest_runtime_error(szBuf); - } -} + mainMessageBoxState = 1; + showMessageBox (szBuf, "Error detected", false); + } + } -void MenuStateCustomGame::setSlotHuman(int i) { - if(labelPlayerNames[i].getEditable()) { - return; - } - listBoxControls[i].setSelectedItemIndex(ctHuman); - listBoxRMultiplier[i].setSelectedItem("1.0"); + void MenuStateCustomGame::SetupUIForScenarios () + { + try + { + if (checkBoxScenario.getValue () == true) + { +// START - Disable changes to controls while in Scenario mode + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + listBoxControls[i].setEditable (false); + listBoxFactions[i].setEditable (false); + listBoxRMultiplier[i].setEditable (false); + listBoxTeams[i].setEditable (false); + } + listBoxFogOfWar.setEditable (false); + checkBoxAllowObservers.setEditable (false); + checkBoxAllowTeamUnitSharing.setEditable (false); + checkBoxAllowTeamResourceSharing.setEditable (false); +//listBoxPathFinderType.setEditable(false); + checkBoxEnableSwitchTeamMode.setEditable (false); + listBoxAISwitchTeamAcceptPercent.setEditable (false); + listBoxFallbackCpuMultiplier.setEditable (false); + listBoxMap.setEditable (false); + listBoxTileset.setEditable (false); + listBoxMapFilter.setEditable (false); + listBoxTechTree.setEditable (false); +// END - Disable changes to controls while in Scenario mode + } + else + { +// START - Disable changes to controls while in Scenario mode + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + listBoxControls[i].setEditable (true); + listBoxFactions[i].setEditable (true); + listBoxRMultiplier[i].setEditable (true); + listBoxTeams[i].setEditable (true); + } + listBoxFogOfWar.setEditable (true); + checkBoxAllowObservers.setEditable (true); + checkBoxAllowTeamUnitSharing.setEditable (true); + checkBoxAllowTeamResourceSharing.setEditable (true); +//listBoxPathFinderType.setEditable(true); + checkBoxEnableSwitchTeamMode.setEditable (true); + listBoxAISwitchTeamAcceptPercent.setEditable (true); + listBoxFallbackCpuMultiplier.setEditable (true); + listBoxMap.setEditable (true); + listBoxTileset.setEditable (true); + listBoxMapFilter.setEditable (true); + listBoxTechTree.setEditable (true); +// END - Disable changes to controls while in Scenario mode + } + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); - labelPlayerNames[i].setText(getHumanPlayerName()); - for(int j = 0; j < GameConstants::maxPlayers; ++j) { - labelPlayerNames[j].setEditable(false); - } - labelPlayerNames[i].setEditable(true); -} + throw megaglest_runtime_error (szBuf); + } -void MenuStateCustomGame::setupTilesetList(string scenario) { - try { - Config &config = Config::getInstance(); + } - string scenarioDir = Scenario::getScenarioDir(dirList, scenario); + int MenuStateCustomGame::setupMapList (string scenario) + { + int initialMapSelection = 0; - vector results; - findDirs(config.getPathListForType(ptTilesets,scenarioDir), results); - if (results.empty()) { - throw megaglest_runtime_error("No tile-sets were found!"); - } - tilesetFiles= results; - std::for_each(results.begin(), results.end(), FormatString()); + try + { + Config & config = Config::getInstance (); + vector < string > invalidMapList; + string scenarioDir = Scenario::getScenarioDir (dirList, scenario); + vector < string > pathList = + config.getPathListForType (ptMaps, scenarioDir); + vector < string > allMaps = + MapPreview::findAllValidMaps (pathList, scenarioDir, false, true, + &invalidMapList); + if (scenario != "") + { + vector < string > allMaps2 = + MapPreview:: + findAllValidMaps (config.getPathListForType (ptMaps, ""), "", + false, true, &invalidMapList); + copy (allMaps2.begin (), allMaps2.end (), + std::inserter (allMaps, allMaps.begin ())); + } +// sort map list non case sensitive + std::sort (allMaps.begin (), allMaps.end (), compareNonCaseSensitive); - listBoxTileset.setItems(results); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d]\nError detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); + if (allMaps.empty ()) + { + throw megaglest_runtime_error ("No maps were found!"); + } + vector < string > results; + copy (allMaps.begin (), allMaps.end (), std::back_inserter (results)); + mapFiles = results; - throw megaglest_runtime_error(szBuf); - } + for (unsigned int i = 0; i < GameConstants::maxPlayers + 1; ++i) + { + playerSortedMaps[i].clear (); + formattedPlayerSortedMaps[i].clear (); + } -} +// at index=0 fill in the whole list + copy (mapFiles.begin (), mapFiles.end (), + std::back_inserter (playerSortedMaps[0])); + copy (playerSortedMaps[0].begin (), playerSortedMaps[0].end (), + std::back_inserter (formattedPlayerSortedMaps[0])); + std::for_each (formattedPlayerSortedMaps[0].begin (), + formattedPlayerSortedMaps[0].end (), FormatString ()); -}}//end namespace +// fill playerSortedMaps and formattedPlayerSortedMaps according to map player count + for (int i = 0; i < (int) mapFiles.size (); i++) + { // fetch info and put map in right list + loadMapInfo (Config::getMapPath + (mapFiles.at (i), scenarioDir, false), &mapInfo, + false); + + if (GameConstants::maxPlayers + 1 <= mapInfo.players) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "Sorted map list [%d] does not match\ncurrent map playercount [%d]\nfor file [%s]\nmap [%s]", + GameConstants::maxPlayers + 1, mapInfo.players, + Config::getMapPath (mapFiles.at (i), "", + false).c_str (), + mapInfo.desc.c_str ()); + throw megaglest_runtime_error (szBuf); + } + playerSortedMaps[mapInfo.players].push_back (mapFiles.at (i)); + formattedPlayerSortedMaps[mapInfo.players].push_back (formatString + (mapFiles.at + (i))); + if (config.getString ("InitialMap", "Conflict") == + formattedPlayerSortedMaps[mapInfo.players].back ()) + { + initialMapSelection = i; + } + } + +//printf("#6 scenario [%s] [%s]\n",scenario.c_str(),scenarioDir.c_str()); + if (scenario != "") + { + string file = Scenario::getScenarioPath (dirList, scenario); + loadScenarioInfo (file, &scenarioInfo); + +//printf("#6.1 about to load map [%s]\n",scenarioInfo.mapName.c_str()); + loadMapInfo (Config::getMapPath + (scenarioInfo.mapName, scenarioDir, true), &mapInfo, + false); +//printf("#6.2\n"); + listBoxMapFilter.setSelectedItem (intToStr (mapInfo.players)); + listBoxMap.setItems (formattedPlayerSortedMaps[mapInfo.players]); + } + else + { + listBoxMapFilter.setSelectedItemIndex (0); + listBoxMap.setItems (formattedPlayerSortedMaps[0]); + } +//printf("#7\n"); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + throw megaglest_runtime_error (szBuf); +//abort(); + } + + return initialMapSelection; + } + + int MenuStateCustomGame::setupTechList (string scenario, bool forceLoad) + { + int initialTechSelection = 0; + try + { + Config & config = Config::getInstance (); + + string scenarioDir = Scenario::getScenarioDir (dirList, scenario); + vector < string > results; + vector < string > techPaths = + config.getPathListForType (ptTechs, scenarioDir); + findDirs (techPaths, results); + + if (results.empty ()) + { +//throw megaglest_runtime_error("No tech-trees were found!"); + printf ("No tech-trees were found (custom)!\n"); + } + + techTreeFiles = results; + + vector < string > translatedTechs; + + for (unsigned int i = 0; i < results.size (); i++) + { +//printf("TECHS i = %d results [%s] scenario [%s]\n",i,results[i].c_str(),scenario.c_str()); + + results.at (i) = formatString (results.at (i)); + if (config.getString ("InitialTechTree", "Megapack") == + results.at (i)) + { + initialTechSelection = i; + } + string txTech = + techTree->getTranslatedName (techTreeFiles.at (i), forceLoad); + translatedTechs.push_back (formatString (txTech)); + } + + + listBoxTechTree.setItems (results, translatedTechs); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + throw megaglest_runtime_error (szBuf); + } + + return initialTechSelection; + } + + void MenuStateCustomGame::reloadFactions (bool keepExistingSelectedItem, + string scenario) + { + try + { + Config & config = Config::getInstance (); + Lang & lang = Lang::getInstance (); + + vector < string > results; + string scenarioDir = Scenario::getScenarioDir (dirList, scenario); + vector < string > techPaths = + config.getPathListForType (ptTechs, scenarioDir); + +//printf("#1 techPaths.size() = %d scenarioDir [%s] [%s]\n",techPaths.size(),scenario.c_str(),scenarioDir.c_str()); + + if (listBoxTechTree.getItemCount () > 0) + { + for (int idx = 0; idx < (int) techPaths.size (); idx++) + { + string & techPath = techPaths[idx]; + endPathWithSlash (techPath); + string factionPath = + techPath + + techTreeFiles[listBoxTechTree.getSelectedItemIndex ()] + + "/factions/"; + findDirs (factionPath, results, false, false); + +//printf("idx = %d factionPath [%s] results.size() = %d\n",idx,factionPath.c_str(),results.size()); + + if (results.empty () == false) + { + break; + } + } + } + + if (results.empty () == true) + { +//throw megaglest_runtime_error("(2)There are no factions for the tech tree [" + techTreeFiles[listBoxTechTree.getSelectedItemIndex()] + "]"); + showGeneralError = true; + if (listBoxTechTree.getItemCount () > 0) + { + generalErrorToShow = + "[#2] There are no factions for the tech tree [" + + techTreeFiles[listBoxTechTree.getSelectedItemIndex ()] + "]"; + } + else + { + generalErrorToShow = + "[#2] There are no factions since there is no tech tree!"; + } + } + +// results.push_back(formatString(GameConstants::RANDOMFACTION_SLOTNAME)); +// +// // Add special Observer Faction +// if(checkBoxAllowObservers.getValue() == 1) { +// results.push_back(formatString(GameConstants::OBSERVER_SLOTNAME)); +// } + + vector < string > translatedFactionNames; + factionFiles = results; + for (int i = 0; i < (int) results.size (); ++i) + { + results[i] = formatString (results[i]); + + string translatedString = ""; + if (listBoxTechTree.getItemCount () > 0) + { + translatedString = + techTree->getTranslatedFactionName (techTreeFiles + [listBoxTechTree.getSelectedItemIndex + ()], factionFiles[i]); + } +//printf("translatedString=%s formatString(results[i])=%s \n",translatedString.c_str(),formatString(results[i]).c_str() ); + if (toLower (translatedString) == toLower (results[i])) + { + translatedFactionNames.push_back (results[i]); + } + else + { + translatedFactionNames.push_back (results[i] + " (" + + translatedString + ")"); + } +//printf("FACTIONS i = %d results [%s]\n",i,results[i].c_str()); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "Tech [%s] has faction [%s]\n", + techTreeFiles + [listBoxTechTree.getSelectedItemIndex + ()].c_str (), results[i].c_str ()); + } + results.push_back (formatString + (GameConstants::RANDOMFACTION_SLOTNAME)); + factionFiles.push_back (formatString + (GameConstants::RANDOMFACTION_SLOTNAME)); + translatedFactionNames.push_back ("*" + + lang.getString ("Random", "", + true) + "*"); + +// Add special Observer Faction + if (checkBoxAllowObservers.getValue () == 1) + { + results.push_back (formatString (GameConstants::OBSERVER_SLOTNAME)); + factionFiles.push_back (formatString + (GameConstants::OBSERVER_SLOTNAME)); + translatedFactionNames.push_back ("*" + + lang.getString ("Observer", "", + true) + "*"); + } + + for (int i = 0; i < GameConstants::maxPlayers; ++i) + { + int originalIndex = listBoxFactions[i].getSelectedItemIndex (); + string originalValue = + (listBoxFactions[i].getItemCount () > + 0 ? listBoxFactions[i].getSelectedItem () : ""); + + listBoxFactions[i].setItems (results, translatedFactionNames); + if (keepExistingSelectedItem == false || + (checkBoxAllowObservers.getValue () == 0 && + originalValue == + formatString (GameConstants::OBSERVER_SLOTNAME))) + { + + listBoxFactions[i].setSelectedItemIndex (i % results.size ()); + + if (originalValue == + formatString (GameConstants::OBSERVER_SLOTNAME) + && listBoxFactions[i].getSelectedItem () != + formatString (GameConstants::OBSERVER_SLOTNAME)) + { + if (listBoxTeams[i].getSelectedItem () == + intToStr (GameConstants::maxPlayers + fpt_Observer)) + { + listBoxTeams[i].setSelectedItem (intToStr (1)); + } + } + } + else if (originalIndex < (int) results.size ()) + { + listBoxFactions[i].setSelectedItemIndex (originalIndex); + } + } + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + throw megaglest_runtime_error (szBuf); + } + } + + void MenuStateCustomGame::setSlotHuman (int i) + { + if (labelPlayerNames[i].getEditable ()) + { + return; + } + listBoxControls[i].setSelectedItemIndex (ctHuman); + listBoxRMultiplier[i].setSelectedItem ("1.0"); + + labelPlayerNames[i].setText (getHumanPlayerName ()); + for (int j = 0; j < GameConstants::maxPlayers; ++j) + { + labelPlayerNames[j].setEditable (false); + } + labelPlayerNames[i].setEditable (true); + } + + void MenuStateCustomGame::setupTilesetList (string scenario) + { + try + { + Config & config = Config::getInstance (); + + string scenarioDir = Scenario::getScenarioDir (dirList, scenario); + + vector < string > results; + findDirs (config.getPathListForType (ptTilesets, scenarioDir), + results); + if (results.empty ()) + { + throw megaglest_runtime_error ("No tile-sets were found!"); + } + tilesetFiles = results; + std::for_each (results.begin (), results.end (), FormatString ()); + + listBoxTileset.setItems (results); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d]\nError detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); + + throw megaglest_runtime_error (szBuf); + } + + } + + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_custom_game.h b/source/glest_game/menu/menu_state_custom_game.h index 2b23031fa..a9623f884 100644 --- a/source/glest_game/menu/menu_state_custom_game.h +++ b/source/glest_game/menu/menu_state_custom_game.h @@ -1,319 +1,404 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATECUSTOMGAME_H_ -#define _GLEST_GAME_MENUSTATECUSTOMGAME_H_ +# define _GLEST_GAME_MENUSTATECUSTOMGAME_H_ -#include "main_menu.h" -#include "chat_manager.h" -#include "simple_threads.h" -#include "map_preview.h" -#include "common_scoped_ptr.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "chat_manager.h" +# include "simple_threads.h" +# include "map_preview.h" +# include "common_scoped_ptr.h" +# include "leak_dumper.h" -using namespace Shared::Map; +using namespace + Shared::Map; -namespace Shared { namespace Graphics { - class VideoPlayer; -}} +namespace Shared +{ + namespace Graphics + { + class VideoPlayer; + } +} -namespace Glest { namespace Game { +namespace Glest +{ + namespace Game + { -class SwitchSetupRequest; -class ServerInterface; -class TechTree; + class SwitchSetupRequest; + class ServerInterface; + class TechTree; -enum ParentMenuState { - pNewGame, - pMasterServer, - pLanGame -}; + enum ParentMenuState + { + pNewGame, + pMasterServer, + pLanGame + }; // =============================== -// class MenuStateCustomGame +// class MenuStateCustomGame // =============================== -class MenuStateCustomGame : public MenuState, public SimpleTaskCallbackInterface { -private: - GraphicButton buttonReturn; - GraphicButton buttonPlayNow; - GraphicButton buttonRestoreLastSettings; - GraphicLabel labelControl; - GraphicLabel labelRMultiplier; - GraphicLabel labelFaction; - GraphicLabel labelTeam; - GraphicLabel labelMap; - GraphicLabel labelFogOfWar; - GraphicLabel labelTechTree; - GraphicLabel labelTileset; - GraphicLabel labelMapInfo; - GraphicLabel labelLocalGameVersion; - GraphicLabel labelLocalIP; - GraphicLabel labelGameName; + class MenuStateCustomGame: + public MenuState, public SimpleTaskCallbackInterface + { + private: + GraphicButton buttonReturn; + GraphicButton buttonPlayNow; + GraphicButton buttonRestoreLastSettings; + GraphicLabel labelControl; + GraphicLabel labelRMultiplier; + GraphicLabel labelFaction; + GraphicLabel labelTeam; + GraphicLabel labelMap; + GraphicLabel labelFogOfWar; + GraphicLabel labelTechTree; + GraphicLabel labelTileset; + GraphicLabel labelMapInfo; + GraphicLabel labelLocalGameVersion; + GraphicLabel labelLocalIP; + GraphicLabel labelGameName; - GraphicListBox listBoxMap; - GraphicListBox listBoxFogOfWar; - GraphicListBox listBoxTechTree; - GraphicListBox listBoxTileset; + GraphicListBox listBoxMap; + GraphicListBox listBoxFogOfWar; + GraphicListBox listBoxTechTree; + GraphicListBox listBoxTileset; - vector mapFiles; - vector playerSortedMaps[GameConstants::maxPlayers+1]; - vector formattedPlayerSortedMaps[GameConstants::maxPlayers+1]; - vector techTreeFiles; - vector tilesetFiles; - vector factionFiles; - GraphicLabel labelPlayers[GameConstants::maxPlayers]; - GraphicLabel labelPlayerNames[GameConstants::maxPlayers]; - GraphicListBox listBoxControls[GameConstants::maxPlayers]; - GraphicButton buttonBlockPlayers[GameConstants::maxPlayers]; - GraphicListBox listBoxRMultiplier[GameConstants::maxPlayers]; - GraphicListBox listBoxFactions[GameConstants::maxPlayers]; - GraphicListBox listBoxTeams[GameConstants::maxPlayers]; - GraphicLabel labelNetStatus[GameConstants::maxPlayers]; - MapInfo mapInfo; + vector < string > mapFiles; + vector < string > playerSortedMaps[GameConstants::maxPlayers + 1]; + vector < + string > formattedPlayerSortedMaps[GameConstants::maxPlayers + 1]; + vector < string > techTreeFiles; + vector < string > tilesetFiles; + vector < string > factionFiles; + GraphicLabel labelPlayers[GameConstants::maxPlayers]; + GraphicLabel labelPlayerNames[GameConstants::maxPlayers]; + GraphicListBox listBoxControls[GameConstants::maxPlayers]; + GraphicButton buttonBlockPlayers[GameConstants::maxPlayers]; + GraphicListBox listBoxRMultiplier[GameConstants::maxPlayers]; + GraphicListBox listBoxFactions[GameConstants::maxPlayers]; + GraphicListBox listBoxTeams[GameConstants::maxPlayers]; + GraphicLabel labelNetStatus[GameConstants::maxPlayers]; + MapInfo mapInfo; - GraphicButton buttonClearBlockedPlayers; + GraphicButton buttonClearBlockedPlayers; - GraphicLabel labelPublishServer; - GraphicCheckBox checkBoxPublishServer; + GraphicLabel labelPublishServer; + GraphicCheckBox checkBoxPublishServer; - GraphicMessageBox mainMessageBox; - int mainMessageBoxState; + GraphicMessageBox mainMessageBox; + int + mainMessageBoxState; - GraphicLabel labelNetworkPauseGameForLaggedClients; - GraphicCheckBox checkBoxNetworkPauseGameForLaggedClients; + GraphicLabel labelNetworkPauseGameForLaggedClients; + GraphicCheckBox checkBoxNetworkPauseGameForLaggedClients; - GraphicLabel labelMapFilter; - GraphicListBox listBoxMapFilter; + GraphicLabel labelMapFilter; + GraphicListBox listBoxMapFilter; - GraphicLabel labelAdvanced; - GraphicCheckBox checkBoxAdvanced; + GraphicLabel labelAdvanced; + GraphicCheckBox checkBoxAdvanced; - GraphicLabel labelAllowObservers; - GraphicCheckBox checkBoxAllowObservers; + GraphicLabel labelAllowObservers; + GraphicCheckBox checkBoxAllowObservers; - GraphicLabel *activeInputLabel; + GraphicLabel * + activeInputLabel; - GraphicLabel labelPlayerStatus[GameConstants::maxPlayers]; - GraphicListBox listBoxPlayerStatus; + GraphicLabel labelPlayerStatus[GameConstants::maxPlayers]; + GraphicListBox listBoxPlayerStatus; - GraphicLabel labelEnableSwitchTeamMode; - GraphicCheckBox checkBoxEnableSwitchTeamMode; + GraphicLabel labelEnableSwitchTeamMode; + GraphicCheckBox checkBoxEnableSwitchTeamMode; - GraphicLabel labelAISwitchTeamAcceptPercent; - GraphicListBox listBoxAISwitchTeamAcceptPercent; - GraphicLabel labelFallbackCpuMultiplier; - GraphicListBox listBoxFallbackCpuMultiplier; + GraphicLabel labelAISwitchTeamAcceptPercent; + GraphicListBox listBoxAISwitchTeamAcceptPercent; + GraphicLabel labelFallbackCpuMultiplier; + GraphicListBox listBoxFallbackCpuMultiplier; - GraphicLabel labelAllowInGameJoinPlayer; - GraphicCheckBox checkBoxAllowInGameJoinPlayer; + GraphicLabel labelAllowInGameJoinPlayer; + GraphicCheckBox checkBoxAllowInGameJoinPlayer; - GraphicLabel labelAllowTeamUnitSharing; - GraphicCheckBox checkBoxAllowTeamUnitSharing; + GraphicLabel labelAllowTeamUnitSharing; + GraphicCheckBox checkBoxAllowTeamUnitSharing; - GraphicLabel labelAllowTeamResourceSharing; - GraphicCheckBox checkBoxAllowTeamResourceSharing; + GraphicLabel labelAllowTeamResourceSharing; + GraphicCheckBox checkBoxAllowTeamResourceSharing; - GraphicLabel labelAllowNativeLanguageTechtree; - GraphicCheckBox checkBoxAllowNativeLanguageTechtree; + GraphicLabel labelAllowNativeLanguageTechtree; + GraphicCheckBox checkBoxAllowNativeLanguageTechtree; - GraphicCheckBox checkBoxScenario; - GraphicLabel labelScenario; - GraphicListBox listBoxScenario; + GraphicCheckBox checkBoxScenario; + GraphicLabel labelScenario; + GraphicListBox listBoxScenario; - vector scenarioFiles; - ScenarioInfo scenarioInfo; - vector dirList; - string autoloadScenarioName; - time_t previewLoadDelayTimer; - bool needToLoadTextures; - bool enableScenarioTexturePreview; - Texture2D *scenarioLogoTexture; + vector < string > scenarioFiles; + ScenarioInfo scenarioInfo; + vector < string > dirList; + string autoloadScenarioName; + time_t previewLoadDelayTimer; + bool needToLoadTextures; + bool enableScenarioTexturePreview; + Texture2D * + scenarioLogoTexture; - bool needToSetChangedGameSettings; - time_t lastSetChangedGameSettings; - time_t lastMasterserverPublishing; - time_t lastNetworkPing; - time_t mapPublishingDelayTimer; - bool needToPublishDelayed; + bool needToSetChangedGameSettings; + time_t lastSetChangedGameSettings; + time_t lastMasterserverPublishing; + time_t lastNetworkPing; + time_t mapPublishingDelayTimer; + bool needToPublishDelayed; - bool headlessHasConnectedPlayer; + bool headlessHasConnectedPlayer; - bool needToRepublishToMasterserver; - bool needToBroadcastServerSettings; - std::map publishToServerInfo; - SimpleTaskThread *publishToMasterserverThread; - SimpleTaskThread *publishToClientsThread; + bool needToRepublishToMasterserver; + bool needToBroadcastServerSettings; + std::map < string, string > publishToServerInfo; + SimpleTaskThread * + publishToMasterserverThread; + SimpleTaskThread * + publishToClientsThread; - ParentMenuState parentMenuState; - int soundConnectionCount; + ParentMenuState parentMenuState; + int + soundConnectionCount; - time_t tMasterserverErrorElapsed; - bool showMasterserverError; - string masterServererErrorToShow; + time_t tMasterserverErrorElapsed; + bool showMasterserverError; + string masterServererErrorToShow; - bool showGeneralError; - string generalErrorToShow; - bool serverInitError; + bool showGeneralError; + string generalErrorToShow; + bool serverInitError; - //Console console; - ChatManager chatManager; - bool showFullConsole; +//Console console; + ChatManager chatManager; + bool showFullConsole; - string lastMapDataSynchError; - string lastTileDataSynchError; - string lastTechtreeDataSynchError; + string lastMapDataSynchError; + string lastTileDataSynchError; + string lastTechtreeDataSynchError; - string defaultPlayerName; - int8 switchSetupRequestFlagType; + string defaultPlayerName; + int8 switchSetupRequestFlagType; - bool enableFactionTexturePreview; - bool enableMapPreview; + bool enableFactionTexturePreview; + bool enableMapPreview; - string currentTechName_factionPreview; - string currentFactionName_factionPreview; - string currentFactionLogo; - Texture2D *factionTexture; - ::Shared::Graphics::VideoPlayer *factionVideo; - bool factionVideoSwitchedOffVolume; + string currentTechName_factionPreview; + string currentFactionName_factionPreview; + string currentFactionLogo; + Texture2D * + factionTexture; + ::Shared::Graphics::VideoPlayer * factionVideo; + bool factionVideoSwitchedOffVolume; - MapPreview mapPreview; - Texture2D *mapPreviewTexture; - bool zoomedMap; - int render_mapPreviewTexture_X; - int render_mapPreviewTexture_Y; - int render_mapPreviewTexture_W; - int render_mapPreviewTexture_H; + MapPreview mapPreview; + Texture2D * + mapPreviewTexture; + bool zoomedMap; + int + render_mapPreviewTexture_X; + int + render_mapPreviewTexture_Y; + int + render_mapPreviewTexture_W; + int + render_mapPreviewTexture_H; - bool autostart; - GameSettings *autoStartSettings; + bool autostart; + GameSettings * + autoStartSettings; - std::map lastSelectedTeamIndex; - float rMultiplierOffset; - bool hasCheckedForUPNP; + std::map < int, int > + lastSelectedTeamIndex; + float + rMultiplierOffset; + bool hasCheckedForUPNP; - string lastCheckedCRCTilesetName; - string lastCheckedCRCTechtreeName; - string lastCheckedCRCMapName; + string lastCheckedCRCTilesetName; + string lastCheckedCRCTechtreeName; + string lastCheckedCRCMapName; - string last_Forced_CheckedCRCTilesetName; - string last_Forced_CheckedCRCTechtreeName; - string last_Forced_CheckedCRCMapName; + string last_Forced_CheckedCRCTilesetName; + string last_Forced_CheckedCRCTechtreeName; + string last_Forced_CheckedCRCMapName; - uint32 lastCheckedCRCTilesetValue; - uint32 lastCheckedCRCTechtreeValue; - uint32 lastCheckedCRCMapValue; - vector > factionCRCList; + uint32 lastCheckedCRCTilesetValue; + uint32 lastCheckedCRCTechtreeValue; + uint32 lastCheckedCRCMapValue; + vector < pair < string, uint32 > >factionCRCList; - bool forceWaitForShutdown; - bool headlessServerMode; - bool masterserverModeMinimalResources; - int lastMasterServerSettingsUpdateCount; + bool forceWaitForShutdown; + bool headlessServerMode; + bool masterserverModeMinimalResources; + int + lastMasterServerSettingsUpdateCount; - auto_ptr techTree; + auto_ptr < TechTree > techTree; - string gameUUID; + string gameUUID; - int lastGameSettingsreceivedCount; + int + lastGameSettingsreceivedCount; -public: - MenuStateCustomGame(Program *program, MainMenu *mainMenu , - bool openNetworkSlots= false, ParentMenuState parentMenuState=pNewGame, - bool autostart=false,GameSettings *settings=NULL,bool masterserverMode=false, - string autoloadScenarioName=""); - virtual ~MenuStateCustomGame(); + public: + MenuStateCustomGame (Program * program, MainMenu * mainMenu, + bool openNetworkSlots = + false, ParentMenuState parentMenuState = + pNewGame, bool autostart = + false, GameSettings * settings = + NULL, bool masterserverMode = + false, string autoloadScenarioName = ""); + virtual ~ MenuStateCustomGame (); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - void update(); + void + mouseClick (int x, int y, MouseButton mouseButton); + void + mouseMove (int x, int y, const MouseState * mouseState); + void + render (); + void + update (); - virtual bool textInput(std::string text); - virtual void keyDown(SDL_KeyboardEvent key); - virtual void keyPress(SDL_KeyboardEvent c); - virtual void keyUp(SDL_KeyboardEvent key); + virtual bool textInput (std::string text); + virtual void + keyDown (SDL_KeyboardEvent key); + virtual void + keyPress (SDL_KeyboardEvent c); + virtual void + keyUp (SDL_KeyboardEvent key); - virtual void simpleTask(BaseThread *callingThread,void *userdata); - virtual void setupTask(BaseThread *callingThread,void *userdata); - virtual void shutdownTask(BaseThread *callingThread,void *userdata); - static void setupTaskStatic(BaseThread *callingThread); - static void shutdownTaskStatic(BaseThread *callingThread); + virtual void + simpleTask (BaseThread * callingThread, void *userdata); + virtual void + setupTask (BaseThread * callingThread, void *userdata); + virtual void + shutdownTask (BaseThread * callingThread, void *userdata); + static void + setupTaskStatic (BaseThread * callingThread); + static void + shutdownTaskStatic (BaseThread * callingThread); - virtual bool isInSpecialKeyCaptureEvent(); - virtual bool isMasterserverMode() const; + virtual bool isInSpecialKeyCaptureEvent (); + virtual bool isMasterserverMode ()const; - virtual bool isVideoPlaying(); -private: + virtual bool isVideoPlaying (); + private: - void lastPlayerDisconnected(); - bool hasNetworkGameSettings(); - void loadGameSettings(GameSettings *gameSettings, bool forceCloseUnusedSlots=false); - void loadMapInfo(string file, MapInfo *mapInfo,bool loadMapPreview); - void cleanupMapPreviewTexture(); + void + lastPlayerDisconnected (); + bool hasNetworkGameSettings (); + void + loadGameSettings (GameSettings * gameSettings, + bool forceCloseUnusedSlots = false); + void + loadMapInfo (string file, MapInfo * mapInfo, bool loadMapPreview); + void + cleanupMapPreviewTexture (); - void updateControlers(); - void closeUnusedSlots(); - void updateNetworkSlots(); - void publishToMasterserver(); - void returnToParentMenu(); - void showMessageBox(const string &text, const string &header, bool toggle); + void + updateControlers (); + void + closeUnusedSlots (); + void + updateNetworkSlots (); + void + publishToMasterserver (); + void + returnToParentMenu (); + void + showMessageBox (const string & text, const string & header, + bool toggle); - void saveGameSettingsToFile(std::string fileName); - void switchToNextMapGroup(const int direction); - void updateAllResourceMultiplier(); - void updateResourceMultiplier(const int index); - string getCurrentMapFile(); - void setActiveInputLabel(GraphicLabel *newLable); - string getHumanPlayerName(int index=-1); + void + saveGameSettingsToFile (std::string fileName); + void + switchToNextMapGroup (const int direction); + void + updateAllResourceMultiplier (); + void + updateResourceMultiplier (const int index); + string getCurrentMapFile (); + void + setActiveInputLabel (GraphicLabel * newLable); + string getHumanPlayerName (int index = -1); - void loadFactionTexture(string filepath); + void + loadFactionTexture (string filepath); - GameSettings loadGameSettingsFromFile(std::string fileName); - void loadGameSettings(const std::string &fileName); - void RestoreLastGameSettings(); - void PlayNow(bool saveGame); + GameSettings loadGameSettingsFromFile (std::string fileName); + void + loadGameSettings (const std::string & fileName); + void + RestoreLastGameSettings (); + void + PlayNow (bool saveGame); - void SetActivePlayerNameEditor(); - void cleanup(); + void + SetActivePlayerNameEditor (); + void + cleanup (); - int32 getNetworkPlayerStatus(); - void setupUIFromGameSettings(const GameSettings &gameSettings); + int32 getNetworkPlayerStatus (); + void + setupUIFromGameSettings (const GameSettings & gameSettings); - void switchSetupForSlots(SwitchSetupRequest **switchSetupRequests, - ServerInterface *& serverInterface, int startIndex, int endIndex, - bool onlyNetworkUnassigned); + void + switchSetupForSlots (SwitchSetupRequest ** switchSetupRequests, + ServerInterface * &serverInterface, int startIndex, + int endIndex, bool onlyNetworkUnassigned); - string createGameName(string controllingPlayer=""); - void reloadUI(); - void loadScenarioInfo(string file, ScenarioInfo *scenarioInfo); - void processScenario(); - void SetupUIForScenarios(); - int setupMapList(string scenario); - int setupTechList(string scenario, bool forceLoad=false); - void reloadFactions(bool keepExistingSelectedItem, string scenario); - void setupTilesetList(string scenario); - void setSlotHuman(int i); + string createGameName (string controllingPlayer = ""); + void + reloadUI (); + void + loadScenarioInfo (string file, ScenarioInfo * scenarioInfo); + void + processScenario (); + void + SetupUIForScenarios (); + int + setupMapList (string scenario); + int + setupTechList (string scenario, bool forceLoad = false); + void + reloadFactions (bool keepExistingSelectedItem, string scenario); + void + setupTilesetList (string scenario); + void + setSlotHuman (int i); - void initFactionPreview(const GameSettings *gameSettings); + void + initFactionPreview (const GameSettings * gameSettings); - bool checkNetworkPlayerDataSynch(bool checkMapCRC,bool checkTileSetCRC, bool checkTechTreeCRC); + bool + checkNetworkPlayerDataSynch (bool checkMapCRC, bool checkTileSetCRC, + bool checkTechTreeCRC); - void cleanupThread(SimpleTaskThread **thread); - void simpleTaskForMasterServer(BaseThread *callingThread); - void simpleTaskForClients(BaseThread *callingThread); - void KeepCurrentHumanPlayerSlots(GameSettings &gameSettings); -}; + void + cleanupThread (SimpleTaskThread ** thread); + void + simpleTaskForMasterServer (BaseThread * callingThread); + void + simpleTaskForClients (BaseThread * callingThread); + void + KeepCurrentHumanPlayerSlots (GameSettings & gameSettings); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_graphic_info.cpp b/source/glest_game/menu/menu_state_graphic_info.cpp index 25742b220..b59e920be 100644 --- a/source/glest_game/menu/menu_state_graphic_info.cpp +++ b/source/glest_game/menu/menu_state_graphic_info.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_graphic_info.h" @@ -19,139 +19,192 @@ #include "opengl.h" #include "leak_dumper.h" -namespace Glest{ namespace Game{ - -// ===================================================== -// class MenuStateGraphicInfo -// ===================================================== - -MenuStateGraphicInfo::MenuStateGraphicInfo(Program *program, MainMenu *mainMenu): - MenuState(program, mainMenu, "info") +namespace Glest { - Lang &lang= Lang::getInstance(); + namespace Game + { - containerName = "GraphicInfo"; - buttonReturn.registerGraphicComponent(containerName,"buttonReturn"); - buttonReturn.init(650, 575, 125); +// ===================================================== +// class MenuStateGraphicInfo +// ===================================================== - buttonReturn.setText(lang.getString("Return")); + MenuStateGraphicInfo::MenuStateGraphicInfo (Program * program, + MainMenu * + mainMenu):MenuState (program, + mainMenu, + "info") + { + Lang & lang = Lang::getInstance (); - labelInfo.registerGraphicComponent(containerName,"labelInfo"); - labelInfo.init(0, 730); + containerName = "GraphicInfo"; + buttonReturn.registerGraphicComponent (containerName, "buttonReturn"); + buttonReturn.init (650, 575, 125); - labelMoreInfo.registerGraphicComponent(containerName,"labelMoreInfo"); - labelMoreInfo.init(0, 555); - labelMoreInfo.setFont(CoreData::getInstance().getDisplayFontSmall()); - labelMoreInfo.setFont3D(CoreData::getInstance().getDisplayFontSmall3D()); + buttonReturn.setText (lang.getString ("Return")); - labelInternalInfo.registerGraphicComponent(containerName,"labelInternalInfo"); - labelInternalInfo.init(300, 730); - labelInternalInfo.setFont(CoreData::getInstance().getDisplayFontSmall()); - labelInternalInfo.setFont3D(CoreData::getInstance().getDisplayFontSmall3D()); + labelInfo.registerGraphicComponent (containerName, "labelInfo"); + labelInfo.init (0, 730); - GraphicComponent::applyAllCustomProperties(containerName); + labelMoreInfo.registerGraphicComponent (containerName, "labelMoreInfo"); + labelMoreInfo.init (0, 555); + labelMoreInfo.setFont (CoreData::getInstance ().getDisplayFontSmall ()); + labelMoreInfo.setFont3D (CoreData::getInstance (). + getDisplayFontSmall3D ()); - Renderer &renderer= Renderer::getInstance(); + labelInternalInfo.registerGraphicComponent (containerName, + "labelInternalInfo"); + labelInternalInfo.init (300, 730); + labelInternalInfo.setFont (CoreData::getInstance (). + getDisplayFontSmall ()); + labelInternalInfo.setFont3D (CoreData::getInstance (). + getDisplayFontSmall3D ()); - string glInfo= renderer.getGlInfo(); - string glMoreInfo= renderer.getGlMoreInfo(); - labelInfo.setText(glInfo); - labelMoreInfo.setText(glMoreInfo); + GraphicComponent::applyAllCustomProperties (containerName); - string strInternalInfo = ""; - strInternalInfo += "VBOSupported: " + boolToStr(getVBOSupported()); - if(getenv("MEGAGLEST_FONT") != NULL) { - char *tryFont = getenv("MEGAGLEST_FONT"); - strInternalInfo += "\nMEGAGLEST_FONT: " + string(tryFont); - } - strInternalInfo += "\nforceLegacyFonts: " + boolToStr(Font::forceLegacyFonts); - strInternalInfo += "\nrenderText3DEnabled: " + boolToStr(Renderer::renderText3DEnabled); - strInternalInfo += "\nuseTextureCompression: " + boolToStr(Texture::useTextureCompression); - strInternalInfo += "\nfontIsRightToLeft: " + boolToStr(Font::fontIsRightToLeft); - strInternalInfo += "\nscaleFontValue: " + floatToStr(Font::scaleFontValue); - strInternalInfo += "\nscaleFontValueCenterHFactor: " + floatToStr(Font::scaleFontValueCenterHFactor); - strInternalInfo += "\nlangHeightText: " + Font::langHeightText; - strInternalInfo += "\nAllowAltEnterFullscreenToggle: " + boolToStr(Window::getAllowAltEnterFullscreenToggle()); - strInternalInfo += "\nTryVSynch: " + boolToStr(Window::getTryVSynch()); - strInternalInfo += "\nVERBOSE_MODE_ENABLED: " + boolToStr(SystemFlags::VERBOSE_MODE_ENABLED); - labelInternalInfo.setText(strInternalInfo); -} + Renderer & renderer = Renderer::getInstance (); -void MenuStateGraphicInfo::reloadUI() { - Lang &lang= Lang::getInstance(); + string glInfo = renderer.getGlInfo (); + string glMoreInfo = renderer.getGlMoreInfo (); + labelInfo.setText (glInfo); + labelMoreInfo.setText (glMoreInfo); - console.resetFonts(); - buttonReturn.setText(lang.getString("Return")); - - labelMoreInfo.setFont(CoreData::getInstance().getDisplayFontSmall()); - labelMoreInfo.setFont3D(CoreData::getInstance().getDisplayFontSmall3D()); - - labelInternalInfo.setFont(CoreData::getInstance().getDisplayFontSmall()); - labelInternalInfo.setFont3D(CoreData::getInstance().getDisplayFontSmall3D()); - - Renderer &renderer= Renderer::getInstance(); - - string glInfo= renderer.getGlInfo(); - string glMoreInfo= renderer.getGlMoreInfo(); - labelInfo.setText(glInfo); - labelMoreInfo.setText(glMoreInfo); - - string strInternalInfo = ""; - strInternalInfo += "VBOSupported: " + boolToStr(getVBOSupported()); - if(getenv("MEGAGLEST_FONT") != NULL) { - char *tryFont = getenv("MEGAGLEST_FONT"); - strInternalInfo += "\nMEGAGLEST_FONT: " + string(tryFont); - } - strInternalInfo += "\nforceLegacyFonts: " + boolToStr(Font::forceLegacyFonts); - strInternalInfo += "\nrenderText3DEnabled: " + boolToStr(Renderer::renderText3DEnabled); - strInternalInfo += "\nuseTextureCompression: " + boolToStr(Texture::useTextureCompression); - strInternalInfo += "\nfontIsRightToLeft: " + boolToStr(Font::fontIsRightToLeft); - strInternalInfo += "\nscaleFontValue: " + floatToStr(Font::scaleFontValue); - strInternalInfo += "\nscaleFontValueCenterHFactor: " + floatToStr(Font::scaleFontValueCenterHFactor); - strInternalInfo += "\nlangHeightText: " + Font::langHeightText; - strInternalInfo += "\nAllowAltEnterFullscreenToggle: " + boolToStr(Window::getAllowAltEnterFullscreenToggle()); - strInternalInfo += "\nTryVSynch: " + boolToStr(Window::getTryVSynch()); - strInternalInfo += "\nVERBOSE_MODE_ENABLED: " + boolToStr(SystemFlags::VERBOSE_MODE_ENABLED); - labelInternalInfo.setText(strInternalInfo); - - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} - -void MenuStateGraphicInfo::mouseClick(int x, int y, MouseButton mouseButton){ - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - if(buttonReturn.mouseClick(x,y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu)); + string strInternalInfo = ""; + strInternalInfo += "VBOSupported: " + boolToStr (getVBOSupported ()); + if (getenv ("MEGAGLEST_FONT") != NULL) + { + char *tryFont = getenv ("MEGAGLEST_FONT"); + strInternalInfo += "\nMEGAGLEST_FONT: " + string (tryFont); + } + strInternalInfo += + "\nforceLegacyFonts: " + boolToStr (Font::forceLegacyFonts); + strInternalInfo += + "\nrenderText3DEnabled: " + boolToStr (Renderer::renderText3DEnabled); + strInternalInfo += + "\nuseTextureCompression: " + + boolToStr (Texture::useTextureCompression); + strInternalInfo += + "\nfontIsRightToLeft: " + boolToStr (Font::fontIsRightToLeft); + strInternalInfo += + "\nscaleFontValue: " + floatToStr (Font::scaleFontValue); + strInternalInfo += + "\nscaleFontValueCenterHFactor: " + + floatToStr (Font::scaleFontValueCenterHFactor); + strInternalInfo += "\nlangHeightText: " + Font::langHeightText; + strInternalInfo += + "\nAllowAltEnterFullscreenToggle: " + + boolToStr (Window::getAllowAltEnterFullscreenToggle ()); + strInternalInfo += + "\nTryVSynch: " + boolToStr (Window::getTryVSynch ()); + strInternalInfo += + "\nVERBOSE_MODE_ENABLED: " + + boolToStr (SystemFlags::VERBOSE_MODE_ENABLED); + labelInternalInfo.setText (strInternalInfo); } -} -void MenuStateGraphicInfo::mouseMove(int x, int y, const MouseState *ms){ - buttonReturn.mouseMove(x, y); -} + void MenuStateGraphicInfo::reloadUI () + { + Lang & lang = Lang::getInstance (); -void MenuStateGraphicInfo::render(){ + console.resetFonts (); + buttonReturn.setText (lang.getString ("Return")); - Renderer &renderer= Renderer::getInstance(); - //Lang &lang= Lang::getInstance(); + labelMoreInfo.setFont (CoreData::getInstance ().getDisplayFontSmall ()); + labelMoreInfo.setFont3D (CoreData::getInstance (). + getDisplayFontSmall3D ()); - renderer.renderButton(&buttonReturn); - renderer.renderLabel(&labelInfo); - renderer.renderLabel(&labelInternalInfo); - renderer.renderLabel(&labelMoreInfo); + labelInternalInfo.setFont (CoreData::getInstance (). + getDisplayFontSmall ()); + labelInternalInfo.setFont3D (CoreData::getInstance (). + getDisplayFontSmall3D ()); - renderer.renderConsole(&console); -} + Renderer & renderer = Renderer::getInstance (); -void MenuStateGraphicInfo::keyDown(SDL_KeyboardEvent key) { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - //if(key == configKeys.getCharKey("SaveGUILayout")) { - if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - GraphicComponent::saveAllCustomProperties(containerName); - //Lang &lang= Lang::getInstance(); - //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } -} + string glInfo = renderer.getGlInfo (); + string glMoreInfo = renderer.getGlMoreInfo (); + labelInfo.setText (glInfo); + labelMoreInfo.setText (glMoreInfo); -}}//end namespace + string strInternalInfo = ""; + strInternalInfo += "VBOSupported: " + boolToStr (getVBOSupported ()); + if (getenv ("MEGAGLEST_FONT") != NULL) + { + char *tryFont = getenv ("MEGAGLEST_FONT"); + strInternalInfo += "\nMEGAGLEST_FONT: " + string (tryFont); + } + strInternalInfo += + "\nforceLegacyFonts: " + boolToStr (Font::forceLegacyFonts); + strInternalInfo += + "\nrenderText3DEnabled: " + boolToStr (Renderer::renderText3DEnabled); + strInternalInfo += + "\nuseTextureCompression: " + + boolToStr (Texture::useTextureCompression); + strInternalInfo += + "\nfontIsRightToLeft: " + boolToStr (Font::fontIsRightToLeft); + strInternalInfo += + "\nscaleFontValue: " + floatToStr (Font::scaleFontValue); + strInternalInfo += + "\nscaleFontValueCenterHFactor: " + + floatToStr (Font::scaleFontValueCenterHFactor); + strInternalInfo += "\nlangHeightText: " + Font::langHeightText; + strInternalInfo += + "\nAllowAltEnterFullscreenToggle: " + + boolToStr (Window::getAllowAltEnterFullscreenToggle ()); + strInternalInfo += + "\nTryVSynch: " + boolToStr (Window::getTryVSynch ()); + strInternalInfo += + "\nVERBOSE_MODE_ENABLED: " + + boolToStr (SystemFlags::VERBOSE_MODE_ENABLED); + labelInternalInfo.setText (strInternalInfo); + + GraphicComponent:: + reloadFontsForRegisterGraphicComponents (containerName); + } + + void MenuStateGraphicInfo::mouseClick (int x, int y, + MouseButton mouseButton) + { + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + + if (buttonReturn.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsGraphics (program, mainMenu)); + } + } + + void MenuStateGraphicInfo::mouseMove (int x, int y, const MouseState * ms) + { + buttonReturn.mouseMove (x, y); + } + + void MenuStateGraphicInfo::render () + { + + Renderer & renderer = Renderer::getInstance (); + //Lang &lang= Lang::getInstance(); + + renderer.renderButton (&buttonReturn); + renderer.renderLabel (&labelInfo); + renderer.renderLabel (&labelInternalInfo); + renderer.renderLabel (&labelMoreInfo); + + renderer.renderConsole (&console); + } + + void MenuStateGraphicInfo::keyDown (SDL_KeyboardEvent key) + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + //if(key == configKeys.getCharKey("SaveGUILayout")) { + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) == true) + { + GraphicComponent::saveAllCustomProperties (containerName); + //Lang &lang= Lang::getInstance(); + //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); + } + } + + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_graphic_info.h b/source/glest_game/menu/menu_state_graphic_info.h index 71ec9cb4c..03bff0048 100644 --- a/source/glest_game/menu/menu_state_graphic_info.h +++ b/source/glest_game/menu/menu_state_graphic_info.h @@ -1,50 +1,69 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2005 Martio Figueroa +// Copyright (C) 2001-2005 Martio Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATEGRAPHICINFO_H_ -#define _GLEST_GAME_MENUSTATEGRAPHICINFO_H_ +# define _GLEST_GAME_MENUSTATEGRAPHICINFO_H_ -#include "main_menu.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "leak_dumper.h" -using namespace Shared::Graphics::Gl; +using namespace + Shared::Graphics::Gl; -namespace Glest{ namespace Game{ +namespace + Glest +{ + namespace + Game + { // =============================== -// class MenuStateGraphicInfo +// class MenuStateGraphicInfo // =============================== -class MenuStateGraphicInfo: public MenuState { -private: - GraphicButton buttonReturn; - GraphicLabel labelInfo; - GraphicLabel labelMoreInfo; + class + MenuStateGraphicInfo: + public + MenuState + { + private: + GraphicButton + buttonReturn; + GraphicLabel + labelInfo; + GraphicLabel + labelMoreInfo; - GraphicLabel labelInternalInfo; + GraphicLabel + labelInternalInfo; - //string glInfo; - //string glMoreInfo; + //string glInfo; + //string glMoreInfo; -public: - MenuStateGraphicInfo(Program *program, MainMenu *mainMenu); + public: + MenuStateGraphicInfo (Program * program, MainMenu * mainMenu); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - virtual void keyDown(SDL_KeyboardEvent key); + void + mouseClick (int x, int y, MouseButton mouseButton); + void + mouseMove (int x, int y, const MouseState * mouseState); + void + render (); + virtual void + keyDown (SDL_KeyboardEvent key); - virtual void reloadUI(); -}; + virtual void + reloadUI (); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_join_game.cpp b/source/glest_game/menu/menu_state_join_game.cpp index b08ab03af..a1d098022 100644 --- a/source/glest_game/menu/menu_state_join_game.cpp +++ b/source/glest_game/menu/menu_state_join_game.cpp @@ -1,20 +1,20 @@ -// menu_state_join_game.cpp -// Copyright (C) 2018 The ZetaGlest team +// menu_state_join_game.cpp +// Copyright (C) 2018 The ZetaGlest team // -// ZetaGlest is a fork of MegaGlest +// ZetaGlest is a fork of MegaGlest // -// 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 3 of the License, or -// (at your option) any later version. +// 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 3 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. +// 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, see . +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . #include "menu_state_join_game.h" @@ -36,809 +36,1093 @@ #include "leak_dumper.h" -namespace Glest{ namespace Game{ - -using namespace ::Shared::Util; - -// =============================== -// class MenuStateJoinGame -// =============================== - -const int MenuStateJoinGame::newServerIndex= 0; -const int MenuStateJoinGame::newPrevServerIndex= 1; -const int MenuStateJoinGame::foundServersIndex= 2; - -const string MenuStateJoinGame::serverFileName= "servers.ini"; - -MenuStateJoinGame::MenuStateJoinGame(Program *program, MainMenu *mainMenu, bool *autoFindHost) : - MenuState(program, mainMenu, "join-game") { - CommonInit(false,Ip(),-1); - - if(autoFindHost != NULL && *autoFindHost == true) { - //if(clientInterface->isConnected() == false) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - buttonAutoFindServers.setEnabled(false); - buttonConnect.setEnabled(false); - - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - clientInterface->discoverServers(this); - //} - } -} -MenuStateJoinGame::MenuStateJoinGame(Program *program, MainMenu *mainMenu, - bool connect, Ip serverIp,int portNumberOverride) : - MenuState(program, mainMenu, "join-game") { - CommonInit(connect, serverIp,portNumberOverride); -} - -void MenuStateJoinGame::CommonInit(bool connect, Ip serverIp,int portNumberOverride) { - containerName = "JoinGame"; - abortAutoFind = false; - autoConnectToServer = false; - Lang &lang= Lang::getInstance(); - Config &config= Config::getInstance(); - NetworkManager &networkManager= NetworkManager::getInstance(); - networkManager.end(); - networkManager.init(nrClient); - - serversSavedFile = serverFileName; - - string serverListPath = config.getString("ServerListPath",""); - if(serverListPath != "") { - endPathWithSlash(serverListPath); - } - - string userData = config.getString("UserData_Root",""); - if(userData != "") { - endPathWithSlash(userData); - } - serversSavedFile = userData + serversSavedFile; - - if(fileExists(serversSavedFile) == true) { - servers.load(serversSavedFile); - } - else if(fileExists(serverListPath + serverFileName) == true) { - servers.load(serverListPath + serverFileName); - } - else if(fileExists(Properties::getApplicationPath() + serverFileName) == true) { - servers.load(Properties::getApplicationPath() + serverFileName); - } - else if(fileExists(serverFileName) == true) { - servers.load(serverFileName); - } - - //buttons - buttonReturn.registerGraphicComponent(containerName,"buttonReturn"); - buttonReturn.init(250, 300, 150); - buttonReturn.setText(lang.getString("Return")); - - buttonConnect.registerGraphicComponent(containerName,"buttonConnect"); - buttonConnect.init(425, 300, 150); - buttonConnect.setText(lang.getString("Connect")); - - buttonCreateGame.registerGraphicComponent(containerName,"buttonCreateGame"); - buttonCreateGame.init(600, 300, 150); - buttonCreateGame.setText(lang.getString("HostGame")); - - buttonAutoFindServers.registerGraphicComponent(containerName,"buttonAutoFindServers"); - buttonAutoFindServers.init(360, 250, 280); - buttonAutoFindServers.setText(lang.getString("FindLANGames")); - buttonAutoFindServers.setEnabled(true); - - int labelXleft = 300; - int labelXright = 480; - - //server type label - labelServerType.registerGraphicComponent(containerName,"labelServerType"); - labelServerType.init(labelXleft, 490); - labelServerType.setText(lang.getString("ServerType")); - - //server type list box - listBoxServerType.registerGraphicComponent(containerName,"listBoxServerType"); - listBoxServerType.init(labelXright, 490, 210); - listBoxServerType.pushBackItem(lang.getString("ServerTypeNew")); - listBoxServerType.pushBackItem(lang.getString("ServerTypePrevious")); - listBoxServerType.pushBackItem(lang.getString("ServerTypeFound")); - - //server label - labelServer.registerGraphicComponent(containerName,"labelServer"); - labelServer.init(labelXleft, 460); - labelServer.setText(lang.getString("Server")); - - //server listbox - listBoxServers.registerGraphicComponent(containerName,"listBoxServers"); - listBoxServers.init(labelXright, 460, 210); - for(int i= 0; i hostPartsList; - Tokenize(host,hostPartsList,":"); - if(hostPartsList.size() > 1) { - host = hostPartsList[0]; - replaceAll(hostPartsList[1],"_",""); - portNumber = strToInt(hostPartsList[1]); - } - - string port = " ("+intToStr(portNumber)+")"; - labelServerPort.setText(port); - - labelStatus.registerGraphicComponent(containerName,"labelStatus"); - labelStatus.init(labelXleft, 400); - labelStatus.setText(""); - - labelInfo.registerGraphicComponent(containerName,"labelInfo"); - labelInfo.init(labelXleft, 370); - labelInfo.setText(""); - - connected= false; - playerIndex= -1; - - //server ip - if(connect == true) { - string hostIP = serverIp.getString(); - if(portNumberOverride > 0) { - hostIP += ":" + intToStr(portNumberOverride); - } - - labelServerIp.setText(hostIP + "_"); - - autoConnectToServer = true; - } - else { - string hostIP = config.getString("ServerIp"); - if(portNumberOverride > 0) { - hostIP += ":" + intToStr(portNumberOverride); - } - - labelServerIp.setText(hostIP + "_"); - } - - host = labelServerIp.getText(); - portNumber = config.getInt("PortServer",intToStr(GameConstants::serverPort).c_str()); - hostPartsList.clear(); - Tokenize(host,hostPartsList,":"); - if(hostPartsList.size() > 1) { - host = hostPartsList[0]; - replaceAll(hostPartsList[1],"_",""); - portNumber = strToInt(hostPartsList[1]); - } - - port = " ("+intToStr(portNumber)+")"; - labelServerPort.setText(port); - - GraphicComponent::applyAllCustomProperties(containerName); - - chatManager.init(&console, -1); -} - -void MenuStateJoinGame::reloadUI() { - Lang &lang= Lang::getInstance(); - Config &config= Config::getInstance(); - - console.resetFonts(); - - buttonReturn.setText(lang.getString("Return")); - buttonConnect.setText(lang.getString("Connect")); - buttonCreateGame.setText(lang.getString("HostGame")); - buttonAutoFindServers.setText(lang.getString("FindLANGames")); - labelServerType.setText(lang.getString("ServerType")); - - std::vector listboxData; - listboxData.push_back(lang.getString("ServerTypeNew")); - listboxData.push_back(lang.getString("ServerTypePrevious")); - listboxData.push_back(lang.getString("ServerTypeFound")); - listBoxServerType.setItems(listboxData); - - labelServer.setText(lang.getString("Server")); - - labelServerPortLabel.setText(lang.getString("ServerPort")); - - string host = labelServerIp.getText(); - int portNumber = config.getInt("PortServer",intToStr(GameConstants::serverPort).c_str()); - std::vector hostPartsList; - Tokenize(host,hostPartsList,":"); - if(hostPartsList.size() > 1) { - host = hostPartsList[0]; - replaceAll(hostPartsList[1],"_",""); - portNumber = strToInt(hostPartsList[1]); - } - - string port = " ("+intToStr(portNumber)+")"; - labelServerPort.setText(port); - - chatManager.init(&console, -1); - - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} - -MenuStateJoinGame::~MenuStateJoinGame() { - abortAutoFind = true; - -#ifdef DEBUG -PRINT_DEBUG ("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); -#endif -} - -void MenuStateJoinGame::DiscoveredServers(std::vector serverList) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(abortAutoFind == true) { - return; - } - // Testing multi-server - //serverList.push_back("test1"); - //serverList.push_back("test2"); - // - -#ifdef DEBUG -PRINT_DEBUG ("In [%s::%s Line: %d] serverList.size() = %d\n",__FILE__,__FUNCTION__,__LINE__,(int)serverList.size()); -#endif - - autoConnectToServer = false; - buttonAutoFindServers.setEnabled(true); - buttonConnect.setEnabled(true); - if(serverList.empty() == false) { - Config &config= Config::getInstance(); - string bestIPMatch = ""; - int serverGamePort = config.getInt("PortServer",intToStr(GameConstants::serverPort).c_str()); - std::vector localIPList = Socket::getLocalIPAddressList(); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - for(int idx = 0; idx < (int)serverList.size(); idx++) { - - vector paramPartPortsTokens; - Tokenize(serverList[idx],paramPartPortsTokens,":"); - if(paramPartPortsTokens.size() >= 2 && paramPartPortsTokens[1].length() > 0) { - serverGamePort = strToInt(paramPartPortsTokens[1]); - } - - bestIPMatch = serverList[idx]; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] bestIPMatch = [%s]\n",__FILE__,__FUNCTION__,__LINE__,bestIPMatch.c_str()); - if(localIPList.empty() == true) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - break; - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] bestIPMatch = [%s] localIPList[0] = [%s]\n",__FILE__,__FUNCTION__,__LINE__,bestIPMatch.c_str(),localIPList[0].c_str()); - if(strncmp(localIPList[0].c_str(),serverList[idx].c_str(),4) == 0) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - break; - } - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(bestIPMatch != "") { - bestIPMatch += ":" + intToStr(serverGamePort); - } - labelServerIp.setText(bestIPMatch); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(serverList.size() > 1) { - listBoxServerType.setSelectedItemIndex(MenuStateJoinGame::foundServersIndex); - listBoxFoundServers.setItems(serverList); - } - else { - autoConnectToServer = true; - } - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); -} - -void MenuStateJoinGame::mouseClick(int x, int y, MouseButton mouseButton) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] START\n",__FILE__,__FUNCTION__); - - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - NetworkManager &networkManager= NetworkManager::getInstance(); - ClientInterface* clientInterface= networkManager.getClientInterface(); - - if(clientInterface->isConnected() == false) { - //server type - if(listBoxServerType.mouseClick(x, y)){ - if(!listBoxServers.getText().empty()){ - labelServerIp.setText(servers.getString(listBoxServers.getText())+"_"); - } - } - //server list - else if(listBoxServerType.getSelectedItemIndex() == newPrevServerIndex){ - if(listBoxServers.mouseClick(x, y)) { - labelServerIp.setText(servers.getString(listBoxServers.getText())+"_"); - } - } - else if(listBoxServerType.getSelectedItemIndex() == foundServersIndex){ - if(listBoxFoundServers.mouseClick(x, y)) { - labelServerIp.setText(listBoxFoundServers.getText()); - } - } - - string host = labelServerIp.getText(); - Config &config= Config::getInstance(); - int portNumber = config.getInt("PortServer",intToStr(GameConstants::serverPort).c_str()); - std::vector hostPartsList; - Tokenize(host,hostPartsList,":"); - if(hostPartsList.size() > 1) { - host = hostPartsList[0]; - replaceAll(hostPartsList[1],"_",""); - portNumber = strToInt(hostPartsList[1]); - } - - string port = " ("+intToStr(portNumber)+")"; - labelServerPort.setText(port); - - } - - //return - if(buttonReturn.mouseClick(x, y)) { - soundRenderer.playFx(coreData.getClickSoundA()); - - clientInterface->stopServerDiscovery(); - - if(clientInterface->getSocket() != NULL) { - //if(clientInterface->isConnected() == true) { - // string sQuitText = Config::getInstance().getString("NetPlayerName",Socket::getHostName().c_str()) + " has chosen to leave the game!"; - // clientInterface->sendTextMessage(sQuitText,-1); - //} - clientInterface->close(); - } - abortAutoFind = true; - mainMenu->setState(new MenuStateNewGame(program, mainMenu)); - return; - } - - //connect - else if(buttonConnect.mouseClick(x, y) && buttonConnect.getEnabled() == true) { - ClientInterface* clientInterface= networkManager.getClientInterface(); - - soundRenderer.playFx(coreData.getClickSoundB()); - labelInfo.setText(""); - - if(clientInterface->isConnected()) { - clientInterface->reset(); - } - else { - if(connectToServer() == true) { - return; - } - } - } - else if(buttonCreateGame.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundB()); - - clientInterface->stopServerDiscovery(); - if(clientInterface->getSocket() != NULL) { - clientInterface->close(); - } - abortAutoFind = true; - mainMenu->setState(new MenuStateCustomGame(program, mainMenu,true,pLanGame)); - return; - } - - else if(buttonAutoFindServers.mouseClick(x, y) && buttonAutoFindServers.getEnabled() == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - ClientInterface* clientInterface= networkManager.getClientInterface(); - soundRenderer.playFx(coreData.getClickSoundB()); - - // Triggers a thread which calls back into MenuStateJoinGame::DiscoveredServers - // with the results - if(clientInterface->isConnected() == false) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - buttonAutoFindServers.setEnabled(false); - buttonConnect.setEnabled(false); - clientInterface->discoverServers(this); - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] END\n",__FILE__,__FUNCTION__); -} - -void MenuStateJoinGame::mouseMove(int x, int y, const MouseState *ms){ - buttonReturn.mouseMove(x, y); - buttonConnect.mouseMove(x, y); - buttonAutoFindServers.mouseMove(x, y); - buttonCreateGame.mouseMove(x, y); - listBoxServerType.mouseMove(x, y); - - //hide-show options depending on the selection - if(listBoxServers.getSelectedItemIndex() == newServerIndex) { - labelServerIp.mouseMove(x, y); - } - else if(listBoxServers.getSelectedItemIndex() == newPrevServerIndex) { - listBoxServers.mouseMove(x, y); - } - else { - listBoxFoundServers.mouseMove(x, y); - } -} - -void MenuStateJoinGame::render(){ - Renderer &renderer= Renderer::getInstance(); - - renderer.renderButton(&buttonReturn); - renderer.renderLabel(&labelServer); - renderer.renderLabel(&labelServerType); - renderer.renderLabel(&labelStatus); - renderer.renderLabel(&labelInfo); - renderer.renderLabel(&labelServerPort); - renderer.renderLabel(&labelServerPortLabel); - renderer.renderButton(&buttonConnect); - renderer.renderButton(&buttonCreateGame); - - renderer.renderButton(&buttonAutoFindServers); - renderer.renderListBox(&listBoxServerType); - - if(listBoxServerType.getSelectedItemIndex() == newServerIndex) { - renderer.renderLabel(&labelServerIp); - } - else if(listBoxServerType.getSelectedItemIndex() == newPrevServerIndex) { - renderer.renderListBox(&listBoxServers); - } - else { - renderer.renderListBox(&listBoxFoundServers); - } - - renderer.renderChatManager(&chatManager); - renderer.renderConsole(&console); - - if(program != NULL) program->renderProgramMsgBox(); -} - -void MenuStateJoinGame::update() +namespace Glest { - ClientInterface* clientInterface= NetworkManager::getInstance().getClientInterface(); - Lang &lang= Lang::getInstance(); + namespace Game + { - //update status label - if(clientInterface->isConnected()) - { - buttonConnect.setText(lang.getString("Disconnect")); + using namespace::Shared::Util; - if(clientInterface->getAllowDownloadDataSynch() == false) - { - string label = lang.getString("ConnectedToServer"); +// =============================== +// class MenuStateJoinGame +// =============================== - if(!clientInterface->getServerName().empty()) - { - label = label + " " + clientInterface->getServerName(); - } + const int MenuStateJoinGame::newServerIndex = 0; + const int MenuStateJoinGame::newPrevServerIndex = 1; + const int MenuStateJoinGame::foundServersIndex = 2; - if(clientInterface->getAllowGameDataSynchCheck() == true && - clientInterface->getNetworkGameDataSynchCheckOk() == false) - { - label = label + " - warning synch mismatch for:"; - if(clientInterface->getNetworkGameDataSynchCheckOkMap() == false) - { - label = label + " map"; - } - if(clientInterface->getNetworkGameDataSynchCheckOkTile() == false) - { - label = label + " tile"; - } - if(clientInterface->getNetworkGameDataSynchCheckOkTech() == false) - { - label = label + " techtree"; - } - } - else if(clientInterface->getAllowGameDataSynchCheck() == true) - { - label += " - data synch is ok"; - } - labelStatus.setText(label); - } - else - { - string label = lang.getString("ConnectedToServer"); + const string MenuStateJoinGame::serverFileName = "servers.ini"; - if(!clientInterface->getServerName().empty()) - { - label = label + " " + clientInterface->getServerName(); - } + MenuStateJoinGame::MenuStateJoinGame (Program * program, + MainMenu * mainMenu, + bool * + autoFindHost):MenuState (program, + mainMenu, + "join-game") + { + CommonInit (false, Ip (), -1); - if(clientInterface->getAllowGameDataSynchCheck() == true && - clientInterface->getNetworkGameDataSynchCheckOk() == false) - { - label = label + " - waiting to synch:"; - if(clientInterface->getNetworkGameDataSynchCheckOkMap() == false) - { - label = label + " map"; - } - if(clientInterface->getNetworkGameDataSynchCheckOkTile() == false) - { - label = label + " tile"; - } - if(clientInterface->getNetworkGameDataSynchCheckOkTech() == false) - { - label = label + " techtree"; - } - } - else if(clientInterface->getAllowGameDataSynchCheck() == true) - { - label += " - data synch is ok"; - } + if (autoFindHost != NULL && *autoFindHost == true) + { +//if(clientInterface->isConnected() == false) { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); - labelStatus.setText(label); - } - } - else - { - buttonConnect.setText(lang.getString("Connect")); - string connectedStatus = lang.getString("NotConnected"); - if(buttonAutoFindServers.getEnabled() == false) { - connectedStatus += " - searching for servers, please wait..."; - } - labelStatus.setText(connectedStatus); - labelInfo.setText(""); - } + buttonAutoFindServers.setEnabled (false); + buttonConnect.setEnabled (false); - //process network messages - if(clientInterface->isConnected()) { - //update lobby - clientInterface->updateLobby(); + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface *clientInterface = + networkManager.getClientInterface (); + clientInterface->discoverServers (this); +//} + } + } + MenuStateJoinGame::MenuStateJoinGame (Program * program, + MainMenu * mainMenu, bool connect, + Ip serverIp, + int + portNumberOverride):MenuState + (program, mainMenu, "join-game") + { + CommonInit (connect, serverIp, portNumberOverride); + } - clientInterface= NetworkManager::getInstance().getClientInterface(); - if(clientInterface != NULL && clientInterface->isConnected()) { - //call the chat manager - chatManager.updateNetwork(); + void MenuStateJoinGame::CommonInit (bool connect, Ip serverIp, + int portNumberOverride) + { + containerName = "JoinGame"; + abortAutoFind = false; + autoConnectToServer = false; + Lang & lang = Lang::getInstance (); + Config & config = Config::getInstance (); + NetworkManager & networkManager = NetworkManager::getInstance (); + networkManager.end (); + networkManager.init (nrClient); - //console - console.update(); + serversSavedFile = serverFileName; - //intro - if(clientInterface->getIntroDone()) { - labelInfo.setText(lang.getString("WaitingHost")); + string serverListPath = config.getString ("ServerListPath", ""); + if (serverListPath != "") + { + endPathWithSlash (serverListPath); + } - string host = labelServerIp.getText(); - std::vector hostPartsList; - Tokenize(host,hostPartsList,":"); - if(hostPartsList.size() > 1) { - host = hostPartsList[0]; - replaceAll(hostPartsList[1],"_",""); - } - string saveHost = Ip(host).getString(); - if(hostPartsList.size() > 1) { - saveHost += ":" + hostPartsList[1]; - } + string userData = config.getString ("UserData_Root", ""); + if (userData != "") + { + endPathWithSlash (userData); + } + serversSavedFile = userData + serversSavedFile; - servers.setString(clientInterface->getServerName(), saveHost); - } + if (fileExists (serversSavedFile) == true) + { + servers.load (serversSavedFile); + } + else if (fileExists (serverListPath + serverFileName) == true) + { + servers.load (serverListPath + serverFileName); + } + else if (fileExists (Properties::getApplicationPath () + serverFileName) + == true) + { + servers.load (Properties::getApplicationPath () + serverFileName); + } + else if (fileExists (serverFileName) == true) + { + servers.load (serverFileName); + } - //launch - if(clientInterface->getLaunchGame()) - { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] clientInterface->getLaunchGame() - A\n",__FILE__,__FUNCTION__); +//buttons + buttonReturn.registerGraphicComponent (containerName, "buttonReturn"); + buttonReturn.init (250, 300, 150); + buttonReturn.setText (lang.getString ("Return")); - servers.save(serversSavedFile); + buttonConnect.registerGraphicComponent (containerName, "buttonConnect"); + buttonConnect.init (425, 300, 150); + buttonConnect.setText (lang.getString ("Connect")); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] clientInterface->getLaunchGame() - B\n",__FILE__,__FUNCTION__); + buttonCreateGame.registerGraphicComponent (containerName, + "buttonCreateGame"); + buttonCreateGame.init (600, 300, 150); + buttonCreateGame.setText (lang.getString ("HostGame")); - abortAutoFind = true; - clientInterface->stopServerDiscovery(); - program->setState(new Game(program, clientInterface->getGameSettings(),false)); - return; - } - } - } - else if(autoConnectToServer == true) { - autoConnectToServer = false; - if(connectToServer() == true) { - return; - } - } + buttonAutoFindServers.registerGraphicComponent (containerName, + "buttonAutoFindServers"); + buttonAutoFindServers.init (360, 250, 280); + buttonAutoFindServers.setText (lang.getString ("FindLANGames")); + buttonAutoFindServers.setEnabled (true); - if(clientInterface != NULL && clientInterface->getLaunchGame()) if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] clientInterface->getLaunchGame() - D\n",__FILE__,__FUNCTION__); -} + int labelXleft = 300; + int labelXright = 480; -bool MenuStateJoinGame::textInput(std::string text) { - if(chatManager.getEditEnabled() == true) { - return chatManager.textInput(text); - } - return false; -} +//server type label + labelServerType.registerGraphicComponent (containerName, + "labelServerType"); + labelServerType.init (labelXleft, 490); + labelServerType.setText (lang.getString ("ServerType")); -void MenuStateJoinGame::keyDown(SDL_KeyboardEvent key) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] key = [%c][%d]\n",__FILE__,__FUNCTION__,__LINE__,key.keysym.sym,key.keysym.sym); +//server type list box + listBoxServerType.registerGraphicComponent (containerName, + "listBoxServerType"); + listBoxServerType.init (labelXright, 490, 210); + listBoxServerType.pushBackItem (lang.getString ("ServerTypeNew")); + listBoxServerType.pushBackItem (lang.getString ("ServerTypePrevious")); + listBoxServerType.pushBackItem (lang.getString ("ServerTypeFound")); - ClientInterface* clientInterface= NetworkManager::getInstance().getClientInterface(); - if(clientInterface->isConnected() == false) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); +//server label + labelServer.registerGraphicComponent (containerName, "labelServer"); + labelServer.init (labelXleft, 460); + labelServer.setText (lang.getString ("Server")); - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); +//server listbox + listBoxServers.registerGraphicComponent (containerName, + "listBoxServers"); + listBoxServers.init (labelXright, 460, 210); + for (int i = 0; i < servers.getPropertyCount (); ++i) + { + listBoxServers.pushBackItem (servers.getKey (i)); + } - string text = labelServerIp.getText(); - if(isKeyPressed(SDLK_BACKSPACE,key) == true && text.length() > 0) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - size_t found = text.find_last_of("_"); - if (found == string::npos) { - text.erase(text.end() - 1); - } - else { - if(text.size() > 1) { - text.erase(text.end() - 2); - } - } +// found servers listbox + listBoxFoundServers.registerGraphicComponent (containerName, + "listBoxFoundServers"); + listBoxFoundServers.init (labelXright, 460, 210); - labelServerIp.setText(text); - } - //else if(key == configKeys.getCharKey("SaveGUILayout")) { - else if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - bool saved = GraphicComponent::saveAllCustomProperties(containerName); - Lang &lang= Lang::getInstance(); - console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); +//server ip + labelServerIp.registerGraphicComponent (containerName, "labelServerIp"); + labelServerIp.setEditable (true); + labelServerIp.setMaxEditWidth (26); + labelServerIp.setMaxEditRenderWidth (210); + labelServerIp.init (labelXright, 460); - //send key to the chat manager - chatManager.keyDown(key); +// server port + labelServerPortLabel.registerGraphicComponent (containerName, + "labelServerPortLabel"); + labelServerPortLabel.init (labelXleft, 430); + labelServerPortLabel.setText (lang.getString ("ServerPort")); - if(chatManager.getEditEnabled() == false) { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - //if(key == configKeys.getCharKey("SaveGUILayout")) { - if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - bool saved = GraphicComponent::saveAllCustomProperties(containerName); - Lang &lang= Lang::getInstance(); - console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } + labelServerPort.registerGraphicComponent (containerName, + "labelServerPort"); + labelServerPort.init (labelXright, 430); + + string host = labelServerIp.getText (); + int portNumber = config.getInt ("PortServer", + intToStr (GameConstants::serverPort). + c_str ()); + std::vector < std::string > hostPartsList; + Tokenize (host, hostPartsList, ":"); + if (hostPartsList.size () > 1) + { + host = hostPartsList[0]; + replaceAll (hostPartsList[1], "_", ""); + portNumber = strToInt (hostPartsList[1]); + } + + string port = " (" + intToStr (portNumber) + ")"; + labelServerPort.setText (port); + + labelStatus.registerGraphicComponent (containerName, "labelStatus"); + labelStatus.init (labelXleft, 400); + labelStatus.setText (""); + + labelInfo.registerGraphicComponent (containerName, "labelInfo"); + labelInfo.init (labelXleft, 370); + labelInfo.setText (""); + + connected = false; + playerIndex = -1; + +//server ip + if (connect == true) + { + string hostIP = serverIp.getString (); + if (portNumberOverride > 0) + { + hostIP += ":" + intToStr (portNumberOverride); } - } -} -void MenuStateJoinGame::keyPress(SDL_KeyboardEvent c) { - ClientInterface* clientInterface= NetworkManager::getInstance().getClientInterface(); + labelServerIp.setText (hostIP + "_"); - if(clientInterface->isConnected() == false) { - int maxTextSize= 22; + autoConnectToServer = true; + } + else + { + string hostIP = config.getString ("ServerIp"); + if (portNumberOverride > 0) + { + hostIP += ":" + intToStr (portNumberOverride); + } - //Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); + labelServerIp.setText (hostIP + "_"); + } - SDL_Keycode key = extractKeyPressed(c); + host = labelServerIp.getText (); + portNumber = + config.getInt ("PortServer", + intToStr (GameConstants::serverPort).c_str ()); + hostPartsList.clear (); + Tokenize (host, hostPartsList, ":"); + if (hostPartsList.size () > 1) + { + host = hostPartsList[0]; + replaceAll (hostPartsList[1], "_", ""); + portNumber = strToInt (hostPartsList[1]); + } - //if(c>='0' && c<='9') { - if( (key >= SDLK_0 && key <= SDLK_9) || - (key >= SDLK_KP_0 && key <= SDLK_KP_9)) { - if((int)labelServerIp.getText().size() < maxTextSize) { - string text= labelServerIp.getText(); - //text.insert(text.end()-1, key); - char szCharText[26]=""; - snprintf(szCharText,26,"%c",key); - char *utfStr = ConvertToUTF8(&szCharText[0]); - if(text.size() > 0) { - text.insert(text.end() -1, utfStr[0]); - } - else { - text = utfStr[0]; - } + port = " (" + intToStr (portNumber) + ")"; + labelServerPort.setText (port); - delete [] utfStr; + GraphicComponent::applyAllCustomProperties (containerName); - labelServerIp.setText(text); - } - } - //else if (c=='.') { - else if (key == SDLK_PERIOD) { - if((int)labelServerIp.getText().size() < maxTextSize) { - string text= labelServerIp.getText(); - if(text.size() > 0) { - text.insert(text.end() -1, '.'); - } - else { - text = "."; - } + chatManager.init (&console, -1); + } - labelServerIp.setText(text); - } - } - //else if (c==':') { - else if (key == SDLK_COLON) { - if((int)labelServerIp.getText().size() < maxTextSize) { - string text= labelServerIp.getText(); - if(text.size() > 0) { - text.insert(text.end() -1, ':'); - } - else { - text = ":"; - } + void MenuStateJoinGame::reloadUI () + { + Lang & lang = Lang::getInstance (); + Config & config = Config::getInstance (); - labelServerIp.setText(text); - } - } - } - else { - chatManager.keyPress(c); - } -} + console.resetFonts (); -bool MenuStateJoinGame::connectToServer() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] START\n",__FILE__,__FUNCTION__); + buttonReturn.setText (lang.getString ("Return")); + buttonConnect.setText (lang.getString ("Connect")); + buttonCreateGame.setText (lang.getString ("HostGame")); + buttonAutoFindServers.setText (lang.getString ("FindLANGames")); + labelServerType.setText (lang.getString ("ServerType")); - Config& config= Config::getInstance(); - string host = labelServerIp.getText(); - int port = config.getInt("PortServer",intToStr(GameConstants::serverPort).c_str()); - std::vector hostPartsList; - Tokenize(host,hostPartsList,":"); - if(hostPartsList.size() > 1) { - host = hostPartsList[0]; - replaceAll(hostPartsList[1],"_",""); - port = strToInt(hostPartsList[1]); - } - Ip serverIp(host); + std::vector < string > listboxData; + listboxData.push_back (lang.getString ("ServerTypeNew")); + listboxData.push_back (lang.getString ("ServerTypePrevious")); + listboxData.push_back (lang.getString ("ServerTypeFound")); + listBoxServerType.setItems (listboxData); - ClientInterface* clientInterface= NetworkManager::getInstance().getClientInterface(); - clientInterface->connect(serverIp, port); + labelServer.setText (lang.getString ("Server")); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] server - [%s]\n",__FILE__,__FUNCTION__,serverIp.getString().c_str()); + labelServerPortLabel.setText (lang.getString ("ServerPort")); - labelServerIp.setText(serverIp.getString() + '_'); - labelInfo.setText(""); + string host = labelServerIp.getText (); + int portNumber = config.getInt ("PortServer", + intToStr (GameConstants::serverPort). + c_str ()); + std::vector < std::string > hostPartsList; + Tokenize (host, hostPartsList, ":"); + if (hostPartsList.size () > 1) + { + host = hostPartsList[0]; + replaceAll (hostPartsList[1], "_", ""); + portNumber = strToInt (hostPartsList[1]); + } - //save server ip - if(config.getString("ServerIp") != serverIp.getString()) { - config.setString("ServerIp", serverIp.getString()); - config.save(); - } + string port = " (" + intToStr (portNumber) + ")"; + labelServerPort.setText (port); - for(time_t elapsedWait = time(NULL); - clientInterface->getIntroDone() == false && - clientInterface->isConnected() && - difftime(time(NULL),elapsedWait) <= 10;) { - if(clientInterface->isConnected()) { - //update lobby - clientInterface->updateLobby(); - sleep(0); - //this->render(); - } - } - if( clientInterface->isConnected() == true && - clientInterface->getIntroDone() == true) { + chatManager.init (&console, -1); - string saveHost = Ip(host).getString(); - if(hostPartsList.size() > 1) { - saveHost += ":" + hostPartsList[1]; - } - servers.setString(clientInterface->getServerName(), saveHost); - servers.save(serversSavedFile); + GraphicComponent::reloadFontsForRegisterGraphicComponents + (containerName); + } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d] Using FTP port #: %d\n",__FILE__,__FUNCTION__,__LINE__,clientInterface->getServerFTPPort()); - abortAutoFind = true; - clientInterface->stopServerDiscovery(); - mainMenu->setState(new MenuStateConnectedGame(program, mainMenu)); - return true; - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] END\n",__FILE__,__FUNCTION__); - return false; -} + MenuStateJoinGame::~MenuStateJoinGame () + { + abortAutoFind = true; -}}//end namespace +#ifdef DEBUG + PRINT_DEBUG ("In [%s::%s Line: %d]\n", __FILE__, __FUNCTION__, + __LINE__); +#endif + } + + void MenuStateJoinGame::DiscoveredServers (std::vector < string > + serverList) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (abortAutoFind == true) + { + return; + } +// Testing multi-server +//serverList.push_back("test1"); +//serverList.push_back("test2"); +// + +#ifdef DEBUG + PRINT_DEBUG ("In [%s::%s Line: %d] serverList.size() = %d\n", __FILE__, + __FUNCTION__, __LINE__, (int) serverList.size ()); +#endif + + autoConnectToServer = false; + buttonAutoFindServers.setEnabled (true); + buttonConnect.setEnabled (true); + if (serverList.empty () == false) + { + Config & config = Config::getInstance (); + string bestIPMatch = ""; + int serverGamePort = config.getInt ("PortServer", + intToStr (GameConstants:: + serverPort).c_str ()); + std::vector < std::string > localIPList = + Socket::getLocalIPAddressList (); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", __FILE__, __FUNCTION__, __LINE__); + + for (int idx = 0; idx < (int) serverList.size (); idx++) + { + + vector < string > paramPartPortsTokens; + Tokenize (serverList[idx], paramPartPortsTokens, ":"); + if (paramPartPortsTokens.size () >= 2 + && paramPartPortsTokens[1].length () > 0) + { + serverGamePort = strToInt (paramPartPortsTokens[1]); + } + + bestIPMatch = serverList[idx]; + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] bestIPMatch = [%s]\n", + __FILE__, __FUNCTION__, __LINE__, + bestIPMatch.c_str ()); + if (localIPList.empty () == true) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", __FILE__, __FUNCTION__, + __LINE__); + break; + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] bestIPMatch = [%s] localIPList[0] = [%s]\n", + __FILE__, __FUNCTION__, __LINE__, + bestIPMatch.c_str (), + localIPList[0].c_str ()); + if (strncmp (localIPList[0].c_str (), serverList[idx].c_str (), 4) + == 0) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", __FILE__, __FUNCTION__, + __LINE__); + break; + } + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (bestIPMatch != "") + { + bestIPMatch += ":" + intToStr (serverGamePort); + } + labelServerIp.setText (bestIPMatch); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (serverList.size () > 1) + { + listBoxServerType.setSelectedItemIndex (MenuStateJoinGame:: + foundServersIndex); + listBoxFoundServers.setItems (serverList); + } + else + { + autoConnectToServer = true; + } + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d]\n", __FILE__, __FUNCTION__, __LINE__); + } + + void MenuStateJoinGame::mouseClick (int x, int y, MouseButton mouseButton) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] START\n", __FILE__, + __FUNCTION__); + + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + NetworkManager & networkManager = NetworkManager::getInstance (); + ClientInterface *clientInterface = networkManager.getClientInterface (); + + if (clientInterface->isConnected () == false) + { +//server type + if (listBoxServerType.mouseClick (x, y)) + { + if (!listBoxServers.getText ().empty ()) + { + labelServerIp. + setText (servers.getString (listBoxServers.getText ()) + "_"); + } + } +//server list + else if (listBoxServerType.getSelectedItemIndex () == + newPrevServerIndex) + { + if (listBoxServers.mouseClick (x, y)) + { + labelServerIp. + setText (servers.getString (listBoxServers.getText ()) + "_"); + } + } + else if (listBoxServerType.getSelectedItemIndex () == + foundServersIndex) + { + if (listBoxFoundServers.mouseClick (x, y)) + { + labelServerIp.setText (listBoxFoundServers.getText ()); + } + } + + string host = labelServerIp.getText (); + Config & config = Config::getInstance (); + int portNumber = config.getInt ("PortServer", + intToStr (GameConstants::serverPort). + c_str ()); + std::vector < std::string > hostPartsList; + Tokenize (host, hostPartsList, ":"); + if (hostPartsList.size () > 1) + { + host = hostPartsList[0]; + replaceAll (hostPartsList[1], "_", ""); + portNumber = strToInt (hostPartsList[1]); + } + + string port = " (" + intToStr (portNumber) + ")"; + labelServerPort.setText (port); + + } + +//return + if (buttonReturn.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + + clientInterface->stopServerDiscovery (); + + if (clientInterface->getSocket () != NULL) + { +//if(clientInterface->isConnected() == true) { +// string sQuitText = Config::getInstance().getString("NetPlayerName",Socket::getHostName().c_str()) + " has chosen to leave the game!"; +// clientInterface->sendTextMessage(sQuitText,-1); +//} + clientInterface->close (); + } + abortAutoFind = true; + mainMenu->setState (new MenuStateNewGame (program, mainMenu)); + return; + } + +//connect + else if (buttonConnect.mouseClick (x, y) + && buttonConnect.getEnabled () == true) + { + ClientInterface *clientInterface = + networkManager.getClientInterface (); + + soundRenderer.playFx (coreData.getClickSoundB ()); + labelInfo.setText (""); + + if (clientInterface->isConnected ()) + { + clientInterface->reset (); + } + else + { + if (connectToServer () == true) + { + return; + } + } + } + else if (buttonCreateGame.mouseClick (x, y)) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundB ()); + + clientInterface->stopServerDiscovery (); + if (clientInterface->getSocket () != NULL) + { + clientInterface->close (); + } + abortAutoFind = true; + mainMenu->setState (new + MenuStateCustomGame (program, mainMenu, true, + pLanGame)); + return; + } + + else if (buttonAutoFindServers.mouseClick (x, y) + && buttonAutoFindServers.getEnabled () == true) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + ClientInterface *clientInterface = + networkManager.getClientInterface (); + soundRenderer.playFx (coreData.getClickSoundB ()); + +// Triggers a thread which calls back into MenuStateJoinGame::DiscoveredServers +// with the results + if (clientInterface->isConnected () == false) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + buttonAutoFindServers.setEnabled (false); + buttonConnect.setEnabled (false); + clientInterface->discoverServers (this); + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] END\n", __FILE__, + __FUNCTION__); + } + + void MenuStateJoinGame::mouseMove (int x, int y, const MouseState * ms) + { + buttonReturn.mouseMove (x, y); + buttonConnect.mouseMove (x, y); + buttonAutoFindServers.mouseMove (x, y); + buttonCreateGame.mouseMove (x, y); + listBoxServerType.mouseMove (x, y); + +//hide-show options depending on the selection + if (listBoxServers.getSelectedItemIndex () == newServerIndex) + { + labelServerIp.mouseMove (x, y); + } + else if (listBoxServers.getSelectedItemIndex () == newPrevServerIndex) + { + listBoxServers.mouseMove (x, y); + } + else + { + listBoxFoundServers.mouseMove (x, y); + } + } + + void MenuStateJoinGame::render () + { + Renderer & renderer = Renderer::getInstance (); + + renderer.renderButton (&buttonReturn); + renderer.renderLabel (&labelServer); + renderer.renderLabel (&labelServerType); + renderer.renderLabel (&labelStatus); + renderer.renderLabel (&labelInfo); + renderer.renderLabel (&labelServerPort); + renderer.renderLabel (&labelServerPortLabel); + renderer.renderButton (&buttonConnect); + renderer.renderButton (&buttonCreateGame); + + renderer.renderButton (&buttonAutoFindServers); + renderer.renderListBox (&listBoxServerType); + + if (listBoxServerType.getSelectedItemIndex () == newServerIndex) + { + renderer.renderLabel (&labelServerIp); + } + else if (listBoxServerType.getSelectedItemIndex () == + newPrevServerIndex) + { + renderer.renderListBox (&listBoxServers); + } + else + { + renderer.renderListBox (&listBoxFoundServers); + } + + renderer.renderChatManager (&chatManager); + renderer.renderConsole (&console); + + if (program != NULL) + program->renderProgramMsgBox (); + } + + void MenuStateJoinGame::update () + { + ClientInterface *clientInterface = + NetworkManager::getInstance ().getClientInterface (); + Lang & lang = Lang::getInstance (); + +//update status label + if (clientInterface->isConnected ()) + { + buttonConnect.setText (lang.getString ("Disconnect")); + + if (clientInterface->getAllowDownloadDataSynch () == false) + { + string label = lang.getString ("ConnectedToServer"); + + if (!clientInterface->getServerName ().empty ()) + { + label = label + " " + clientInterface->getServerName (); + } + + if (clientInterface->getAllowGameDataSynchCheck () == true && + clientInterface->getNetworkGameDataSynchCheckOk () == false) + { + label = label + " - warning synch mismatch for:"; + if (clientInterface->getNetworkGameDataSynchCheckOkMap () == + false) + { + label = label + " map"; + } + if (clientInterface->getNetworkGameDataSynchCheckOkTile () == + false) + { + label = label + " tile"; + } + if (clientInterface->getNetworkGameDataSynchCheckOkTech () == + false) + { + label = label + " techtree"; + } + } + else if (clientInterface->getAllowGameDataSynchCheck () == true) + { + label += " - data synch is ok"; + } + labelStatus.setText (label); + } + else + { + string label = lang.getString ("ConnectedToServer"); + + if (!clientInterface->getServerName ().empty ()) + { + label = label + " " + clientInterface->getServerName (); + } + + if (clientInterface->getAllowGameDataSynchCheck () == true && + clientInterface->getNetworkGameDataSynchCheckOk () == false) + { + label = label + " - waiting to synch:"; + if (clientInterface->getNetworkGameDataSynchCheckOkMap () == + false) + { + label = label + " map"; + } + if (clientInterface->getNetworkGameDataSynchCheckOkTile () == + false) + { + label = label + " tile"; + } + if (clientInterface->getNetworkGameDataSynchCheckOkTech () == + false) + { + label = label + " techtree"; + } + } + else if (clientInterface->getAllowGameDataSynchCheck () == true) + { + label += " - data synch is ok"; + } + + labelStatus.setText (label); + } + } + else + { + buttonConnect.setText (lang.getString ("Connect")); + string connectedStatus = lang.getString ("NotConnected"); + if (buttonAutoFindServers.getEnabled () == false) + { + connectedStatus += " - searching for servers, please wait..."; + } + labelStatus.setText (connectedStatus); + labelInfo.setText (""); + } + +//process network messages + if (clientInterface->isConnected ()) + { +//update lobby + clientInterface->updateLobby (); + + clientInterface = + NetworkManager::getInstance ().getClientInterface (); + if (clientInterface != NULL && clientInterface->isConnected ()) + { +//call the chat manager + chatManager.updateNetwork (); + +//console + console.update (); + +//intro + if (clientInterface->getIntroDone ()) + { + labelInfo.setText (lang.getString ("WaitingHost")); + + string host = labelServerIp.getText (); + std::vector < std::string > hostPartsList; + Tokenize (host, hostPartsList, ":"); + if (hostPartsList.size () > 1) + { + host = hostPartsList[0]; + replaceAll (hostPartsList[1], "_", ""); + } + string saveHost = Ip (host).getString (); + if (hostPartsList.size () > 1) + { + saveHost += ":" + hostPartsList[1]; + } + + servers.setString (clientInterface->getServerName (), saveHost); + } + +//launch + if (clientInterface->getLaunchGame ()) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] clientInterface->getLaunchGame() - A\n", + __FILE__, __FUNCTION__); + + servers.save (serversSavedFile); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] clientInterface->getLaunchGame() - B\n", + __FILE__, __FUNCTION__); + + abortAutoFind = true; + clientInterface->stopServerDiscovery (); + program->setState (new + Game (program, + clientInterface->getGameSettings (), + false)); + return; + } + } + } + else if (autoConnectToServer == true) + { + autoConnectToServer = false; + if (connectToServer () == true) + { + return; + } + } + + if (clientInterface != NULL && clientInterface->getLaunchGame ()) + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] clientInterface->getLaunchGame() - D\n", + __FILE__, __FUNCTION__); + } + + bool MenuStateJoinGame::textInput (std::string text) + { + if (chatManager.getEditEnabled () == true) + { + return chatManager.textInput (text); + } + return false; + } + + void MenuStateJoinGame::keyDown (SDL_KeyboardEvent key) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] key = [%c][%d]\n", + __FILE__, __FUNCTION__, __LINE__, + key.keysym.sym, key.keysym.sym); + + ClientInterface *clientInterface = + NetworkManager::getInstance ().getClientInterface (); + if (clientInterface->isConnected () == false) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + + string text = labelServerIp.getText (); + if (isKeyPressed (SDLK_BACKSPACE, key) == true && text.length () > 0) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + size_t found = text.find_last_of ("_"); + if (found == string::npos) + { + text.erase (text.end () - 1); + } + else + { + if (text.size () > 1) + { + text.erase (text.end () - 2); + } + } + + labelServerIp.setText (text); + } +//else if(key == configKeys.getCharKey("SaveGUILayout")) { + else if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) == + true) + { + bool saved = + GraphicComponent::saveAllCustomProperties (containerName); + Lang & lang = Lang::getInstance (); + console.addLine (lang.getString ("GUILayoutSaved") + " [" + + (saved ? lang. + getString ("Yes") : lang.getString ("No")) + "]"); + } + } + else + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + +//send key to the chat manager + chatManager.keyDown (key); + + if (chatManager.getEditEnabled () == false) + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); +//if(key == configKeys.getCharKey("SaveGUILayout")) { + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) == + true) + { + bool saved = + GraphicComponent::saveAllCustomProperties (containerName); + Lang & lang = Lang::getInstance (); + console.addLine (lang.getString ("GUILayoutSaved") + " [" + + (saved ? lang. + getString ("Yes") : lang.getString ("No")) + + "]"); + } + } + } + } + + void MenuStateJoinGame::keyPress (SDL_KeyboardEvent c) + { + ClientInterface *clientInterface = + NetworkManager::getInstance ().getClientInterface (); + + if (clientInterface->isConnected () == false) + { + int maxTextSize = 22; + +//Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); + + SDL_Keycode key = extractKeyPressed (c); + +//if(c>='0' && c<='9') { + if ((key >= SDLK_0 && key <= SDLK_9) || + (key >= SDLK_KP_0 && key <= SDLK_KP_9)) + { + if ((int) labelServerIp.getText ().size () < maxTextSize) + { + string text = labelServerIp.getText (); +//text.insert(text.end()-1, key); + char szCharText[26] = ""; + snprintf (szCharText, 26, "%c", key); + char *utfStr = ConvertToUTF8 (&szCharText[0]); + if (text.size () > 0) + { + text.insert (text.end () - 1, utfStr[0]); + } + else + { + text = utfStr[0]; + } + + delete[]utfStr; + + labelServerIp.setText (text); + } + } +//else if (c=='.') { + else if (key == SDLK_PERIOD) + { + if ((int) labelServerIp.getText ().size () < maxTextSize) + { + string text = labelServerIp.getText (); + if (text.size () > 0) + { + text.insert (text.end () - 1, '.'); + } + else + { + text = "."; + } + + labelServerIp.setText (text); + } + } +//else if (c==':') { + else if (key == SDLK_COLON) + { + if ((int) labelServerIp.getText ().size () < maxTextSize) + { + string text = labelServerIp.getText (); + if (text.size () > 0) + { + text.insert (text.end () - 1, ':'); + } + else + { + text = ":"; + } + + labelServerIp.setText (text); + } + } + } + else + { + chatManager.keyPress (c); + } + } + + bool MenuStateJoinGame::connectToServer () + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] START\n", __FILE__, + __FUNCTION__); + + Config & config = Config::getInstance (); + string host = labelServerIp.getText (); + int port = config.getInt ("PortServer", + intToStr (GameConstants::serverPort). + c_str ()); + std::vector < std::string > hostPartsList; + Tokenize (host, hostPartsList, ":"); + if (hostPartsList.size () > 1) + { + host = hostPartsList[0]; + replaceAll (hostPartsList[1], "_", ""); + port = strToInt (hostPartsList[1]); + } + Ip serverIp (host); + + ClientInterface *clientInterface = + NetworkManager::getInstance ().getClientInterface (); + clientInterface->connect (serverIp, port); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] server - [%s]\n", __FILE__, + __FUNCTION__, + serverIp.getString ().c_str ()); + + labelServerIp.setText (serverIp.getString () + '_'); + labelInfo.setText (""); + +//save server ip + if (config.getString ("ServerIp") != serverIp.getString ()) + { + config.setString ("ServerIp", serverIp.getString ()); + config.save (); + } + + for (time_t elapsedWait = time (NULL); + clientInterface->getIntroDone () == false && + clientInterface->isConnected () && + difftime (time (NULL), elapsedWait) <= 10;) + { + if (clientInterface->isConnected ()) + { +//update lobby + clientInterface->updateLobby (); + sleep (0); +//this->render(); + } + } + if (clientInterface->isConnected () == true && + clientInterface->getIntroDone () == true) + { + + string saveHost = Ip (host).getString (); + if (hostPartsList.size () > 1) + { + saveHost += ":" + hostPartsList[1]; + } + servers.setString (clientInterface->getServerName (), saveHost); + servers.save (serversSavedFile); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d] Using FTP port #: %d\n", + __FILE__, __FUNCTION__, __LINE__, + clientInterface->getServerFTPPort ()); + abortAutoFind = true; + clientInterface->stopServerDiscovery (); + mainMenu->setState (new MenuStateConnectedGame (program, mainMenu)); + return true; + } + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] END\n", __FILE__, + __FUNCTION__); + return false; + } + + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_join_game.h b/source/glest_game/menu/menu_state_join_game.h index c4cac3f88..c6545fc29 100644 --- a/source/glest_game/menu/menu_state_join_game.h +++ b/source/glest_game/menu/menu_state_join_game.h @@ -1,99 +1,129 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2005 Martio Figueroa +// Copyright (C) 2001-2005 Martio Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATEJOINGAME_H_ -#define _GLEST_GAME_MENUSTATEJOINGAME_H_ +# define _GLEST_GAME_MENUSTATEJOINGAME_H_ -#ifdef WIN32 - #include - #include -#endif +# ifdef WIN32 +# include +# include +# endif -#include "properties.h" -#include "main_menu.h" -#include "chat_manager.h" -#include -#include -#include "leak_dumper.h" +# include "properties.h" +# include "main_menu.h" +# include "chat_manager.h" +# include +# include +# include "leak_dumper.h" using Shared::Util::Properties; -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { -class NetworkMessageIntro; + class NetworkMessageIntro; // =============================== -// class MenuStateJoinGame +// class MenuStateJoinGame // =============================== -class MenuStateJoinGame: public MenuState, public DiscoveredServersInterface { -private: - static const int newServerIndex; - static const int newPrevServerIndex; - static const int foundServersIndex; - static const string serverFileName; + class MenuStateJoinGame: + public MenuState, public DiscoveredServersInterface + { + private: + static const int + newServerIndex; + static const int + newPrevServerIndex; + static const int + foundServersIndex; + static const + string + serverFileName; -private: - GraphicButton buttonReturn; - GraphicButton buttonConnect; - GraphicButton buttonAutoFindServers; - GraphicButton buttonCreateGame; + private: + GraphicButton buttonReturn; + GraphicButton buttonConnect; + GraphicButton buttonAutoFindServers; + GraphicButton buttonCreateGame; - GraphicLabel labelServer; - GraphicLabel labelServerType; - GraphicLabel labelServerIp; - GraphicLabel labelStatus; - GraphicLabel labelInfo; - GraphicListBox listBoxServerType; - GraphicListBox listBoxServers; - GraphicListBox listBoxFoundServers; - GraphicLabel labelServerPort; - GraphicLabel labelServerPortLabel; + GraphicLabel labelServer; + GraphicLabel labelServerType; + GraphicLabel labelServerIp; + GraphicLabel labelStatus; + GraphicLabel labelInfo; + GraphicListBox listBoxServerType; + GraphicListBox listBoxServers; + GraphicListBox listBoxFoundServers; + GraphicLabel labelServerPort; + GraphicLabel labelServerPortLabel; - bool connected; - int playerIndex; - Properties servers; + bool connected; + int + playerIndex; + Properties servers; - //Console console; - ChatManager chatManager; +//Console console; + ChatManager chatManager; - string serversSavedFile; - bool abortAutoFind; - bool autoConnectToServer; + string serversSavedFile; + bool abortAutoFind; + bool autoConnectToServer; -public: - MenuStateJoinGame(Program *program, MainMenu *mainMenu, bool connect= false, Ip serverIp= Ip(),int portNumberOverride=-1); - MenuStateJoinGame(Program *program, MainMenu *mainMenu, bool *autoFindHost); - virtual ~MenuStateJoinGame(); + public: + MenuStateJoinGame (Program * program, MainMenu * mainMenu, + bool connect = false, Ip serverIp = + Ip (), int portNumberOverride = -1); + MenuStateJoinGame (Program * program, MainMenu * mainMenu, + bool * autoFindHost); + virtual ~ MenuStateJoinGame (); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - void update(); + void + mouseClick (int x, int y, MouseButton mouseButton); + void + mouseMove (int x, int y, const MouseState * mouseState); + void + render (); + void + update (); - virtual bool textInput(std::string text); - virtual void keyDown(SDL_KeyboardEvent key); - virtual void keyPress(SDL_KeyboardEvent c); + virtual + bool + textInput (std::string text); + virtual void + keyDown (SDL_KeyboardEvent key); + virtual void + keyPress (SDL_KeyboardEvent c); - virtual bool isInSpecialKeyCaptureEvent() { return chatManager.getEditEnabled(); } + virtual + bool + isInSpecialKeyCaptureEvent () + { + return chatManager.getEditEnabled (); + } - void reloadUI(); + void + reloadUI (); -private: + private: - void CommonInit(bool connect, Ip serverIp,int portNumberOverride); - bool connectToServer(); - virtual void DiscoveredServers(std::vector serverList); -}; -}}//end namespace + void + CommonInit (bool connect, Ip serverIp, int portNumberOverride); + bool connectToServer (); + virtual void + DiscoveredServers (std::vector < string > serverList); + }; +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_keysetup.cpp b/source/glest_game/menu/menu_state_keysetup.cpp index e2403d892..92c4eae04 100644 --- a/source/glest_game/menu/menu_state_keysetup.cpp +++ b/source/glest_game/menu/menu_state_keysetup.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2011- by Titus Tscharntke +// Copyright (C) 2011- by Titus Tscharntke // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_keysetup.h" @@ -27,604 +27,841 @@ #include "leak_dumper.h" -namespace Glest{ namespace Game{ - - -// ===================================================== -// class MenuStateKeysetup -// ===================================================== - -MenuStateKeysetup::MenuStateKeysetup(Program *program, MainMenu *mainMenu, - ProgramState **parentUI) : - MenuState(program, mainMenu, "config"), - buttonOk("KeySetup","buttonOk"), - buttonDefaults("KeySetup","buttonDefaults"), - buttonReturn("KeySetup","buttonReturn"), - - buttonKeyboardSetup("KeySetup","buttonKeyboardSetup"), - buttonVideoSection("KeySetup","buttonVideoSection"), - buttonAudioSection("KeySetup","buttonAudioSection"), - buttonMiscSection("KeySetup","buttonMiscSection"), - buttonNetworkSettings("KeySetup","buttonNetworkSettings"), - - labelTitle("KeySetup","labelTitle"), - - keyScrollBar("KeySetup","keyScrollBar"), - - mainMessageBox("KeySetup","mainMessageBox"), - - labelTestTitle("KeySetup","labelTestTitle"), - labelTestValue("KeySetup","labelTestValue") - +namespace Glest { - try { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - containerName = "KeySetup"; + namespace Game + { - keyButtonsLineHeight=30; - keyButtonsHeight=25; - keyButtonsWidth=400; - keyButtonsXBase=200; - keyButtonsYBase=200+400-keyButtonsLineHeight; - keyButtonsToRender=400/keyButtonsLineHeight; - int labelWidth=100; - this->parentUI = parentUI; - this->console.setOnlyChatMessagesInStoredLines(false); - hotkeyIndex = -1; - hotkeyChar = SDLK_UNKNOWN; +// ===================================================== +// class MenuStateKeysetup +// ===================================================== - Lang &lang= Lang::getInstance(); - int buttonStartPos=170; - int buttonRowPos=50; - if(this->parentUI==NULL){ - int tabButtonWidth=200; - int tabButtonHeight=30; + MenuStateKeysetup::MenuStateKeysetup (Program * program, + MainMenu * mainMenu, + ProgramState ** + parentUI):MenuState (program, + mainMenu, + "config"), + buttonOk ("KeySetup", "buttonOk"), buttonDefaults ("KeySetup", + "buttonDefaults"), + buttonReturn ("KeySetup", "buttonReturn"), + buttonKeyboardSetup ("KeySetup", "buttonKeyboardSetup"), + buttonVideoSection ("KeySetup", "buttonVideoSection"), + buttonAudioSection ("KeySetup", "buttonAudioSection"), + buttonMiscSection ("KeySetup", "buttonMiscSection"), + buttonNetworkSettings ("KeySetup", "buttonNetworkSettings"), + labelTitle ("KeySetup", "labelTitle"), keyScrollBar ("KeySetup", + "keyScrollBar"), + mainMessageBox ("KeySetup", "mainMessageBox"), + labelTestTitle ("KeySetup", "labelTestTitle"), + labelTestValue ("KeySetup", "labelTestValue") + { + try + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + containerName = "KeySetup"; - buttonAudioSection.init(0, 720,tabButtonWidth,tabButtonHeight); - buttonAudioSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonAudioSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonAudioSection.setText(lang.getString("Audio")); - // Video Section - buttonVideoSection.init(200, 720,tabButtonWidth,tabButtonHeight); - buttonVideoSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonVideoSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonVideoSection.setText(lang.getString("Video")); - //currentLine-=lineOffset; - //MiscSection - buttonMiscSection.init(400, 720,tabButtonWidth,tabButtonHeight); - buttonMiscSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonMiscSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonMiscSection.setText(lang.getString("Misc")); - //NetworkSettings - buttonNetworkSettings.init(600, 720,tabButtonWidth,tabButtonHeight); - buttonNetworkSettings.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonNetworkSettings.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonNetworkSettings.setText(lang.getString("Network")); + keyButtonsLineHeight = 30; + keyButtonsHeight = 25; + keyButtonsWidth = 400; + keyButtonsXBase = 200; + keyButtonsYBase = 200 + 400 - keyButtonsLineHeight; + keyButtonsToRender = 400 / keyButtonsLineHeight; + int labelWidth = 100; - //KeyboardSetup - buttonKeyboardSetup.init(800, 700,tabButtonWidth,tabButtonHeight+20); - buttonKeyboardSetup.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonKeyboardSetup.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonKeyboardSetup.setText(lang.getString("Keyboardsetup")); - } - // header - labelTitle.init(375,650); - labelTitle.setFont(CoreData::getInstance().getMenuFontVeryBig()); - labelTitle.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - labelTitle.setText(lang.getString("KeyboardsetupL")); + this->parentUI = parentUI; + this->console.setOnlyChatMessagesInStoredLines (false); + hotkeyIndex = -1; + hotkeyChar = SDLK_UNKNOWN; - labelTestTitle.init(keyButtonsXBase,155); - labelTestTitle.setFont(CoreData::getInstance().getMenuFontNormal()); - labelTestTitle.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); - labelTestTitle.setText(lang.getString("KeyboardsetupTest")); + Lang & lang = Lang::getInstance (); + int buttonStartPos = 170; + int buttonRowPos = 50; + if (this->parentUI == NULL) + { + int tabButtonWidth = 200; + int tabButtonHeight = 30; - labelTestValue.init(keyButtonsXBase,155-28); - labelTestValue.setFont(CoreData::getInstance().getMenuFontBig()); - labelTestValue.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelTestValue.setRenderBackground(true); - labelTestValue.setMaxEditRenderWidth(keyButtonsWidth); - labelTestValue.setText(""); + buttonAudioSection.init (0, 720, tabButtonWidth, tabButtonHeight); + buttonAudioSection.setFont (CoreData::getInstance (). + getMenuFontVeryBig ()); + buttonAudioSection.setFont3D (CoreData::getInstance (). + getMenuFontVeryBig3D ()); + buttonAudioSection.setText (lang.getString ("Audio")); + // Video Section + buttonVideoSection.init (200, 720, tabButtonWidth, + tabButtonHeight); + buttonVideoSection.setFont (CoreData::getInstance (). + getMenuFontVeryBig ()); + buttonVideoSection.setFont3D (CoreData::getInstance (). + getMenuFontVeryBig3D ()); + buttonVideoSection.setText (lang.getString ("Video")); + //currentLine-=lineOffset; + //MiscSection + buttonMiscSection.init (400, 720, tabButtonWidth, + tabButtonHeight); + buttonMiscSection.setFont (CoreData::getInstance (). + getMenuFontVeryBig ()); + buttonMiscSection.setFont3D (CoreData::getInstance (). + getMenuFontVeryBig3D ()); + buttonMiscSection.setText (lang.getString ("Misc")); + //NetworkSettings + buttonNetworkSettings.init (600, 720, tabButtonWidth, + tabButtonHeight); + buttonNetworkSettings.setFont (CoreData::getInstance (). + getMenuFontVeryBig ()); + buttonNetworkSettings.setFont3D (CoreData::getInstance (). + getMenuFontVeryBig3D ()); + buttonNetworkSettings.setText (lang.getString ("Network")); - // mainMassegeBox - mainMessageBox.init(lang.getString("Ok")); - mainMessageBox.setEnabled(false); - mainMessageBoxState=0; + //KeyboardSetup + buttonKeyboardSetup.init (800, 700, tabButtonWidth, + tabButtonHeight + 20); + buttonKeyboardSetup.setFont (CoreData::getInstance (). + getMenuFontVeryBig ()); + buttonKeyboardSetup.setFont3D (CoreData::getInstance (). + getMenuFontVeryBig3D ()); + buttonKeyboardSetup.setText (lang.getString ("Keyboardsetup")); + } + // header + labelTitle.init (375, 650); + labelTitle.setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + labelTitle.setFont3D (CoreData::getInstance (). + getMenuFontVeryBig3D ()); + labelTitle.setText (lang.getString ("KeyboardsetupL")); - keyScrollBar.init(800,200,false,200,20); - keyScrollBar.setLength(400); - keyScrollBar.setElementCount(0); - keyScrollBar.setVisibleSize(keyButtonsToRender); - keyScrollBar.setVisibleStart(0); + labelTestTitle.init (keyButtonsXBase, 155); + labelTestTitle.setFont (CoreData::getInstance (). + getMenuFontNormal ()); + labelTestTitle.setFont3D (CoreData::getInstance (). + getMenuFontNormal3D ()); + labelTestTitle.setText (lang.getString ("KeyboardsetupTest")); - // buttons - buttonOk.init(buttonStartPos, buttonRowPos, 100); - buttonOk.setText(lang.getString("Save")); + labelTestValue.init (keyButtonsXBase, 155 - 28); + labelTestValue.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelTestValue.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + labelTestValue.setRenderBackground (true); + labelTestValue.setMaxEditRenderWidth (keyButtonsWidth); + labelTestValue.setText (""); - buttonReturn.init(buttonStartPos+110, buttonRowPos, 100); - buttonReturn.setText(lang.getString("Return")); + // mainMassegeBox + mainMessageBox.init (lang.getString ("Ok")); + mainMessageBox.setEnabled (false); + mainMessageBoxState = 0; - buttonDefaults.init(buttonStartPos+230, buttonRowPos, 125); - buttonDefaults.setText(lang.getString("Defaults")); + keyScrollBar.init (800, 200, false, 200, 20); + keyScrollBar.setLength (400); + keyScrollBar.setElementCount (0); + keyScrollBar.setVisibleSize (keyButtonsToRender); + keyScrollBar.setVisibleStart (0); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + // buttons + buttonOk.init (buttonStartPos, buttonRowPos, 100); + buttonOk.setText (lang.getString ("Save")); - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - mergedProperties=configKeys.getMergedProperties(); - masterProperties=configKeys.getMasterProperties(); - //userProperties=configKeys.getUserProperties(); - userProperties.clear(); + buttonReturn.init (buttonStartPos + 110, buttonRowPos, 100); + buttonReturn.setText (lang.getString ("Return")); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + buttonDefaults.init (buttonStartPos + 230, buttonRowPos, 125); + buttonDefaults.setText (lang.getString ("Defaults")); - //throw megaglest_runtime_error("Test!"); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); - for(int i = 0; i < (int)mergedProperties.size(); ++i) { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + mergedProperties = configKeys.getMergedProperties (); + masterProperties = configKeys.getMasterProperties (); + //userProperties=configKeys.getUserProperties(); + userProperties.clear (); - string keyName = mergedProperties[i].second; - if(keyName.length() > 0) { - //char c = configKeys.translateStringToCharKey(keyName); - SDL_Keycode c = configKeys.translateStringToSDLKey(keyName); - if(c > SDLK_UNKNOWN && c < SDL_NUM_SCANCODES) { - SDL_Keycode keysym = static_cast(c); - // SDL skips capital letters - if(keysym >= 65 && keysym <= 90) { - keysym = (SDL_Keycode)((int)keysym + 32); - } - keyName = SDL_GetKeyName(keysym); - } - else { - keyName = ""; - } - if(keyName == "unknown key" || keyName == "") { - keyName = mergedProperties[i].second; - } - } + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); - GraphicButton *button = new GraphicButton(containerName,string("ScrollButton")+intToStr(i)); - button->init(keyButtonsXBase, keyButtonsYBase, keyButtonsWidth,keyButtonsHeight); - button->setText(mergedProperties[i].first); - keyButtons.push_back(button); - GraphicLabel *label = new GraphicLabel(containerName,string("ScrollLabel")+intToStr(i)); - label->init(keyButtonsXBase+keyButtonsWidth+5,keyButtonsYBase,labelWidth,20); - label->setRenderBackground(true); - label->setMaxEditRenderWidth(105); - label->setText(" " + keyName); - labels.push_back(label); - } + //throw megaglest_runtime_error("Test!"); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + for (int i = 0; i < (int) mergedProperties.size (); ++i) + { - keyScrollBar.init(keyButtonsXBase+keyButtonsWidth+labelWidth+20,200,false,200,20); - keyScrollBar.setLength(400); - keyScrollBar.setElementCount((int)keyButtons.size()); - keyScrollBar.setVisibleSize(keyButtonsToRender); - keyScrollBar.setVisibleStart(0); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error detected:\n%s\n",__FILE__,__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); + string keyName = mergedProperties[i].second; + if (keyName.length () > 0) + { + //char c = configKeys.translateStringToCharKey(keyName); + SDL_Keycode c = configKeys.translateStringToSDLKey (keyName); + if (c > SDLK_UNKNOWN && c < SDL_NUM_SCANCODES) + { + SDL_Keycode keysym = static_cast < SDL_Keycode > (c); + // SDL skips capital letters + if (keysym >= 65 && keysym <= 90) + { + keysym = (SDL_Keycode) ((int) keysym + 32); + } + keyName = SDL_GetKeyName (keysym); + } + else + { + keyName = ""; + } + if (keyName == "unknown key" || keyName == "") + { + keyName = mergedProperties[i].second; + } + } - mainMessageBoxState=1; - showMessageBox( "Error: " + string(ex.what()), "Error detected", false); - } -} + GraphicButton *button = + new GraphicButton (containerName, + string ("ScrollButton") + intToStr (i)); + button->init (keyButtonsXBase, keyButtonsYBase, keyButtonsWidth, + keyButtonsHeight); + button->setText (mergedProperties[i].first); + keyButtons.push_back (button); + GraphicLabel *label = + new GraphicLabel (containerName, + string ("ScrollLabel") + intToStr (i)); + label->init (keyButtonsXBase + keyButtonsWidth + 5, keyButtonsYBase, + labelWidth, 20); + label->setRenderBackground (true); + label->setMaxEditRenderWidth (105); + label->setText (" " + keyName); + labels.push_back (label); + } -void MenuStateKeysetup::reloadUI() { - Lang &lang= Lang::getInstance(); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); - labelTitle.setText(lang.getString("KeyboardsetupL")); - labelTestTitle.setText(lang.getString("KeyboardsetupTest")); - labelTestValue.setText(""); + keyScrollBar.init (keyButtonsXBase + keyButtonsWidth + labelWidth + + 20, 200, false, 200, 20); + keyScrollBar.setLength (400); + keyScrollBar.setElementCount ((int) keyButtons.size ()); + keyScrollBar.setVisibleSize (keyButtonsToRender); + keyScrollBar.setVisibleStart (0); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d] Error detected:\n%s\n", + __FILE__, __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); - // mainMassegeBox - mainMessageBox.init(lang.getString("Ok")); - - buttonOk.setText(lang.getString("Save")); - buttonReturn.setText(lang.getString("Return")); - buttonDefaults.setText(lang.getString("Defaults")); -} - -void MenuStateKeysetup::cleanup() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - clearUserButtons(); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] END\n",__FILE__,__FUNCTION__,__LINE__); -} - -MenuStateKeysetup::~MenuStateKeysetup() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - cleanup(); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] END\n",__FILE__,__FUNCTION__,__LINE__); -} - -void MenuStateKeysetup::clearUserButtons() { - while(!keyButtons.empty()) { - delete keyButtons.back(); - keyButtons.pop_back(); - } - while(!labels.empty()) { - delete labels.back(); - labels.pop_back(); - } -} - -void MenuStateKeysetup::mouseClick(int x, int y, MouseButton mouseButton){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - if(mainMessageBox.getEnabled()){ - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) - { - soundRenderer.playFx(coreData.getClickSoundA()); - if(button==0) - { - mainMessageBox.setEnabled(false); - } - } - } - else if(keyScrollBar.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundB()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - } - else if(buttonReturn.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundB()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(this->parentUI != NULL) { - // Set the parent pointer to NULL so the owner knows it was deleted - *this->parentUI = NULL; - // Delete the main menu - delete mainMenu; - return; - } - mainMenu->setState(new MenuStateRoot(program, mainMenu)); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - } - else if(buttonDefaults.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundB()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - string userKeysFile = configKeys.getFileName(true); - - bool result = removeFile(userKeysFile.c_str()); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] delete file [%s] returned %d\n",__FILE__,__FUNCTION__,__LINE__,userKeysFile.c_str(),result); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] delete file [%s] returned %d\n",__FILE__,__FUNCTION__,__LINE__,userKeysFile.c_str(),result); - configKeys.reload(); - - if(this->parentUI != NULL) { - // Set the parent pointer to NULL so the owner knows it was deleted - *this->parentUI = NULL; - // Delete the main menu - delete mainMenu; - return; - } - - mainMenu->setState(new MenuStateKeysetup(program, mainMenu)); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - } - else if(buttonOk.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundB()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(userProperties.empty() == false) { - Config &config = Config::getInstance(); - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys), - std::pair(Config::glestkeys_ini_filename,Config::glestuserkeys_ini_filename), - std::pair(true,false),config.getString("GlestKeysIniPath","")); - string userKeysFile = configKeys.getFileName(true); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] save file [%s] userProperties.size() = " MG_SIZE_T_SPECIFIER "\n",__FILE__,__FUNCTION__,__LINE__,userKeysFile.c_str(),userProperties.size()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] save file [%s] userProperties.size() = " MG_SIZE_T_SPECIFIER "\n",__FILE__,__FUNCTION__,__LINE__,userKeysFile.c_str(),userProperties.size()); - - configKeys.setUserProperties(userProperties); - configKeys.save(); - configKeys.reload(); - } - - Lang &lang= Lang::getInstance(); - console.addLine(lang.getString("SettingsSaved")); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - } - else if ( keyScrollBar.getElementCount() != 0) { - for (int i = keyScrollBar.getVisibleStart(); i - <= keyScrollBar.getVisibleEnd(); ++i) { - if (keyButtons[i]->mouseClick(x, y)) { - hotkeyIndex = i; - hotkeyChar = SDLK_UNKNOWN; - break; - } - } - } - - if(this->parentUI==NULL){ - if(buttonKeyboardSetup.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - return; - } - else if(buttonAudioSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsSound(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonNetworkSettings.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsNetwork(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonMiscSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptions(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonVideoSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - } -} - -void MenuStateKeysetup::mouseUp(int x, int y, const MouseButton mouseButton){ - if (mouseButton == mbLeft) { - keyScrollBar.mouseUp(x, y); - } -} - -void MenuStateKeysetup::mouseMove(int x, int y, const MouseState *ms){ - buttonReturn.mouseMove(x, y); - buttonOk.mouseMove(x, y); - if(this->parentUI==NULL){ - buttonKeyboardSetup.mouseMove(x, y); - buttonAudioSection.mouseMove(x, y); - buttonNetworkSettings.mouseMove(x, y); - buttonMiscSection.mouseMove(x, y); - buttonVideoSection.mouseMove(x, y); - } - if (ms->get(mbLeft)) { - keyScrollBar.mouseDown(x, y); - } else { - keyScrollBar.mouseMove(x, y); - } - - if(keyScrollBar.getElementCount()!=0 ) { - for(int i = keyScrollBar.getVisibleStart(); i <= keyScrollBar.getVisibleEnd(); ++i) { - keyButtons[i]->mouseMove(x, y); - } + mainMessageBoxState = 1; + showMessageBox ("Error: " + string (ex.what ()), "Error detected", + false); + } } -} + void MenuStateKeysetup::reloadUI () + { + Lang & lang = Lang::getInstance (); -void MenuStateKeysetup::render(){ - Renderer &renderer= Renderer::getInstance(); + labelTitle.setText (lang.getString ("KeyboardsetupL")); + labelTestTitle.setText (lang.getString ("KeyboardsetupTest")); + labelTestValue.setText (""); - //printf("MenuStateKeysetup::render A\n"); + // mainMassegeBox + mainMessageBox.init (lang.getString ("Ok")); - if(mainMessageBox.getEnabled()) { - //printf("MenuStateKeysetup::render B\n"); - renderer.renderMessageBox(&mainMessageBox); - } - else { - //printf("MenuStateKeysetup::render C\n"); - renderer.renderButton(&buttonReturn); - renderer.renderButton(&buttonDefaults); - renderer.renderButton(&buttonOk); - if(this->parentUI==NULL){ - renderer.renderButton(&buttonKeyboardSetup); - renderer.renderButton(&buttonVideoSection); - renderer.renderButton(&buttonAudioSection); - renderer.renderButton(&buttonMiscSection); - renderer.renderButton(&buttonNetworkSettings); - } - renderer.renderLabel(&labelTitle); - renderer.renderLabel(&labelTestTitle); - renderer.renderLabel(&labelTestValue); + buttonOk.setText (lang.getString ("Save")); + buttonReturn.setText (lang.getString ("Return")); + buttonDefaults.setText (lang.getString ("Defaults")); + } - if(keyScrollBar.getElementCount()!=0 ) { - for(int i = keyScrollBar.getVisibleStart(); i <= keyScrollBar.getVisibleEnd(); ++i) { - if(hotkeyIndex == i) { - renderer.renderButton(keyButtons[i],&YELLOW); - } - else { - renderer.renderButton(keyButtons[i]); - } - renderer.renderLabel(labels[i]); - } - } - renderer.renderScrollBar(&keyScrollBar); - } + void MenuStateKeysetup::cleanup () + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + clearUserButtons (); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] END\n", __FILE__, + __FUNCTION__, __LINE__); + } - renderer.renderConsole(&console); - if(program != NULL) program->renderProgramMsgBox(); -} + MenuStateKeysetup::~MenuStateKeysetup () + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + cleanup (); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] END\n", __FILE__, + __FUNCTION__, __LINE__); + } -void MenuStateKeysetup::update() { - //printf("MenuStateKeysetup::update A\n"); + void MenuStateKeysetup::clearUserButtons () + { + while (!keyButtons.empty ()) + { + delete keyButtons.back (); + keyButtons.pop_back (); + } + while (!labels.empty ()) + { + delete labels.back (); + labels.pop_back (); + } + } - if (keyScrollBar.getElementCount() != 0) { - for (int i = keyScrollBar.getVisibleStart(); i - <= keyScrollBar.getVisibleEnd(); ++i) { - keyButtons[i]->setY(keyButtonsYBase - keyButtonsLineHeight * (i - - keyScrollBar.getVisibleStart())); - labels[i]->setY(keyButtonsYBase - keyButtonsLineHeight * (i - - keyScrollBar.getVisibleStart())); - } - } + void MenuStateKeysetup::mouseClick (int x, int y, MouseButton mouseButton) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); - console.update(); -} + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + + if (mainMessageBox.getEnabled ()) + { + int button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (button == 0) + { + mainMessageBox.setEnabled (false); + } + } + } + else if (keyScrollBar.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundB ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + else if (buttonReturn.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundB ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + if (this->parentUI != NULL) + { + // Set the parent pointer to NULL so the owner knows it was deleted + *this->parentUI = NULL; + // Delete the main menu + delete mainMenu; + return; + } + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + else if (buttonDefaults.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundB ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + string userKeysFile = configKeys.getFileName (true); + + bool result = removeFile (userKeysFile.c_str ()); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] delete file [%s] returned %d\n", + __FILE__, __FUNCTION__, __LINE__, userKeysFile.c_str (), + result); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] delete file [%s] returned %d\n", + __FILE__, __FUNCTION__, __LINE__, + userKeysFile.c_str (), result); + configKeys.reload (); + + if (this->parentUI != NULL) + { + // Set the parent pointer to NULL so the owner knows it was deleted + *this->parentUI = NULL; + // Delete the main menu + delete mainMenu; + return; + } + + mainMenu->setState (new MenuStateKeysetup (program, mainMenu)); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + else if (buttonOk.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundB ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + if (userProperties.empty () == false) + { + Config & config = Config::getInstance (); + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys), + std::pair < string, + string > (Config::glestkeys_ini_filename, + Config:: + glestuserkeys_ini_filename), + std::pair < bool, bool > (true, false), + config.getString ("GlestKeysIniPath", "")); + string userKeysFile = configKeys.getFileName (true); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("In [%s::%s Line: %d] save file [%s] userProperties.size() = " + MG_SIZE_T_SPECIFIER "\n", __FILE__, __FUNCTION__, __LINE__, + userKeysFile.c_str (), userProperties.size ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] save file [%s] userProperties.size() = " + MG_SIZE_T_SPECIFIER "\n", __FILE__, + __FUNCTION__, __LINE__, + userKeysFile.c_str (), + userProperties.size ()); + + configKeys.setUserProperties (userProperties); + configKeys.save (); + configKeys.reload (); + } + + Lang & lang = Lang::getInstance (); + console.addLine (lang.getString ("SettingsSaved")); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + else if (keyScrollBar.getElementCount () != 0) + { + for (int i = keyScrollBar.getVisibleStart (); i + <= keyScrollBar.getVisibleEnd (); ++i) + { + if (keyButtons[i]->mouseClick (x, y)) + { + hotkeyIndex = i; + hotkeyChar = SDLK_UNKNOWN; + break; + } + } + } + + if (this->parentUI == NULL) + { + if (buttonKeyboardSetup.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + return; + } + else if (buttonAudioSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsSound (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonNetworkSettings.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsNetwork (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonMiscSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptions (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonVideoSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsGraphics (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + } + } + + void MenuStateKeysetup::mouseUp (int x, int y, + const MouseButton mouseButton) + { + if (mouseButton == mbLeft) + { + keyScrollBar.mouseUp (x, y); + } + } + + void MenuStateKeysetup::mouseMove (int x, int y, const MouseState * ms) + { + buttonReturn.mouseMove (x, y); + buttonOk.mouseMove (x, y); + if (this->parentUI == NULL) + { + buttonKeyboardSetup.mouseMove (x, y); + buttonAudioSection.mouseMove (x, y); + buttonNetworkSettings.mouseMove (x, y); + buttonMiscSection.mouseMove (x, y); + buttonVideoSection.mouseMove (x, y); + } + if (ms->get (mbLeft)) + { + keyScrollBar.mouseDown (x, y); + } + else + { + keyScrollBar.mouseMove (x, y); + } + + if (keyScrollBar.getElementCount () != 0) + { + for (int i = keyScrollBar.getVisibleStart (); + i <= keyScrollBar.getVisibleEnd (); ++i) + { + keyButtons[i]->mouseMove (x, y); + } + } + + } + + void MenuStateKeysetup::render () + { + Renderer & renderer = Renderer::getInstance (); + + //printf("MenuStateKeysetup::render A\n"); + + if (mainMessageBox.getEnabled ()) + { + //printf("MenuStateKeysetup::render B\n"); + renderer.renderMessageBox (&mainMessageBox); + } + else + { + //printf("MenuStateKeysetup::render C\n"); + renderer.renderButton (&buttonReturn); + renderer.renderButton (&buttonDefaults); + renderer.renderButton (&buttonOk); + if (this->parentUI == NULL) + { + renderer.renderButton (&buttonKeyboardSetup); + renderer.renderButton (&buttonVideoSection); + renderer.renderButton (&buttonAudioSection); + renderer.renderButton (&buttonMiscSection); + renderer.renderButton (&buttonNetworkSettings); + } + renderer.renderLabel (&labelTitle); + renderer.renderLabel (&labelTestTitle); + renderer.renderLabel (&labelTestValue); + + if (keyScrollBar.getElementCount () != 0) + { + for (int i = keyScrollBar.getVisibleStart (); + i <= keyScrollBar.getVisibleEnd (); ++i) + { + if (hotkeyIndex == i) + { + renderer.renderButton (keyButtons[i], &YELLOW); + } + else + { + renderer.renderButton (keyButtons[i]); + } + renderer.renderLabel (labels[i]); + } + } + renderer.renderScrollBar (&keyScrollBar); + } + + renderer.renderConsole (&console); + if (program != NULL) + program->renderProgramMsgBox (); + } + + void MenuStateKeysetup::update () + { + //printf("MenuStateKeysetup::update A\n"); + + if (keyScrollBar.getElementCount () != 0) + { + for (int i = keyScrollBar.getVisibleStart (); i + <= keyScrollBar.getVisibleEnd (); ++i) + { + keyButtons[i]->setY (keyButtonsYBase - keyButtonsLineHeight * (i + - + keyScrollBar. + getVisibleStart + ())); + labels[i]->setY (keyButtonsYBase - + keyButtonsLineHeight * (i - + keyScrollBar. + getVisibleStart ())); + } + } + + console.update (); + } -void MenuStateKeysetup::showMessageBox(const string &text, const string &header, bool toggle){ - if(!toggle){ - mainMessageBox.setEnabled(false); - } + void MenuStateKeysetup::showMessageBox (const string & text, + const string & header, + bool toggle) + { + if (!toggle) + { + mainMessageBox.setEnabled (false); + } - if(!mainMessageBox.getEnabled()){ - mainMessageBox.setText(text); - mainMessageBox.setHeader(header); - mainMessageBox.setEnabled(true); - } - else{ - mainMessageBox.setEnabled(false); - } -} + if (!mainMessageBox.getEnabled ()) + { + mainMessageBox.setText (text); + mainMessageBox.setHeader (header); + mainMessageBox.setEnabled (true); + } + else + { + mainMessageBox.setEnabled (false); + } + } -void MenuStateKeysetup::keyDown(SDL_KeyboardEvent key) { - hotkeyChar = extractKeyPressed(key); - //printf("\nkeyDown [%d]\n",hotkeyChar); + void MenuStateKeysetup::keyDown (SDL_KeyboardEvent key) + { + hotkeyChar = extractKeyPressed (key); + //printf("\nkeyDown [%d]\n",hotkeyChar); - string keyName = ""; - //if(hotkeyChar > SDLK_UNKNOWN && hotkeyChar < SDL_NUM_SCANCODES) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf ("In [%s::%s Line: %d] keyName [%s] char [%d][%d]\n",__FILE__,__FUNCTION__,__LINE__,keyName.c_str(),hotkeyChar,key.keysym.sym); - keyName = SDL_GetKeyName(hotkeyChar); - //printf ("In [%s::%s Line: %d] keyName [%s] char [%d][%d]\n",__FILE__,__FUNCTION__,__LINE__,keyName.c_str(),hotkeyChar,key.keysym.sym); - //} - //key = hotkeyChar; + string keyName = ""; + //if(hotkeyChar > SDLK_UNKNOWN && hotkeyChar < SDL_NUM_SCANCODES) { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] keyName [%s] char [%d][%d]\n", __FILE__, + __FUNCTION__, __LINE__, keyName.c_str (), hotkeyChar, + key.keysym.sym); + keyName = SDL_GetKeyName (hotkeyChar); + //printf ("In [%s::%s Line: %d] keyName [%s] char [%d][%d]\n",__FILE__,__FUNCTION__,__LINE__,keyName.c_str(),hotkeyChar,key.keysym.sym); + //} + //key = hotkeyChar; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf ("In [%s::%s Line: %d] keyName [%s] char [%d][%d]\n",__FILE__,__FUNCTION__,__LINE__,keyName.c_str(),hotkeyChar,key.keysym.sym); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] keyName [%s] char [%d][%d]\n", __FILE__, + __FUNCTION__, __LINE__, keyName.c_str (), hotkeyChar, + key.keysym.sym); -// SDLKey keysym = SDLK_UNKNOWN; -// if(keyName == "unknown key" || keyName == "") { -// Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); -// keysym = configKeys.translateSpecialStringToSDLKey(hotkeyChar); +// SDLKey keysym = SDLK_UNKNOWN; +// if(keyName == "unknown key" || keyName == "") { +// Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); +// keysym = configKeys.translateSpecialStringToSDLKey(hotkeyChar); // -// if(SystemFlags::VERBOSE_MODE_ENABLED) printf ("In [%s::%s Line: %d] keysym [%d]\n",__FILE__,__FUNCTION__,__LINE__,keysym); +// if(SystemFlags::VERBOSE_MODE_ENABLED) printf ("In [%s::%s Line: %d] keysym [%d]\n",__FILE__,__FUNCTION__,__LINE__,keysym); // -// // SDL skips capital letters -// if(keysym >= 65 && keysym <= 90) { -// keysym = (SDLKey)((int)keysym + 32); -// } -// //if(keysym < 255) { -// // key = keysym; -// //} -// keyName = SDL_GetKeyName(keysym); -// } +// // SDL skips capital letters +// if(keysym >= 65 && keysym <= 90) { +// keysym = (SDLKey)((int)keysym + 32); +// } +// //if(keysym < 255) { +// // key = keysym; +// //} +// keyName = SDL_GetKeyName(keysym); +// } - char szCharText[20]=""; - snprintf(szCharText,20,"%c",hotkeyChar); - char *utfStr = ConvertToUTF8(&szCharText[0]); + char szCharText[20] = ""; + snprintf (szCharText, 20, "%c", hotkeyChar); + char *utfStr = ConvertToUTF8 (&szCharText[0]); - char szBuf[8096] = ""; - snprintf(szBuf,8096," %s [%s][%d][%d][%d]",keyName.c_str(),utfStr,key.keysym.sym,hotkeyChar,key.keysym.mod); - labelTestValue.setText(szBuf); - //printf ("In [%s::%s Line: %d] szBuf [%s]\n",__FILE__,__FUNCTION__,__LINE__,szBuf); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, " %s [%s][%d][%d][%d]", keyName.c_str (), + utfStr, key.keysym.sym, hotkeyChar, key.keysym.mod); + labelTestValue.setText (szBuf); + //printf ("In [%s::%s Line: %d] szBuf [%s]\n",__FILE__,__FUNCTION__,__LINE__,szBuf); - delete [] utfStr; + delete[]utfStr; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] hotkeyChar [%d]\n",__FILE__,__FUNCTION__,__LINE__,hotkeyChar); -} + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] hotkeyChar [%d]\n", __FILE__, + __FUNCTION__, __LINE__, hotkeyChar); + } -void MenuStateKeysetup::keyPress(SDL_KeyboardEvent c) { -} + void MenuStateKeysetup::keyPress (SDL_KeyboardEvent c) + { + } -void MenuStateKeysetup::keyUp(SDL_KeyboardEvent key) { - //Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); + void MenuStateKeysetup::keyUp (SDL_KeyboardEvent key) + { + //Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - if(hotkeyIndex >= 0) { - if(hotkeyChar != 0) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf ("In [%s::%s Line: %d] char [%d][%d]\n",__FILE__,__FUNCTION__,__LINE__,hotkeyChar,key.keysym.sym); + if (hotkeyIndex >= 0) + { + if (hotkeyChar != 0) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] char [%d][%d]\n", __FILE__, + __FUNCTION__, __LINE__, hotkeyChar, key.keysym.sym); - //string keyName = ""; - //if(hotkeyChar > SDLK_UNKNOWN && hotkeyChar < SDL_NUM_SCANCODES) { + //string keyName = ""; + //if(hotkeyChar > SDLK_UNKNOWN && hotkeyChar < SDL_NUM_SCANCODES) { - string keyName = SDL_GetKeyName(key.keysym.sym); - if(StartsWith(keyName,"Keypad ") == false) { - keyName = SDL_GetKeyName(hotkeyChar); - key.keysym.sym = hotkeyChar; - } - //} - //key.keysym.sym = hotkeyChar; + string keyName = SDL_GetKeyName (key.keysym.sym); + if (StartsWith (keyName, "Keypad ") == false) + { + keyName = SDL_GetKeyName (hotkeyChar); + key.keysym.sym = hotkeyChar; + } + //} + //key.keysym.sym = hotkeyChar; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf ("In [%s::%s Line: %d] keyName [%s] char [%d][%d]\n",__FILE__,__FUNCTION__,__LINE__,keyName.c_str(),hotkeyChar,key.keysym.sym); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] keyName [%s] char [%d][%d]\n", + __FILE__, __FUNCTION__, __LINE__, keyName.c_str (), + hotkeyChar, key.keysym.sym); - //SDLKey keysym = SDLK_UNKNOWN; -// if(keyName == "unknown key" || keyName == "") { -// Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); -// keysym = configKeys.translateSpecialStringToSDLKey(hotkeyChar); + //SDLKey keysym = SDLK_UNKNOWN; +// if(keyName == "unknown key" || keyName == "") { +// Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); +// keysym = configKeys.translateSpecialStringToSDLKey(hotkeyChar); // -// if(SystemFlags::VERBOSE_MODE_ENABLED) printf ("In [%s::%s Line: %d] keysym [%d]\n",__FILE__,__FUNCTION__,__LINE__,keysym); +// if(SystemFlags::VERBOSE_MODE_ENABLED) printf ("In [%s::%s Line: %d] keysym [%d]\n",__FILE__,__FUNCTION__,__LINE__,keysym); // -// // SDL skips capital letters -// if(keysym >= 65 && keysym <= 90) { -// keysym = (SDLKey)((int)keysym + 32); -// } -// if(keysym < 255) { -// key = keysym; -// } -// keyName = SDL_GetKeyName(keysym); -// } +// // SDL skips capital letters +// if(keysym >= 65 && keysym <= 90) { +// keysym = (SDLKey)((int)keysym + 32); +// } +// if(keysym < 255) { +// key = keysym; +// } +// keyName = SDL_GetKeyName(keysym); +// } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf ("In [%s::%s Line: %d] keyName [%s] char [%d][%d]\n",__FILE__,__FUNCTION__,__LINE__,keyName.c_str(),hotkeyChar,key.keysym.sym); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] keyName [%s] char [%d][%d]\n", + __FILE__, __FUNCTION__, __LINE__, keyName.c_str (), + hotkeyChar, key.keysym.sym); - if(keyName != "unknown key") { - GraphicLabel *label= labels[hotkeyIndex]; - label->setText(keyName); + if (keyName != "unknown key") + { + GraphicLabel *label = labels[hotkeyIndex]; + label->setText (keyName); - pair &nameValuePair = mergedProperties[hotkeyIndex]; + pair < string, string > &nameValuePair = + mergedProperties[hotkeyIndex]; - // Need to distinguish numeric keys to be translated to real keys - // from these ACTUAL sdl keys so surround in quotes. - //printf("KeyUp #1 keyName [%s]\n", keyName.c_str()); + // Need to distinguish numeric keys to be translated to real keys + // from these ACTUAL sdl keys so surround in quotes. + //printf("KeyUp #1 keyName [%s]\n", keyName.c_str()); - if(keyName.size() == 1 && keyName[0] >= '0' && keyName[0] <= '9') { - keyName = "'" + keyName + "'"; - } - //printf("KeyUp #2 keyName [%s]\n", keyName.c_str()); + if (keyName.size () == 1 && keyName[0] >= '0' + && keyName[0] <= '9') + { + keyName = "'" + keyName + "'"; + } + //printf("KeyUp #2 keyName [%s]\n", keyName.c_str()); - bool isNewUserKeyEntry = true; - for(int i = 0; i < (int)userProperties.size(); ++i) { - string hotKeyName = userProperties[i].first; - if(nameValuePair.first == hotKeyName) { -// if(keysym <= SDLK_ESCAPE || keysym > 255) { -// if(keysym <= SDLK_ESCAPE) { -// userProperties[i].second = intToStr(extractKeyPressed(key)); -// } -// else { -// userProperties[i].second = keyName; -// } -// } -// else { -// userProperties[i].second = ""; -// userProperties[i].second.push_back(extractKeyPressed(key)); -// } - userProperties[i].second = keyName; - isNewUserKeyEntry = false; - break; - } - } - if(isNewUserKeyEntry == true) { - pair newNameValuePair = nameValuePair; -// if(keysym <= SDLK_ESCAPE || keysym > 255) { -// if(keysym <= SDLK_ESCAPE) { -// newNameValuePair.second = intToStr(extractKeyPressed(key)); -// } -// else { -// newNameValuePair.second = keyName; -// } -// } -// else { -// newNameValuePair.second = extractKeyPressed(key); -// } - newNameValuePair.second = keyName; - userProperties.push_back(newNameValuePair); - } - } - } + bool isNewUserKeyEntry = true; + for (int i = 0; i < (int) userProperties.size (); ++i) + { + string hotKeyName = userProperties[i].first; + if (nameValuePair.first == hotKeyName) + { +// if(keysym <= SDLK_ESCAPE || keysym > 255) { +// if(keysym <= SDLK_ESCAPE) { +// userProperties[i].second = intToStr(extractKeyPressed(key)); +// } +// else { +// userProperties[i].second = keyName; +// } +// } +// else { +// userProperties[i].second = ""; +// userProperties[i].second.push_back(extractKeyPressed(key)); +// } + userProperties[i].second = keyName; + isNewUserKeyEntry = false; + break; + } + } + if (isNewUserKeyEntry == true) + { + pair < string, string > newNameValuePair = nameValuePair; +// if(keysym <= SDLK_ESCAPE || keysym > 255) { +// if(keysym <= SDLK_ESCAPE) { +// newNameValuePair.second = intToStr(extractKeyPressed(key)); +// } +// else { +// newNameValuePair.second = keyName; +// } +// } +// else { +// newNameValuePair.second = extractKeyPressed(key); +// } + newNameValuePair.second = keyName; + userProperties.push_back (newNameValuePair); + } + } + } hotkeyIndex = -1; hotkeyChar = SDLK_UNKNOWN; + } } -} -}}//end namespace + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_keysetup.h b/source/glest_game/menu/menu_state_keysetup.h index add7352ae..60e3a1fbf 100644 --- a/source/glest_game/menu/menu_state_keysetup.h +++ b/source/glest_game/menu/menu_state_keysetup.h @@ -1,97 +1,106 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2011- by Titus Tscharntke +// Copyright (C) 2011- by Titus Tscharntke // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATEKEYSETUP_H_ -#define _GLEST_GAME_MENUSTATEKEYSETUP_H_ +# define _GLEST_GAME_MENUSTATEKEYSETUP_H_ -#include "main_menu.h" -#include "server_line.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "server_line.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class +// class // =============================== -typedef vector UserButtons; -typedef vector GraphicLabels; + typedef vector < GraphicButton * >UserButtons; + typedef vector < GraphicLabel * >GraphicLabels; -class MenuStateKeysetup: public MenuState { + class MenuStateKeysetup:public MenuState + { -private: + private: - GraphicButton buttonOk; - GraphicButton buttonDefaults; - GraphicButton buttonReturn; + GraphicButton buttonOk; + GraphicButton buttonDefaults; + GraphicButton buttonReturn; - GraphicButton buttonKeyboardSetup; // configure the keyboard - GraphicButton buttonVideoSection; - GraphicButton buttonAudioSection; - GraphicButton buttonMiscSection; - GraphicButton buttonNetworkSettings; + GraphicButton buttonKeyboardSetup; // configure the keyboard + GraphicButton buttonVideoSection; + GraphicButton buttonAudioSection; + GraphicButton buttonMiscSection; + GraphicButton buttonNetworkSettings; - GraphicLabel labelTitle; + GraphicLabel labelTitle; - GraphicScrollBar keyScrollBar; - UserButtons keyButtons; - GraphicLabels labels; - int keyButtonsToRender; - int keyButtonsYBase; - int keyButtonsXBase; - int keyButtonsLineHeight; - int keyButtonsHeight; - int keyButtonsWidth; + GraphicScrollBar keyScrollBar; + UserButtons keyButtons; + GraphicLabels labels; + int keyButtonsToRender; + int keyButtonsYBase; + int keyButtonsXBase; + int keyButtonsLineHeight; + int keyButtonsHeight; + int keyButtonsWidth; - GraphicMessageBox mainMessageBox; - int mainMessageBoxState; - vector > mergedProperties; - vector > masterProperties; - vector > userProperties; + GraphicMessageBox mainMessageBox; + int mainMessageBoxState; + vector < pair < string, string > >mergedProperties; + vector < pair < string, string > >masterProperties; + vector < pair < string, string > >userProperties; - int hotkeyIndex; - //char hotkeyChar; - SDL_Keycode hotkeyChar; + int hotkeyIndex; + //char hotkeyChar; + SDL_Keycode hotkeyChar; - GraphicLabel labelTestTitle; - GraphicLabel labelTestValue; + GraphicLabel labelTestTitle; + GraphicLabel labelTestValue; - ProgramState **parentUI; + ProgramState **parentUI; -public: - MenuStateKeysetup(Program *program, MainMenu *mainMenu, ProgramState **parentUI=NULL); - virtual ~MenuStateKeysetup(); + public: + MenuStateKeysetup (Program * program, MainMenu * mainMenu, + ProgramState ** parentUI = NULL); + virtual ~ MenuStateKeysetup (); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseUp(int x, int y, const MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void update(); - void render(); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseUp (int x, int y, const MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void update (); + void render (); - virtual void keyDown(SDL_KeyboardEvent key); - virtual void keyPress(SDL_KeyboardEvent c); - virtual void keyUp(SDL_KeyboardEvent key); + virtual void keyDown (SDL_KeyboardEvent key); + virtual void keyPress (SDL_KeyboardEvent c); + virtual void keyUp (SDL_KeyboardEvent key); - virtual bool isInSpecialKeyCaptureEvent() { return true; } + virtual bool isInSpecialKeyCaptureEvent () + { + return true; + } - //static void setDisplayMessageFunction(DisplayMessageFunction pDisplayMessage) { pCB_DisplayMessage = pDisplayMessage; } + //static void setDisplayMessageFunction(DisplayMessageFunction pDisplayMessage) { pCB_DisplayMessage = pDisplayMessage; } - void reloadUI(); + void reloadUI (); -private: - void showMessageBox(const string &text, const string &header, bool toggle); - void clearUserButtons(); - void cleanup(); -}; + private: + void showMessageBox (const string & text, const string & header, + bool toggle); + void clearUserButtons (); + void cleanup (); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_load_game.cpp b/source/glest_game/menu/menu_state_load_game.cpp index 876c65e16..ae8e96ea4 100644 --- a/source/glest_game/menu/menu_state_load_game.cpp +++ b/source/glest_game/menu/menu_state_load_game.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_load_game.h" @@ -23,459 +23,609 @@ #include "leak_dumper.h" -namespace Glest{ namespace Game{ - -// ===================================================== -// class MenuStateLoadGame -// ===================================================== - -MenuStateLoadGame::MenuStateLoadGame(Program *program, MainMenu *mainMenu): - MenuState(program, mainMenu, "root") +namespace Glest { - containerName = "LoadGame"; - Lang &lang= Lang::getInstance(); + namespace Game + { - int buttonWidth = 120; - int yPos=40; - int xPos=20; - int xSpacing=20; - int slotsToRender=20; - int slotWidth=200; +// ===================================================== +// class MenuStateLoadGame +// ===================================================== - slotLinesYBase=650; - slotsLineHeight=30; - previewTexture=NULL; - buttonToDelete=NULL; + MenuStateLoadGame::MenuStateLoadGame (Program * program, + MainMenu * + mainMenu):MenuState (program, + mainMenu, + "root") + { + containerName = "LoadGame"; + Lang & lang = Lang::getInstance (); - selectedButton=NULL; + int buttonWidth = 120; + int yPos = 40; + int xPos = 20; + int xSpacing = 20; + int slotsToRender = 20; + int slotWidth = 200; - string userData = Config::getInstance().getString("UserData_Root",""); - if(getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) != "") { - userData = getGameReadWritePath(GameConstants::path_logs_CacheLookupKey); - } - if(userData != "") { - endPathWithSlash(userData); + slotLinesYBase = 650; + slotsLineHeight = 30; + previewTexture = NULL; + buttonToDelete = NULL; + + selectedButton = NULL; + + string userData = + Config::getInstance ().getString ("UserData_Root", ""); + if (getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) != + "") + { + userData = + getGameReadWritePath (GameConstants::path_logs_CacheLookupKey); + } + if (userData != "") + { + endPathWithSlash (userData); + } + saveGameDir = userData + "saved/"; + + lines[0].init (0, slotLinesYBase + slotsLineHeight); + lines[1].init (0, + slotLinesYBase - (slotsToRender - 1) * slotsLineHeight - + 5); + + headerLabel.registerGraphicComponent (containerName, "headerLabel"); + headerLabel.init (400, 730); + headerLabel.setFont (CoreData::getInstance ().getMenuFontBig ()); + headerLabel.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + headerLabel.setText (lang.getString ("LoadGameMenu")); + + noSavedGamesLabel.registerGraphicComponent (containerName, + "noSavedGamesLabel"); + noSavedGamesLabel.init (20, 400); + noSavedGamesLabel.setFont (CoreData::getInstance ().getMenuFontBig ()); + noSavedGamesLabel.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + noSavedGamesLabel.setText (lang.getString ("NoSavedGames")); + + savedGamesLabel.registerGraphicComponent (containerName, + "savedGamesLabel"); + savedGamesLabel.init (150, slotLinesYBase + slotsLineHeight + 10); + savedGamesLabel.setFont (CoreData::getInstance ().getMenuFontBig ()); + savedGamesLabel.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + savedGamesLabel.setText (lang.getString ("SavedGames")); + + infoHeaderLabel.registerGraphicComponent (containerName, + "infoHeaderLabel"); + infoHeaderLabel.init (600, slotLinesYBase + slotsLineHeight + 10); + infoHeaderLabel.setFont (CoreData::getInstance ().getMenuFontBig ()); + infoHeaderLabel.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + infoHeaderLabel.setText (lang.getString ("SavegameInfo")); + + versionWarningLabel.registerGraphicComponent (containerName, + "versionWarningLabel"); + versionWarningLabel.init (550, 350); + versionWarningLabel.setText (""); + versionWarningLabel.setTextColor (Vec3f (1.0f, 0.5f, 0.5f)); + + + infoTextLabel.registerGraphicComponent (containerName, "infoTextLabel"); + infoTextLabel.init (550, 310); + infoTextLabel.setText (""); + + abortButton.registerGraphicComponent (containerName, "abortButton"); + abortButton.init (xPos, yPos, buttonWidth); + abortButton.setText (lang.getString ("Abort")); + xPos += buttonWidth + xSpacing; + loadButton.registerGraphicComponent (containerName, "loadButton"); + loadButton.init (xPos, yPos, buttonWidth + 80); + loadButton.setText (lang.getString ("LoadGame")); + xPos += buttonWidth + 80 + xSpacing; + deleteButton.registerGraphicComponent (containerName, "deleteButton"); + deleteButton.init (xPos, yPos, buttonWidth); + deleteButton.setText (lang.getString ("Delete")); + + slotsScrollBar.init (500 - 20, + slotLinesYBase - slotsLineHeight * (slotsToRender - + 1), false, + slotWidth, 20); + slotsScrollBar.setLength (slotsLineHeight * slotsToRender); + slotsScrollBar.setElementCount (0); + slotsScrollBar.setVisibleSize (slotsToRender); + slotsScrollBar.setVisibleStart (0); + + listFiles (); + slotsScrollBar.setElementCount ((int) filenames.size ()); + + mainMessageBox.registerGraphicComponent (containerName, + "mainMessageBox"); + mainMessageBox.init (lang.getString ("Ok"), 450); + mainMessageBox.setEnabled (false); + + GraphicComponent::applyAllCustomProperties (containerName); } - saveGameDir = userData +"saved/"; - lines[0].init(0,slotLinesYBase+slotsLineHeight); - lines[1].init(0, slotLinesYBase-(slotsToRender-1)*slotsLineHeight-5); + MenuStateLoadGame::~MenuStateLoadGame () + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + clearSlots (); - headerLabel.registerGraphicComponent(containerName,"headerLabel"); - headerLabel.init(400, 730); - headerLabel.setFont(CoreData::getInstance().getMenuFontBig()); - headerLabel.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - headerLabel.setText(lang.getString("LoadGameMenu")); + cleanupTexture (&previewTexture); - noSavedGamesLabel.registerGraphicComponent(containerName,"noSavedGamesLabel"); - noSavedGamesLabel.init(20, 400); - noSavedGamesLabel.setFont(CoreData::getInstance().getMenuFontBig()); - noSavedGamesLabel.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - noSavedGamesLabel.setText(lang.getString("NoSavedGames")); - - savedGamesLabel.registerGraphicComponent(containerName,"savedGamesLabel"); - savedGamesLabel.init(150, slotLinesYBase+slotsLineHeight+10); - savedGamesLabel.setFont(CoreData::getInstance().getMenuFontBig()); - savedGamesLabel.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - savedGamesLabel.setText(lang.getString("SavedGames")); - - infoHeaderLabel.registerGraphicComponent(containerName,"infoHeaderLabel"); - infoHeaderLabel.init(600, slotLinesYBase+slotsLineHeight+10); - infoHeaderLabel.setFont(CoreData::getInstance().getMenuFontBig()); - infoHeaderLabel.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - infoHeaderLabel.setText(lang.getString("SavegameInfo")); - - versionWarningLabel.registerGraphicComponent(containerName,"versionWarningLabel"); - versionWarningLabel.init(550, 350); - versionWarningLabel.setText(""); - versionWarningLabel.setTextColor(Vec3f(1.0f,0.5f,0.5f)); - - - infoTextLabel.registerGraphicComponent(containerName,"infoTextLabel"); - infoTextLabel.init(550, 310); - infoTextLabel.setText(""); - - abortButton.registerGraphicComponent(containerName,"abortButton"); - abortButton.init(xPos, yPos, buttonWidth); - abortButton.setText(lang.getString("Abort")); - xPos+=buttonWidth+xSpacing; - loadButton.registerGraphicComponent(containerName,"loadButton"); - loadButton.init(xPos, yPos, buttonWidth+80); - loadButton.setText(lang.getString("LoadGame")); - xPos+=buttonWidth+80+xSpacing; - deleteButton.registerGraphicComponent(containerName,"deleteButton"); - deleteButton.init(xPos, yPos, buttonWidth); - deleteButton.setText(lang.getString("Delete")); - - slotsScrollBar.init(500-20,slotLinesYBase-slotsLineHeight*(slotsToRender-1),false,slotWidth,20); - slotsScrollBar.setLength(slotsLineHeight*slotsToRender); - slotsScrollBar.setElementCount(0); - slotsScrollBar.setVisibleSize(slotsToRender); - slotsScrollBar.setVisibleStart(0); - - listFiles(); - slotsScrollBar.setElementCount((int)filenames.size()); - - mainMessageBox.registerGraphicComponent(containerName,"mainMessageBox"); - mainMessageBox.init(lang.getString("Ok"),450); - mainMessageBox.setEnabled(false); - - GraphicComponent::applyAllCustomProperties(containerName); -} - -MenuStateLoadGame::~MenuStateLoadGame() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - clearSlots(); - - cleanupTexture(&previewTexture); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] END\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateLoadGame::cleanupTexture(Texture2D **texture) { - if(texture != NULL && *texture != NULL) { - (*texture)->end(); - delete *texture; - *texture=NULL; - } -} - -void MenuStateLoadGame::clearSlots() { - while(!slots.empty()) { - delete slots.back(); - slots.pop_back(); - slotsGB.pop_back(); - } -} - -void MenuStateLoadGame::listFiles() { - int keyButtonsXBase = 2; - int keyButtonsYBase = slotLinesYBase; - int keyButtonsWidth = 476; - int keyButtonsHeight = slotsLineHeight; - - clearSlots(); - // Save the file now - vector paths; - paths.push_back(saveGameDir); - filenames.clear(); - findAll(paths, "*.xml", filenames, true, false, true); - sort(filenames.begin(),filenames.end()); - for(int i = (int)filenames.size()-1; i > -1; i--) { - GraphicButton *button=new GraphicButton(); - button->init( keyButtonsXBase, keyButtonsYBase, keyButtonsWidth,keyButtonsHeight); - button->setText(filenames[i]); - - slots.push_back(button); - slotsGB.push_back(button); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] END\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); } -} - -void MenuStateLoadGame::reloadUI() { - Lang &lang= Lang::getInstance(); - - infoHeaderLabel.setText(lang.getString("SavegameInfo")); - savedGamesLabel.setText(lang.getString("SavedGames")); - noSavedGamesLabel.setText(lang.getString("NoSavedGames")); - headerLabel.setText(lang.getString("LoadGameMenu")); - - abortButton.setText(lang.getString("Abort")); - deleteButton.setText(lang.getString("Delete")); - loadButton.setText(lang.getString("LoadGame")); - - mainMessageBox.init(lang.getString("Ok"),450); - - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} - -void MenuStateLoadGame::mouseClick(int x, int y, MouseButton mouseButton){ - - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - if(mainMessageBox.getEnabled()) { - soundRenderer.playFx(coreData.getClickSoundA()); - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - mainMessageBox.setEnabled(false); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok"),450); - } - } - if(abortButton.mouseClick(x, y)) { - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateRoot(program, mainMenu)); + void MenuStateLoadGame::cleanupTexture (Texture2D ** texture) + { + if (texture != NULL && *texture != NULL) + { + (*texture)->end (); + delete *texture; + *texture = NULL; + } } - else if(deleteButton.mouseClick(x, y)) { - soundRenderer.playFx(coreData.getClickSoundB()); - if(selectedButton == NULL) { - console.addStdMessage("NothingSelected",true); - } - else { - string slotname = selectedButton->getText(); - string filename = saveGameDir + selectedButton->getText() + ".xml"; - string jpgfilename = saveGameDir + selectedButton->getText() + ".xml.jpg"; - string replayfilename = saveGameDir + selectedButton->getText() + ".xml.replay"; - Lang &lang= Lang::getInstance(); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("LoadGameDeletingFile","",true).c_str(),filename.c_str()); - console.addLineOnly(szBuf); - - for(int i = 0; i < (int)slots.size(); i++) { - if(slots[i] == selectedButton) { - if(removeFile(filename) == true) { - removeFile(jpgfilename); - removeFile(replayfilename); - cleanupTexture(&previewTexture); - - infoTextLabel.setText(""); - listFiles(); - slotsScrollBar.setElementCount((int)filenames.size()); - - selectedButton = NULL; - } - break; - } - } - } + void MenuStateLoadGame::clearSlots () + { + while (!slots.empty ()) + { + delete slots.back (); + slots.pop_back (); + slotsGB.pop_back (); + } } - else if(loadButton.mouseClick(x, y)) { - soundRenderer.playFx(coreData.getClickSoundB()); - if(selectedButton == NULL) { - console.addStdMessage("NothingSelected",true); - } - else { - string filename = saveGameDir + selectedButton->getText() + ".xml"; + void MenuStateLoadGame::listFiles () + { + int keyButtonsXBase = 2; + int keyButtonsYBase = slotLinesYBase; + int keyButtonsWidth = 476; + int keyButtonsHeight = slotsLineHeight; - Lang &lang= Lang::getInstance(); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("LoadGameLoadingFile","",true).c_str(),filename.c_str()); - console.addLineOnly(szBuf); + clearSlots (); + // Save the file now + vector < string > paths; + paths.push_back (saveGameDir); + filenames.clear (); + findAll (paths, "*.xml", filenames, true, false, true); + sort (filenames.begin (), filenames.end ()); + for (int i = (int)filenames.size () - 1; i > -1; i--) + { + GraphicButton *button = new GraphicButton (); + button->init (keyButtonsXBase, keyButtonsYBase, keyButtonsWidth, + keyButtonsHeight); + button->setText (filenames[i]); - try { - Game::loadGame(filename,program,false); - } - catch(const megaglest_runtime_error &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s Line: %d]\nError [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - - showMessageBox(ex.what(), lang.getString("Notice"), false); - } - return; - } + slots.push_back (button); + slotsGB.push_back (button); + } } - else if(slotsScrollBar.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - } - else { - if(slotsScrollBar.getElementCount()!=0){ - for(int i = slotsScrollBar.getVisibleStart(); i <= slotsScrollBar.getVisibleEnd(); ++i) { - if(slots[i]->mouseClick(x, y) && selectedButton != slots[i]) { - soundRenderer.playFx(coreData.getClickSoundB()); - Lang &lang= Lang::getInstance(); - cleanupTexture(&previewTexture); - selectedButton = slots[i]; - string filename = saveGameDir + selectedButton->getText()+".xml"; - string screenShotFilename = filename + ".jpg"; - if(fileExists(screenShotFilename) == true) { - try { - previewTexture = GraphicsInterface::getInstance().getFactory()->newTexture2D(); - if(previewTexture) { - previewTexture->setMipmap(true); - previewTexture->load(screenShotFilename); - previewTexture->init(); - } - } - catch(const megaglest_runtime_error &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s Line: %d]\nError [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - cleanupTexture(&previewTexture); - showMessageBox(ex.what(), lang.getString("Notice"), false); - } - } - else { - previewTexture=NULL; - } + void MenuStateLoadGame::reloadUI () + { + Lang & lang = Lang::getInstance (); - if(fileExists(filename) == true) { - // Xerces is infinitely slower than rapidxml - xml_engine_parser_type engine_type = XML_RAPIDXML_ENGINE; + infoHeaderLabel.setText (lang.getString ("SavegameInfo")); + savedGamesLabel.setText (lang.getString ("SavedGames")); + noSavedGamesLabel.setText (lang.getString ("NoSavedGames")); + headerLabel.setText (lang.getString ("LoadGameMenu")); + + abortButton.setText (lang.getString ("Abort")); + deleteButton.setText (lang.getString ("Delete")); + loadButton.setText (lang.getString ("LoadGame")); + + mainMessageBox.init (lang.getString ("Ok"), 450); + + GraphicComponent:: + reloadFontsForRegisterGraphicComponents (containerName); + } + + void MenuStateLoadGame::mouseClick (int x, int y, MouseButton mouseButton) + { + + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + + if (mainMessageBox.getEnabled ()) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + int button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + mainMessageBox.setEnabled (false); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok"), 450); + } + } + if (abortButton.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + } + else if (deleteButton.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + if (selectedButton == NULL) + { + console.addStdMessage ("NothingSelected", true); + } + else + { + string slotname = selectedButton->getText (); + string filename = saveGameDir + selectedButton->getText () + ".xml"; + string jpgfilename = + saveGameDir + selectedButton->getText () + ".xml.jpg"; + string replayfilename = + saveGameDir + selectedButton->getText () + ".xml.replay"; + + Lang & lang = Lang::getInstance (); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("LoadGameDeletingFile", "", + true).c_str (), filename.c_str ()); + console.addLineOnly (szBuf); + + for (int i = 0; i < (int) slots.size (); i++) + { + if (slots[i] == selectedButton) + { + if (removeFile (filename) == true) + { + removeFile (jpgfilename); + removeFile (replayfilename); + cleanupTexture (&previewTexture); + + infoTextLabel.setText (""); + listFiles (); + slotsScrollBar.setElementCount ((int) filenames.size ()); + + selectedButton = NULL; + } + break; + } + } + } + } + else if (loadButton.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + + if (selectedButton == NULL) + { + console.addStdMessage ("NothingSelected", true); + } + else + { + string filename = saveGameDir + selectedButton->getText () + ".xml"; + + Lang & lang = Lang::getInstance (); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("LoadGameLoadingFile", "", true).c_str (), + filename.c_str ()); + console.addLineOnly (szBuf); + + try + { + Game::loadGame (filename, program, false); + } + catch (const megaglest_runtime_error & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s Line: %d]\nError [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + + showMessageBox (ex.what (), lang.getString ("Notice"), false); + } + return; + } + } + else if (slotsScrollBar.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + } + else + { + if (slotsScrollBar.getElementCount () != 0) + { + for (int i = slotsScrollBar.getVisibleStart (); + i <= slotsScrollBar.getVisibleEnd (); ++i) + { + if (slots[i]->mouseClick (x, y) && selectedButton != slots[i]) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + + Lang & lang = Lang::getInstance (); + cleanupTexture (&previewTexture); + selectedButton = slots[i]; + string filename = + saveGameDir + selectedButton->getText () + ".xml"; + string screenShotFilename = filename + ".jpg"; + if (fileExists (screenShotFilename) == true) + { + try + { + previewTexture = + GraphicsInterface::getInstance ().getFactory ()-> + newTexture2D (); + if (previewTexture) + { + previewTexture->setMipmap (true); + previewTexture->load (screenShotFilename); + previewTexture->init (); + } + } + catch (const megaglest_runtime_error & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s Line: %d]\nError [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + + cleanupTexture (&previewTexture); + showMessageBox (ex.what (), lang.getString ("Notice"), + false); + } + } + else + { + previewTexture = NULL; + } + + if (fileExists (filename) == true) + { + // Xerces is infinitely slower than rapidxml + xml_engine_parser_type engine_type = XML_RAPIDXML_ENGINE; #if defined(WANT_XERCES) - if(Config::getInstance().getBool("ForceXMLLoadGameUsingXerces","false") == true) { - engine_type = XML_XERCES_ENGINE; - } + if (Config::getInstance (). + getBool ("ForceXMLLoadGameUsingXerces", "false") == true) + { + engine_type = XML_XERCES_ENGINE; + } #endif - XmlTree xmlTree(engine_type); + XmlTree xmlTree (engine_type); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Before load of XML\n"); - std::map mapExtraTagReplacementValues; - try { - xmlTree.load(filename, Properties::getTagReplacementValues(&mapExtraTagReplacementValues),true,false,true); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Before load of XML\n"); + std::map < string, string > mapExtraTagReplacementValues; + try + { + xmlTree.load (filename, + Properties:: + getTagReplacementValues + (&mapExtraTagReplacementValues), true, false, + true); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("After load of XML\n"); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("After load of XML\n"); - const XmlNode *rootNode= xmlTree.getRootNode(); - if(rootNode != NULL && rootNode->hasChild("megaglest-saved-game") == true) { - rootNode = rootNode->getChild("megaglest-saved-game"); - } + const XmlNode *rootNode = xmlTree.getRootNode (); + if (rootNode != NULL + && rootNode->hasChild ("megaglest-saved-game") == true) + { + rootNode = rootNode->getChild ("megaglest-saved-game"); + } - if(rootNode == NULL) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"Invalid XML saved game file: [%s]",filename.c_str()); - infoTextLabel.setText(szBuf); - return; - } + if (rootNode == NULL) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "Invalid XML saved game file: [%s]", + filename.c_str ()); + infoTextLabel.setText (szBuf); + return; + } - const XmlNode *versionNode= rootNode; - string gameVer = versionNode->getAttribute("version")->getValue(); - if(gameVer != glestVersionString && checkVersionComptability(gameVer, glestVersionString) == false) { - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("SavedGameBadVersion").c_str(),gameVer.c_str(),glestVersionString.c_str()); - versionWarningLabel.setText(szBuf); - } - else { - versionWarningLabel.setText(""); - } - XmlNode *gameNode = rootNode->getChild("Game"); - GameSettings newGameSettings; - newGameSettings.loadGame(gameNode); + const XmlNode *versionNode = rootNode; + string gameVer = + versionNode->getAttribute ("version")->getValue (); + if (gameVer != glestVersionString + && checkVersionComptability (gameVer, + glestVersionString) == + false) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("SavedGameBadVersion").c_str (), + gameVer.c_str (), glestVersionString.c_str ()); + versionWarningLabel.setText (szBuf); + } + else + { + versionWarningLabel.setText (""); + } + XmlNode *gameNode = rootNode->getChild ("Game"); + GameSettings newGameSettings; + newGameSettings.loadGame (gameNode); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("LoadSavedGameInfo").c_str(), - newGameSettings.getMap().c_str(), - newGameSettings.getTileset().c_str(), - newGameSettings.getTech().c_str(), - newGameSettings.getScenario().c_str(), - newGameSettings.getFactionCount(), - (newGameSettings.getThisFactionIndex() >= 0 && - newGameSettings.getThisFactionIndex() < newGameSettings.getFactionCount() ? - newGameSettings.getFactionTypeName(newGameSettings.getThisFactionIndex()).c_str() : "")); - infoTextLabel.setText(szBuf); - } - catch(const megaglest_runtime_error &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s Line: %d]\nError [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("LoadSavedGameInfo").c_str (), + newGameSettings.getMap ().c_str (), + newGameSettings.getTileset ().c_str (), + newGameSettings.getTech ().c_str (), + newGameSettings.getScenario ().c_str (), + newGameSettings.getFactionCount (), + (newGameSettings.getThisFactionIndex () >= 0 + && newGameSettings.getThisFactionIndex () < + newGameSettings. + getFactionCount ()? newGameSettings. + getFactionTypeName (newGameSettings. + getThisFactionIndex ()). + c_str () : "")); + infoTextLabel.setText (szBuf); + } + catch (const megaglest_runtime_error & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s Line: %d]\nError [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); - showMessageBox(ex.what(), lang.getString("Notice"), false); - } - } - else { - infoTextLabel.setText(""); - } + showMessageBox (ex.what (), lang.getString ("Notice"), + false); + } + } + else + { + infoTextLabel.setText (""); + } - break; - } - } - } - } -} - -void MenuStateLoadGame::mouseUp(int x, int y, const MouseButton mouseButton) { - if (mouseButton == mbLeft) { - slotsScrollBar.mouseUp(x, y); - } -} - -void MenuStateLoadGame::mouseMove(int x, int y, const MouseState *ms) { - abortButton.mouseMove(x, y); - deleteButton.mouseMove(x, y); - loadButton.mouseMove(x, y); - if(slotsScrollBar.getElementCount()!=0){ - for(int i = slotsScrollBar.getVisibleStart(); i <= slotsScrollBar.getVisibleEnd(); ++i) { - slots[i]->mouseMove(x, y); - } - } - slotsScrollBar.mouseMove(x,y); -} - -void MenuStateLoadGame::render() { - Renderer &renderer= Renderer::getInstance(); - - renderer.renderLabel(&headerLabel); - renderer.renderLabel(&savedGamesLabel); - renderer.renderLabel(&infoHeaderLabel); - renderer.renderLabel(&infoTextLabel); - if(versionWarningLabel.getText()!="") - renderer.renderLabel(&versionWarningLabel); - - renderer.renderButton(&abortButton); - renderer.renderButton(&deleteButton); - renderer.renderButton(&loadButton); - - for(int i = 0; i < (int)sizeof(lines) / (int)sizeof(lines[0]); ++i){ - renderer.renderLine(&lines[i]); + break; + } + } + } + } } - if(slotsScrollBar.getElementCount()==0 ) { - renderer.renderLabel(&noSavedGamesLabel); - } - else{ - for(int i = slotsScrollBar.getVisibleStart(); i <= slotsScrollBar.getVisibleEnd(); ++i) { - if(slots[i]==selectedButton){ - bool lightedOverride = true; - renderer.renderButton(slots[i],&YELLOW,&lightedOverride); - } - else{ - renderer.renderButton(slots[i]); - } - } - } - renderer.renderScrollBar(&slotsScrollBar); + void MenuStateLoadGame::mouseUp (int x, int y, + const MouseButton mouseButton) + { + if (mouseButton == mbLeft) + { + slotsScrollBar.mouseUp (x, y); + } + } - if(previewTexture != NULL) { - renderer.renderTextureQuad(550,slotLinesYBase-300+slotsLineHeight,400,300,previewTexture,1.0f); - } + void MenuStateLoadGame::mouseMove (int x, int y, const MouseState * ms) + { + abortButton.mouseMove (x, y); + deleteButton.mouseMove (x, y); + loadButton.mouseMove (x, y); + if (slotsScrollBar.getElementCount () != 0) + { + for (int i = slotsScrollBar.getVisibleStart (); + i <= slotsScrollBar.getVisibleEnd (); ++i) + { + slots[i]->mouseMove (x, y); + } + } + slotsScrollBar.mouseMove (x, y); + } - if(mainMessageBox.getEnabled()) { - renderer.renderMessageBox(&mainMessageBox); - } + void MenuStateLoadGame::render () + { + Renderer & renderer = Renderer::getInstance (); - renderer.renderConsole(&console); - if(program != NULL) program->renderProgramMsgBox(); -} + renderer.renderLabel (&headerLabel); + renderer.renderLabel (&savedGamesLabel); + renderer.renderLabel (&infoHeaderLabel); + renderer.renderLabel (&infoTextLabel); + if (versionWarningLabel.getText () != "") + renderer.renderLabel (&versionWarningLabel); -void MenuStateLoadGame::update(){ - if(Config::getInstance().getBool("AutoTest")){ - AutoTest::getInstance().updateNewGame(program, mainMenu); - return; - } - slotsScrollBar.arrangeComponents(slotsGB); - console.update(); -} + renderer.renderButton (&abortButton); + renderer.renderButton (&deleteButton); + renderer.renderButton (&loadButton); -void MenuStateLoadGame::keyDown(SDL_KeyboardEvent key) { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - GraphicComponent::saveAllCustomProperties(containerName); - } -} + for (int i = 0; i < (int) sizeof (lines) / (int) sizeof (lines[0]); ++i) + { + renderer.renderLine (&lines[i]); + } -void MenuStateLoadGame::showMessageBox(const string &text, const string &header, bool toggle) { - if(toggle == false) { - mainMessageBox.setEnabled(false); - } + if (slotsScrollBar.getElementCount () == 0) + { + renderer.renderLabel (&noSavedGamesLabel); + } + else + { + for (int i = slotsScrollBar.getVisibleStart (); + i <= slotsScrollBar.getVisibleEnd (); ++i) + { + if (slots[i] == selectedButton) + { + bool lightedOverride = true; + renderer.renderButton (slots[i], &YELLOW, &lightedOverride); + } + else + { + renderer.renderButton (slots[i]); + } + } + } + renderer.renderScrollBar (&slotsScrollBar); - if(mainMessageBox.getEnabled() == false) { - mainMessageBox.setText(text); - mainMessageBox.setHeader(header); - mainMessageBox.setEnabled(true); - } - else{ - mainMessageBox.setEnabled(false); - } -} + if (previewTexture != NULL) + { + renderer.renderTextureQuad (550, + slotLinesYBase - 300 + slotsLineHeight, + 400, 300, previewTexture, 1.0f); + } -}}//end namespace + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + + renderer.renderConsole (&console); + if (program != NULL) + program->renderProgramMsgBox (); + } + + void MenuStateLoadGame::update () + { + if (Config::getInstance ().getBool ("AutoTest")) + { + AutoTest::getInstance ().updateNewGame (program, mainMenu); + return; + } + slotsScrollBar.arrangeComponents (slotsGB); + console.update (); + } + + void MenuStateLoadGame::keyDown (SDL_KeyboardEvent key) + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) == true) + { + GraphicComponent::saveAllCustomProperties (containerName); + } + } + + void MenuStateLoadGame::showMessageBox (const string & text, + const string & header, + bool toggle) + { + if (toggle == false) + { + mainMessageBox.setEnabled (false); + } + + if (mainMessageBox.getEnabled () == false) + { + mainMessageBox.setText (text); + mainMessageBox.setHeader (header); + mainMessageBox.setEnabled (true); + } + else + { + mainMessageBox.setEnabled (false); + } + } + + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_load_game.h b/source/glest_game/menu/menu_state_load_game.h index eeeb146ea..1d4c14028 100644 --- a/source/glest_game/menu/menu_state_load_game.h +++ b/source/glest_game/menu/menu_state_load_game.h @@ -1,80 +1,85 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATELOADGAME_H_ -#define _GLEST_GAME_MENUSTATELOADGAME_H_ +# define _GLEST_GAME_MENUSTATELOADGAME_H_ -#include "main_menu.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class MenuStateLoadGame +// class MenuStateLoadGame // =============================== //typedef vector SaveSlotButtons; -class MenuStateLoadGame: public MenuState{ -private: - GraphicButton loadButton; - GraphicButton deleteButton; - GraphicButton abortButton; - vector slots; - vector slotsGB; - vector filenames; - GraphicScrollBar slotsScrollBar; - GraphicButton* selectedButton; + class MenuStateLoadGame:public MenuState + { + private: + GraphicButton loadButton; + GraphicButton deleteButton; + GraphicButton abortButton; + vector < GraphicButton * >slots; + vector < GraphicComponent * >slotsGB; + vector < string > filenames; + GraphicScrollBar slotsScrollBar; + GraphicButton *selectedButton; - GraphicButton* buttonToDelete; + GraphicButton *buttonToDelete; - Texture2D *previewTexture; + Texture2D *previewTexture; - GraphicLabel headerLabel; - GraphicLabel noSavedGamesLabel; - GraphicLabel savedGamesLabel; - GraphicLabel infoHeaderLabel; - GraphicLabel infoTextLabel; - GraphicLabel versionWarningLabel; + GraphicLabel headerLabel; + GraphicLabel noSavedGamesLabel; + GraphicLabel savedGamesLabel; + GraphicLabel infoHeaderLabel; + GraphicLabel infoTextLabel; + GraphicLabel versionWarningLabel; - GraphicLine lines[2]; + GraphicLine lines[2]; - GraphicMessageBox mainMessageBox; + GraphicMessageBox mainMessageBox; - string saveGameDir; - int slotLinesYBase; - int slotsLineHeight; + string saveGameDir; + int slotLinesYBase; + int slotsLineHeight; -public: - MenuStateLoadGame(Program *program, MainMenu *mainMenu); - ~MenuStateLoadGame(); + public: + MenuStateLoadGame (Program * program, MainMenu * mainMenu); + ~MenuStateLoadGame (); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseUp(int x, int y, const MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void update(); - void render(); - virtual void keyDown(SDL_KeyboardEvent key); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseUp (int x, int y, const MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void update (); + void render (); + virtual void keyDown (SDL_KeyboardEvent key); - void reloadUI(); + void reloadUI (); -private: + private: - void clearSlots(); - void listFiles(); + void clearSlots (); + void listFiles (); - void showMessageBox(const string &text, const string &header, bool toggle); + void showMessageBox (const string & text, const string & header, + bool toggle); - void cleanupTexture(Texture2D **texture); -}; + void cleanupTexture (Texture2D ** texture); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_masterserver.cpp b/source/glest_game/menu/menu_state_masterserver.cpp index 8e6b2e35d..d88d81dd2 100644 --- a/source/glest_game/menu/menu_state_masterserver.cpp +++ b/source/glest_game/menu/menu_state_masterserver.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2010- by Titus Tscharntke +// Copyright (C) 2010- by Titus Tscharntke // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_masterserver.h" @@ -29,430 +29,552 @@ #include "cache_manager.h" #include "leak_dumper.h" -namespace Glest{ namespace Game{ - -DisplayMessageFunction MenuStateMasterserver::pCB_DisplayMessage = NULL; - -static string IRC_SERVER = "irc.freenode.net"; -static string IRC_CHANNEL = "#zetaglest-lobby"; - -// ===================================================== -// class MenuStateMasterserver -// ===================================================== - -MenuStateMasterserver::MenuStateMasterserver(Program *program, MainMenu *mainMenu) : - MenuState(program, mainMenu, "masterserver"), mutexIRCClient(new Mutex(CODE_AT_LINE)) +namespace Glest { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\n\n\n\n******************** ENTERING MASTERSERVER MENU\n\n\n\n\n"); + namespace Game + { - containerName = "MasterServer"; - masterserverParseErrorShown = false; - updateFromMasterserverThread = NULL; - ircClient = NULL; - serverInfoString="empty"; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + DisplayMessageFunction MenuStateMasterserver::pCB_DisplayMessage = NULL; - Lang &lang= Lang::getInstance(); + static string IRC_SERVER = "irc.freenode.net"; + static string IRC_CHANNEL = "#zetaglest-lobby"; - //Configure ConsolePosition - consoleIRC.setYPos(60); - consoleIRC.setFont(CoreData::getInstance().getMenuFontNormal()); - consoleIRC.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); - consoleIRC.setLineHeight(18); - consoleIRC.setOnlyChatMessagesInStoredLines(false); +// ===================================================== +// class MenuStateMasterserver +// ===================================================== - serverLinesToRender=8; - serverLinesLineHeight=25; - serverLinesYBase=680; + MenuStateMasterserver::MenuStateMasterserver (Program * program, + MainMenu * + mainMenu):MenuState + (program, mainMenu, "masterserver"), + mutexIRCClient (new Mutex (CODE_AT_LINE)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("\n\n\n\n******************** ENTERING MASTERSERVER MENU\n\n\n\n\n"); - userButtonsHeight=20; - userButtonsWidth=150; - userButtonsLineHeight=userButtonsHeight+2; - userButtonsYBase=serverLinesYBase-(serverLinesToRender)*serverLinesLineHeight-90; - userButtonsToRender=userButtonsYBase/userButtonsLineHeight; - userButtonsXBase=1000-userButtonsWidth; + containerName = "MasterServer"; + masterserverParseErrorShown = false; + updateFromMasterserverThread = NULL; + ircClient = NULL; + serverInfoString = "empty"; + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - userScrollBar.init(1000-20,0,false,200,20); - userScrollBar.setLength(userButtonsYBase+userButtonsLineHeight); - userScrollBar.setElementCount(0); - userScrollBar.setVisibleSize(userButtonsToRender); - userScrollBar.setVisibleStart(0); + Lang & lang = Lang::getInstance (); - userButtonsXBase=1000-userButtonsWidth-userScrollBar.getW(); + //Configure ConsolePosition + consoleIRC.setYPos (60); + consoleIRC.setFont (CoreData::getInstance ().getMenuFontNormal ()); + consoleIRC.setFont3D (CoreData::getInstance ().getMenuFontNormal3D ()); + consoleIRC.setLineHeight (18); + consoleIRC.setOnlyChatMessagesInStoredLines (false); - serverScrollBar.init(1000-20,serverLinesYBase-serverLinesLineHeight*(serverLinesToRender-1),false,200,20); - serverScrollBar.setLength(serverLinesLineHeight*serverLinesToRender); - serverScrollBar.setElementCount(0); - serverScrollBar.setVisibleSize(serverLinesToRender); - serverScrollBar.setVisibleStart(0); + serverLinesToRender = 8; + serverLinesLineHeight = 25; + serverLinesYBase = 680; - lines[0].init(0, userButtonsYBase+userButtonsLineHeight+serverLinesLineHeight); - lines[1].init(userButtonsXBase-5,0,5,userButtonsYBase+2*userButtonsLineHeight); - lines[1].setHorizontal(false); + userButtonsHeight = 20; + userButtonsWidth = 150; + userButtonsLineHeight = userButtonsHeight + 2; + userButtonsYBase = + serverLinesYBase - (serverLinesToRender) * serverLinesLineHeight - 90; + userButtonsToRender = userButtonsYBase / userButtonsLineHeight; + userButtonsXBase = 1000 - userButtonsWidth; - autoRefreshTime=0; - playServerFoundSound=false; - announcementLoaded=false; + userScrollBar.init (1000 - 20, 0, false, 200, 20); + userScrollBar.setLength (userButtonsYBase + userButtonsLineHeight); + userScrollBar.setElementCount (0); + userScrollBar.setVisibleSize (userButtonsToRender); + userScrollBar.setVisibleStart (0); - mainMessageBox.registerGraphicComponent(containerName,"mainMessageBox"); - mainMessageBox.init(lang.getString("Ok")); - mainMessageBox.setEnabled(false); - mainMessageBoxState=0; + userButtonsXBase = 1000 - userButtonsWidth - userScrollBar.getW (); - lastRefreshTimer= time(NULL); + serverScrollBar.init (1000 - 20, + serverLinesYBase - + serverLinesLineHeight * (serverLinesToRender - 1), + false, 200, 20); + serverScrollBar.setLength (serverLinesLineHeight * serverLinesToRender); + serverScrollBar.setElementCount (0); + serverScrollBar.setVisibleSize (serverLinesToRender); + serverScrollBar.setVisibleStart (0); - // announcement - announcementLabel.registerGraphicComponent(containerName,"announcementLabel"); - announcementLabel.init(10, 730); - announcementLabel.setFont(CoreData::getInstance().getMenuFontBig()); - announcementLabel.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - announcementLabel.setText(""); + lines[0].init (0, + userButtonsYBase + userButtonsLineHeight + + serverLinesLineHeight); + lines[1].init (userButtonsXBase - 5, 0, 5, + userButtonsYBase + 2 * userButtonsLineHeight); + lines[1].setHorizontal (false); - // versionInfo - versionInfoLabel.registerGraphicComponent(containerName,"versionInfoLabel"); - versionInfoLabel.init(10, 680); - versionInfoLabel.setFont(CoreData::getInstance().getMenuFontBig()); - versionInfoLabel.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - versionInfoLabel.setText(""); + autoRefreshTime = 0; + playServerFoundSound = false; + announcementLoaded = false; - // header - labelTitle.registerGraphicComponent(containerName,"labelTitle"); - labelTitle.init(410, serverLinesYBase+45); - labelTitle.setFont(CoreData::getInstance().getMenuFontBig()); - labelTitle.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelTitle.setText(lang.getString("AvailableServers")); + mainMessageBox.registerGraphicComponent (containerName, + "mainMessageBox"); + mainMessageBox.init (lang.getString ("Ok")); + mainMessageBox.setEnabled (false); + mainMessageBoxState = 0; - if(Config::getInstance().getString("Masterserver","") == "") { - labelTitle.setText("*** " + lang.getString("AvailableServers")); - } + lastRefreshTimer = time (NULL); - // bottom - int buttonPos=230; + // announcement + announcementLabel.registerGraphicComponent (containerName, + "announcementLabel"); + announcementLabel.init (10, 730); + announcementLabel.setFont (CoreData::getInstance ().getMenuFontBig ()); + announcementLabel.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + announcementLabel.setText (""); - // Titles for current games - START - int lineIndex = 0; - int lineOffset=25*lineIndex; - int i=5; - int startOffset=serverLinesYBase+23; + // versionInfo + versionInfoLabel.registerGraphicComponent (containerName, + "versionInfoLabel"); + versionInfoLabel.init (10, 680); + versionInfoLabel.setFont (CoreData::getInstance ().getMenuFontBig ()); + versionInfoLabel.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + versionInfoLabel.setText (""); - //general info: - //i+=10; - glestVersionLabel.registerGraphicComponent(containerName,"glestVersionLabel"); - glestVersionLabel.init(i,startOffset-lineOffset); - glestVersionLabel.setText(lang.getString("MGVersion")); + // header + labelTitle.registerGraphicComponent (containerName, "labelTitle"); + labelTitle.init (410, serverLinesYBase + 45); + labelTitle.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelTitle.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelTitle.setText (lang.getString ("AvailableServers")); - i+=80; - platformLabel.registerGraphicComponent(containerName,"platformLabel"); - platformLabel.init(i+15,startOffset-lineOffset); - platformLabel.setText(lang.getString("MGPlatform")); + if (Config::getInstance ().getString ("Masterserver", "") == "") + { + labelTitle.setText ("*** " + lang.getString ("AvailableServers")); + } -// i+=50; -// binaryCompileDateLabel.registerGraphicComponent(containerName,"binaryCompileDateLabel"); -// binaryCompileDateLabel.init(i,startOffset-lineOffset); -// binaryCompileDateLabel.setText(lang.getString("MGBuildDateTime")); + // bottom + int buttonPos = 230; - //game info: - i+=120; - serverTitleLabel.registerGraphicComponent(containerName,"serverTitleLabel"); - serverTitleLabel.init(i,startOffset-lineOffset); - serverTitleLabel.setText(lang.getString("MGGameTitle")); + // Titles for current games - START + int lineIndex = 0; + int lineOffset = 25 * lineIndex; + int i = 5; + int startOffset = serverLinesYBase + 23; - i+=170; - countryLabel.registerGraphicComponent(containerName,"countryLabel"); - countryLabel.init(i-10,startOffset-lineOffset); - countryLabel.setText(lang.getString("MGGameCountry")); + //general info: + //i+=10; + glestVersionLabel.registerGraphicComponent (containerName, + "glestVersionLabel"); + glestVersionLabel.init (i, startOffset - lineOffset); + glestVersionLabel.setText (lang.getString ("MGVersion")); - i+=60; + i += 80; + platformLabel.registerGraphicComponent (containerName, + "platformLabel"); + platformLabel.init (i + 15, startOffset - lineOffset); + platformLabel.setText (lang.getString ("MGPlatform")); -// ipAddressLabel.registerGraphicComponent(containerName,"ipAddressLabel"); -// ipAddressLabel.init(i,startOffset-lineOffset); -// ipAddressLabel.setText(lang.getString("MGGameIP")); -// i+=100; +// i+=50; +// binaryCompileDateLabel.registerGraphicComponent(containerName,"binaryCompileDateLabel"); +// binaryCompileDateLabel.init(i,startOffset-lineOffset); +// binaryCompileDateLabel.setText(lang.getString("MGBuildDateTime")); - //game setup info: - techLabel.registerGraphicComponent(containerName,"techLabel"); - techLabel.init(i,startOffset-lineOffset); - techLabel.setText(lang.getString("TechTree")); + //game info: + i += 120; + serverTitleLabel.registerGraphicComponent (containerName, + "serverTitleLabel"); + serverTitleLabel.init (i, startOffset - lineOffset); + serverTitleLabel.setText (lang.getString ("MGGameTitle")); - i+=165; - mapLabel.registerGraphicComponent(containerName,"mapLabel"); - mapLabel.init(i,startOffset-lineOffset); - mapLabel.setText(lang.getString("Map")); + i += 170; + countryLabel.registerGraphicComponent (containerName, "countryLabel"); + countryLabel.init (i - 10, startOffset - lineOffset); + countryLabel.setText (lang.getString ("MGGameCountry")); - i+=95; -// tilesetLabel.registerGraphicComponent(containerName,"tilesetLabel"); -// tilesetLabel.init(i,startOffset-lineOffset); -// tilesetLabel.setText(lang.getString("Tileset")); -// i+=100; + i += 60; - activeSlotsLabel.registerGraphicComponent(containerName,"activeSlotsLabel"); - activeSlotsLabel.init(i,startOffset-lineOffset); - activeSlotsLabel.setText(lang.getString("MGGameSlots")); +// ipAddressLabel.registerGraphicComponent(containerName,"ipAddressLabel"); +// ipAddressLabel.init(i,startOffset-lineOffset); +// ipAddressLabel.setText(lang.getString("MGGameIP")); +// i+=100; - i+=50; - //externalConnectPort.registerGraphicComponent(containerName,"externalConnectPort"); - //externalConnectPort.init(i,startOffset-lineOffset); - //externalConnectPort.setText(lang.getString("Port")); + //game setup info: + techLabel.registerGraphicComponent (containerName, "techLabel"); + techLabel.init (i, startOffset - lineOffset); + techLabel.setText (lang.getString ("TechTree")); - i+=30; - statusLabel.registerGraphicComponent(containerName,"statusLabel"); - statusLabel.init(i+5,startOffset-lineOffset); - statusLabel.setText(lang.getString("MGGameStatus")); + i += 165; + mapLabel.registerGraphicComponent (containerName, "mapLabel"); + mapLabel.init (i, startOffset - lineOffset); + mapLabel.setText (lang.getString ("Map")); - i+=130; - selectButton.registerGraphicComponent(containerName,"selectButton"); - selectButton.init(i-5, startOffset-lineOffset); - selectButton.setText(lang.getString("MGJoinGameSlots")); + i += 95; +// tilesetLabel.registerGraphicComponent(containerName,"tilesetLabel"); +// tilesetLabel.init(i,startOffset-lineOffset); +// tilesetLabel.setText(lang.getString("Tileset")); +// i+=100; - // Titles for current games - END + activeSlotsLabel.registerGraphicComponent (containerName, + "activeSlotsLabel"); + activeSlotsLabel.init (i, startOffset - lineOffset); + activeSlotsLabel.setText (lang.getString ("MGGameSlots")); - buttonReturn.registerGraphicComponent(containerName,"buttonReturn"); - buttonReturn.init(50, buttonPos, 150); + i += 50; + //externalConnectPort.registerGraphicComponent(containerName,"externalConnectPort"); + //externalConnectPort.init(i,startOffset-lineOffset); + //externalConnectPort.setText(lang.getString("Port")); - buttonCreateGame.registerGraphicComponent(containerName,"buttonCreateGame"); - buttonCreateGame.init(275, buttonPos, 150); + i += 30; + statusLabel.registerGraphicComponent (containerName, "statusLabel"); + statusLabel.init (i + 5, startOffset - lineOffset); + statusLabel.setText (lang.getString ("MGGameStatus")); - buttonRefresh.registerGraphicComponent(containerName,"buttonRefresh"); - buttonRefresh.init(500, buttonPos, 150); + i += 130; + selectButton.registerGraphicComponent (containerName, "selectButton"); + selectButton.init (i - 5, startOffset - lineOffset); + selectButton.setText (lang.getString ("MGJoinGameSlots")); - buttonRefresh.setText(lang.getString("RefreshList")); - buttonReturn.setText(lang.getString("Return")); - buttonCreateGame.setText(lang.getString("HostGame")); - labelAutoRefresh.setText(lang.getString("AutoRefreshRate")); + // Titles for current games - END - labelAutoRefresh.registerGraphicComponent(containerName,"labelAutoRefresh"); - labelAutoRefresh.init(750,buttonPos+30); + buttonReturn.registerGraphicComponent (containerName, "buttonReturn"); + buttonReturn.init (50, buttonPos, 150); - listBoxAutoRefresh.registerGraphicComponent(containerName,"listBoxAutoRefresh"); - listBoxAutoRefresh.init(750,buttonPos); - listBoxAutoRefresh.pushBackItem(lang.getString("Off")); - listBoxAutoRefresh.pushBackItem("10 s"); - listBoxAutoRefresh.pushBackItem("20 s"); - listBoxAutoRefresh.pushBackItem("30 s"); - listBoxAutoRefresh.setSelectedItemIndex(2); - autoRefreshTime=10*listBoxAutoRefresh.getSelectedItemIndex(); + buttonCreateGame.registerGraphicComponent (containerName, + "buttonCreateGame"); + buttonCreateGame.init (275, buttonPos, 150); - ircOnlinePeopleLabel.registerGraphicComponent(containerName,"ircOnlinePeopleLabel"); - ircOnlinePeopleLabel.init(userButtonsXBase,userButtonsYBase+userButtonsLineHeight); - ircOnlinePeopleLabel.setText(lang.getString("IRCPeopleOnline")); + buttonRefresh.registerGraphicComponent (containerName, + "buttonRefresh"); + buttonRefresh.init (500, buttonPos, 150); - ircOnlinePeopleStatusLabel.registerGraphicComponent(containerName,"ircOnlinePeopleStatusLabel"); - ircOnlinePeopleStatusLabel.init(userButtonsXBase,userButtonsYBase+userButtonsLineHeight-20); - ircOnlinePeopleStatusLabel.setText(""); + buttonRefresh.setText (lang.getString ("RefreshList")); + buttonReturn.setText (lang.getString ("Return")); + buttonCreateGame.setText (lang.getString ("HostGame")); + labelAutoRefresh.setText (lang.getString ("AutoRefreshRate")); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + labelAutoRefresh.registerGraphicComponent (containerName, + "labelAutoRefresh"); + labelAutoRefresh.init (750, buttonPos + 30); - NetworkManager::getInstance().end(); - NetworkManager::getInstance().init(nrClient); + listBoxAutoRefresh.registerGraphicComponent (containerName, + "listBoxAutoRefresh"); + listBoxAutoRefresh.init (750, buttonPos); + listBoxAutoRefresh.pushBackItem (lang.getString ("Off")); + listBoxAutoRefresh.pushBackItem ("10 s"); + listBoxAutoRefresh.pushBackItem ("20 s"); + listBoxAutoRefresh.pushBackItem ("30 s"); + listBoxAutoRefresh.setSelectedItemIndex (2); + autoRefreshTime = 10 * listBoxAutoRefresh.getSelectedItemIndex (); - //console.addLine(lang.getString("ToSwitchOffMusicPress")+" - \""+configKeys.getCharKey("ToggleMusic")+"\""); + ircOnlinePeopleLabel.registerGraphicComponent (containerName, + "ircOnlinePeopleLabel"); + ircOnlinePeopleLabel.init (userButtonsXBase, + userButtonsYBase + userButtonsLineHeight); + ircOnlinePeopleLabel.setText (lang.getString ("IRCPeopleOnline")); - GraphicComponent::applyAllCustomProperties(containerName); + ircOnlinePeopleStatusLabel.registerGraphicComponent (containerName, + "ircOnlinePeopleStatusLabel"); + ircOnlinePeopleStatusLabel.init (userButtonsXBase, + userButtonsYBase + + userButtonsLineHeight - 20); + ircOnlinePeopleStatusLabel.setText (""); - char szIRCNick[80]=""; - Chrono seed(true); - srand((unsigned int)seed.getCurTicks()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - int randomNickId = rand() % 999; - string netPlayerName=Config::getInstance().getString("NetPlayerName",Socket::getHostName().c_str()); - string ircname=netPlayerName.substr(0,9); - snprintf(szIRCNick,80,"ZG_%s_%d",ircname.c_str(),randomNickId); - normalizeNick(szIRCNick); + NetworkManager::getInstance ().end (); + NetworkManager::getInstance ().init (nrClient); - currentIrcNick=ircname; - consoleIRC.setStringToHighlight(currentIrcNick); + //console.addLine(lang.getString("ToSwitchOffMusicPress")+" - \""+configKeys.getCharKey("ToggleMusic")+"\""); - lines[2].init(0,consoleIRC.getYPos()-10,userButtonsXBase,5); - chatManager.init(&consoleIRC, -1, true, szIRCNick); - chatManager.setXPos(0); - chatManager.setYPos(consoleIRC.getYPos()-20); - chatManager.setFont(CoreData::getInstance().getMenuFontNormal()); - chatManager.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); + GraphicComponent::applyAllCustomProperties (containerName); - needUpdateFromServer = true; + char szIRCNick[80] = ""; + Chrono seed (true); + srand ((unsigned int) seed.getCurTicks ()); - static string mutexOwnerId = string(extractFileFromDirectoryPath(__FILE__).c_str()) + string("_") + intToStr(__LINE__); - updateFromMasterserverThread = new SimpleTaskThread(this,0,100); - updateFromMasterserverThread->setUniqueID(mutexOwnerId); - updateFromMasterserverThread->start(); + int randomNickId = rand () % 999; + string netPlayerName = + Config::getInstance ().getString ("NetPlayerName", + Socket::getHostName ().c_str ()); + string ircname = netPlayerName.substr (0, 9); + snprintf (szIRCNick, 80, "ZG_%s_%d", ircname.c_str (), randomNickId); + normalizeNick (szIRCNick); - if(Config::getInstance().getString("IRCServer","") != "") { - IRC_SERVER = Config::getInstance().getString("IRCServer"); - } - ircArgs.push_back(IRC_SERVER); + currentIrcNick = ircname; + consoleIRC.setStringToHighlight (currentIrcNick); - if(Config::getInstance().getString("IRCNick","") != "") { - ircArgs.push_back(Config::getInstance().getString("IRCNick")); - } - else { - ircArgs.push_back(szIRCNick); - } + lines[2].init (0, consoleIRC.getYPos () - 10, userButtonsXBase, 5); + chatManager.init (&consoleIRC, -1, true, szIRCNick); + chatManager.setXPos (0); + chatManager.setYPos (consoleIRC.getYPos () - 20); + chatManager.setFont (CoreData::getInstance ().getMenuFontNormal ()); + chatManager.setFont3D (CoreData::getInstance (). + getMenuFontNormal3D ()); - if(Config::getInstance().getString("IRCChannel","") != "") { - IRC_CHANNEL = Config::getInstance().getString("IRCChannel"); - } - ircArgs.push_back(IRC_CHANNEL); + needUpdateFromServer = true; - if(Config::getInstance().getString("IRCUsername","") != "") { - ircArgs.push_back(Config::getInstance().getString("IRCUsername")); - } - else { - ircArgs.push_back(szIRCNick); - } - if(Config::getInstance().getString("IRCPassword","") != "") { - ircArgs.push_back("identify " + Config::getInstance().getString("IRCPassword")); - } - else { - ircArgs.push_back(""); - } + static string mutexOwnerId = + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + string ("_") + intToStr (__LINE__); + updateFromMasterserverThread = new SimpleTaskThread (this, 0, 100); + updateFromMasterserverThread->setUniqueID (mutexOwnerId); + updateFromMasterserverThread->start (); - MutexSafeWrapper safeMutexIRCPtr(mutexIRCClient,string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); + if (Config::getInstance ().getString ("IRCServer", "") != "") + { + IRC_SERVER = Config::getInstance ().getString ("IRCServer"); + } + ircArgs.push_back (IRC_SERVER); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("#1 IRCCLient Cache check\n"); - IRCThread * &ircThread = CacheManager::getCachedItem< IRCThread * >(GameConstants::ircClientCacheLookupKey); + if (Config::getInstance ().getString ("IRCNick", "") != "") + { + ircArgs.push_back (Config::getInstance ().getString ("IRCNick")); + } + else + { + ircArgs.push_back (szIRCNick); + } - // Playername changed so restart the IRC Thread - if(ircThread != NULL && netPlayerName != ircThread->getPlayerName()) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - ircThread->leaveChannel(); - ircThread->setCallbackObj(NULL); - ircThread->signalQuit(); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (Config::getInstance ().getString ("IRCChannel", "") != "") + { + IRC_CHANNEL = Config::getInstance ().getString ("IRCChannel"); + } + ircArgs.push_back (IRC_CHANNEL); + + if (Config::getInstance ().getString ("IRCUsername", "") != "") + { + ircArgs.push_back (Config::getInstance ().getString ("IRCUsername")); + } + else + { + ircArgs.push_back (szIRCNick); + } + if (Config::getInstance ().getString ("IRCPassword", "") != "") + { + ircArgs.push_back ("identify " + + Config::getInstance ().getString ("IRCPassword")); + } + else + { + ircArgs.push_back (""); + } + + MutexSafeWrapper safeMutexIRCPtr (mutexIRCClient, + string (extractFileFromDirectoryPath + (__FILE__).c_str ()) + "_" + + intToStr (__LINE__)); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("#1 IRCCLient Cache check\n"); + IRCThread *&ircThread = + CacheManager::getCachedItem < + IRCThread * >(GameConstants::ircClientCacheLookupKey); + + // Playername changed so restart the IRC Thread + if (ircThread != NULL && netPlayerName != ircThread->getPlayerName ()) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + ircThread->leaveChannel (); + ircThread->setCallbackObj (NULL); + ircThread->signalQuit (); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); ircThread = NULL; + } + + if (ircThread == NULL) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("#2 IRCCLient Cache check\n"); + + static string mutexOwnerId = + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + string ("_") + intToStr (__LINE__); + ircThread = new IRCThread (ircArgs, this); + ircClient = ircThread; + ircClient->setUniqueID (mutexOwnerId); + ircClient->setPlayerName (netPlayerName); + ircClient->setGlestVersionString (glestVersionString); + ircClient->start (); + } + else + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("#3 IRCCLient Cache check\n"); + ircClient = ircThread; + ircClient->setCallbackObj (this); + ircClient->joinChannel (); + } + + if (netPlayerName == "newbie") + { + showMessageBox (lang.getString ("PlayerNameNotSetPrompt"), + lang.getString ("PlayerNameNotSetTitle"), false); + } + //showMessageBox("Go back and set your name in the game options!\n\nAt the moment you are just called >>newbie<< !","Player name not set!",false); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); } - if(ircThread == NULL) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("#2 IRCCLient Cache check\n"); + void MenuStateMasterserver::reloadUI () + { + Lang & lang = Lang::getInstance (); - static string mutexOwnerId = string(extractFileFromDirectoryPath(__FILE__).c_str()) + string("_") + intToStr(__LINE__); - ircThread = new IRCThread(ircArgs,this); - ircClient = ircThread; - ircClient->setUniqueID(mutexOwnerId); - ircClient->setPlayerName(netPlayerName); - ircClient->setGlestVersionString(glestVersionString); - ircClient->start(); + console.resetFonts (); + consoleIRC.setFont (CoreData::getInstance ().getMenuFontNormal ()); + consoleIRC.setFont3D (CoreData::getInstance ().getMenuFontNormal3D ()); + + mainMessageBox.init (lang.getString ("Ok")); + + announcementLabel.setFont (CoreData::getInstance ().getMenuFontBig ()); + announcementLabel.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + + versionInfoLabel.setFont (CoreData::getInstance ().getMenuFontBig ()); + versionInfoLabel.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + + labelTitle.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelTitle.setFont3D (CoreData::getInstance ().getMenuFontBig3D ()); + labelTitle.setText (lang.getString ("AvailableServers")); + + if (Config::getInstance ().getString ("Masterserver", "") == "") + { + labelTitle.setText ("*** " + lang.getString ("AvailableServers")); + } + + glestVersionLabel.setText (lang.getString ("MGVersion")); + + platformLabel.setText (lang.getString ("MGPlatform")); + + serverTitleLabel.setText (lang.getString ("MGGameTitle")); + + countryLabel.setText (lang.getString ("MGGameCountry")); + + techLabel.setText (lang.getString ("TechTree")); + + mapLabel.setText (lang.getString ("Map")); + + activeSlotsLabel.setText (lang.getString ("MGGameSlots")); + + //externalConnectPort.setText(lang.getString("Port")); + + statusLabel.setText (lang.getString ("MGGameStatus")); + + selectButton.setText (lang.getString ("MGJoinGameSlots")); + + // Titles for current games - END + + buttonRefresh.setText (lang.getString ("RefreshList")); + buttonReturn.setText (lang.getString ("Return")); + buttonCreateGame.setText (lang.getString ("HostGame")); + labelAutoRefresh.setText (lang.getString ("AutoRefreshRate")); + + ircOnlinePeopleLabel.setText (lang.getString ("IRCPeopleOnline")); + + chatManager.setFont (CoreData::getInstance ().getMenuFontNormal ()); + chatManager.setFont3D (CoreData::getInstance ().getMenuFontNormal3D ()); + + GraphicComponent:: + reloadFontsForRegisterGraphicComponents (containerName); } - else { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("#3 IRCCLient Cache check\n"); - ircClient = ircThread; - ircClient->setCallbackObj(this); - ircClient->joinChannel(); - } - - if(netPlayerName=="newbie"){ - showMessageBox(lang.getString("PlayerNameNotSetPrompt"),lang.getString("PlayerNameNotSetTitle"),false); - } - //showMessageBox("Go back and set your name in the game options!\n\nAt the moment you are just called >>newbie<< !","Player name not set!",false); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateMasterserver::reloadUI() { - Lang &lang= Lang::getInstance(); - - console.resetFonts(); - consoleIRC.setFont(CoreData::getInstance().getMenuFontNormal()); - consoleIRC.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); - - mainMessageBox.init(lang.getString("Ok")); - - announcementLabel.setFont(CoreData::getInstance().getMenuFontBig()); - announcementLabel.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - versionInfoLabel.setFont(CoreData::getInstance().getMenuFontBig()); - versionInfoLabel.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - labelTitle.setFont(CoreData::getInstance().getMenuFontBig()); - labelTitle.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelTitle.setText(lang.getString("AvailableServers")); - - if(Config::getInstance().getString("Masterserver","") == "") { - labelTitle.setText("*** " + lang.getString("AvailableServers")); - } - - glestVersionLabel.setText(lang.getString("MGVersion")); - - platformLabel.setText(lang.getString("MGPlatform")); - - serverTitleLabel.setText(lang.getString("MGGameTitle")); - - countryLabel.setText(lang.getString("MGGameCountry")); - - techLabel.setText(lang.getString("TechTree")); - - mapLabel.setText(lang.getString("Map")); - - activeSlotsLabel.setText(lang.getString("MGGameSlots")); - - //externalConnectPort.setText(lang.getString("Port")); - - statusLabel.setText(lang.getString("MGGameStatus")); - - selectButton.setText(lang.getString("MGJoinGameSlots")); - - // Titles for current games - END - - buttonRefresh.setText(lang.getString("RefreshList")); - buttonReturn.setText(lang.getString("Return")); - buttonCreateGame.setText(lang.getString("HostGame")); - labelAutoRefresh.setText(lang.getString("AutoRefreshRate")); - - ircOnlinePeopleLabel.setText(lang.getString("IRCPeopleOnline")); - - chatManager.setFont(CoreData::getInstance().getMenuFontNormal()); - chatManager.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); - - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} //void MenuStateMasterserver::setConsolePos(int yPos){ -// consoleIRC.setYPos(yPos); -// lines[2].setY(consoleIRC.getYPos()-10); -// chatManager.setYPos(consoleIRC.getYPos()-20); +// consoleIRC.setYPos(yPos); +// lines[2].setY(consoleIRC.getYPos()-10); +// chatManager.setYPos(consoleIRC.getYPos()-20); //} -void MenuStateMasterserver::setButtonLinePosition(int pos){ - buttonReturn.setY(pos); - buttonCreateGame.setY(pos); - buttonRefresh.setY(pos); - labelAutoRefresh.setY(pos+30); - listBoxAutoRefresh.setY(pos); -} - -void MenuStateMasterserver::IRC_CallbackEvent(IRCEventType evt, const char* origin, const char **params, unsigned int count) { - MutexSafeWrapper safeMutexIRCPtr(mutexIRCClient,string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - if(ircClient != NULL) { - if(evt == IRC_evt_exitThread) { - ircClient->leaveChannel(); - ircClient->setCallbackObj(NULL); - - ircClient = NULL; - } - else if(evt == IRC_evt_chatText) { - //printf ("===> IRC: '%s' said in channel %s: %s\n",origin ? origin : "someone",params[0], params[1] ); - - char szBuf[8096]=""; - snprintf(szBuf,8096,"%s: %s",origin ? origin : "someone",params[1]); - string helpSTr=szBuf; - if(helpSTr.find(currentIrcNick)!=string::npos){ - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - soundRenderer.playFx(coreData.getHighlightSound()); - } - consoleIRC.addLine(szBuf); - } + void MenuStateMasterserver::setButtonLinePosition (int pos) + { + buttonReturn.setY (pos); + buttonCreateGame.setY (pos); + buttonRefresh.setY (pos); + labelAutoRefresh.setY (pos + 30); + listBoxAutoRefresh.setY (pos); } -} -void MenuStateMasterserver::cleanup() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + void MenuStateMasterserver::IRC_CallbackEvent (IRCEventType evt, + const char *origin, + const char **params, + unsigned int count) + { + MutexSafeWrapper safeMutexIRCPtr (mutexIRCClient, + string (extractFileFromDirectoryPath + (__FILE__).c_str ()) + "_" + + intToStr (__LINE__)); + if (ircClient != NULL) + { + if (evt == IRC_evt_exitThread) + { + ircClient->leaveChannel (); + ircClient->setCallbackObj (NULL); - MutexSafeWrapper safeMutex((updateFromMasterserverThread != NULL ? updateFromMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - needUpdateFromServer = false; - safeMutex.ReleaseLock(); + ircClient = NULL; + } + else if (evt == IRC_evt_chatText) + { + //printf ("===> IRC: '%s' said in channel %s: %s\n",origin ? origin : "someone",params[0], params[1] ); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "%s: %s", origin ? origin : "someone", + params[1]); + string helpSTr = szBuf; + if (helpSTr.find (currentIrcNick) != string::npos) + { + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + + soundRenderer.playFx (coreData.getHighlightSound ()); + } + consoleIRC.addLine (szBuf); + } + } + } + + void MenuStateMasterserver::cleanup () + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + MutexSafeWrapper + safeMutex ((updateFromMasterserverThread != + NULL ? updateFromMasterserverThread-> + getMutexThreadObjectAccessor () : NULL), + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + "_" + intToStr (__LINE__)); + needUpdateFromServer = false; + safeMutex.ReleaseLock (); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); // if(updateFromMasterserverThread != NULL && // updateFromMasterserverThread->canShutdown(true) == true) { @@ -461,792 +583,1290 @@ void MenuStateMasterserver::cleanup() { // } // } // updateFromMasterserverThread = NULL; - if(updateFromMasterserverThread != NULL) { - updateFromMasterserverThread->signalQuit(); - } - if(updateFromMasterserverThread != NULL && updateFromMasterserverThread->canShutdown(false) == true && - updateFromMasterserverThread->getRunningStatus() == false) { - //printf("#2 Ending client SLOT: %d\n",playerIndex); + if (updateFromMasterserverThread != NULL) + { + updateFromMasterserverThread->signalQuit (); + } + if (updateFromMasterserverThread != NULL + && updateFromMasterserverThread->canShutdown (false) == true + && updateFromMasterserverThread->getRunningStatus () == false) + { + //printf("#2 Ending client SLOT: %d\n",playerIndex); - if(SystemFlags::getSystemSettingType(SystemFlags::debugNetwork).enabled) SystemFlags::OutputDebug(SystemFlags::debugNetwork,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugNetwork). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugNetwork, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); delete updateFromMasterserverThread; - if(SystemFlags::getSystemSettingType(SystemFlags::debugNetwork).enabled) SystemFlags::OutputDebug(SystemFlags::debugNetwork,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - } - //else if(BaseThread::shutdownAndWait(slotThreadWorker) == true) { - else if(updateFromMasterserverThread != NULL && updateFromMasterserverThread->canShutdown(true) == true) { - if(updateFromMasterserverThread->getRunningStatus() == false) { - //printf("#3 Ending client SLOT: %d\n",playerIndex); - if(SystemFlags::getSystemSettingType(SystemFlags::debugNetwork).enabled) SystemFlags::OutputDebug(SystemFlags::debugNetwork,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - delete updateFromMasterserverThread; - if(SystemFlags::getSystemSettingType(SystemFlags::debugNetwork).enabled) SystemFlags::OutputDebug(SystemFlags::debugNetwork,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - } - else { - updateFromMasterserverThread->setDeleteSelfOnExecutionDone(true); - updateFromMasterserverThread->setDeleteAfterExecute(true); - } - } - //printf("#4 Ending client SLOT: %d\n",playerIndex); - updateFromMasterserverThread = NULL; + if (SystemFlags::getSystemSettingType (SystemFlags::debugNetwork). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugNetwork, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + //else if(BaseThread::shutdownAndWait(slotThreadWorker) == true) { + else if (updateFromMasterserverThread != NULL + && updateFromMasterserverThread->canShutdown (true) == true) + { + if (updateFromMasterserverThread->getRunningStatus () == false) + { + //printf("#3 Ending client SLOT: %d\n",playerIndex); + if (SystemFlags::getSystemSettingType (SystemFlags::debugNetwork). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugNetwork, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + delete updateFromMasterserverThread; + if (SystemFlags::getSystemSettingType (SystemFlags::debugNetwork). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugNetwork, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + else + { + updateFromMasterserverThread->setDeleteSelfOnExecutionDone (true); + updateFromMasterserverThread->setDeleteAfterExecute (true); + } + } + //printf("#4 Ending client SLOT: %d\n",playerIndex); + updateFromMasterserverThread = NULL; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - clearServerLines(); - clearUserButtons(); + clearServerLines (); + clearUserButtons (); - MutexSafeWrapper safeMutexIRCPtr(mutexIRCClient,string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - if(ircClient != NULL) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + MutexSafeWrapper safeMutexIRCPtr (mutexIRCClient, + string (extractFileFromDirectoryPath + (__FILE__).c_str ()) + "_" + + intToStr (__LINE__)); + if (ircClient != NULL) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - ircClient->leaveChannel(); - ircClient->setCallbackObj(NULL); + ircClient->leaveChannel (); + ircClient->setCallbackObj (NULL); //ircClient->signalQuit(); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); ircClient = NULL; + } + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] END\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] END\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} + MenuStateMasterserver::~MenuStateMasterserver () + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); -MenuStateMasterserver::~MenuStateMasterserver() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); + cleanup (); - cleanup(); + delete mutexIRCClient; + mutexIRCClient = NULL; - delete mutexIRCClient; - mutexIRCClient = NULL; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] END\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - -void MenuStateMasterserver::clearServerLines() { - while(!serverLines.empty()) { - delete serverLines.back(); - serverLines.pop_back(); - } -} - -void MenuStateMasterserver::clearUserButtons() { - while(!userButtons.empty()){ - delete userButtons.back(); - userButtons.pop_back(); - } -} - -void MenuStateMasterserver::mouseClick(int x, int y, MouseButton mouseButton){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - if(mainMessageBox.getEnabled()){ - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - soundRenderer.playFx(coreData.getClickSoundA()); - if(button == 0) { - mainMessageBox.setEnabled(false); - } - } - } - else if(userScrollBar.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundA()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - else if(serverScrollBar.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundA()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - else if(buttonRefresh.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - MutexSafeWrapper safeMutex((updateFromMasterserverThread != NULL ? updateFromMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - soundRenderer.playFx(coreData.getClickSoundB()); - needUpdateFromServer = true; - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - else if(buttonReturn.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - soundRenderer.playFx(coreData.getClickSoundA()); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if (ircClient != NULL && ircClient->isConnected() == true - && ircClient->getHasJoinedChannel() == true) { - ircClient->SendIRCCmdMessage(IRC_CHANNEL, " << left the lobby"); - sleep(30); - } - cleanup(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - mainMenu->setState(new MenuStateNewGame(program, mainMenu)); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - else if(buttonCreateGame.mouseClick(x, y)){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - MutexSafeWrapper safeMutex((updateFromMasterserverThread != NULL ? updateFromMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - soundRenderer.playFx(coreData.getClickSoundB()); - needUpdateFromServer = false; - safeMutex.ReleaseLock(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - if (ircClient != NULL && ircClient->isConnected() == true - && ircClient->getHasJoinedChannel() == true) { - ircClient->SendIRCCmdMessage(IRC_CHANNEL, " << tries to create a game"); - sleep(30); - } - cleanup(); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - mainMenu->setState(new MenuStateCustomGame(program, mainMenu,true,pMasterServer)); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - else if(listBoxAutoRefresh.mouseClick(x, y)){ - MutexSafeWrapper safeMutex((updateFromMasterserverThread != NULL ? updateFromMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - soundRenderer.playFx(coreData.getClickSoundA()); - autoRefreshTime=10*listBoxAutoRefresh.getSelectedItemIndex(); - } - else { - MutexSafeWrapper safeMutex((updateFromMasterserverThread != NULL ? updateFromMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - bool clicked=false; - if(serverScrollBar.getElementCount() != 0) { - for(int i = serverScrollBar.getVisibleStart(); i <= serverScrollBar.getVisibleEnd(); ++i) { - if(serverLines[i]->buttonMouseClick(x, y)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - clicked=true; - soundRenderer.playFx(coreData.getClickSoundB()); - string connectServerIP = serverLines[i]->getMasterServerInfo()->getIpAddress(); - int connectServerPort = serverLines[i]->getMasterServerInfo()->getExternalConnectPort(); - bool connected=connectToServer(connectServerIP,connectServerPort); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - safeMutex.ReleaseLock(); - if(connected){ - soundRenderer.playFx(coreData.getClickSoundB()); - - if (ircClient != NULL && ircClient->isConnected() == true - && ircClient->getHasJoinedChannel() == true) { - ircClient->SendIRCCmdMessage(IRC_CHANNEL, " << is connecting to '"+serverLines[i]->getMasterServerInfo()->getServerTitle()+"'"); - sleep(30); - } - cleanup(); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - mainMenu->setState(new MenuStateConnectedGame(program, mainMenu,jmMasterserver)); - } - break; - } - } - } - if(!clicked && userScrollBar.getElementCount()!=0){ - for(int i = userScrollBar.getVisibleStart(); i <= userScrollBar.getVisibleEnd(); ++i) { - if(userButtons[i]->getEnabled() == true && userButtons[i]->mouseClick(x, y)) { - //clicked=true; - if(!chatManager.getEditEnabled()) - { - chatManager.switchOnEdit(); - chatManager.addText(userButtons[i]->getText()+" "); - } - else - { - chatManager.addText(userButtons[i]->getText()); - } - break; - } - } - } - } -} - -void MenuStateMasterserver::mouseUp(int x, int y, const MouseButton mouseButton){ - if (mouseButton == mbLeft) { - userScrollBar.mouseUp(x, y); - serverScrollBar.mouseUp(x, y); - } -} - -void MenuStateMasterserver::mouseMove(int x, int y, const MouseState *ms){ - MutexSafeWrapper safeMutex((updateFromMasterserverThread != NULL ? updateFromMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - - if (mainMessageBox.getEnabled()) { - mainMessageBox.mouseMove(x, y); - } - buttonRefresh.mouseMove(x, y); - buttonReturn.mouseMove(x, y); - buttonCreateGame.mouseMove(x, y); - if (ms->get(mbLeft)) { - userScrollBar.mouseDown(x, y); - serverScrollBar.mouseDown(x, y); - } else { - userScrollBar.mouseMove(x, y); - serverScrollBar.mouseMove(x, y); - } - listBoxAutoRefresh.mouseMove(x, y); - - if(serverScrollBar.getElementCount()!=0 ) { - for(int i = serverScrollBar.getVisibleStart(); i <= serverScrollBar.getVisibleEnd(); ++i) { - serverLines[i]->buttonMouseMove(x, y); - } - } - if(userScrollBar.getElementCount()!=0 ) { - for(int i = userScrollBar.getVisibleStart(); i <= userScrollBar.getVisibleEnd(); ++i) { - if(userButtons[i]->getEnabled() == true) { - userButtons[i]->mouseMove(x, y); - } - } + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] END\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); } -} + void MenuStateMasterserver::clearServerLines () + { + while (!serverLines.empty ()) + { + delete serverLines.back (); + serverLines.pop_back (); + } + } -void MenuStateMasterserver::render(){ - Renderer &renderer= Renderer::getInstance(); + void MenuStateMasterserver::clearUserButtons () + { + while (!userButtons.empty ()) + { + delete userButtons.back (); + userButtons.pop_back (); + } + } - MutexSafeWrapper safeMutex((updateFromMasterserverThread != NULL ? updateFromMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - if(mainMessageBox.getEnabled()) { - renderer.renderMessageBox(&mainMessageBox); - } - else - { - renderer.renderLabel(&labelTitle,&GREEN); - renderer.renderLabel(&announcementLabel,&YELLOW); - renderer.renderLabel(&versionInfoLabel); + void MenuStateMasterserver::mouseClick (int x, int y, + MouseButton mouseButton) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - // Render titles for server games listed - const Vec4f titleLabelColor = CYAN; + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); - //general info: - renderer.renderLabel(&glestVersionLabel,&titleLabelColor); - renderer.renderLabel(&platformLabel,&titleLabelColor); - //renderer.renderLabel(&binaryCompileDateLabel,&titleLabelColor); - - //game info: - renderer.renderLabel(&serverTitleLabel,&titleLabelColor); - renderer.renderLabel(&countryLabel,&titleLabelColor); - renderer.renderLabel(&statusLabel,&titleLabelColor); - //renderer.renderLabel(&ipAddressLabel,&titleLabelColor); - - //game setup info: - renderer.renderLabel(&techLabel,&titleLabelColor); - renderer.renderLabel(&mapLabel,&titleLabelColor); - //renderer.renderLabel(&tilesetLabel,&titleLabelColor); - renderer.renderLabel(&activeSlotsLabel,&titleLabelColor); - //renderer.renderLabel(&externalConnectPort,&titleLabelColor); - renderer.renderLabel(&selectButton,&titleLabelColor); - - Lang &lang= Lang::getInstance(); - MutexSafeWrapper safeMutexIRCPtr(mutexIRCClient,string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - if(ircClient != NULL && - ircClient->isConnected() == true && - ircClient->getHasJoinedChannel() == true) { - const Vec4f titleLabelColor = GREEN; - - if(ircOnlinePeopleStatusLabel.getText() != "") { - ircOnlinePeopleStatusLabel.setText(""); - } - - renderer.renderLabel(&ircOnlinePeopleLabel,&titleLabelColor); - //renderer.renderLabel(&ircOnlinePeopleStatusLabel,&titleLabelColor); + if (mainMessageBox.getEnabled ()) + { + int button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (button == 0) + { + mainMessageBox.setEnabled (false); + } } - else { - const Vec4f titleLabelColor = RED; + } + else if (userScrollBar.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundA ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + } + else if (serverScrollBar.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundA ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + } + else if (buttonRefresh.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); - if(ircOnlinePeopleStatusLabel.getText() != lang.getString("Connecting")) { - ircOnlinePeopleStatusLabel.setText(lang.getString("Connecting")); - } + MutexSafeWrapper + safeMutex ((updateFromMasterserverThread != + NULL ? updateFromMasterserverThread-> + getMutexThreadObjectAccessor () : NULL), + string (extractFileFromDirectoryPath (__FILE__). + c_str ()) + "_" + intToStr (__LINE__)); + soundRenderer.playFx (coreData.getClickSoundB ()); + needUpdateFromServer = true; - renderer.renderLabel(&ircOnlinePeopleLabel,&titleLabelColor); - renderer.renderLabel(&ircOnlinePeopleStatusLabel,&titleLabelColor); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + } + else if (buttonReturn.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + soundRenderer.playFx (coreData.getClickSoundA ()); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + if (ircClient != NULL && ircClient->isConnected () == true + && ircClient->getHasJoinedChannel () == true) + { + ircClient->SendIRCCmdMessage (IRC_CHANNEL, + " << left the lobby"); + sleep (30); } - safeMutexIRCPtr.ReleaseLock(); + cleanup (); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + mainMenu->setState (new MenuStateNewGame (program, mainMenu)); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + } + else if (buttonCreateGame.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + MutexSafeWrapper + safeMutex ((updateFromMasterserverThread != + NULL ? updateFromMasterserverThread-> + getMutexThreadObjectAccessor () : NULL), + string (extractFileFromDirectoryPath (__FILE__). + c_str ()) + "_" + intToStr (__LINE__)); + soundRenderer.playFx (coreData.getClickSoundB ()); + needUpdateFromServer = false; + safeMutex.ReleaseLock (); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + if (ircClient != NULL && ircClient->isConnected () == true + && ircClient->getHasJoinedChannel () == true) + { + ircClient->SendIRCCmdMessage (IRC_CHANNEL, + " << tries to create a game"); + sleep (30); + } + cleanup (); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + mainMenu-> + setState (new + MenuStateCustomGame (program, mainMenu, true, + pMasterServer)); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + } + else if (listBoxAutoRefresh.mouseClick (x, y)) + { + MutexSafeWrapper + safeMutex ((updateFromMasterserverThread != + NULL ? updateFromMasterserverThread-> + getMutexThreadObjectAccessor () : NULL), + string (extractFileFromDirectoryPath (__FILE__). + c_str ()) + "_" + intToStr (__LINE__)); + soundRenderer.playFx (coreData.getClickSoundA ()); + autoRefreshTime = 10 * listBoxAutoRefresh.getSelectedItemIndex (); + } + else + { + MutexSafeWrapper + safeMutex ((updateFromMasterserverThread != + NULL ? updateFromMasterserverThread-> + getMutexThreadObjectAccessor () : NULL), + string (extractFileFromDirectoryPath (__FILE__). + c_str ()) + "_" + intToStr (__LINE__)); + bool clicked = false; + if (serverScrollBar.getElementCount () != 0) + { + for (int i = serverScrollBar.getVisibleStart (); + i <= serverScrollBar.getVisibleEnd (); ++i) + { + if (serverLines[i]->buttonMouseClick (x, y)) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + clicked = true; + soundRenderer.playFx (coreData.getClickSoundB ()); + string connectServerIP = + serverLines[i]->getMasterServerInfo ()->getIpAddress (); + int connectServerPort = + serverLines[i]->getMasterServerInfo ()-> + getExternalConnectPort (); + bool connected = + connectToServer (connectServerIP, connectServerPort); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + safeMutex.ReleaseLock (); + if (connected) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + + if (ircClient != NULL && ircClient->isConnected () == true + && ircClient->getHasJoinedChannel () == true) + { + ircClient->SendIRCCmdMessage (IRC_CHANNEL, + " << is connecting to '" + + serverLines[i]-> + getMasterServerInfo ()-> + getServerTitle () + "'"); + sleep (30); + } + cleanup (); + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + mainMenu-> + setState (new + MenuStateConnectedGame (program, mainMenu, + jmMasterserver)); + } + break; + } + } + } + if (!clicked && userScrollBar.getElementCount () != 0) + { + for (int i = userScrollBar.getVisibleStart (); + i <= userScrollBar.getVisibleEnd (); ++i) + { + if (userButtons[i]->getEnabled () == true + && userButtons[i]->mouseClick (x, y)) + { + //clicked=true; + if (!chatManager.getEditEnabled ()) + { + chatManager.switchOnEdit (); + chatManager.addText (userButtons[i]->getText () + " "); + } + else + { + chatManager.addText (userButtons[i]->getText ()); + } + break; + } + } + } + } + } + + void MenuStateMasterserver::mouseUp (int x, int y, + const MouseButton mouseButton) + { + if (mouseButton == mbLeft) + { + userScrollBar.mouseUp (x, y); + serverScrollBar.mouseUp (x, y); + } + } + + void MenuStateMasterserver::mouseMove (int x, int y, + const MouseState * ms) + { + MutexSafeWrapper + safeMutex ((updateFromMasterserverThread != + NULL ? updateFromMasterserverThread-> + getMutexThreadObjectAccessor () : NULL), + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + "_" + intToStr (__LINE__)); + + if (mainMessageBox.getEnabled ()) + { + mainMessageBox.mouseMove (x, y); + } + buttonRefresh.mouseMove (x, y); + buttonReturn.mouseMove (x, y); + buttonCreateGame.mouseMove (x, y); + if (ms->get (mbLeft)) + { + userScrollBar.mouseDown (x, y); + serverScrollBar.mouseDown (x, y); + } + else + { + userScrollBar.mouseMove (x, y); + serverScrollBar.mouseMove (x, y); + } + listBoxAutoRefresh.mouseMove (x, y); + + if (serverScrollBar.getElementCount () != 0) + { + for (int i = serverScrollBar.getVisibleStart (); + i <= serverScrollBar.getVisibleEnd (); ++i) + { + serverLines[i]->buttonMouseMove (x, y); + } + } + if (userScrollBar.getElementCount () != 0) + { + for (int i = userScrollBar.getVisibleStart (); + i <= userScrollBar.getVisibleEnd (); ++i) + { + if (userButtons[i]->getEnabled () == true) + { + userButtons[i]->mouseMove (x, y); + } + } + } + + } + + void MenuStateMasterserver::render () + { + Renderer & renderer = Renderer::getInstance (); + + MutexSafeWrapper + safeMutex ((updateFromMasterserverThread != + NULL ? updateFromMasterserverThread-> + getMutexThreadObjectAccessor () : NULL), + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + "_" + intToStr (__LINE__)); + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + else + { + renderer.renderLabel (&labelTitle, &GREEN); + renderer.renderLabel (&announcementLabel, &YELLOW); + renderer.renderLabel (&versionInfoLabel); + + // Render titles for server games listed + const Vec4f titleLabelColor = CYAN; + + //general info: + renderer.renderLabel (&glestVersionLabel, &titleLabelColor); + renderer.renderLabel (&platformLabel, &titleLabelColor); + //renderer.renderLabel(&binaryCompileDateLabel,&titleLabelColor); + + //game info: + renderer.renderLabel (&serverTitleLabel, &titleLabelColor); + renderer.renderLabel (&countryLabel, &titleLabelColor); + renderer.renderLabel (&statusLabel, &titleLabelColor); + //renderer.renderLabel(&ipAddressLabel,&titleLabelColor); + + //game setup info: + renderer.renderLabel (&techLabel, &titleLabelColor); + renderer.renderLabel (&mapLabel, &titleLabelColor); + //renderer.renderLabel(&tilesetLabel,&titleLabelColor); + renderer.renderLabel (&activeSlotsLabel, &titleLabelColor); + //renderer.renderLabel(&externalConnectPort,&titleLabelColor); + renderer.renderLabel (&selectButton, &titleLabelColor); + + Lang & lang = Lang::getInstance (); + MutexSafeWrapper safeMutexIRCPtr (mutexIRCClient, + string (extractFileFromDirectoryPath + (__FILE__).c_str ()) + "_" + + intToStr (__LINE__)); + if (ircClient != NULL && ircClient->isConnected () == true + && ircClient->getHasJoinedChannel () == true) + { + const Vec4f titleLabelColor = GREEN; + + if (ircOnlinePeopleStatusLabel.getText () != "") + { + ircOnlinePeopleStatusLabel.setText (""); + } + + renderer.renderLabel (&ircOnlinePeopleLabel, &titleLabelColor); + //renderer.renderLabel(&ircOnlinePeopleStatusLabel,&titleLabelColor); + } + else + { + const Vec4f titleLabelColor = RED; + + if (ircOnlinePeopleStatusLabel.getText () != + lang.getString ("Connecting")) + { + ircOnlinePeopleStatusLabel.setText (lang. + getString ("Connecting")); + } + + renderer.renderLabel (&ircOnlinePeopleLabel, &titleLabelColor); + renderer.renderLabel (&ircOnlinePeopleStatusLabel, + &titleLabelColor); + } + safeMutexIRCPtr.ReleaseLock (); //const Vec4f titleLabelColorList = YELLOW; - if(serverScrollBar.getElementCount()!=0 ) { - for(int i = serverScrollBar.getVisibleStart(); i <= serverScrollBar.getVisibleEnd(); ++i) { - serverLines[i]->render(); - } - } - renderer.renderScrollBar(&serverScrollBar); - - for(int i = 0; i < (int)sizeof(lines) / (int)sizeof(lines[0]); ++i){ - renderer.renderLine(&lines[i]); - } - renderer.renderButton(&buttonRefresh); - renderer.renderButton(&buttonReturn); - renderer.renderLabel(&labelAutoRefresh); - renderer.renderButton(&buttonCreateGame); - renderer.renderListBox(&listBoxAutoRefresh); - - if(userScrollBar.getElementCount()!=0 ) { - for(int i = userScrollBar.getVisibleStart(); i <= userScrollBar.getVisibleEnd(); ++i) { - renderer.renderButton(userButtons[i]); - } - } - renderer.renderScrollBar(&userScrollBar); - if(ircClient != NULL && - ircClient->isConnected() == true && - ircClient->getHasJoinedChannel() == true) { - renderer.renderChatManager(&chatManager); - } - renderer.renderConsole(&consoleIRC,consoleStoredOnly,21); - - } - if(program != NULL) program->renderProgramMsgBox(); -} - -void MenuStateMasterserver::update() { - MutexSafeWrapper safeMutex((updateFromMasterserverThread != NULL ? updateFromMasterserverThread->getMutexThreadObjectAccessor() : NULL),string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - if(autoRefreshTime!=0 && difftime(time(NULL),lastRefreshTimer) >= autoRefreshTime ) { - needUpdateFromServer = true; - lastRefreshTimer= time(NULL); - } - - // calculate button linepos: - setButtonLinePosition(serverLinesYBase-(serverLinesToRender)*serverLinesLineHeight-30); - - if(playServerFoundSound) - { - SoundRenderer::getInstance().playFx(CoreData::getInstance().getAttentionSound()); - //switch on music again!! - Config &config = Config::getInstance(); - float configVolume = (config.getInt("SoundVolumeMusic") / 100.f); - CoreData::getInstance().getMenuMusic()->setVolume(configVolume); - - playServerFoundSound=false; - } - - //console.update(); - - //call the chat manager - chatManager.updateNetwork(); - - //console - consoleIRC.update(); - - MutexSafeWrapper safeMutexIRCPtr(mutexIRCClient,string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - if(ircClient != NULL) { - std::vector nickList = ircClient->getNickList(); - - if(currentIrcNick != ircClient->getNick()) { - currentIrcNick = ircClient->getNick(); - consoleIRC.setStringToHighlight(currentIrcNick); - } - - bool isNew=false; - //check if there is something new - if( oldNickList.size() != nickList.size()) { - isNew=true; - } - else { - for(unsigned int i = 0; i < nickList.size(); ++i) { - if(nickList[i] != oldNickList[i]) { - isNew=true; - break; - } - } + if (serverScrollBar.getElementCount () != 0) + { + for (int i = serverScrollBar.getVisibleStart (); + i <= serverScrollBar.getVisibleEnd (); ++i) + { + serverLines[i]->render (); + } } + renderer.renderScrollBar (&serverScrollBar); - if(isNew) { - clearUserButtons(); - for(int i = 0; i < (int)nickList.size(); ++i) { - GraphicButton *button=new GraphicButton(); - button->init(userButtonsXBase,userButtonsYBase,userButtonsWidth,userButtonsHeight); - //button->init(userButtonsXBase,userButtonsYBase-userButtonsLineHeight*i,userButtonsWidth,userButtonsHeight); - button->setFont(CoreData::getInstance().getDisplayFontSmall()); - button->setFont3D(CoreData::getInstance().getDisplayFontSmall3D()); - button->setText(nickList[i]); - if(strncmp(&nickList[i][0],"ZG_",3) != 0 || &nickList[i][0] == currentIrcNick) { - button->setEnabled(false); - button->setEditable(false); - button->setCustomTexture(CoreData::getInstance().getCustomTexture()); - button->setUseCustomTexture(true); - } + for (int i = 0; i < (int) sizeof (lines) / (int) sizeof (lines[0]); + ++i) + { + renderer.renderLine (&lines[i]); + } + renderer.renderButton (&buttonRefresh); + renderer.renderButton (&buttonReturn); + renderer.renderLabel (&labelAutoRefresh); + renderer.renderButton (&buttonCreateGame); + renderer.renderListBox (&listBoxAutoRefresh); - userButtons.push_back(button); - } - userScrollBar.setElementCount((int)userButtons.size()); - oldNickList = nickList; - chatManager.setAutoCompleteTextList(oldNickList); + if (userScrollBar.getElementCount () != 0) + { + for (int i = userScrollBar.getVisibleStart (); + i <= userScrollBar.getVisibleEnd (); ++i) + { + renderer.renderButton (userButtons[i]); + } } - if(userScrollBar.getElementCount()!=0 ) { - for(int i = userScrollBar.getVisibleStart(); i <= userScrollBar.getVisibleEnd(); ++i) { - userButtons[i]->setY(userButtonsYBase-userButtonsLineHeight*(i-userScrollBar.getVisibleStart())); - } + renderer.renderScrollBar (&userScrollBar); + if (ircClient != NULL && + ircClient->isConnected () == true && + ircClient->getHasJoinedChannel () == true) + { + renderer.renderChatManager (&chatManager); } + renderer.renderConsole (&consoleIRC, consoleStoredOnly, 21); + + } + if (program != NULL) + program->renderProgramMsgBox (); } - safeMutexIRCPtr.ReleaseLock(); - if(serverInfoString!="empty") + + void MenuStateMasterserver::update () { - rebuildServerLines(serverInfoString); - serverInfoString="empty"; + MutexSafeWrapper + safeMutex ((updateFromMasterserverThread != + NULL ? updateFromMasterserverThread-> + getMutexThreadObjectAccessor () : NULL), + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + "_" + intToStr (__LINE__)); + if (autoRefreshTime != 0 + && difftime (time (NULL), lastRefreshTimer) >= autoRefreshTime) + { + needUpdateFromServer = true; + lastRefreshTimer = time (NULL); + } + + // calculate button linepos: + setButtonLinePosition (serverLinesYBase - + (serverLinesToRender) * serverLinesLineHeight - + 30); + + if (playServerFoundSound) + { + SoundRenderer::getInstance ().playFx (CoreData::getInstance (). + getAttentionSound ()); + //switch on music again!! + Config & config = Config::getInstance (); + float configVolume = (config.getInt ("SoundVolumeMusic") / 100.f); + CoreData::getInstance ().getMenuMusic ()->setVolume (configVolume); + + playServerFoundSound = false; + } + + //console.update(); + + //call the chat manager + chatManager.updateNetwork (); + + //console + consoleIRC.update (); + + MutexSafeWrapper safeMutexIRCPtr (mutexIRCClient, + string (extractFileFromDirectoryPath + (__FILE__).c_str ()) + "_" + + intToStr (__LINE__)); + if (ircClient != NULL) + { + std::vector < string > nickList = ircClient->getNickList (); + + if (currentIrcNick != ircClient->getNick ()) + { + currentIrcNick = ircClient->getNick (); + consoleIRC.setStringToHighlight (currentIrcNick); + } + + bool isNew = false; + //check if there is something new + if (oldNickList.size () != nickList.size ()) + { + isNew = true; + } + else + { + for (unsigned int i = 0; i < nickList.size (); ++i) + { + if (nickList[i] != oldNickList[i]) + { + isNew = true; + break; + } + } + } + + if (isNew) + { + clearUserButtons (); + for (int i = 0; i < (int) nickList.size (); ++i) + { + GraphicButton *button = new GraphicButton (); + button->init (userButtonsXBase, userButtonsYBase, + userButtonsWidth, userButtonsHeight); + //button->init(userButtonsXBase,userButtonsYBase-userButtonsLineHeight*i,userButtonsWidth,userButtonsHeight); + button->setFont (CoreData::getInstance ().getDisplayFontSmall ()); + button->setFont3D (CoreData::getInstance (). + getDisplayFontSmall3D ()); + button->setText (nickList[i]); + if (strncmp (&nickList[i][0], "ZG_", 3) != 0 + || &nickList[i][0] == currentIrcNick) + { + button->setEnabled (false); + button->setEditable (false); + button->setCustomTexture (CoreData::getInstance (). + getCustomTexture ()); + button->setUseCustomTexture (true); + } + + userButtons.push_back (button); + } + userScrollBar.setElementCount ((int) userButtons.size ()); + oldNickList = nickList; + chatManager.setAutoCompleteTextList (oldNickList); + } + if (userScrollBar.getElementCount () != 0) + { + for (int i = userScrollBar.getVisibleStart (); + i <= userScrollBar.getVisibleEnd (); ++i) + { + userButtons[i]->setY (userButtonsYBase - + userButtonsLineHeight * (i - + userScrollBar. + getVisibleStart + ())); + } + } + } + safeMutexIRCPtr.ReleaseLock (); + if (serverInfoString != "empty") + { + rebuildServerLines (serverInfoString); + serverInfoString = "empty"; + } + + serverScrollBar.setElementCount ((int) serverLines.size ()); + if (serverScrollBar.getElementCount () != 0) + { + for (int i = serverScrollBar.getVisibleStart (); + i <= serverScrollBar.getVisibleEnd (); ++i) + { + serverLines[i]->setY (serverLinesYBase - + serverLinesLineHeight * (i - + serverScrollBar. + getVisibleStart ())); + } + } + + if (threadedErrorMsg != "") + { + std::string sError = threadedErrorMsg; + threadedErrorMsg = ""; + + if (pCB_DisplayMessage != NULL) + { + pCB_DisplayMessage (sError.c_str (), false); + } + else + { + throw megaglest_runtime_error (sError.c_str ()); + } + } } - serverScrollBar.setElementCount((int)serverLines.size()); - if(serverScrollBar.getElementCount()!=0 ) { - for(int i = serverScrollBar.getVisibleStart(); i <= serverScrollBar.getVisibleEnd(); ++i) { - serverLines[i]->setY(serverLinesYBase-serverLinesLineHeight*(i-serverScrollBar.getVisibleStart())); - } - } + void MenuStateMasterserver::simpleTask (BaseThread * callingThread, + void *userdata) + { + if (callingThread->getQuitStatus () == true) + { + return; + } + MutexSafeWrapper safeMutex (callingThread-> + getMutexThreadObjectAccessor (), + string (extractFileFromDirectoryPath + (__FILE__).c_str ()) + "_" + + intToStr (__LINE__)); + bool needUpdate = needUpdateFromServer; - if(threadedErrorMsg != "") { - std::string sError = threadedErrorMsg; - threadedErrorMsg = ""; + if (needUpdate == true) + { + try + { - if(pCB_DisplayMessage != NULL) { - pCB_DisplayMessage(sError.c_str(),false); - } - else { - throw megaglest_runtime_error(sError.c_str()); - } - } -} + if (callingThread->getQuitStatus () == true) + { + return; + } -void MenuStateMasterserver::simpleTask(BaseThread *callingThread,void *userdata) { - if(callingThread->getQuitStatus() == true) { - return; - } - MutexSafeWrapper safeMutex(callingThread->getMutexThreadObjectAccessor(),string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - bool needUpdate = needUpdateFromServer; + needUpdateFromServer = false; - if(needUpdate == true) { - try { + if (announcementLoaded == false) + { + string announcementURL = + Config::getInstance ().getString ("AnnouncementURL", + "http://master.megaglest.org/files/announcement.txt"); + if (announcementURL != "") + { - if(callingThread->getQuitStatus() == true) { + safeMutex.ReleaseLock (true); + CURL *handle = SystemFlags::initHTTP (); + std::string announcementTxt = + SystemFlags::getHTTP (announcementURL, handle); + SystemFlags::cleanupHTTP (&handle); + if (callingThread->getQuitStatus () == true) + { return; - } + } + safeMutex.Lock (); - needUpdateFromServer = false; + if (StartsWith + (announcementTxt, + "Announcement from Masterserver:") == true) + { + int newlineCount = 0; + size_t lastIndex = 0; - if(announcementLoaded == false) { - string announcementURL = Config::getInstance().getString("AnnouncementURL","http://master.megaglest.org/files/announcement.txt"); - if(announcementURL != "") { + //announcementLabel.setText(announcementTxt); + consoleIRC.addLine (announcementTxt, true, + Vec3f (1.0f, 1.0f, 0.0f)); - safeMutex.ReleaseLock(true); - CURL *handle = SystemFlags::initHTTP(); - std::string announcementTxt = SystemFlags::getHTTP(announcementURL,handle); - SystemFlags::cleanupHTTP(&handle); - if(callingThread->getQuitStatus() == true) { - return; - } - safeMutex.Lock(); - - if(StartsWith(announcementTxt,"Announcement from Masterserver:") == true) { - int newlineCount=0; - size_t lastIndex=0; - - //announcementLabel.setText(announcementTxt); - consoleIRC.addLine(announcementTxt, true, Vec3f(1.0f,1.0f,0.0f)); - - while(true) { - lastIndex=announcementTxt.find("\n",lastIndex+1); - if(lastIndex==string::npos) { - break; - } - else { - newlineCount++; - } - } - newlineCount--;// remove my own line - for( int i=0; i< newlineCount;++i ) { - consoleIRC.addLine(""); - } - } + while (true) + { + lastIndex = announcementTxt.find ("\n", lastIndex + 1); + if (lastIndex == string::npos) + { + break; + } + else + { + newlineCount++; + } } - consoleIRC.addLine("---------------------------------------------"); - string versionURL = Config::getInstance().getString("VersionURL","http://master.megaglest.org/files/versions/")+glestVersionString+".txt"; - //printf("\nversionURL=%s\n",versionURL.c_str()); - if(versionURL != "") { - safeMutex.ReleaseLock(true); - CURL *handle = SystemFlags::initHTTP(); - std::string versionTxt = SystemFlags::getHTTP(versionURL,handle); - SystemFlags::cleanupHTTP(&handle); - if(callingThread->getQuitStatus() == true) { - return; - } - safeMutex.Lock(); - - if(StartsWith(versionTxt,"Version info:") == true) { - int newlineCount=0; - size_t lastIndex=0; - - //versionInfoLabel.setText(versionTxt); - consoleIRC.addLine(versionTxt, true, Vec3f(1.0f,0.0f,0.0f)); - - while(true) { - lastIndex=versionTxt.find("\n",lastIndex+1); - if(lastIndex==string::npos) { - break; - } - else { - newlineCount++; - } - } - newlineCount--;// remove my own line - for( int i=0; i< newlineCount;++i ) { - consoleIRC.addLine(""); - } - } + newlineCount--; // remove my own line + for (int i = 0; i < newlineCount; ++i) + { + consoleIRC.addLine (""); } - consoleIRC.addLine("---------------------------------------------"); - // write hint to console: - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - consoleIRC.addLine(Lang::getInstance().getString("ToSwitchOffMusicPress")+" - \""+configKeys.getString("ToggleMusic")+"\""); - - announcementLoaded=true; + } } + consoleIRC. + addLine ("---------------------------------------------"); + string versionURL = + Config::getInstance ().getString ("VersionURL", + "http://master.megaglest.org/files/versions/") + + glestVersionString + ".txt"; + //printf("\nversionURL=%s\n",versionURL.c_str()); + if (versionURL != "") + { + safeMutex.ReleaseLock (true); + CURL *handle = SystemFlags::initHTTP (); + std::string versionTxt = + SystemFlags::getHTTP (versionURL, handle); + SystemFlags::cleanupHTTP (&handle); + if (callingThread->getQuitStatus () == true) + { + return; + } + safeMutex.Lock (); - //Lang &lang= Lang::getInstance(); - try { - if(Config::getInstance().getString("Masterserver","") != "") { + if (StartsWith (versionTxt, "Version info:") == true) + { + int newlineCount = 0; + size_t lastIndex = 0; - safeMutex.ReleaseLock(true); - CURL *handle = SystemFlags::initHTTP(); + //versionInfoLabel.setText(versionTxt); + consoleIRC.addLine (versionTxt, true, + Vec3f (1.0f, 0.0f, 0.0f)); - string playerUUID = "?uuid=" + SystemFlags::escapeURL(Config::getInstance().getString("PlayerId","")); - - string baseURL = Config::getInstance().getString("Masterserver"); - if(baseURL != "") { - endPathWithSlash(baseURL,false); - } - - std::string localServerInfoString = SystemFlags::getHTTP(baseURL + "showServersForGlest.php" + playerUUID,handle); - SystemFlags::cleanupHTTP(&handle); - if(callingThread->getQuitStatus() == true) { - return; - } - safeMutex.Lock(); - - serverInfoString=localServerInfoString; + while (true) + { + lastIndex = versionTxt.find ("\n", lastIndex + 1); + if (lastIndex == string::npos) + { + break; + } + else + { + newlineCount++; + } } + newlineCount--; // remove my own line + for (int i = 0; i < newlineCount; ++i) + { + consoleIRC.addLine (""); + } + } } - catch(const exception &ex) { - serverInfoString=ex.what(); - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line %d] error during Internet game status update: [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); + consoleIRC. + addLine ("---------------------------------------------"); + // write hint to console: + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + consoleIRC.addLine (Lang::getInstance (). + getString ("ToSwitchOffMusicPress") + + " - \"" + + configKeys.getString ("ToggleMusic") + "\""); + + announcementLoaded = true; + } + + //Lang &lang= Lang::getInstance(); + try + { + if (Config::getInstance ().getString ("Masterserver", "") != "") + { + + safeMutex.ReleaseLock (true); + CURL *handle = SystemFlags::initHTTP (); + + string playerUUID = + "?uuid=" + + SystemFlags::escapeURL (Config::getInstance (). + getString ("PlayerId", "")); + + string baseURL = + Config::getInstance ().getString ("Masterserver"); + if (baseURL != "") + { + endPathWithSlash (baseURL, false); + } + + std::string localServerInfoString = + SystemFlags::getHTTP (baseURL + "showServersForGlest.php" + + playerUUID, handle); + SystemFlags::cleanupHTTP (&handle); + if (callingThread->getQuitStatus () == true) + { + return; + } + safeMutex.Lock (); + + serverInfoString = localServerInfoString; } + } + catch (const exception & ex) + { + serverInfoString = ex.what (); + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line %d] error during Internet game status update: [%s]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__, + ex.what ()); + } } - catch(const exception &e){ - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,e.what()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] Line: %d, error [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,e.what()); - threadedErrorMsg = e.what(); + catch (const exception & e) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error [%s]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__, + e.what ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] Line: %d, error [%s]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__, + e.what ()); + threadedErrorMsg = e.what (); } - } -} - -void MenuStateMasterserver::rebuildServerLines(const string &serverInfo) { - int numberOfOldServerLines = (int)serverLines.size(); - clearServerLines(); - Lang &lang= Lang::getInstance(); - try { - if(serverInfo != "") { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("--------------> serverInfo [%s]\n",serverInfo.c_str()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - std::vector serverList; - Tokenize(serverInfo,serverList,"\n"); - for(int i = 0; i < (int)serverList.size(); i++) { - string &server = serverList[i]; - if(trim(server) == "") { - continue; - } - std::vector serverEntities; - Tokenize(server,serverEntities,"|"); - const int MIN_FIELDS_EXPECTED = 14; - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("--------------> server [%s] serverEntities.size() = " MG_SIZE_T_SPECIFIER " MIN_FIELDS_EXPECTED = %d\n",server.c_str(),serverEntities.size(),MIN_FIELDS_EXPECTED); - - if((int)serverEntities.size() >= MIN_FIELDS_EXPECTED) { - labelTitle.setText(lang.getString("AvailableServers")); - - if(Config::getInstance().getString("Masterserver","") == "") { - labelTitle.setText("*** " + lang.getString("AvailableServers")); - } - - MasterServerInfo *masterServerInfo=new MasterServerInfo(); - - //general info: - masterServerInfo->setGlestVersion(serverEntities[0]); - masterServerInfo->setPlatform(serverEntities[1]); - masterServerInfo->setBinaryCompileDate(serverEntities[2]); - - //game info: - masterServerInfo->setServerTitle(serverEntities[3]); - masterServerInfo->setIpAddress(serverEntities[4]); - - //game setup info: - masterServerInfo->setTech(serverEntities[5]); - masterServerInfo->setMap(serverEntities[6]); - masterServerInfo->setTileset(serverEntities[7]); - masterServerInfo->setActiveSlots(strToInt(serverEntities[8])); - masterServerInfo->setNetworkSlots(strToInt(serverEntities[9])); - masterServerInfo->setConnectedClients(strToInt(serverEntities[10])); - masterServerInfo->setExternalConnectPort(strToInt(serverEntities[11])); - masterServerInfo->setCountry(serverEntities[12]); - masterServerInfo->setStatus(strToInt(serverEntities[13])); - - //printf("--------------> Country [%s] Status [%d]\n",masterServerInfo->getCountry().c_str(),masterServerInfo->getStatus()); - - //printf("Getting Ping time for host %s\n",masterServerInfo->getIpAddress().c_str()); - //float pingTime = Socket::getAveragePingMS(masterServerInfo->getIpAddress().c_str(),1); - //printf("Ping time = %f\n",pingTime); - char szBuf[8096]=""; - snprintf(szBuf,8096,"%s",masterServerInfo->getServerTitle().c_str()); - masterServerInfo->setServerTitle(szBuf); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - serverLines.push_back(new ServerLine( masterServerInfo, i, serverLinesYBase, serverLinesLineHeight, containerName)); - delete masterServerInfo; - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - Lang &lang= Lang::getInstance(); - labelTitle.setText("*** " + lang.getString("AvailableServers") + "[" + intToStr(serverEntities.size()) + "][" + intToStr(MIN_FIELDS_EXPECTED) + "] [" + serverInfo + "]"); - - if(masterserverParseErrorShown == false) { - masterserverParseErrorShown = true; - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line %d] error, no masterserver defined!\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - } - + } } - catch(const exception &ex) { - labelTitle.setText("*** " + lang.getString("AvailableServers") + " [" + ex.what() + "]"); - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line %d] error during Internet game status update: [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - } - if((int)serverLines.size() > numberOfOldServerLines) { - playServerFoundSound = true; - } -} + void MenuStateMasterserver::rebuildServerLines (const string & serverInfo) + { + int numberOfOldServerLines = (int) serverLines.size (); + clearServerLines (); + Lang & lang = Lang::getInstance (); + try + { + if (serverInfo != "") + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("--------------> serverInfo [%s]\n", serverInfo.c_str ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + std::vector < std::string > serverList; + Tokenize (serverInfo, serverList, "\n"); + for (int i = 0; i < (int) serverList.size (); i++) + { + string & server = serverList[i]; + if (trim (server) == "") + { + continue; + } + std::vector < std::string > serverEntities; + Tokenize (server, serverEntities, "|"); + const int MIN_FIELDS_EXPECTED = 14; + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("--------------> server [%s] serverEntities.size() = " + MG_SIZE_T_SPECIFIER " MIN_FIELDS_EXPECTED = %d\n", + server.c_str (), serverEntities.size (), + MIN_FIELDS_EXPECTED); + + if ((int) serverEntities.size () >= MIN_FIELDS_EXPECTED) + { + labelTitle.setText (lang.getString ("AvailableServers")); + + if (Config::getInstance ().getString ("Masterserver", "") == "") + { + labelTitle.setText ("*** " + + lang.getString ("AvailableServers")); + } + + MasterServerInfo *masterServerInfo = new MasterServerInfo (); + + //general info: + masterServerInfo->setGlestVersion (serverEntities[0]); + masterServerInfo->setPlatform (serverEntities[1]); + masterServerInfo->setBinaryCompileDate (serverEntities[2]); + + //game info: + masterServerInfo->setServerTitle (serverEntities[3]); + masterServerInfo->setIpAddress (serverEntities[4]); + + //game setup info: + masterServerInfo->setTech (serverEntities[5]); + masterServerInfo->setMap (serverEntities[6]); + masterServerInfo->setTileset (serverEntities[7]); + masterServerInfo->setActiveSlots (strToInt (serverEntities[8])); + masterServerInfo-> + setNetworkSlots (strToInt (serverEntities[9])); + masterServerInfo-> + setConnectedClients (strToInt (serverEntities[10])); + masterServerInfo-> + setExternalConnectPort (strToInt (serverEntities[11])); + masterServerInfo->setCountry (serverEntities[12]); + masterServerInfo->setStatus (strToInt (serverEntities[13])); + + //printf("--------------> Country [%s] Status [%d]\n",masterServerInfo->getCountry().c_str(),masterServerInfo->getStatus()); + + //printf("Getting Ping time for host %s\n",masterServerInfo->getIpAddress().c_str()); + //float pingTime = Socket::getAveragePingMS(masterServerInfo->getIpAddress().c_str(),1); + //printf("Ping time = %f\n",pingTime); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "%s", + masterServerInfo->getServerTitle ().c_str ()); + masterServerInfo->setServerTitle (szBuf); + + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + serverLines. + push_back (new + ServerLine (masterServerInfo, i, serverLinesYBase, + serverLinesLineHeight, containerName)); + delete masterServerInfo; + } + else + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + + Lang & lang = Lang::getInstance (); + labelTitle.setText ("*** " + + lang.getString ("AvailableServers") + "[" + + intToStr (serverEntities.size ()) + "][" + + intToStr (MIN_FIELDS_EXPECTED) + "] [" + + serverInfo + "]"); + + if (masterserverParseErrorShown == false) + { + masterserverParseErrorShown = true; + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line %d] error, no masterserver defined!\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + } + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath + (__FILE__).c_str (), __FUNCTION__, + __LINE__); + } + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + } + + } + catch (const exception & ex) + { + labelTitle.setText ("*** " + lang.getString ("AvailableServers") + + " [" + ex.what () + "]"); + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line %d] error during Internet game status update: [%s]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__, + ex.what ()); + } + + if ((int) serverLines.size () > numberOfOldServerLines) + { + playServerFoundSound = true; + } + } -bool MenuStateMasterserver::connectToServer(string ipString, int port) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] START ipString='%s'\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,ipString.c_str()); + bool MenuStateMasterserver::connectToServer (string ipString, int port) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] START ipString='%s'\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, ipString.c_str ()); - ClientInterface* clientInterface= NetworkManager::getInstance().getClientInterface(); - //Config& config= Config::getInstance(); - Ip serverIp(ipString); + ClientInterface *clientInterface = + NetworkManager::getInstance ().getClientInterface (); + //Config& config= Config::getInstance(); + Ip serverIp (ipString); - //int serverPort = Config::getInstance().getInt("PortServer",intToStr(GameConstants::serverPort).c_str()); - int serverPort = port; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] try to connect to [%s] serverPort = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,serverIp.getString().c_str(),serverPort); - clientInterface->connect(serverIp, serverPort); - if(clientInterface->isConnected() == false) { - NetworkManager::getInstance().end(); - NetworkManager::getInstance().init(nrClient); + //int serverPort = Config::getInstance().getInt("PortServer",intToStr(GameConstants::serverPort).c_str()); + int serverPort = port; + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] try to connect to [%s] serverPort = %d\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, + serverIp.getString ().c_str (), serverPort); + clientInterface->connect (serverIp, serverPort); + if (clientInterface->isConnected () == false) + { + NetworkManager::getInstance ().end (); + NetworkManager::getInstance ().init (nrClient); - mainMessageBoxState=1; - Lang &lang= Lang::getInstance(); - showMessageBox(lang.getString("CouldNotConnect"), lang.getString("ConnectionFailed"), false); - return false; + mainMessageBoxState = 1; + Lang & lang = Lang::getInstance (); + showMessageBox (lang.getString ("CouldNotConnect"), + lang.getString ("ConnectionFailed"), false); + return false; - //if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] connection failed\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__); - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] connected to [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,serverIp.getString().c_str()); + //if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s] connection failed\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__); + } + else + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s] connected to [%s]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, + serverIp.getString ().c_str ()); - //save server ip - //config.setString("ServerIp", serverIp.getString()); - //config.save(); + //save server ip + //config.setString("ServerIp", serverIp.getString()); + //config.save(); - for(time_t elapsedWait = time(NULL); - clientInterface->getIntroDone() == false && - clientInterface->isConnected() && - difftime(time(NULL),elapsedWait) <= 8;) { - if(clientInterface->isConnected()) { - //update lobby - clientInterface->updateLobby(); - sleep(0); - //this->render(); - } - } - if( clientInterface->isConnected() == true && - clientInterface->getIntroDone() == true) { - return true; - } + for (time_t elapsedWait = time (NULL); + clientInterface->getIntroDone () == false && + clientInterface->isConnected () && + difftime (time (NULL), elapsedWait) <= 8;) + { + if (clientInterface->isConnected ()) + { + //update lobby + clientInterface->updateLobby (); + sleep (0); + //this->render(); + } + } + if (clientInterface->isConnected () == true && + clientInterface->getIntroDone () == true) + { + return true; + } - return false; - } -} + return false; + } + } -void MenuStateMasterserver::showMessageBox(const string &text, const string &header, bool toggle){ - if(!toggle){ - mainMessageBox.setEnabled(false); - } + void MenuStateMasterserver::showMessageBox (const string & text, + const string & header, + bool toggle) + { + if (!toggle) + { + mainMessageBox.setEnabled (false); + } - if(!mainMessageBox.getEnabled()){ - mainMessageBox.setText(text); - mainMessageBox.setHeader(header); - mainMessageBox.setEnabled(true); - } - else{ - mainMessageBox.setEnabled(false); - } -} + if (!mainMessageBox.getEnabled ()) + { + mainMessageBox.setText (text); + mainMessageBox.setHeader (header); + mainMessageBox.setEnabled (true); + } + else + { + mainMessageBox.setEnabled (false); + } + } -bool MenuStateMasterserver::textInput(std::string text) { - if (ircClient != NULL && ircClient->isConnected() == true - && ircClient->getHasJoinedChannel() == true) { - return chatManager.textInput(text); - } - return false; -} + bool MenuStateMasterserver::textInput (std::string text) + { + if (ircClient != NULL && ircClient->isConnected () == true + && ircClient->getHasJoinedChannel () == true) + { + return chatManager.textInput (text); + } + return false; + } -void MenuStateMasterserver::keyDown(SDL_KeyboardEvent key) { - //printf("In [%s::%s Line: %d] key [%d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,key.keysym.sym); + void MenuStateMasterserver::keyDown (SDL_KeyboardEvent key) + { + //printf("In [%s::%s Line: %d] key [%d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,key.keysym.sym); - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); - if (ircClient != NULL && ircClient->isConnected() == true - && ircClient->getHasJoinedChannel() == true) { - //chatmanger only if connected to irc! - if (chatManager.getEditEnabled() == true) { - //printf("keyDown key [%d] chatManager.getText() [%s]\n",key,chatManager.getText().c_str()); - MutexSafeWrapper safeMutexIRCPtr(mutexIRCClient,string(extractFileFromDirectoryPath(__FILE__).c_str()) + "_" + intToStr(__LINE__)); - //if (key == vkReturn && ircClient != NULL) { - if(isKeyPressed(SDLK_RETURN,key,false) == true && ircClient != NULL) { - ircClient->SendIRCCmdMessage(IRC_CHANNEL, chatManager.getText()); - } - } - chatManager.keyDown(key); - } - if(chatManager.getEditEnabled() == false) { + if (ircClient != NULL && ircClient->isConnected () == true + && ircClient->getHasJoinedChannel () == true) + { + //chatmanger only if connected to irc! + if (chatManager.getEditEnabled () == true) + { + //printf("keyDown key [%d] chatManager.getText() [%s]\n",key,chatManager.getText().c_str()); + MutexSafeWrapper safeMutexIRCPtr (mutexIRCClient, + string + (extractFileFromDirectoryPath + (__FILE__).c_str ()) + "_" + + intToStr (__LINE__)); + //if (key == vkReturn && ircClient != NULL) { + if (isKeyPressed (SDLK_RETURN, key, false) == true + && ircClient != NULL) + { + ircClient->SendIRCCmdMessage (IRC_CHANNEL, + chatManager.getText ()); + } + } + chatManager.keyDown (key); + } + if (chatManager.getEditEnabled () == false) + { //if(key == configKeys.getCharKey("ToggleMusic")) { - if(isKeyPressed(configKeys.getSDLKey("ToggleMusic"),key) == true) { - Config &config = Config::getInstance(); - Lang &lang= Lang::getInstance(); + if (isKeyPressed (configKeys.getSDLKey ("ToggleMusic"), key) == true) + { + Config & config = Config::getInstance (); + Lang & lang = Lang::getInstance (); - float configVolume = (config.getInt("SoundVolumeMusic") / 100.f); - float currentVolume = CoreData::getInstance().getMenuMusic()->getVolume(); - if(currentVolume > 0) { - CoreData::getInstance().getMenuMusic()->setVolume(0.f); - consoleIRC.addLine(lang.getString("GameMusic") + " " + lang.getString("Off")); - } - else { - CoreData::getInstance().getMenuMusic()->setVolume(configVolume); - //If the config says zero, use the default music volume - //gameMusic->setVolume(configVolume ? configVolume : 0.9); - consoleIRC.addLine(lang.getString("GameMusic")); - } + float configVolume = (config.getInt ("SoundVolumeMusic") / 100.f); + float currentVolume = + CoreData::getInstance ().getMenuMusic ()->getVolume (); + if (currentVolume > 0) + { + CoreData::getInstance ().getMenuMusic ()->setVolume (0.f); + consoleIRC.addLine (lang.getString ("GameMusic") + " " + + lang.getString ("Off")); + } + else + { + CoreData::getInstance ().getMenuMusic ()-> + setVolume (configVolume); + //If the config says zero, use the default music volume + //gameMusic->setVolume(configVolume ? configVolume : 0.9); + consoleIRC.addLine (lang.getString ("GameMusic")); + } } //else if(key == configKeys.getCharKey("SaveGUILayout")) { - else if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - bool saved = GraphicComponent::saveAllCustomProperties(containerName); - Lang &lang= Lang::getInstance(); - consoleIRC.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); + else if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) == + true) + { + bool saved = + GraphicComponent::saveAllCustomProperties (containerName); + Lang & lang = Lang::getInstance (); + consoleIRC.addLine (lang.getString ("GUILayoutSaved") + " [" + + (saved ? lang.getString ("Yes") : lang. + getString ("No")) + "]"); } + } } -} -}}//end namespace + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_masterserver.h b/source/glest_game/menu/menu_state_masterserver.h index 55f2ac001..47a48043d 100644 --- a/source/glest_game/menu/menu_state_masterserver.h +++ b/source/glest_game/menu/menu_state_masterserver.h @@ -1,151 +1,166 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATEMASTERSERVER_H_ -#define _GLEST_GAME_MENUSTATEMASTERSERVER_H_ +# define _GLEST_GAME_MENUSTATEMASTERSERVER_H_ -#include "main_menu.h" -#include "server_line.h" -#include "masterserver_info.h" -#include "simple_threads.h" -#include "network_interface.h" -#include "ircclient.h" -#include "chat_manager.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "server_line.h" +# include "masterserver_info.h" +# include "simple_threads.h" +# include "network_interface.h" +# include "ircclient.h" +# include "chat_manager.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class MenuStateMasterserver +// class MenuStateMasterserver // =============================== -typedef vector ServerLines; -typedef vector UserButtons; -typedef vector MasterServerInfos; + typedef vector < ServerLine * >ServerLines; + typedef vector < GraphicButton * >UserButtons; + typedef vector < MasterServerInfo * >MasterServerInfos; -class MenuStateMasterserver : public MenuState, public SimpleTaskCallbackInterface, public IRCCallbackInterface { + class MenuStateMasterserver:public MenuState, + public SimpleTaskCallbackInterface, public IRCCallbackInterface + { -private: + private: - GraphicButton buttonRefresh; - GraphicButton buttonReturn; - GraphicButton buttonCreateGame; - GraphicLabel labelAutoRefresh; - GraphicListBox listBoxAutoRefresh; - GraphicLabel labelTitle; + GraphicButton buttonRefresh; + GraphicButton buttonReturn; + GraphicButton buttonCreateGame; + GraphicLabel labelAutoRefresh; + GraphicListBox listBoxAutoRefresh; + GraphicLabel labelTitle; - GraphicLabel announcementLabel; - GraphicLabel versionInfoLabel; + GraphicLabel announcementLabel; + GraphicLabel versionInfoLabel; - GraphicLine lines[3]; + GraphicLine lines[3]; - GraphicLabel glestVersionLabel; - GraphicLabel platformLabel; - //GraphicLabel binaryCompileDateLabel; + GraphicLabel glestVersionLabel; + GraphicLabel platformLabel; + //GraphicLabel binaryCompileDateLabel; - //game info: - GraphicLabel serverTitleLabel; - GraphicLabel countryLabel; - GraphicLabel statusLabel; + //game info: + GraphicLabel serverTitleLabel; + GraphicLabel countryLabel; + GraphicLabel statusLabel; - GraphicLabel ipAddressLabel; + GraphicLabel ipAddressLabel; - //game setup info: - GraphicLabel techLabel; - GraphicLabel mapLabel; - GraphicLabel tilesetLabel; - GraphicLabel activeSlotsLabel; + //game setup info: + GraphicLabel techLabel; + GraphicLabel mapLabel; + GraphicLabel tilesetLabel; + GraphicLabel activeSlotsLabel; - GraphicLabel externalConnectPort; + GraphicLabel externalConnectPort; - GraphicLabel selectButton; + GraphicLabel selectButton; - GraphicMessageBox mainMessageBox; - int mainMessageBoxState; + GraphicMessageBox mainMessageBox; + int mainMessageBoxState; - GraphicLabel ircOnlinePeopleLabel; - GraphicLabel ircOnlinePeopleStatusLabel; + GraphicLabel ircOnlinePeopleLabel; + GraphicLabel ircOnlinePeopleStatusLabel; - bool announcementLoaded; - bool needUpdateFromServer; - int autoRefreshTime; - time_t lastRefreshTimer; - SimpleTaskThread *updateFromMasterserverThread; - bool playServerFoundSound; - ServerLines serverLines; - string serverInfoString; - int serverLinesToRender; - int serverLinesYBase; - int serverLinesLineHeight; - GraphicScrollBar userScrollBar; - GraphicScrollBar serverScrollBar; - UserButtons userButtons; - UserButtons userButtonsToRemove; - int userButtonsToRender; - int userButtonsYBase; - int userButtonsXBase; - int userButtonsLineHeight; - int userButtonsHeight; - int userButtonsWidth; - string currentIrcNick; + bool announcementLoaded; + bool needUpdateFromServer; + int autoRefreshTime; + time_t lastRefreshTimer; + SimpleTaskThread *updateFromMasterserverThread; + bool playServerFoundSound; + ServerLines serverLines; + string serverInfoString; + int serverLinesToRender; + int serverLinesYBase; + int serverLinesLineHeight; + GraphicScrollBar userScrollBar; + GraphicScrollBar serverScrollBar; + UserButtons userButtons; + UserButtons userButtonsToRemove; + int userButtonsToRender; + int userButtonsYBase; + int userButtonsXBase; + int userButtonsLineHeight; + int userButtonsHeight; + int userButtonsWidth; + string currentIrcNick; - //Console console; + //Console console; - static DisplayMessageFunction pCB_DisplayMessage; - std::string threadedErrorMsg; + static DisplayMessageFunction pCB_DisplayMessage; + std::string threadedErrorMsg; - std::vector ircArgs; - Mutex *mutexIRCClient; - IRCThread *ircClient; - std::vector oldNickList; + std::vector < string > ircArgs; + Mutex *mutexIRCClient; + IRCThread *ircClient; + std::vector < string > oldNickList; - Console consoleIRC; - ChatManager chatManager; + Console consoleIRC; + ChatManager chatManager; - bool masterserverParseErrorShown; + bool masterserverParseErrorShown; -public: - MenuStateMasterserver(Program *program, MainMenu *mainMenu); - ~MenuStateMasterserver(); + public: + MenuStateMasterserver (Program * program, MainMenu * mainMenu); + ~MenuStateMasterserver (); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseUp(int x, int y, const MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void update(); - void render(); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseUp (int x, int y, const MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void update (); + void render (); - virtual bool textInput(std::string text); - virtual void keyDown(SDL_KeyboardEvent key); + virtual bool textInput (std::string text); + virtual void keyDown (SDL_KeyboardEvent key); - virtual void simpleTask(BaseThread *callingThread,void *userdata); - virtual bool isInSpecialKeyCaptureEvent() { return chatManager.getEditEnabled(); } + virtual void simpleTask (BaseThread * callingThread, void *userdata); + virtual bool isInSpecialKeyCaptureEvent () + { + return chatManager.getEditEnabled (); + } - static void setDisplayMessageFunction(DisplayMessageFunction pDisplayMessage) { pCB_DisplayMessage = pDisplayMessage; } + static void setDisplayMessageFunction (DisplayMessageFunction + pDisplayMessage) + { + pCB_DisplayMessage = pDisplayMessage; + } - virtual void reloadUI(); + virtual void reloadUI (); -private: - void showMessageBox(const string &text, const string &header, bool toggle); - bool connectToServer(string ipString, int port); - //void setConsolePos(int yPos); - void setButtonLinePosition(int pos); - void clearServerLines(); - void clearUserButtons(); - void rebuildServerLines(const string &serverInfo); - void cleanup(); - virtual void IRC_CallbackEvent(IRCEventType evt, const char* origin, const char **params, unsigned int count); + private: + void showMessageBox (const string & text, const string & header, + bool toggle); + bool connectToServer (string ipString, int port); + //void setConsolePos(int yPos); + void setButtonLinePosition (int pos); + void clearServerLines (); + void clearUserButtons (); + void rebuildServerLines (const string & serverInfo); + void cleanup (); + virtual void IRC_CallbackEvent (IRCEventType evt, const char *origin, + const char **params, + unsigned int count); -}; + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_mods.cpp b/source/glest_game/menu/menu_state_mods.cpp index 95e4606d8..e4475df9a 100644 --- a/source/glest_game/menu/menu_state_mods.cpp +++ b/source/glest_game/menu/menu_state_mods.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2011 Mark Vejvoda +// Copyright (C) 2011 Mark Vejvoda // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_mods.h" @@ -26,941 +26,1316 @@ #include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { -using namespace ::Shared::Util; + using namespace::Shared::Util; -struct FormatString { - void operator()(string &s) { - s = formatString(s); - } -}; + struct FormatString + { + void operator () (string & s) + { + s = formatString (s); + } + }; // =============================== -// class ModInfo +// class ModInfo // =============================== -ModInfo::ModInfo() { - name = ""; - url = ""; - imageUrl = ""; - description = ""; - count = ""; - crc = ""; - type = mt_None; -} - - - -// ===================================================== -// class MenuStateConnectedGame -// ===================================================== - -MenuStateMods::MenuStateMods(Program *program, MainMenu *mainMenu) : - MenuState(program, mainMenu, "mods") { - - containerName = "Mods"; - Lang &lang= Lang::getInstance(); - Config &config = Config::getInstance(); - - modPreviewImage = NULL; - displayModPreviewImage.clear(); - - ftpClientThread = NULL; - selectedTechName = ""; - selectedTilesetName = ""; - selectedMapName = ""; - selectedScenarioName = ""; - modInfoSelected = NULL; - showFullConsole = false; - keyButtonsLineHeight = 20; - keyButtonsHeight = 20; - keyButtonsWidth = 200; - keyButtonsWidthTech = keyButtonsWidth; - keyButtonsWidthMap = keyButtonsWidth + 15; - keyButtonsWidthTil = keyButtonsWidth - 5; - keyButtonsWidthScen = keyButtonsWidth + 20; - scrollListsYPos = 700; - listBoxLength = 200; - keyButtonsYBase = scrollListsYPos; - keyButtonsToRender = listBoxLength / keyButtonsLineHeight; - labelWidth = 5; - keyButtonsXBase = 0; - modMenuState = mmst_None; - oldMenuState = mmst_None; - - int installButtonYPos = scrollListsYPos-listBoxLength-20; - - int returnLineY = 80; - enableMapPreview = config.getBool("MapPreview","true"); - validMapPreview = false; - mapPreviewTexture=NULL; - - //create - techInfoXPos = 5; - keyTechScrollBarTitle1.registerGraphicComponent(containerName,"keyTechScrollBarTitle1"); - keyTechScrollBarTitle1.init(techInfoXPos + 5,scrollListsYPos + 30,labelWidth,20); - keyTechScrollBarTitle1.setText(lang.getString("TechTitle1")); - keyTechScrollBarTitle1.setFont(CoreData::getInstance().getMenuFontBig()); - keyTechScrollBarTitle1.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - keyTechScrollBarTitle2.registerGraphicComponent(containerName,"keyTechScrollBarTitle2"); - keyTechScrollBarTitle2.init(techInfoXPos - 10 + keyButtonsWidthTech,scrollListsYPos + 17,labelWidth,20); - keyTechScrollBarTitle2.setText(lang.getString("TechTitle2")); - keyTechScrollBarTitle2.setFont(CoreData::getInstance().getMenuFontNormal()); - keyTechScrollBarTitle2.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); - - mapInfoXPos = 260; - keyMapScrollBarTitle1.registerGraphicComponent(containerName,"keyMapScrollBarTitle1"); - keyMapScrollBarTitle1.init(mapInfoXPos + 5,scrollListsYPos + 30,labelWidth,20); - keyMapScrollBarTitle1.setText(lang.getString("MapTitle1")); - keyMapScrollBarTitle1.setFont(CoreData::getInstance().getMenuFontBig()); - keyMapScrollBarTitle1.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - keyMapScrollBarTitle2.registerGraphicComponent(containerName,"keyMapScrollBarTitle2"); - keyMapScrollBarTitle2.init(mapInfoXPos - 10 + keyButtonsWidthMap,scrollListsYPos + 17,labelWidth,20); - keyMapScrollBarTitle2.setText(lang.getString("MapTitle2")); - keyMapScrollBarTitle2.setFont(CoreData::getInstance().getMenuFontNormal()); - keyMapScrollBarTitle2.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); - - tilesetInfoXPos = 530; - keyTilesetScrollBarTitle1.registerGraphicComponent(containerName,"keyTilesetScrollBarTitle1"); - keyTilesetScrollBarTitle1.init(tilesetInfoXPos + 5,scrollListsYPos + 30,labelWidth,20); - keyTilesetScrollBarTitle1.setText(lang.getString("TilesetTitle1")); - keyTilesetScrollBarTitle1.setFont(CoreData::getInstance().getMenuFontBig()); - keyTilesetScrollBarTitle1.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - - scenarioInfoXPos = 755; - keyScenarioScrollBarTitle1.registerGraphicComponent(containerName,"keyScenarioScrollBarTitle1"); - keyScenarioScrollBarTitle1.init(scenarioInfoXPos,scrollListsYPos + 30,labelWidth,20); - keyScenarioScrollBarTitle1.setText(lang.getString("ScenarioTitle1")); - keyScenarioScrollBarTitle1.setFont(CoreData::getInstance().getMenuFontBig()); - keyScenarioScrollBarTitle1.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - mainMessageBoxState = ftpmsg_None; - mainMessageBox.registerGraphicComponent(containerName,"mainMessageBox"); - mainMessageBox.init(lang.getString("Yes"),lang.getString("No"),450); - mainMessageBox.setEnabled(false); - - lineHorizontal.init(0,installButtonYPos-60); - lineVertical.init(500,returnLineY, 5, installButtonYPos-60-returnLineY); - lineVertical.setHorizontal(false); - lineReturn.init(0, returnLineY); - - modDescrLabel.registerGraphicComponent(containerName,"modDescrLabel"); - modDescrLabel.init(15,installButtonYPos-60 - 20,450,20); - modDescrLabel.setWordWrap(true); - modDescrLabel.setText("description is empty"); - - pleaseWaitLabel.registerGraphicComponent(containerName,"pleaseWaitLabel"); - pleaseWaitLabel.init(50,installButtonYPos-120,450,20); - pleaseWaitLabel.setText(""); - pleaseWaitLabel.setFont(CoreData::getInstance().getMenuFontBig()); - pleaseWaitLabel.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - buttonReturn.registerGraphicComponent(containerName,"buttonReturn"); - buttonReturn.init(800, returnLineY - 30, 125); - buttonReturn.setText(lang.getString("Return")); - - lineVerticalReturn.init(buttonReturn.getX() - 10, returnLineY-80, 5, 81); - lineVerticalReturn.setHorizontal(false); - - int buttonLineUpY=installButtonYPos+10; - int buttonLineDownY=installButtonYPos-20; - - int legendButtonY= buttonLineDownY-30; - buttonInstalled.registerGraphicComponent(containerName,"buttonInstalled"); - buttonInstalled.init(5, legendButtonY, 240); - buttonInstalled.setText(" " + lang.getString("ModInstalled")); - buttonInstalled.setUseCustomTexture(true); - buttonInstalled.setCustomTexture(CoreData::getInstance().getOnServerInstalledTexture()); - buttonInstalled.setEnabled(false); - - buttonAvailable.registerGraphicComponent(containerName,"buttonAvailable"); - buttonAvailable.init(255, legendButtonY, 240); - buttonAvailable.setUseCustomTexture(true); - buttonAvailable.setCustomTexture(CoreData::getInstance().getOnServerTexture()); - buttonAvailable.setText(" " + lang.getString("ModAvailable")); - - buttonOnlyLocal.registerGraphicComponent(containerName,"buttonOnlyLocal"); - buttonOnlyLocal.init(505, legendButtonY, 240); - buttonOnlyLocal.setUseCustomTexture(true); - buttonOnlyLocal.setCustomTexture(CoreData::getInstance().getNotOnServerTexture()); - buttonOnlyLocal.setText(" " + lang.getString("ModOnlyLocal")); - - buttonConflict.registerGraphicComponent(containerName,"buttonConflict"); - buttonConflict.init(755, legendButtonY, 240); - buttonConflict.setUseCustomTexture(true); - buttonConflict.setCustomTexture(CoreData::getInstance().getOnServerDifferentTexture()); - buttonConflict.setText(" " + lang.getString("ModHasConflict")); - - - buttonInstallTech.registerGraphicComponent(containerName,"buttonInstallTech"); - buttonInstallTech.init(techInfoXPos + 45, buttonLineUpY, 125); - buttonInstallTech.setText(lang.getString("Install")); - buttonRemoveTech.registerGraphicComponent(containerName,"buttonRemoveTech"); - buttonRemoveTech.init(techInfoXPos + 45, buttonLineDownY, 125); - buttonRemoveTech.setText(lang.getString("Remove")); - - buttonInstallTileset.registerGraphicComponent(containerName,"buttonInstallTileset"); - buttonInstallTileset.init(tilesetInfoXPos + 30, buttonLineUpY, 125); - buttonInstallTileset.setText(lang.getString("Install")); - buttonRemoveTileset.registerGraphicComponent(containerName,"buttonRemoveTileset"); - buttonRemoveTileset.init(tilesetInfoXPos + 30, buttonLineDownY, 125); - buttonRemoveTileset.setText(lang.getString("Remove")); - - buttonInstallMap.registerGraphicComponent(containerName,"buttonInstallMap"); - buttonInstallMap.init(mapInfoXPos + 50, buttonLineUpY, 125); - buttonInstallMap.setText(lang.getString("Install")); - buttonRemoveMap.registerGraphicComponent(containerName,"buttonRemoveMap"); - buttonRemoveMap.init(mapInfoXPos + 50, buttonLineDownY, 125); - buttonRemoveMap.setText(lang.getString("Remove")); - - buttonInstallScenario.registerGraphicComponent(containerName,"buttonInstallScenario"); - buttonInstallScenario.init(scenarioInfoXPos + 45, buttonLineUpY, 125); - buttonInstallScenario.setText(lang.getString("Install")); - buttonRemoveScenario.registerGraphicComponent(containerName,"buttonRemoveScenario"); - buttonRemoveScenario.init(scenarioInfoXPos + 45, buttonLineDownY, 125); - buttonRemoveScenario.setText(lang.getString("Remove")); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - keyTilesetScrollBar.init(tilesetInfoXPos + keyButtonsWidthTil,scrollListsYPos-listBoxLength+keyButtonsLineHeight,false,200,20); - keyTilesetScrollBar.setLength(listBoxLength); - keyTilesetScrollBar.setElementCount(0); - keyTilesetScrollBar.setVisibleSize(keyButtonsToRender); - keyTilesetScrollBar.setVisibleStart(0); - - keyTechScrollBar.init(techInfoXPos + keyButtonsWidthTech + labelWidth + 20,scrollListsYPos-listBoxLength+keyButtonsLineHeight,false,200,20); - keyTechScrollBar.setLength(listBoxLength); - keyTechScrollBar.setElementCount(0); - keyTechScrollBar.setVisibleSize(keyButtonsToRender); - keyTechScrollBar.setVisibleStart(0); - - keyMapScrollBar.init(mapInfoXPos + keyButtonsWidthMap + labelWidth + 20,scrollListsYPos-listBoxLength+keyButtonsLineHeight,false,200,20); - keyMapScrollBar.setLength(listBoxLength); - keyMapScrollBar.setElementCount(0); - keyMapScrollBar.setVisibleSize(keyButtonsToRender); - keyMapScrollBar.setVisibleStart(0); - - keyScenarioScrollBar.init(scenarioInfoXPos + keyButtonsWidthScen,scrollListsYPos-listBoxLength+keyButtonsLineHeight,false,200,20); - keyScenarioScrollBar.setLength(listBoxLength); - keyScenarioScrollBar.setElementCount(0); - keyScenarioScrollBar.setVisibleSize(keyButtonsToRender); - keyScenarioScrollBar.setVisibleStart(0); - - GraphicComponent::applyAllCustomProperties(containerName); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - // Start http meta data thread - static string mutexOwnerId = string(extractFileFromDirectoryPath(__FILE__).c_str()) + string("_") + intToStr(__LINE__); - modHttpServerThread = new SimpleTaskThread(this,0,200); - modHttpServerThread->setUniqueID(mutexOwnerId); - modHttpServerThread->start(); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - // Setup File Transfer thread - findDirs(config.getPathListForType(ptTilesets), tilesetFiles); - findDirs(config.getPathListForType(ptTechs), techTreeFiles); - - vector mapPathList = config.getPathListForType(ptMaps); - std::pair mapsPath; - if(mapPathList.empty() == false) { - mapsPath.first = mapPathList[0]; - } - if(mapPathList.size() > 1) { - mapsPath.second = mapPathList[1]; - } - std::pair tilesetsPath; - vector tilesetsList = Config::getInstance().getPathListForType(ptTilesets); - if(tilesetsList.empty() == false) { - tilesetsPath.first = tilesetsList[0]; - if(tilesetsList.size() > 1) { - tilesetsPath.second = tilesetsList[1]; - } - } - - std::pair techtreesPath; - vector techtreesList = Config::getInstance().getPathListForType(ptTechs); - if(techtreesList.empty() == false) { - techtreesPath.first = techtreesList[0]; - if(techtreesList.size() > 1) { - techtreesPath.second = techtreesList[1]; - } - } - - std::pair scenariosPath; - vector scenariosList = Config::getInstance().getPathListForType(ptScenarios); - if(scenariosList.empty() == false) { - scenariosPath.first = scenariosList[0]; - if(scenariosList.size() > 1) { - scenariosPath.second = scenariosList[1]; - } + ModInfo::ModInfo () + { + name = ""; + url = ""; + imageUrl = ""; + description = ""; + count = ""; + crc = ""; + type = mt_None; } - string fileArchiveExtension = config.getString("FileArchiveExtension",""); - string fileArchiveExtractCommand = config.getString("FileArchiveExtractCommand",""); - string fileArchiveExtractCommandParameters = config.getString("FileArchiveExtractCommandParameters",""); - int32 fileArchiveExtractCommandSuccessResult = config.getInt("FileArchiveExtractCommandSuccessResult","0"); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - console.setOnlyChatMessagesInStoredLines(false); +// ===================================================== +// class MenuStateConnectedGame +// ===================================================== - // Get path to temp files - string tempFilePath = "temp/"; - if(getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) != "") { - tempFilePath = getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) + tempFilePath; - } - else { - string userData = config.getString("UserData_Root",""); - if(userData != "") { - endPathWithSlash(userData); + MenuStateMods::MenuStateMods (Program * program, + MainMenu * mainMenu):MenuState (program, + mainMenu, + "mods") + { + + containerName = "Mods"; + Lang & lang = Lang::getInstance (); + Config & config = Config::getInstance (); + + modPreviewImage = NULL; + displayModPreviewImage.clear (); + + ftpClientThread = NULL; + selectedTechName = ""; + selectedTilesetName = ""; + selectedMapName = ""; + selectedScenarioName = ""; + modInfoSelected = NULL; + showFullConsole = false; + keyButtonsLineHeight = 20; + keyButtonsHeight = 20; + keyButtonsWidth = 200; + keyButtonsWidthTech = keyButtonsWidth; + keyButtonsWidthMap = keyButtonsWidth + 15; + keyButtonsWidthTil = keyButtonsWidth - 5; + keyButtonsWidthScen = keyButtonsWidth + 20; + scrollListsYPos = 700; + listBoxLength = 200; + keyButtonsYBase = scrollListsYPos; + keyButtonsToRender = listBoxLength / keyButtonsLineHeight; + labelWidth = 5; + keyButtonsXBase = 0; + modMenuState = mmst_None; + oldMenuState = mmst_None; + + int installButtonYPos = scrollListsYPos - listBoxLength - 20; + + int returnLineY = 80; + enableMapPreview = config.getBool ("MapPreview", "true"); + validMapPreview = false; + mapPreviewTexture = NULL; + + //create + techInfoXPos = 5; + keyTechScrollBarTitle1.registerGraphicComponent (containerName, + "keyTechScrollBarTitle1"); + keyTechScrollBarTitle1.init (techInfoXPos + 5, scrollListsYPos + 30, + labelWidth, 20); + keyTechScrollBarTitle1.setText (lang.getString ("TechTitle1")); + keyTechScrollBarTitle1.setFont (CoreData::getInstance (). + getMenuFontBig ()); + keyTechScrollBarTitle1.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + keyTechScrollBarTitle2.registerGraphicComponent (containerName, + "keyTechScrollBarTitle2"); + keyTechScrollBarTitle2.init (techInfoXPos - 10 + keyButtonsWidthTech, + scrollListsYPos + 17, labelWidth, 20); + keyTechScrollBarTitle2.setText (lang.getString ("TechTitle2")); + keyTechScrollBarTitle2.setFont (CoreData::getInstance (). + getMenuFontNormal ()); + keyTechScrollBarTitle2.setFont3D (CoreData::getInstance (). + getMenuFontNormal3D ()); + + mapInfoXPos = 260; + keyMapScrollBarTitle1.registerGraphicComponent (containerName, + "keyMapScrollBarTitle1"); + keyMapScrollBarTitle1.init (mapInfoXPos + 5, scrollListsYPos + 30, + labelWidth, 20); + keyMapScrollBarTitle1.setText (lang.getString ("MapTitle1")); + keyMapScrollBarTitle1.setFont (CoreData::getInstance (). + getMenuFontBig ()); + keyMapScrollBarTitle1.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + keyMapScrollBarTitle2.registerGraphicComponent (containerName, + "keyMapScrollBarTitle2"); + keyMapScrollBarTitle2.init (mapInfoXPos - 10 + keyButtonsWidthMap, + scrollListsYPos + 17, labelWidth, 20); + keyMapScrollBarTitle2.setText (lang.getString ("MapTitle2")); + keyMapScrollBarTitle2.setFont (CoreData::getInstance (). + getMenuFontNormal ()); + keyMapScrollBarTitle2.setFont3D (CoreData::getInstance (). + getMenuFontNormal3D ()); + + tilesetInfoXPos = 530; + keyTilesetScrollBarTitle1.registerGraphicComponent (containerName, + "keyTilesetScrollBarTitle1"); + keyTilesetScrollBarTitle1.init (tilesetInfoXPos + 5, + scrollListsYPos + 30, labelWidth, 20); + keyTilesetScrollBarTitle1.setText (lang.getString ("TilesetTitle1")); + keyTilesetScrollBarTitle1.setFont (CoreData::getInstance (). + getMenuFontBig ()); + keyTilesetScrollBarTitle1.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + + + scenarioInfoXPos = 755; + keyScenarioScrollBarTitle1.registerGraphicComponent (containerName, + "keyScenarioScrollBarTitle1"); + keyScenarioScrollBarTitle1.init (scenarioInfoXPos, scrollListsYPos + 30, + labelWidth, 20); + keyScenarioScrollBarTitle1.setText (lang.getString ("ScenarioTitle1")); + keyScenarioScrollBarTitle1.setFont (CoreData::getInstance (). + getMenuFontBig ()); + keyScenarioScrollBarTitle1.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + + mainMessageBoxState = ftpmsg_None; + mainMessageBox.registerGraphicComponent (containerName, + "mainMessageBox"); + mainMessageBox.init (lang.getString ("Yes"), lang.getString ("No"), + 450); + mainMessageBox.setEnabled (false); + + lineHorizontal.init (0, installButtonYPos - 60); + lineVertical.init (500, returnLineY, 5, + installButtonYPos - 60 - returnLineY); + lineVertical.setHorizontal (false); + lineReturn.init (0, returnLineY); + + modDescrLabel.registerGraphicComponent (containerName, "modDescrLabel"); + modDescrLabel.init (15, installButtonYPos - 60 - 20, 450, 20); + modDescrLabel.setWordWrap (true); + modDescrLabel.setText ("description is empty"); + + pleaseWaitLabel.registerGraphicComponent (containerName, + "pleaseWaitLabel"); + pleaseWaitLabel.init (50, installButtonYPos - 120, 450, 20); + pleaseWaitLabel.setText (""); + pleaseWaitLabel.setFont (CoreData::getInstance ().getMenuFontBig ()); + pleaseWaitLabel.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + + buttonReturn.registerGraphicComponent (containerName, "buttonReturn"); + buttonReturn.init (800, returnLineY - 30, 125); + buttonReturn.setText (lang.getString ("Return")); + + lineVerticalReturn.init (buttonReturn.getX () - 10, returnLineY - 80, 5, + 81); + lineVerticalReturn.setHorizontal (false); + + int buttonLineUpY = installButtonYPos + 10; + int buttonLineDownY = installButtonYPos - 20; + + int legendButtonY = buttonLineDownY - 30; + buttonInstalled.registerGraphicComponent (containerName, + "buttonInstalled"); + buttonInstalled.init (5, legendButtonY, 240); + buttonInstalled.setText (" " + lang.getString ("ModInstalled")); + buttonInstalled.setUseCustomTexture (true); + buttonInstalled.setCustomTexture (CoreData::getInstance (). + getOnServerInstalledTexture ()); + buttonInstalled.setEnabled (false); + + buttonAvailable.registerGraphicComponent (containerName, + "buttonAvailable"); + buttonAvailable.init (255, legendButtonY, 240); + buttonAvailable.setUseCustomTexture (true); + buttonAvailable.setCustomTexture (CoreData::getInstance (). + getOnServerTexture ()); + buttonAvailable.setText (" " + lang.getString ("ModAvailable")); + + buttonOnlyLocal.registerGraphicComponent (containerName, + "buttonOnlyLocal"); + buttonOnlyLocal.init (505, legendButtonY, 240); + buttonOnlyLocal.setUseCustomTexture (true); + buttonOnlyLocal.setCustomTexture (CoreData::getInstance (). + getNotOnServerTexture ()); + buttonOnlyLocal.setText (" " + lang.getString ("ModOnlyLocal")); + + buttonConflict.registerGraphicComponent (containerName, + "buttonConflict"); + buttonConflict.init (755, legendButtonY, 240); + buttonConflict.setUseCustomTexture (true); + buttonConflict.setCustomTexture (CoreData::getInstance (). + getOnServerDifferentTexture ()); + buttonConflict.setText (" " + lang.getString ("ModHasConflict")); + + + buttonInstallTech.registerGraphicComponent (containerName, + "buttonInstallTech"); + buttonInstallTech.init (techInfoXPos + 45, buttonLineUpY, 125); + buttonInstallTech.setText (lang.getString ("Install")); + buttonRemoveTech.registerGraphicComponent (containerName, + "buttonRemoveTech"); + buttonRemoveTech.init (techInfoXPos + 45, buttonLineDownY, 125); + buttonRemoveTech.setText (lang.getString ("Remove")); + + buttonInstallTileset.registerGraphicComponent (containerName, + "buttonInstallTileset"); + buttonInstallTileset.init (tilesetInfoXPos + 30, buttonLineUpY, 125); + buttonInstallTileset.setText (lang.getString ("Install")); + buttonRemoveTileset.registerGraphicComponent (containerName, + "buttonRemoveTileset"); + buttonRemoveTileset.init (tilesetInfoXPos + 30, buttonLineDownY, 125); + buttonRemoveTileset.setText (lang.getString ("Remove")); + + buttonInstallMap.registerGraphicComponent (containerName, + "buttonInstallMap"); + buttonInstallMap.init (mapInfoXPos + 50, buttonLineUpY, 125); + buttonInstallMap.setText (lang.getString ("Install")); + buttonRemoveMap.registerGraphicComponent (containerName, + "buttonRemoveMap"); + buttonRemoveMap.init (mapInfoXPos + 50, buttonLineDownY, 125); + buttonRemoveMap.setText (lang.getString ("Remove")); + + buttonInstallScenario.registerGraphicComponent (containerName, + "buttonInstallScenario"); + buttonInstallScenario.init (scenarioInfoXPos + 45, buttonLineUpY, 125); + buttonInstallScenario.setText (lang.getString ("Install")); + buttonRemoveScenario.registerGraphicComponent (containerName, + "buttonRemoveScenario"); + buttonRemoveScenario.init (scenarioInfoXPos + 45, buttonLineDownY, 125); + buttonRemoveScenario.setText (lang.getString ("Remove")); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + keyTilesetScrollBar.init (tilesetInfoXPos + keyButtonsWidthTil, + scrollListsYPos - listBoxLength + + keyButtonsLineHeight, false, 200, 20); + keyTilesetScrollBar.setLength (listBoxLength); + keyTilesetScrollBar.setElementCount (0); + keyTilesetScrollBar.setVisibleSize (keyButtonsToRender); + keyTilesetScrollBar.setVisibleStart (0); + + keyTechScrollBar.init (techInfoXPos + keyButtonsWidthTech + labelWidth + + 20, + scrollListsYPos - listBoxLength + + keyButtonsLineHeight, false, 200, 20); + keyTechScrollBar.setLength (listBoxLength); + keyTechScrollBar.setElementCount (0); + keyTechScrollBar.setVisibleSize (keyButtonsToRender); + keyTechScrollBar.setVisibleStart (0); + + keyMapScrollBar.init (mapInfoXPos + keyButtonsWidthMap + labelWidth + + 20, + scrollListsYPos - listBoxLength + + keyButtonsLineHeight, false, 200, 20); + keyMapScrollBar.setLength (listBoxLength); + keyMapScrollBar.setElementCount (0); + keyMapScrollBar.setVisibleSize (keyButtonsToRender); + keyMapScrollBar.setVisibleStart (0); + + keyScenarioScrollBar.init (scenarioInfoXPos + keyButtonsWidthScen, + scrollListsYPos - listBoxLength + + keyButtonsLineHeight, false, 200, 20); + keyScenarioScrollBar.setLength (listBoxLength); + keyScenarioScrollBar.setElementCount (0); + keyScenarioScrollBar.setVisibleSize (keyButtonsToRender); + keyScenarioScrollBar.setVisibleStart (0); + + GraphicComponent::applyAllCustomProperties (containerName); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + // Start http meta data thread + static string mutexOwnerId = + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + string ("_") + intToStr (__LINE__); + modHttpServerThread = new SimpleTaskThread (this, 0, 200); + modHttpServerThread->setUniqueID (mutexOwnerId); + modHttpServerThread->start (); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + // Setup File Transfer thread + findDirs (config.getPathListForType (ptTilesets), tilesetFiles); + findDirs (config.getPathListForType (ptTechs), techTreeFiles); + + vector < string > mapPathList = config.getPathListForType (ptMaps); + std::pair < string, string > mapsPath; + if (mapPathList.empty () == false) + { + mapsPath.first = mapPathList[0]; + } + if (mapPathList.size () > 1) + { + mapsPath.second = mapPathList[1]; + } + std::pair < string, string > tilesetsPath; + vector < string > tilesetsList = + Config::getInstance ().getPathListForType (ptTilesets); + if (tilesetsList.empty () == false) + { + tilesetsPath.first = tilesetsList[0]; + if (tilesetsList.size () > 1) + { + tilesetsPath.second = tilesetsList[1]; + } + } + + std::pair < string, string > techtreesPath; + vector < string > techtreesList = + Config::getInstance ().getPathListForType (ptTechs); + if (techtreesList.empty () == false) + { + techtreesPath.first = techtreesList[0]; + if (techtreesList.size () > 1) + { + techtreesPath.second = techtreesList[1]; + } + } + + std::pair < string, string > scenariosPath; + vector < string > scenariosList = + Config::getInstance ().getPathListForType (ptScenarios); + if (scenariosList.empty () == false) + { + scenariosPath.first = scenariosList[0]; + if (scenariosList.size () > 1) + { + scenariosPath.second = scenariosList[1]; + } + } + + string fileArchiveExtension = + config.getString ("FileArchiveExtension", ""); + string fileArchiveExtractCommand = + config.getString ("FileArchiveExtractCommand", ""); + string fileArchiveExtractCommandParameters = + config.getString ("FileArchiveExtractCommandParameters", ""); + int32 fileArchiveExtractCommandSuccessResult = + config.getInt ("FileArchiveExtractCommandSuccessResult", "0"); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + console.setOnlyChatMessagesInStoredLines (false); + + // Get path to temp files + string tempFilePath = "temp/"; + if (getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) != + "") + { + tempFilePath = + getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) + + tempFilePath; + } + else + { + string userData = config.getString ("UserData_Root", ""); + if (userData != "") + { + endPathWithSlash (userData); } tempFilePath = userData + tempFilePath; - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Temp files path [%s]\n",tempFilePath.c_str()); + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Temp files path [%s]\n", tempFilePath.c_str ()); - ftpClientThread = new FTPClientThread(-1,"", - mapsPath,tilesetsPath,techtreesPath,scenariosPath, - this,fileArchiveExtension,fileArchiveExtractCommand, - fileArchiveExtractCommandParameters, - fileArchiveExtractCommandSuccessResult, - tempFilePath); - ftpClientThread->start(); + ftpClientThread = new FTPClientThread (-1, "", + mapsPath, tilesetsPath, + techtreesPath, scenariosPath, + this, fileArchiveExtension, + fileArchiveExtractCommand, + fileArchiveExtractCommandParameters, + fileArchiveExtractCommandSuccessResult, + tempFilePath); + ftpClientThread->start (); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); -} - -void MenuStateMods::reloadUI() { - Lang &lang= Lang::getInstance(); - - console.resetFonts(); - keyTechScrollBarTitle1.setText(lang.getString("TechTitle1")); - keyTechScrollBarTitle1.setFont(CoreData::getInstance().getMenuFontBig()); - keyTechScrollBarTitle1.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - keyTechScrollBarTitle2.setText(lang.getString("TechTitle2")); - keyTechScrollBarTitle2.setFont(CoreData::getInstance().getMenuFontNormal()); - keyTechScrollBarTitle2.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); - - keyMapScrollBarTitle1.setText(lang.getString("MapTitle1")); - keyMapScrollBarTitle1.setFont(CoreData::getInstance().getMenuFontBig()); - keyMapScrollBarTitle1.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - keyMapScrollBarTitle2.setText(lang.getString("MapTitle2")); - keyMapScrollBarTitle2.setFont(CoreData::getInstance().getMenuFontNormal()); - keyMapScrollBarTitle2.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); - - keyTilesetScrollBarTitle1.setText(lang.getString("TilesetTitle1")); - keyTilesetScrollBarTitle1.setFont(CoreData::getInstance().getMenuFontBig()); - keyTilesetScrollBarTitle1.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - pleaseWaitLabel.setText(""); - pleaseWaitLabel.setFont(CoreData::getInstance().getMenuFontBig()); - pleaseWaitLabel.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - keyScenarioScrollBarTitle1.setText(lang.getString("ScenarioTitle1")); - keyScenarioScrollBarTitle1.setFont(CoreData::getInstance().getMenuFontBig()); - keyScenarioScrollBarTitle1.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - - mainMessageBox.init(lang.getString("Yes"),lang.getString("No"),450); - - modDescrLabel.setText("description is empty"); - - buttonReturn.setText(lang.getString("Return")); - - buttonInstalled.setText(lang.getString("ModInstalled")); - - buttonAvailable.setText(lang.getString("ModAvailable")); - - buttonOnlyLocal.setText(lang.getString("ModOnlyLocal")); - - buttonConflict.setText(lang.getString("ModHasConflict")); - - buttonInstallTech.setText(lang.getString("Install")); - buttonRemoveTech.setText(lang.getString("Remove")); - - buttonInstallTileset.setText(lang.getString("Install")); - buttonRemoveTileset.setText(lang.getString("Remove")); - - buttonInstallMap.setText(lang.getString("Install")); - buttonRemoveMap.setText(lang.getString("Remove")); - - buttonInstallScenario.setText(lang.getString("Install")); - buttonRemoveScenario.setText(lang.getString("Remove")); - - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} - -void MenuStateMods::simpleTask(BaseThread *callingThread,void *userdata) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexThreadOwner(callingThread->getMutexThreadOwnerValid(),mutexOwnerId); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); } - callingThread->getMutexThreadOwnerValid()->setOwnerId(mutexOwnerId); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + void MenuStateMods::reloadUI () + { + Lang & lang = Lang::getInstance (); - Lang &lang= Lang::getInstance(); - Config &config = Config::getInstance(); - string fileArchiveExtractCommand = config.getString("FileArchiveExtractCommand",""); - int expectedResult = config.getInt("FileArchiveExtractCommandSuccessResult","0"); - bool findArchive = executeShellCommand(fileArchiveExtractCommand,expectedResult); - if(findArchive == false) { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - showMessageBox(lang.getString("ModRequires7z"), lang.getString("Notice"), true); - } + console.resetFonts (); + keyTechScrollBarTitle1.setText (lang.getString ("TechTitle1")); + keyTechScrollBarTitle1.setFont (CoreData::getInstance (). + getMenuFontBig ()); + keyTechScrollBarTitle1.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + keyTechScrollBarTitle2.setText (lang.getString ("TechTitle2")); + keyTechScrollBarTitle2.setFont (CoreData::getInstance (). + getMenuFontNormal ()); + keyTechScrollBarTitle2.setFont3D (CoreData::getInstance (). + getMenuFontNormal3D ()); - std::string techsMetaData = ""; - std::string tilesetsMetaData = ""; - std::string mapsMetaData = ""; - std::string scenariosMetaData = ""; + keyMapScrollBarTitle1.setText (lang.getString ("MapTitle1")); + keyMapScrollBarTitle1.setFont (CoreData::getInstance (). + getMenuFontBig ()); + keyMapScrollBarTitle1.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + keyMapScrollBarTitle2.setText (lang.getString ("MapTitle2")); + keyMapScrollBarTitle2.setFont (CoreData::getInstance (). + getMenuFontNormal ()); + keyMapScrollBarTitle2.setFont3D (CoreData::getInstance (). + getMenuFontNormal3D ()); - modMenuState=mmst_Loading; + keyTilesetScrollBarTitle1.setText (lang.getString ("TilesetTitle1")); + keyTilesetScrollBarTitle1.setFont (CoreData::getInstance (). + getMenuFontBig ()); + keyTilesetScrollBarTitle1.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + pleaseWaitLabel.setText (""); + pleaseWaitLabel.setFont (CoreData::getInstance ().getMenuFontBig ()); + pleaseWaitLabel.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); - if(config.getString("Masterserver","") != "") { - string baseURL = config.getString("Masterserver"); - if(baseURL != "") { - endPathWithSlash(baseURL,false); - } + keyScenarioScrollBarTitle1.setText (lang.getString ("ScenarioTitle1")); + keyScenarioScrollBarTitle1.setFont (CoreData::getInstance (). + getMenuFontBig ()); + keyScenarioScrollBarTitle1.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); - string phpVersionParam = config.getString("phpVersionParam","?version=0.1"); - string playerUUID = "&uuid=" + SystemFlags::escapeURL(Config::getInstance().getString("PlayerId","")); - string gameVersion = "&glestVersion=" + SystemFlags::escapeURL(glestVersionString); + mainMessageBox.init (lang.getString ("Yes"), lang.getString ("No"), + 450); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] About to call first http url, base [%s]..\n",__FILE__,__FUNCTION__,__LINE__,baseURL.c_str()); + modDescrLabel.setText ("description is empty"); - CURL *handle = SystemFlags::initHTTP(); - CURLcode curlResult = CURLE_OK; - techsMetaData = SystemFlags::getHTTP(baseURL + "showTechsForGlest.php"+phpVersionParam+gameVersion+playerUUID,handle,-1,&curlResult); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("techsMetaData [%s] curlResult = %d\n",techsMetaData.c_str(),curlResult); + buttonReturn.setText (lang.getString ("Return")); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } + buttonInstalled.setText (lang.getString ("ModInstalled")); - if(curlResult != CURLE_OK) { - string curlError = curl_easy_strerror(curlResult); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModErrorGettingServerData").c_str(),curlError.c_str()); - console.addLine(string("#1 ") + szBuf,true); - } + buttonAvailable.setText (lang.getString ("ModAvailable")); - if(curlResult == CURLE_OK || - (curlResult != CURLE_COULDNT_RESOLVE_HOST && - curlResult != CURLE_COULDNT_CONNECT)) { + buttonOnlyLocal.setText (lang.getString ("ModOnlyLocal")); - tilesetsMetaData = SystemFlags::getHTTP(baseURL + "showTilesetsForGlest.php"+phpVersionParam+gameVersion,handle,-1,&curlResult); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("tilesetsMetaData [%s]\n",tilesetsMetaData.c_str()); + buttonConflict.setText (lang.getString ("ModHasConflict")); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } + buttonInstallTech.setText (lang.getString ("Install")); + buttonRemoveTech.setText (lang.getString ("Remove")); - if(curlResult != CURLE_OK) { - string curlError = curl_easy_strerror(curlResult); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModErrorGettingServerData").c_str(),curlError.c_str()); - console.addLine(string("#2 ") + szBuf,true); - } + buttonInstallTileset.setText (lang.getString ("Install")); + buttonRemoveTileset.setText (lang.getString ("Remove")); - mapsMetaData = SystemFlags::getHTTP(baseURL + "showMapsForGlest.php"+phpVersionParam+gameVersion,handle,-1,&curlResult); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("mapsMetaData [%s]\n",mapsMetaData.c_str()); + buttonInstallMap.setText (lang.getString ("Install")); + buttonRemoveMap.setText (lang.getString ("Remove")); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } + buttonInstallScenario.setText (lang.getString ("Install")); + buttonRemoveScenario.setText (lang.getString ("Remove")); - if(curlResult != CURLE_OK) { - string curlError = curl_easy_strerror(curlResult); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModErrorGettingServerData").c_str(),curlError.c_str()); - console.addLine(string("#3 ") + szBuf,true); - } - - scenariosMetaData = SystemFlags::getHTTP(baseURL + "showScenariosForGlest.php"+phpVersionParam+gameVersion,handle,-1,&curlResult); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("scenariosMetaData [%s]\n",scenariosMetaData.c_str()); - - if(curlResult != CURLE_OK) { - string curlError = curl_easy_strerror(curlResult); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModErrorGettingServerData").c_str(),curlError.c_str()); - console.addLine(string("#4 ") + szBuf,true); - } - } - SystemFlags::cleanupHTTP(&handle); - } - else { - console.addLine(lang.getString("MasterServerMissing"),true); - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; + GraphicComponent:: + reloadFontsForRegisterGraphicComponents (containerName); } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - tilesetListRemote.clear(); - Tokenize(tilesetsMetaData,tilesetListRemote,"\n"); + void MenuStateMods::simpleTask (BaseThread * callingThread, + void *userdata) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); - modMenuState=mmst_CalculatingCRC; - - getTilesetsLocalList(); - for(unsigned int i=0; i < tilesetListRemote.size(); i++) { - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - string result=refreshTilesetModInfo(tilesetListRemote[i]); - if(result != "") { - ModInfo modinfo; - modinfo=tilesetCacheList[result]; - GraphicButton *button=new GraphicButton(); - button->init(tilesetInfoXPos, keyButtonsYBase, keyButtonsWidthTil,keyButtonsHeight); - button->setText(modinfo.name); - button->setUseCustomTexture(true); - button->setCustomTexture(CoreData::getInstance().getCustomTexture()); - keyTilesetButtons.push_back(button); - } - } - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper safeMutexThreadOwner (callingThread-> + getMutexThreadOwnerValid (), + mutexOwnerId); + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); return; + } + + callingThread->getMutexThreadOwnerValid ()->setOwnerId (mutexOwnerId); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + Lang & lang = Lang::getInstance (); + Config & config = Config::getInstance (); + string fileArchiveExtractCommand = + config.getString ("FileArchiveExtractCommand", ""); + int expectedResult = + config.getInt ("FileArchiveExtractCommandSuccessResult", "0"); + bool findArchive = + executeShellCommand (fileArchiveExtractCommand, expectedResult); + if (findArchive == false) + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + showMessageBox (lang.getString ("ModRequires7z"), + lang.getString ("Notice"), true); + } + + std::string techsMetaData = ""; + std::string tilesetsMetaData = ""; + std::string mapsMetaData = ""; + std::string scenariosMetaData = ""; + + modMenuState = mmst_Loading; + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (config.getString ("Masterserver", "") != "") + { + string baseURL = config.getString ("Masterserver"); + if (baseURL != "") + { + endPathWithSlash (baseURL, false); + } + + string phpVersionParam = + config.getString ("phpVersionParam", "?version=0.1"); + string playerUUID = + "&uuid=" + + SystemFlags::escapeURL (Config::getInstance (). + getString ("PlayerId", "")); + string gameVersion = + "&glestVersion=" + SystemFlags::escapeURL (glestVersionString); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("In [%s::%s Line %d] About to call first http url, base [%s]..\n", + __FILE__, __FUNCTION__, __LINE__, baseURL.c_str ()); + + CURL *handle = SystemFlags::initHTTP (); + CURLcode curlResult = CURLE_OK; + techsMetaData = + SystemFlags::getHTTP (baseURL + "showTechsForGlest.php" + + phpVersionParam + gameVersion + playerUUID, + handle, -1, &curlResult); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("techsMetaData [%s] curlResult = %d\n", + techsMetaData.c_str (), curlResult); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + if (curlResult != CURLE_OK) + { + string curlError = curl_easy_strerror (curlResult); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModErrorGettingServerData").c_str (), + curlError.c_str ()); + console.addLine (string ("#1 ") + szBuf, true); + } + + if (curlResult == CURLE_OK || + (curlResult != CURLE_COULDNT_RESOLVE_HOST && + curlResult != CURLE_COULDNT_CONNECT)) + { + + tilesetsMetaData = + SystemFlags::getHTTP (baseURL + "showTilesetsForGlest.php" + + phpVersionParam + gameVersion, handle, -1, + &curlResult); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("tilesetsMetaData [%s]\n", tilesetsMetaData.c_str ()); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + if (curlResult != CURLE_OK) + { + string curlError = curl_easy_strerror (curlResult); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModErrorGettingServerData").c_str (), + curlError.c_str ()); + console.addLine (string ("#2 ") + szBuf, true); + } + + mapsMetaData = + SystemFlags::getHTTP (baseURL + "showMapsForGlest.php" + + phpVersionParam + gameVersion, handle, -1, + &curlResult); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("mapsMetaData [%s]\n", mapsMetaData.c_str ()); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + if (curlResult != CURLE_OK) + { + string curlError = curl_easy_strerror (curlResult); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModErrorGettingServerData").c_str (), + curlError.c_str ()); + console.addLine (string ("#3 ") + szBuf, true); + } + + scenariosMetaData = + SystemFlags::getHTTP (baseURL + "showScenariosForGlest.php" + + phpVersionParam + gameVersion, handle, -1, + &curlResult); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("scenariosMetaData [%s]\n", scenariosMetaData.c_str ()); + + if (curlResult != CURLE_OK) + { + string curlError = curl_easy_strerror (curlResult); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModErrorGettingServerData").c_str (), + curlError.c_str ()); + console.addLine (string ("#4 ") + szBuf, true); + } + } + SystemFlags::cleanupHTTP (&handle); + } + else + { + console.addLine (lang.getString ("MasterServerMissing"), true); + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + tilesetListRemote.clear (); + Tokenize (tilesetsMetaData, tilesetListRemote, "\n"); + + modMenuState = mmst_CalculatingCRC; + + getTilesetsLocalList (); + for (unsigned int i = 0; i < tilesetListRemote.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + string result = refreshTilesetModInfo (tilesetListRemote[i]); + if (result != "") + { + ModInfo modinfo; + modinfo = tilesetCacheList[result]; + GraphicButton *button = new GraphicButton (); + button->init (tilesetInfoXPos, keyButtonsYBase, keyButtonsWidthTil, + keyButtonsHeight); + button->setText (modinfo.name); + button->setUseCustomTexture (true); + button->setCustomTexture (CoreData::getInstance (). + getCustomTexture ()); + keyTilesetButtons.push_back (button); + } + } + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + for (unsigned int i = 0; i < tilesetFilesUserData.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + string tilesetName = tilesetFilesUserData[i]; + bool alreadyHasTileset = + (tilesetCacheList.find (tilesetName) != tilesetCacheList.end ()); + if (alreadyHasTileset == false) + { + GraphicButton *button = new GraphicButton (); + button->init (tilesetInfoXPos, keyButtonsYBase, keyButtonsWidthTil, + keyButtonsHeight); + button->setText (tilesetName); + button->setUseCustomTexture (true); + button->setCustomTexture (CoreData::getInstance (). + getCustomTexture ()); + keyTilesetButtons.push_back (button); + } + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + techListRemote.clear (); + Tokenize (techsMetaData, techListRemote, "\n"); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + getTechsLocalList (); + for (unsigned int i = 0; i < techListRemote.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + string result = refreshTechModInfo (techListRemote[i]); + if (result != "") + { + ModInfo modinfo; + modinfo = techCacheList[result]; + + GraphicButton *button = new GraphicButton (); + button->init (techInfoXPos, keyButtonsYBase, keyButtonsWidthTech, + keyButtonsHeight); + button->setText (modinfo.name); + button->setUseCustomTexture (true); + button->setCustomTexture (CoreData::getInstance (). + getCustomTexture ()); + + keyTechButtons.push_back (button); + GraphicLabel *label = new GraphicLabel (); + label->init (techInfoXPos + keyButtonsWidthTech + 10, + keyButtonsYBase, labelWidth, 20); + label->setText (modinfo.count); + labelsTech.push_back (label); + } + } + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + for (unsigned int i = 0; i < techTreeFilesUserData.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + string techName = techTreeFilesUserData[i]; + bool alreadyHasTech = + (techCacheList.find (techName) != techCacheList.end ()); + if (alreadyHasTech == false) + { + vector < string > techPaths = config.getPathListForType (ptTechs); + string & techPath = techPaths[1]; + endPathWithSlash (techPath); + vector < string > factions; + findAll (techPath + techName + "/factions/*.", factions, false, + false); + + GraphicButton *button = new GraphicButton (); + button->init (techInfoXPos, keyButtonsYBase, keyButtonsWidthTech, + keyButtonsHeight); + button->setText (techName); + button->setUseCustomTexture (true); + button->setCustomTexture (CoreData::getInstance (). + getCustomTexture ()); + keyTechButtons.push_back (button); + + int techFactionCount = (int) factions.size (); + GraphicLabel *label = new GraphicLabel (); + label->init (techInfoXPos + keyButtonsWidthTech + 10, + keyButtonsYBase, labelWidth, 20); + label->setText (intToStr (techFactionCount)); + labelsTech.push_back (label); + } + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + mapListRemote.clear (); + Tokenize (mapsMetaData, mapListRemote, "\n"); + + getMapsLocalList (); + for (unsigned int i = 0; i < mapListRemote.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + string result = refreshMapModInfo (mapListRemote[i]); + if (result != "") + { + ModInfo modinfo; + modinfo = mapCacheList[result]; + + GraphicButton *button = new GraphicButton (); + button->init (mapInfoXPos, keyButtonsYBase, keyButtonsWidthMap, + keyButtonsHeight); + button->setText (modinfo.name); + button->setUseCustomTexture (true); + button->setCustomTexture (CoreData::getInstance (). + getCustomTexture ()); + keyMapButtons.push_back (button); + + GraphicLabel *label = new GraphicLabel (); + label->init (mapInfoXPos + keyButtonsWidthMap + 10, keyButtonsYBase, + labelWidth, 20); + label->setText (modinfo.count); + labelsMap.push_back (label); + } + } + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + for (unsigned int i = 0; i < mapFilesUserData.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + string mapName = mapFilesUserData[i]; + bool alreadyHasMap = + (mapCacheList.find (mapName) != mapCacheList.end ()); + if (alreadyHasMap == false) + { + vector < string > mapPaths = config.getPathListForType (ptMaps); + string & mapPath = mapPaths[1]; + endPathWithSlash (mapPath); + mapPath += mapName; + MapInfo mapInfo = loadMapInfo (mapPath); + + GraphicButton *button = new GraphicButton (); + button->init (mapInfoXPos, keyButtonsYBase, keyButtonsWidthMap, + keyButtonsHeight); + button->setText (mapName); + button->setUseCustomTexture (true); + button->setCustomTexture (CoreData::getInstance (). + getCustomTexture ()); + keyMapButtons.push_back (button); + + int mapPlayerCount = mapInfo.players; + GraphicLabel *label = new GraphicLabel (); + label->init (mapInfoXPos + keyButtonsWidthMap + 10, keyButtonsYBase, + labelWidth, 20); + label->setText (intToStr (mapPlayerCount)); + labelsMap.push_back (label); + } + } + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + + scenarioListRemote.clear (); + Tokenize (scenariosMetaData, scenarioListRemote, "\n"); + + getScenariosLocalList (); + for (unsigned int i = 0; i < scenarioListRemote.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + string result = refreshScenarioModInfo (scenarioListRemote[i]); + if (result != "") + { + ModInfo modinfo; + modinfo = scenarioCacheList[result]; + GraphicButton *button = new GraphicButton (); + button->init (scenarioInfoXPos, keyButtonsYBase, + keyButtonsWidthScen, keyButtonsHeight); + button->setText (modinfo.name); + button->setUseCustomTexture (true); + button->setCustomTexture (CoreData::getInstance (). + getCustomTexture ()); + keyScenarioButtons.push_back (button); + } + } + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + for (unsigned int i = 0; i < scenarioFilesUserData.size (); i++) + { + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } + + string scenarioName = scenarioFilesUserData[i]; + bool alreadyHasScenario = + (scenarioCacheList.find (scenarioName) != scenarioCacheList.end ()); + if (alreadyHasScenario == false) + { + vector < string > scenarioPaths = + config.getPathListForType (ptScenarios); + string & scenarioPath = scenarioPaths[1]; + endPathWithSlash (scenarioPath); + scenarioPath += scenarioName; + + GraphicButton *button = new GraphicButton (); + button->init (scenarioInfoXPos, keyButtonsYBase, + keyButtonsWidthScen, keyButtonsHeight); + button->setText (scenarioName); + button->setUseCustomTexture (true); + button->setCustomTexture (CoreData::getInstance (). + getCustomTexture ()); + keyScenarioButtons.push_back (button); + } + } + + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + keyTilesetScrollBar.init (tilesetInfoXPos + keyButtonsWidthTil, + scrollListsYPos - listBoxLength + + keyButtonsLineHeight, false, 200, 20); + keyTilesetScrollBar.setLength (listBoxLength); + keyTilesetScrollBar.setElementCount ((int) keyTilesetButtons.size ()); + keyTilesetScrollBar.setVisibleSize (keyButtonsToRender); + keyTilesetScrollBar.setVisibleStart (0); + + keyTechScrollBar.init (techInfoXPos + keyButtonsWidthTech + labelWidth + + 20, + scrollListsYPos - listBoxLength + + keyButtonsLineHeight, false, 200, 20); + keyTechScrollBar.setLength (listBoxLength); + keyTechScrollBar.setElementCount ((int) keyTechButtons.size ()); + keyTechScrollBar.setVisibleSize (keyButtonsToRender); + keyTechScrollBar.setVisibleStart (0); + + keyMapScrollBar.init (mapInfoXPos + keyButtonsWidthMap + labelWidth + + 20, + scrollListsYPos - listBoxLength + + keyButtonsLineHeight, false, 200, 20); + keyMapScrollBar.setLength (listBoxLength); + keyMapScrollBar.setElementCount ((int) keyMapButtons.size ()); + keyMapScrollBar.setVisibleSize (keyButtonsToRender); + keyMapScrollBar.setVisibleStart (0); + + keyScenarioScrollBar.init (scenarioInfoXPos + keyButtonsWidthScen, + scrollListsYPos - listBoxLength + + keyButtonsLineHeight, false, 200, 20); + keyScenarioScrollBar.setLength (listBoxLength); + keyScenarioScrollBar.setElementCount ((int) keyScenarioButtons.size ()); + keyScenarioScrollBar.setVisibleSize (keyButtonsToRender); + keyScenarioScrollBar.setVisibleStart (0); + + modMenuState = mmst_None; + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + if (modHttpServerThread != NULL) + { + modHttpServerThread->signalQuit (); + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); } - for(unsigned int i=0; i < tilesetFilesUserData.size(); i++) { + MapInfo MenuStateMods::loadMapInfo (string file) + { + try + { + Lang & lang = Lang::getInstance (); + // Not painting properly so this is on hold + MapPreview::loadMapInfo (file, &mapInfo, + lang.getString ("MaxPlayers"), + lang.getString ("Size"), true); + } + catch (exception & e) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error [%s] loading map [%s]\n", + __FILE__, __FUNCTION__, __LINE__, e.what (), + file.c_str ()); + throw megaglest_runtime_error ("Error loading map file: [" + file + + "] msg: " + e.what ()); + } - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - string tilesetName = tilesetFilesUserData[i]; - bool alreadyHasTileset = (tilesetCacheList.find(tilesetName) != tilesetCacheList.end()); - if(alreadyHasTileset == false) { - GraphicButton *button=new GraphicButton(); - button->init(tilesetInfoXPos, keyButtonsYBase, keyButtonsWidthTil,keyButtonsHeight); - button->setText(tilesetName); - button->setUseCustomTexture(true); - button->setCustomTexture(CoreData::getInstance().getCustomTexture()); - keyTilesetButtons.push_back(button); - } - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; + return mapInfo; } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + void MenuStateMods::getTechsLocalList () + { + Config & config = Config::getInstance (); + vector < string > results; + findDirs (config.getPathListForType (ptTechs), results); + techTreeFiles = results; - techListRemote.clear(); - Tokenize(techsMetaData,techListRemote,"\n"); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; + techTreeFilesUserData.clear (); + if (config.getPathListForType (ptTechs).size () > 1) + { + string path = config.getPathListForType (ptTechs)[1]; + endPathWithSlash (path); + findDirs (path, techTreeFilesUserData, false, false); + } } - getTechsLocalList(); - for(unsigned int i=0; i < techListRemote.size(); i++) { + string MenuStateMods::refreshTechModInfo (string techInfo) + { + std::vector < std::string > techInfoList; + Tokenize (techInfo, techInfoList, "|"); + if (techInfoList.size () >= 6) + { + Config & config = Config::getInstance (); + ModInfo modinfo; + modinfo.name = techInfoList[0]; + modinfo.count = techInfoList[1]; + modinfo.crc = techInfoList[2]; + modinfo.description = techInfoList[3]; + modinfo.url = techInfoList[4]; + modinfo.imageUrl = techInfoList[5]; + modinfo.type = mt_Techtree; - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - string result=refreshTechModInfo(techListRemote[i]); - if(result != "") { - ModInfo modinfo; - modinfo=techCacheList[result]; - - GraphicButton *button=new GraphicButton(); - button->init(techInfoXPos, keyButtonsYBase, keyButtonsWidthTech,keyButtonsHeight); - button->setText(modinfo.name); - button->setUseCustomTexture(true); - button->setCustomTexture(CoreData::getInstance().getCustomTexture()); - - keyTechButtons.push_back(button); - GraphicLabel *label=new GraphicLabel(); - label->init(techInfoXPos + keyButtonsWidthTech+10,keyButtonsYBase,labelWidth,20); - label->setText(modinfo.count); - labelsTech.push_back(label); - } - } - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; + string itemPath = + config.getPathListForType (ptTechs, + "")[1] + "/" + modinfo.name + + string ("/*"); + if (itemPath.empty () == false) + { + bool forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + uint32 crc = + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", NULL, + forceRefresh); + if (crc == 0) + { + itemPath = + config.getPathListForType (ptTechs, + "")[0] + "/" + modinfo.name + + string ("/*"); + if (itemPath.empty () == false) + { + forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + crc = + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", + NULL, forceRefresh); + } + } + modinfo.localCRC = uIntToStr (crc); + //printf("itemPath='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); + } + else + { + modinfo.localCRC = ""; + } + techCacheList[modinfo.name] = modinfo; + return modinfo.name; + } + return ""; } - for(unsigned int i=0; i < techTreeFilesUserData.size(); i++) { - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - string techName = techTreeFilesUserData[i]; - bool alreadyHasTech = (techCacheList.find(techName) != techCacheList.end()); - if(alreadyHasTech == false) { - vector techPaths = config.getPathListForType(ptTechs); - string &techPath = techPaths[1]; - endPathWithSlash(techPath); - vector factions; - findAll(techPath + techName + "/factions/*.", factions, false, false); - - GraphicButton *button=new GraphicButton(); - button->init(techInfoXPos, keyButtonsYBase, keyButtonsWidthTech,keyButtonsHeight); - button->setText(techName); - button->setUseCustomTexture(true); - button->setCustomTexture(CoreData::getInstance().getCustomTexture()); - keyTechButtons.push_back(button); - - int techFactionCount = (int)factions.size(); - GraphicLabel *label=new GraphicLabel(); - label->init(techInfoXPos + keyButtonsWidthTech+10,keyButtonsYBase,labelWidth,20); - label->setText(intToStr(techFactionCount)); - labelsTech.push_back(label); - } - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; + void MenuStateMods::refreshTechs () + { + getTechsLocalList (); + for (int i = 0; i < (int) techListRemote.size (); i++) + { + refreshTechModInfo (techListRemote[i]); + } } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + void MenuStateMods::getTilesetsLocalList () + { + Config & config = Config::getInstance (); + vector < string > results; + findDirs (config.getPathListForType (ptTilesets), results); + tilesetFiles = results; - mapListRemote.clear(); - Tokenize(mapsMetaData,mapListRemote,"\n"); - - getMapsLocalList(); - for(unsigned int i=0; i < mapListRemote.size(); i++) { - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - string result=refreshMapModInfo(mapListRemote[i]); - if(result != "") { - ModInfo modinfo; - modinfo=mapCacheList[result]; - - GraphicButton *button=new GraphicButton(); - button->init(mapInfoXPos, keyButtonsYBase, keyButtonsWidthMap,keyButtonsHeight); - button->setText(modinfo.name); - button->setUseCustomTexture(true); - button->setCustomTexture(CoreData::getInstance().getCustomTexture()); - keyMapButtons.push_back(button); - - GraphicLabel *label=new GraphicLabel(); - label->init(mapInfoXPos + keyButtonsWidthMap + 10,keyButtonsYBase,labelWidth,20); - label->setText(modinfo.count); - labelsMap.push_back(label); - } - } - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; + tilesetFilesUserData.clear (); + if (config.getPathListForType (ptTilesets).size () > 1) + { + string path = config.getPathListForType (ptTilesets)[1]; + endPathWithSlash (path); + findDirs (path, tilesetFilesUserData, false, false); + } } - for(unsigned int i=0; i < mapFilesUserData.size(); i++) { + string MenuStateMods::refreshTilesetModInfo (string tilesetInfo) + { + std::vector < std::string > tilesetInfoList; + Tokenize (tilesetInfo, tilesetInfoList, "|"); + if (tilesetInfoList.size () >= 5) + { + Config & config = Config::getInstance (); + ModInfo modinfo; + modinfo.name = tilesetInfoList[0]; + modinfo.crc = tilesetInfoList[1]; + modinfo.description = tilesetInfoList[2]; + modinfo.url = tilesetInfoList[3]; + modinfo.imageUrl = tilesetInfoList[4]; + modinfo.type = mt_Tileset; - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } + string itemPath = + config.getPathListForType (ptTilesets, + "")[1] + "/" + modinfo.name + + string ("/*"); + if (itemPath.empty () == false) + { + bool forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + uint32 crc = + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", NULL, + forceRefresh); + if (crc == 0) + { + itemPath = + config.getPathListForType (ptTilesets, + "")[0] + "/" + modinfo.name + + string ("/*"); + if (itemPath.empty () == false) + { + forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + crc = + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", + NULL, forceRefresh); + } + } + modinfo.localCRC = uIntToStr (crc); + //printf("itemPath='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); - string mapName = mapFilesUserData[i]; - bool alreadyHasMap = (mapCacheList.find(mapName) != mapCacheList.end()); - if(alreadyHasMap == false) { - vector mapPaths = config.getPathListForType(ptMaps); - string &mapPath = mapPaths[1]; - endPathWithSlash(mapPath); - mapPath += mapName; - MapInfo mapInfo = loadMapInfo(mapPath); + //printf("#1 refreshTilesetModInfo name [%s] modInfo.crc [%s] modInfo.localCRC [%s]\n",modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str()); + } + else + { + modinfo.localCRC = ""; - GraphicButton *button=new GraphicButton(); - button->init(mapInfoXPos, keyButtonsYBase, keyButtonsWidthMap,keyButtonsHeight); - button->setText(mapName); - button->setUseCustomTexture(true); - button->setCustomTexture(CoreData::getInstance().getCustomTexture()); - keyMapButtons.push_back(button); + //printf("#2 refreshTilesetModInfo name [%s] modInfo.crc [%s] modInfo.localCRC [%s]\n",modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str()); + } - int mapPlayerCount = mapInfo.players; - GraphicLabel *label=new GraphicLabel(); - label->init(mapInfoXPos + keyButtonsWidthMap + 10,keyButtonsYBase,labelWidth,20); - label->setText(intToStr(mapPlayerCount)); - labelsMap.push_back(label); - } - } - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; + tilesetCacheList[modinfo.name] = modinfo; + return modinfo.name; + } + return ""; } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - - scenarioListRemote.clear(); - Tokenize(scenariosMetaData,scenarioListRemote,"\n"); - - getScenariosLocalList(); - for(unsigned int i=0; i < scenarioListRemote.size(); i++) { - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - string result=refreshScenarioModInfo(scenarioListRemote[i]); - if(result != "") { - ModInfo modinfo; - modinfo=scenarioCacheList[result]; - GraphicButton *button=new GraphicButton(); - button->init(scenarioInfoXPos, keyButtonsYBase, keyButtonsWidthScen,keyButtonsHeight); - button->setText(modinfo.name); - button->setUseCustomTexture(true); - button->setCustomTexture(CoreData::getInstance().getCustomTexture()); - keyScenarioButtons.push_back(button); - } - } - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; + void MenuStateMods::refreshTilesets () + { + getTilesetsLocalList (); + for (int i = 0; i < (int) tilesetListRemote.size (); i++) + { + refreshTilesetModInfo (tilesetListRemote[i]); + } } - for(unsigned int i=0; i < scenarioFilesUserData.size(); i++) { - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - string scenarioName = scenarioFilesUserData[i]; - bool alreadyHasScenario = (scenarioCacheList.find(scenarioName) != scenarioCacheList.end()); - if(alreadyHasScenario == false) { - vector scenarioPaths = config.getPathListForType(ptScenarios); - string &scenarioPath = scenarioPaths[1]; - endPathWithSlash(scenarioPath); - scenarioPath += scenarioName; - - GraphicButton *button=new GraphicButton(); - button->init(scenarioInfoXPos, keyButtonsYBase, keyButtonsWidthScen,keyButtonsHeight); - button->setText(scenarioName); - button->setUseCustomTexture(true); - button->setCustomTexture(CoreData::getInstance().getCustomTexture()); - keyScenarioButtons.push_back(button); - } - } - - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - - keyTilesetScrollBar.init(tilesetInfoXPos + keyButtonsWidthTil,scrollListsYPos-listBoxLength+keyButtonsLineHeight,false,200,20); - keyTilesetScrollBar.setLength(listBoxLength); - keyTilesetScrollBar.setElementCount((int)keyTilesetButtons.size()); - keyTilesetScrollBar.setVisibleSize(keyButtonsToRender); - keyTilesetScrollBar.setVisibleStart(0); - - keyTechScrollBar.init(techInfoXPos + keyButtonsWidthTech + labelWidth + 20,scrollListsYPos-listBoxLength+keyButtonsLineHeight,false,200,20); - keyTechScrollBar.setLength(listBoxLength); - keyTechScrollBar.setElementCount((int)keyTechButtons.size()); - keyTechScrollBar.setVisibleSize(keyButtonsToRender); - keyTechScrollBar.setVisibleStart(0); - - keyMapScrollBar.init(mapInfoXPos + keyButtonsWidthMap + labelWidth + 20,scrollListsYPos-listBoxLength+keyButtonsLineHeight,false,200,20); - keyMapScrollBar.setLength(listBoxLength); - keyMapScrollBar.setElementCount((int)keyMapButtons.size()); - keyMapScrollBar.setVisibleSize(keyButtonsToRender); - keyMapScrollBar.setVisibleStart(0); - - keyScenarioScrollBar.init(scenarioInfoXPos + keyButtonsWidthScen,scrollListsYPos-listBoxLength+keyButtonsLineHeight,false,200,20); - keyScenarioScrollBar.setLength(listBoxLength); - keyScenarioScrollBar.setElementCount((int)keyScenarioButtons.size()); - keyScenarioScrollBar.setVisibleSize(keyButtonsToRender); - keyScenarioScrollBar.setVisibleStart(0); - - modMenuState=mmst_None; - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - if(modHttpServerThread != NULL) { - modHttpServerThread->signalQuit(); - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); -} - -MapInfo MenuStateMods::loadMapInfo(string file) { - try{ - Lang &lang= Lang::getInstance(); - // Not painting properly so this is on hold - MapPreview::loadMapInfo(file, &mapInfo, lang.getString("MaxPlayers"),lang.getString("Size"),true); - } - catch(exception &e) { - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error [%s] loading map [%s]\n",__FILE__,__FUNCTION__,__LINE__,e.what(),file.c_str()); - throw megaglest_runtime_error("Error loading map file: [" + file + "] msg: " + e.what()); - } - - return mapInfo; -} - -void MenuStateMods::getTechsLocalList() { - Config &config = Config::getInstance(); - vector results; - findDirs(config.getPathListForType(ptTechs), results); - techTreeFiles = results; - - techTreeFilesUserData.clear(); - if(config.getPathListForType(ptTechs).size() > 1) { - string path = config.getPathListForType(ptTechs)[1]; - endPathWithSlash(path); - findDirs(path, techTreeFilesUserData, false, false); - } -} - -string MenuStateMods::refreshTechModInfo(string techInfo) { - std::vector techInfoList; - Tokenize(techInfo,techInfoList,"|"); - if(techInfoList.size() >= 6) { - Config &config = Config::getInstance(); - ModInfo modinfo; - modinfo.name = techInfoList[0]; - modinfo.count = techInfoList[1]; - modinfo.crc = techInfoList[2]; - modinfo.description = techInfoList[3]; - modinfo.url = techInfoList[4]; - modinfo.imageUrl = techInfoList[5]; - modinfo.type = mt_Techtree; - - string itemPath = config.getPathListForType(ptTechs,"")[1] + "/" + modinfo.name + string("/*"); - if(itemPath.empty() == false) { - bool forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - uint32 crc = getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh); - if(crc == 0) { - itemPath = config.getPathListForType(ptTechs,"")[0] + "/" + modinfo.name + string("/*"); - if(itemPath.empty() == false) { - forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - crc = getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh); - } - } - modinfo.localCRC=uIntToStr(crc); - //printf("itemPath='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); - } - else { - modinfo.localCRC=""; - } - techCacheList[modinfo.name] = modinfo; - return modinfo.name; - } - return ""; -} - -void MenuStateMods::refreshTechs() { - getTechsLocalList(); - for(int i=0; i < (int)techListRemote.size(); i++) { - refreshTechModInfo(techListRemote[i]); - } -} - -void MenuStateMods::getTilesetsLocalList() { - Config &config = Config::getInstance(); - vector results; - findDirs(config.getPathListForType(ptTilesets), results); - tilesetFiles = results; - - tilesetFilesUserData.clear(); - if(config.getPathListForType(ptTilesets).size() > 1) { - string path = config.getPathListForType(ptTilesets)[1]; - endPathWithSlash(path); - findDirs(path, tilesetFilesUserData, false, false); - } -} - -string MenuStateMods::refreshTilesetModInfo(string tilesetInfo) { - std::vector tilesetInfoList; - Tokenize(tilesetInfo,tilesetInfoList,"|"); - if(tilesetInfoList.size() >= 5) { - Config &config = Config::getInstance(); - ModInfo modinfo; - modinfo.name = tilesetInfoList[0]; - modinfo.crc = tilesetInfoList[1]; - modinfo.description = tilesetInfoList[2]; - modinfo.url = tilesetInfoList[3]; - modinfo.imageUrl = tilesetInfoList[4]; - modinfo.type = mt_Tileset; - - string itemPath = config.getPathListForType(ptTilesets,"")[1] + "/" + modinfo.name + string("/*"); - if(itemPath.empty() == false) { - bool forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - uint32 crc = getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh); - if(crc == 0) { - itemPath = config.getPathListForType(ptTilesets,"")[0] + "/" + modinfo.name + string("/*"); - if(itemPath.empty() == false) { - forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - crc=getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh); - } - } - modinfo.localCRC=uIntToStr(crc); - //printf("itemPath='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); - - //printf("#1 refreshTilesetModInfo name [%s] modInfo.crc [%s] modInfo.localCRC [%s]\n",modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str()); - } - else { - modinfo.localCRC=""; - - //printf("#2 refreshTilesetModInfo name [%s] modInfo.crc [%s] modInfo.localCRC [%s]\n",modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str()); - } - - tilesetCacheList[modinfo.name] = modinfo; - return modinfo.name; - } - return ""; -} - -void MenuStateMods::refreshTilesets() { - getTilesetsLocalList(); - for(int i=0; i < (int)tilesetListRemote.size(); i++) { - refreshTilesetModInfo(tilesetListRemote[i]); - } -} - -void MenuStateMods::getMapsLocalList() { + void MenuStateMods::getMapsLocalList () + { /* Config &config = Config::getInstance(); @@ -997,1758 +1372,2668 @@ void MenuStateMods::getMapsLocalList() { } */ - Config &config = Config::getInstance(); - string scenarioDir = ""; - vector pathList = config.getPathListForType(ptMaps,scenarioDir); - vector invalidMapList; - vector allMaps = MapPreview::findAllValidMaps(pathList,scenarioDir,false,false,&invalidMapList); - if (allMaps.empty()) { - throw megaglest_runtime_error("No maps were found!"); - } - vector results; - copy(allMaps.begin(), allMaps.end(), std::back_inserter(results)); - mapFiles = results; + Config & config = Config::getInstance (); + string scenarioDir = ""; + vector < string > pathList = + config.getPathListForType (ptMaps, scenarioDir); + vector < string > invalidMapList; + vector < string > allMaps = + MapPreview::findAllValidMaps (pathList, scenarioDir, false, false, + &invalidMapList); + if (allMaps.empty ()) + { + throw megaglest_runtime_error ("No maps were found!"); + } + vector < string > results; + copy (allMaps.begin (), allMaps.end (), std::back_inserter (results)); + mapFiles = results; - mapFilesUserData = MapPreview::findAllValidMaps(pathList,scenarioDir,true,false,&invalidMapList); -} + mapFilesUserData = + MapPreview::findAllValidMaps (pathList, scenarioDir, true, false, + &invalidMapList); + } -string MenuStateMods::refreshMapModInfo(string mapInfo) { - std::vector mapInfoList; - Tokenize(mapInfo,mapInfoList,"|"); - if(mapInfoList.size() >= 6) { - //Config &config = Config::getInstance(); - ModInfo modinfo; - modinfo.name = mapInfoList[0]; - modinfo.count = mapInfoList[1]; - modinfo.crc = mapInfoList[2]; - modinfo.description = mapInfoList[3]; - modinfo.url = mapInfoList[4]; - modinfo.imageUrl = mapInfoList[5]; - modinfo.type = mt_Map; - modinfo.localCRC=getMapCRC(modinfo.name); - mapCacheList[modinfo.name] = modinfo; - return modinfo.name; - } - return ""; -} + string MenuStateMods::refreshMapModInfo (string mapInfo) + { + std::vector < std::string > mapInfoList; + Tokenize (mapInfo, mapInfoList, "|"); + if (mapInfoList.size () >= 6) + { + //Config &config = Config::getInstance(); + ModInfo modinfo; + modinfo.name = mapInfoList[0]; + modinfo.count = mapInfoList[1]; + modinfo.crc = mapInfoList[2]; + modinfo.description = mapInfoList[3]; + modinfo.url = mapInfoList[4]; + modinfo.imageUrl = mapInfoList[5]; + modinfo.type = mt_Map; + modinfo.localCRC = getMapCRC (modinfo.name); + mapCacheList[modinfo.name] = modinfo; + return modinfo.name; + } + return ""; + } -string MenuStateMods::getMapCRC(string mapName) { - Config &config = Config::getInstance(); - vector mappaths=config.getPathListForType(ptMaps,""); - string result=""; - if(mappaths.empty() == false) { - Checksum checksum; - string itemPath = mappaths[1] + "/" + mapName; - if (fileExists(itemPath)){ - checksum.addFile(itemPath); - uint32 crc=checksum.getSum(); - result=uIntToStr(crc); - //printf("itemPath='%s' modinfo.name='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); - } - else { - itemPath = mappaths[0] + "/" + mapName; - if (fileExists(itemPath)){ - checksum.addFile(itemPath); - uint32 crc=checksum.getSum(); - result=uIntToStr(crc); - //printf("itemPath='%s' modinfo.name='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); - } - else { - result=""; - } - } - } - else { - result=""; - } - return result; -} + string MenuStateMods::getMapCRC (string mapName) + { + Config & config = Config::getInstance (); + vector < string > mappaths = config.getPathListForType (ptMaps, ""); + string result = ""; + if (mappaths.empty () == false) + { + Checksum checksum; + string itemPath = mappaths[1] + "/" + mapName; + if (fileExists (itemPath)) + { + checksum.addFile (itemPath); + uint32 crc = checksum.getSum (); + result = uIntToStr (crc); + //printf("itemPath='%s' modinfo.name='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); + } + else + { + itemPath = mappaths[0] + "/" + mapName; + if (fileExists (itemPath)) + { + checksum.addFile (itemPath); + uint32 crc = checksum.getSum (); + result = uIntToStr (crc); + //printf("itemPath='%s' modinfo.name='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.name.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); + } + else + { + result = ""; + } + } + } + else + { + result = ""; + } + return result; + } -void MenuStateMods::refreshMaps() { - getMapsLocalList(); - for(int i=0; i < (int)mapListRemote.size(); i++) { - refreshMapModInfo(mapListRemote[i]); - } -} + void MenuStateMods::refreshMaps () + { + getMapsLocalList (); + for (int i = 0; i < (int) mapListRemote.size (); i++) + { + refreshMapModInfo (mapListRemote[i]); + } + } -void MenuStateMods::getScenariosLocalList() { - Config &config = Config::getInstance(); - vector results; - findDirs(config.getPathListForType(ptScenarios), results); - scenarioFiles = results; + void MenuStateMods::getScenariosLocalList () + { + Config & config = Config::getInstance (); + vector < string > results; + findDirs (config.getPathListForType (ptScenarios), results); + scenarioFiles = results; - scenarioFilesUserData.clear(); - if(config.getPathListForType(ptScenarios).size() > 1) { - string path = config.getPathListForType(ptScenarios)[1]; - endPathWithSlash(path); - findDirs(path, scenarioFilesUserData, false, false); - } -} + scenarioFilesUserData.clear (); + if (config.getPathListForType (ptScenarios).size () > 1) + { + string path = config.getPathListForType (ptScenarios)[1]; + endPathWithSlash (path); + findDirs (path, scenarioFilesUserData, false, false); + } + } -string MenuStateMods::refreshScenarioModInfo(string scenarioInfo) { - std::vector scenarioInfoList; - Tokenize(scenarioInfo,scenarioInfoList,"|"); - if(scenarioInfoList.size() >= 5) { - Config &config = Config::getInstance(); - ModInfo modinfo; - modinfo.name = scenarioInfoList[0]; - modinfo.crc = scenarioInfoList[1]; - modinfo.description = scenarioInfoList[2]; - modinfo.url = scenarioInfoList[3]; - modinfo.imageUrl = scenarioInfoList[4]; - modinfo.type = mt_Scenario; + string MenuStateMods::refreshScenarioModInfo (string scenarioInfo) + { + std::vector < std::string > scenarioInfoList; + Tokenize (scenarioInfo, scenarioInfoList, "|"); + if (scenarioInfoList.size () >= 5) + { + Config & config = Config::getInstance (); + ModInfo modinfo; + modinfo.name = scenarioInfoList[0]; + modinfo.crc = scenarioInfoList[1]; + modinfo.description = scenarioInfoList[2]; + modinfo.url = scenarioInfoList[3]; + modinfo.imageUrl = scenarioInfoList[4]; + modinfo.type = mt_Scenario; - string itemPath = config.getPathListForType(ptScenarios,"")[1] + "/" + modinfo.name + string("/*"); - if(itemPath.empty() == false) { - bool forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - uint32 crc = getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh); - if(crc == 0) { - itemPath = config.getPathListForType(ptScenarios,"")[0] + "/" + modinfo.name + string("/*"); - if(itemPath.empty() == false) { - forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - crc = getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh); - } - } - modinfo.localCRC=uIntToStr(crc); - //printf(" itemPath='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); - } - else { - modinfo.localCRC=""; - } - scenarioCacheList[modinfo.name] = modinfo; - return modinfo.name; - } - return ""; -} + string itemPath = + config.getPathListForType (ptScenarios, + "")[1] + "/" + modinfo.name + + string ("/*"); + if (itemPath.empty () == false) + { + bool forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + uint32 crc = + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", NULL, + forceRefresh); + if (crc == 0) + { + itemPath = + config.getPathListForType (ptScenarios, + "")[0] + "/" + modinfo.name + + string ("/*"); + if (itemPath.empty () == false) + { + forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + crc = + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", + NULL, forceRefresh); + } + } + modinfo.localCRC = uIntToStr (crc); + //printf(" itemPath='%s' remote crc:'%s' local crc:'%s' crc='%d' \n",itemPath.c_str(),modinfo.crc.c_str(),modinfo.localCRC.c_str(),crc); + } + else + { + modinfo.localCRC = ""; + } + scenarioCacheList[modinfo.name] = modinfo; + return modinfo.name; + } + return ""; + } -void MenuStateMods::refreshScenarios() { - getScenariosLocalList(); - for(int i=0; i < (int)scenarioListRemote.size(); i++) { - refreshScenarioModInfo(scenarioListRemote[i]); - } -} + void MenuStateMods::refreshScenarios () + { + getScenariosLocalList (); + for (int i = 0; i < (int) scenarioListRemote.size (); i++) + { + refreshScenarioModInfo (scenarioListRemote[i]); + } + } -void MenuStateMods::cleanUp() { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(modHttpServerThread != NULL) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - modHttpServerThread->signalQuit(); - //modHttpServerThread->setThreadOwnerValid(false); + void MenuStateMods::cleanUp () + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + if (modHttpServerThread != NULL) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + modHttpServerThread->signalQuit (); + //modHttpServerThread->setThreadOwnerValid(false); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if( modHttpServerThread->canShutdown(true) == true && - modHttpServerThread->shutdownAndWait() == true) { - delete modHttpServerThread; - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - modHttpServerThread = NULL; - } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + if (modHttpServerThread->canShutdown (true) == true + && modHttpServerThread->shutdownAndWait () == true) + { + delete modHttpServerThread; + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + modHttpServerThread = NULL; + } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); - if(ftpClientThread != NULL) { - ftpClientThread->setCallBackObject(NULL); - ftpClientThread->signalQuit(); - sleep(0); - if(ftpClientThread->canShutdown(true) == true && - ftpClientThread->shutdownAndWait() == true) { - delete ftpClientThread; - } - else { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error cannot shutdown ftpClientThread\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - //SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("%s",szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); + if (ftpClientThread != NULL) + { + ftpClientThread->setCallBackObject (NULL); + ftpClientThread->signalQuit (); + sleep (0); + if (ftpClientThread->canShutdown (true) == true && + ftpClientThread->shutdownAndWait () == true) + { + delete ftpClientThread; + } + else + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d] Error cannot shutdown ftpClientThread\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + //SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("%s", szBuf); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); - //publishToMasterserverThread->cleanup(); - } - ftpClientThread = NULL; + //publishToMasterserverThread->cleanup(); + } + ftpClientThread = NULL; -// ftpClientThread->signalQuit(); -// ftpClientThread->setCallBackObject(NULL); -// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); -// if( ftpClientThread->shutdownAndWait() == true) { -// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); +// ftpClientThread->signalQuit(); +// ftpClientThread->setCallBackObject(NULL); +// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); +// if( ftpClientThread->shutdownAndWait() == true) { +// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); // delete ftpClientThread; -// } -// ftpClientThread = NULL; -// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - } +// } +// ftpClientThread = NULL; +// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); - clearUserButtons(); + clearUserButtons (); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - cleanupPreviewTexture(); - cleanupMapPreviewTexture(); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); -} - -MenuStateMods::~MenuStateMods() { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - cleanUp(); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); -} - -void MenuStateMods::clearUserButtons() { - // Techs - while(!keyTechButtons.empty()) { - delete keyTechButtons.back(); - keyTechButtons.pop_back(); - } - keyTechScrollBar.setElementCount(0); - - while(!labelsTech.empty()) { - delete labelsTech.back(); - labelsTech.pop_back(); - } - - // Tilesets - while(!keyTilesetButtons.empty()) { - delete keyTilesetButtons.back(); - keyTilesetButtons.pop_back(); - } - keyTilesetScrollBar.setElementCount(0); - - // Maps - while(!keyMapButtons.empty()) { - delete keyMapButtons.back(); - keyMapButtons.pop_back(); - } - while(!labelsMap.empty()) { - delete labelsMap.back(); - labelsMap.pop_back(); - } - keyMapScrollBar.setElementCount(0); - - // Scenarios - while(!keyScenarioButtons.empty()) { - delete keyScenarioButtons.back(); - keyScenarioButtons.pop_back(); - } - keyScenarioScrollBar.setElementCount(0); -} - -void MenuStateMods::mouseClick(int x, int y, MouseButton mouseButton) { - - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - Lang &lang= Lang::getInstance(); - - if(buttonReturn.mouseClick(x,y)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - soundRenderer.playFx(coreData.getClickSoundA()); - - if(fileFTPProgressList.empty() == false) { - mainMessageBoxState = ftpmsg_Quit; - mainMessageBox.init(lang.getString("Yes"),lang.getString("No"),450); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModDownloadInProgressCancelQuestion").c_str(),fileFTPProgressList.size()); - showMessageBox(szBuf, lang.getString("Question"), true); - } - else { - cleanUp(); - mainMenu->setState(new MenuStateRoot(program, mainMenu)); - return; - } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + cleanupPreviewTexture (); + cleanupMapPreviewTexture (); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); } - else if(mainMessageBox.getEnabled()) { - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - soundRenderer.playFx(coreData.getClickSoundA()); - mainMessageBox.setEnabled(false); - mainMessageBox.init(lang.getString("Yes"),lang.getString("No"),450); - if(button == 0) { - if(mainMessageBoxState == ftpmsg_Quit) { - mainMessageBoxState = ftpmsg_None; - mainMenu->setState(new MenuStateRoot(program, mainMenu)); - return; - } - else if(mainMessageBoxState == ftpmsg_GetMap || - mainMessageBoxState == ftpmsg_ReplaceMap) { - bool getItemAfterRemoval = (mainMessageBoxState == ftpmsg_ReplaceMap); - mainMessageBoxState = ftpmsg_None; - Config &config = Config::getInstance(); - vector mapPaths = config.getPathListForType(ptMaps); - if(mapPaths.size() > 1) { - string removeMap = mapPaths[1]; - endPathWithSlash(removeMap); - removeMap += selectedMapName; + MenuStateMods::~MenuStateMods () + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Removing Map [%s]\n",removeMap.c_str()); - removeFile(removeMap); + cleanUp (); - bool remoteHasMap = (mapCacheList.find(selectedMapName) != mapCacheList.end()); - if(remoteHasMap == false) { - for(unsigned int i = 0; i < keyMapButtons.size(); ++i) { - GraphicButton *button = keyMapButtons[i]; - if(button != NULL && button->getText() == selectedMapName) { - delete button; - keyMapButtons.erase(keyMapButtons.begin() + i); - labelsMap.erase(labelsMap.begin() + i); - keyMapScrollBar.setElementCount((int)keyMapButtons.size()); - break; - } - } - } - - if(getItemAfterRemoval == false) { - selectedMapName = ""; - } - refreshMaps(); - Checksum::clearFileCache(); - - if(getItemAfterRemoval == true) { - string mapName = selectedMapName; - string mapURL = mapCacheList[mapName].url; - if(ftpClientThread != NULL) ftpClientThread->addMapToRequests(mapName,mapURL); - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList[mapName] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - buttonInstallMap.setEnabled(false); - } - } - } - else if(mainMessageBoxState == ftpmsg_GetTileset || - mainMessageBoxState == ftpmsg_ReplaceTileset) { - bool getItemAfterRemoval = (mainMessageBoxState == ftpmsg_ReplaceTileset); - mainMessageBoxState = ftpmsg_None; - - Config &config = Config::getInstance(); - vector tilesetPaths = config.getPathListForType(ptTilesets); - if(tilesetPaths.size() > 1) { - string removeTileset = tilesetPaths[1]; - endPathWithSlash(removeTileset); - removeTileset += selectedTilesetName; - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Removing Tileset [%s]\n",removeTileset.c_str()); - removeFolder(removeTileset); - - bool remoteHasTileset = (tilesetCacheList.find(selectedTilesetName) != tilesetCacheList.end()); - if(remoteHasTileset == false) { - //printf("\n\n\n$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ remote DOES NOT have removed tileset [%s]\n\n\n",selectedTilesetName.c_str()); - - for(unsigned int i = 0; i < keyTilesetButtons.size(); ++i) { - GraphicButton *button = keyTilesetButtons[i]; - if(button != NULL && button->getText() == selectedTilesetName) { - delete button; - keyTilesetButtons.erase(keyTilesetButtons.begin() + i); - keyTilesetScrollBar.setElementCount((int)keyTilesetButtons.size()); - break; - } - } - } - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - Checksum::clearFileCache(); - vector paths = Config::getInstance().getPathListForType(ptTilesets); - string pathSearchString = string("/") + selectedTilesetName + string("/*"); - const string filterFileExt = ".xml"; - clearFolderTreeContentsCheckSum(paths, pathSearchString, filterFileExt); - clearFolderTreeContentsCheckSumList(paths, pathSearchString, filterFileExt); - safeMutexFTPProgress.ReleaseLock(); - - if(getItemAfterRemoval == false) { - selectedTilesetName = ""; - } - refreshTilesets(); - } - - if(getItemAfterRemoval == true) { - string tilesetName = selectedTilesetName; - string tilesetURL = tilesetCacheList[tilesetName].url; - if(ftpClientThread != NULL) ftpClientThread->addTilesetToRequests(tilesetName,tilesetURL); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList[tilesetName] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - buttonInstallTileset.setEnabled(false); - } - } - else if(mainMessageBoxState == ftpmsg_GetTechtree || - mainMessageBoxState == ftpmsg_ReplaceTechtree) { - bool getItemAfterRemoval = (mainMessageBoxState == ftpmsg_ReplaceTechtree); - mainMessageBoxState = ftpmsg_None; - - Config &config = Config::getInstance(); - vector techPaths = config.getPathListForType(ptTechs); - if(techPaths.size() > 1) { - string removeTech = techPaths[1]; - endPathWithSlash(removeTech); - removeTech+= selectedTechName; - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Removing Techtree [%s]\n",removeTech.c_str()); - removeFolder(removeTech); - - bool remoteHasTech = (techCacheList.find(selectedTechName) != techCacheList.end()); - if(remoteHasTech == false) { - for(unsigned int i = 0; i < keyTechButtons.size(); ++i) { - GraphicButton *button = keyTechButtons[i]; - if(button != NULL && button->getText() == selectedTechName) { - delete button; - keyTechButtons.erase(keyTechButtons.begin() + i); - labelsTech.erase(labelsTech.begin() + i); - keyTechScrollBar.setElementCount((int)keyTechButtons.size()); - break; - } - } - } - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - // Clear the CRC file Cache - Checksum::clearFileCache(); - vector paths = Config::getInstance().getPathListForType(ptTechs); - string pathSearchString = string("/") + selectedTechName + string("/*"); - const string filterFileExt = ".xml"; - clearFolderTreeContentsCheckSum(paths, pathSearchString, filterFileExt); - clearFolderTreeContentsCheckSumList(paths, pathSearchString, filterFileExt); - safeMutexFTPProgress.ReleaseLock(); - - if(getItemAfterRemoval == false) { - selectedTechName = ""; - } - refreshTechs(); - } - - if(getItemAfterRemoval == true) { - string techName = selectedTechName; - string techURL = techCacheList[techName].url; - if(ftpClientThread != NULL) ftpClientThread->addTechtreeToRequests(techName,techURL); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList[techName] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - buttonInstallTech.setEnabled(false); - } - } - else if(mainMessageBoxState == ftpmsg_GetScenario || - mainMessageBoxState == ftpmsg_ReplaceScenario) { - bool getItemAfterRemoval = (mainMessageBoxState == ftpmsg_ReplaceScenario); - mainMessageBoxState = ftpmsg_None; - - Config &config = Config::getInstance(); - vector scenarioPaths = config.getPathListForType(ptScenarios); - if(scenarioPaths.size() > 1) { - string removeScenario = scenarioPaths[1]; - endPathWithSlash(removeScenario); - removeScenario += selectedScenarioName; - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Removing Scenario [%s]\n",removeScenario.c_str()); - removeFolder(removeScenario); - - bool remoteHasScenario = (scenarioCacheList.find(selectedScenarioName) != scenarioCacheList.end()); - if(remoteHasScenario == false) { - for(unsigned int i = 0; i < keyScenarioButtons.size(); ++i) { - GraphicButton *button = keyScenarioButtons[i]; - if(button != NULL && button->getText() == selectedScenarioName) { - delete button; - keyScenarioButtons.erase(keyScenarioButtons.begin() + i); - keyScenarioScrollBar.setElementCount((int)keyScenarioButtons.size()); - break; - } - } - } - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - Checksum::clearFileCache(); - vector paths = Config::getInstance().getPathListForType(ptScenarios); - string pathSearchString = string("/") + selectedScenarioName + string("/*"); - const string filterFileExt = ".xml"; - clearFolderTreeContentsCheckSum(paths, pathSearchString, filterFileExt); - clearFolderTreeContentsCheckSumList(paths, pathSearchString, filterFileExt); - safeMutexFTPProgress.ReleaseLock(); - - if(getItemAfterRemoval == false) { - selectedScenarioName = ""; - } - refreshScenarios(); - } - - if(getItemAfterRemoval == true) { - string scenarioName = selectedScenarioName; - string scenarioURL = scenarioCacheList[scenarioName].url; - if(ftpClientThread != NULL) ftpClientThread->addScenarioToRequests(scenarioName,scenarioURL); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList[scenarioName] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - buttonInstallScenario.setEnabled(false); - } - } - } - } - } - else if(keyTechScrollBar.mouseClick(x, y)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundA()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); } - else if(keyTilesetScrollBar.mouseClick(x, y)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundA()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + + void MenuStateMods::clearUserButtons () + { + // Techs + while (!keyTechButtons.empty ()) + { + delete keyTechButtons.back (); + keyTechButtons.pop_back (); + } + keyTechScrollBar.setElementCount (0); + + while (!labelsTech.empty ()) + { + delete labelsTech.back (); + labelsTech.pop_back (); + } + + // Tilesets + while (!keyTilesetButtons.empty ()) + { + delete keyTilesetButtons.back (); + keyTilesetButtons.pop_back (); + } + keyTilesetScrollBar.setElementCount (0); + + // Maps + while (!keyMapButtons.empty ()) + { + delete keyMapButtons.back (); + keyMapButtons.pop_back (); + } + while (!labelsMap.empty ()) + { + delete labelsMap.back (); + labelsMap.pop_back (); + } + keyMapScrollBar.setElementCount (0); + + // Scenarios + while (!keyScenarioButtons.empty ()) + { + delete keyScenarioButtons.back (); + keyScenarioButtons.pop_back (); + } + keyScenarioScrollBar.setElementCount (0); } - else if(keyMapScrollBar.mouseClick(x, y)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundA()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - } - else if(keyScenarioScrollBar.mouseClick(x, y)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundA()); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - } - else if(buttonInstallTech.mouseClick(x, y) && buttonInstallTech.getEnabled()) { - soundRenderer.playFx(coreData.getClickSoundB()); - if(selectedTechName != "") { - bool alreadyHasTech = (std::find(techTreeFiles.begin(),techTreeFiles.end(),selectedTechName) != techTreeFiles.end()); - if(alreadyHasTech == true) { - bool remoteHasTech = (techCacheList.find(selectedTechName) != techCacheList.end()); - if(remoteHasTech == true){ - ModInfo &modInfo = techCacheList[selectedTechName]; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] remote CRC [%s]\n",__FILE__,__FUNCTION__,__LINE__,modInfo.crc.c_str()); + void MenuStateMods::mouseClick (int x, int y, MouseButton mouseButton) + { - Config &config = Config::getInstance(); - string itemPath = config.getPathListForType(ptTechs,"")[1] + "/" + selectedTechName + string("/*"); - bool forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - if( strToUInt(modInfo.crc) != 0 && - strToUInt(modInfo.crc) != getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] local CRC [%u]\n",__FILE__,__FUNCTION__,__LINE__,getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL)); + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + Lang & lang = Lang::getInstance (); - mainMessageBoxState = ftpmsg_ReplaceTechtree; - mainMessageBox.init(lang.getString("Yes"),lang.getString("No"),450); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModLocalRemoteMismatch").c_str(),selectedTechName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModTechAlreadyInstalled").c_str(),selectedTechName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - mapCRCUpdateList[itemPath] = true; - } - } - else { - string techName = selectedTechName; - string techURL = techCacheList[techName].url; - if(ftpClientThread != NULL) ftpClientThread->addTechtreeToRequests(techName,techURL); + if (buttonReturn.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList[techName] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - buttonInstallTech.setEnabled(false); - } - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - showMessageBox(lang.getString("ModSelectTechToInstall"), lang.getString("Notice"), true); - } - } - else if(buttonRemoveTech.mouseClick(x, y) && buttonRemoveTech.getEnabled()) { - soundRenderer.playFx(coreData.getClickSoundB()); - if(selectedTechName != "") { - bool alreadyHasTech = (std::find(techTreeFiles.begin(),techTreeFiles.end(),selectedTechName) != techTreeFiles.end()); - if(alreadyHasTech == true) { - mainMessageBoxState = ftpmsg_GetTechtree; + soundRenderer.playFx (coreData.getClickSoundA ()); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModRemoveTechConfirm").c_str(),selectedTechName.c_str()); - showMessageBox(szBuf, lang.getString("Question"), true); - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModCannotRemoveTechNotInstalled").c_str(),selectedTechName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - - showMessageBox(lang.getString("ModSelectTechToRemove"), lang.getString("Notice"), true); - } - } - - else if(buttonInstallTileset.mouseClick(x, y) && buttonInstallTileset.getEnabled()) { - soundRenderer.playFx(coreData.getClickSoundB()); - if(selectedTilesetName != "") { - bool alreadyHasTileset = (std::find(tilesetFiles.begin(),tilesetFiles.end(),selectedTilesetName) != tilesetFiles.end()); - if(alreadyHasTileset == true) { - bool remoteHasTileset = (tilesetCacheList.find(selectedTilesetName) != tilesetCacheList.end()); - if(remoteHasTileset){ - ModInfo &modInfo = tilesetCacheList[selectedTilesetName]; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] remote CRC [%s]\n",__FILE__,__FUNCTION__,__LINE__,modInfo.crc.c_str()); - - Config &config = Config::getInstance(); - string itemPath = config.getPathListForType(ptTilesets,"")[1] + "/" + selectedTilesetName + string("/*"); - bool forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - - if( strToUInt(modInfo.crc) != 0 && - strToUInt(modInfo.crc) != getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL,forceRefresh)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] local CRC [%u] [%s]\n",__FILE__,__FUNCTION__,__LINE__,getFolderTreeContentsCheckSumRecursively(itemPath, ".xml", NULL),itemPath.c_str()); - - mainMessageBoxState = ftpmsg_ReplaceTileset; - mainMessageBox.init(lang.getString("Yes"),lang.getString("No"),450); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModLocalRemoteMismatch").c_str(),selectedTilesetName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModTilesetAlreadyInstalled").c_str(),selectedTilesetName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - } - } - else { - string tilesetName = selectedTilesetName; - string tilesetURL = tilesetCacheList[tilesetName].url; - if(ftpClientThread != NULL) ftpClientThread->addTilesetToRequests(tilesetName,tilesetURL); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList[tilesetName] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - buttonInstallTileset.setEnabled(false); - } - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - showMessageBox(lang.getString("ModSelectTilesetToInstall"), lang.getString("Notice"), true); - } - } - else if(buttonRemoveTileset.mouseClick(x, y) && buttonRemoveTileset.getEnabled()) { - soundRenderer.playFx(coreData.getClickSoundB()); - if(selectedTilesetName != "") { - bool alreadyHasTileset = (std::find(tilesetFiles.begin(),tilesetFiles.end(),selectedTilesetName) != tilesetFiles.end()); - if(alreadyHasTileset == true) { - mainMessageBoxState = ftpmsg_GetTileset; - - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModRemoveTilesetConfirm").c_str(),selectedTilesetName.c_str()); - showMessageBox(szBuf, lang.getString("Question"), true); - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModCannotRemoveTilesetNotInstalled").c_str(),selectedTilesetName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - showMessageBox(lang.getString("ModSelectTilesetToRemove"), lang.getString("Notice"), true); - } - } - - else if(buttonInstallMap.mouseClick(x, y) && buttonInstallMap.getEnabled()) { - soundRenderer.playFx(coreData.getClickSoundB()); - if(selectedMapName != "") { - bool alreadyHasMap = (std::find(mapFiles.begin(),mapFiles.end(),selectedMapName) != mapFiles.end()); - if(alreadyHasMap == true) { - bool remoteHasMap = (mapCacheList.find(selectedMapName) != mapCacheList.end()); - if(remoteHasMap){ - ModInfo &modInfo = mapCacheList[selectedMapName]; - if( modInfo.crc != modInfo.localCRC ) { - mainMessageBoxState = ftpmsg_ReplaceMap; - mainMessageBox.init(lang.getString("Yes"),lang.getString("No"),450); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModLocalRemoteMismatch").c_str(),selectedMapName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModMapAlreadyInstalled").c_str(),selectedMapName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - } - } - else { - string mapName = selectedMapName; - string mapURL = mapCacheList[mapName].url; - if(ftpClientThread != NULL) ftpClientThread->addMapToRequests(mapName,mapURL); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList[mapName] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - buttonInstallMap.setEnabled(false); - } - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - showMessageBox(lang.getString("ModSelectMapToInstall"), lang.getString("Notice"), true); - } - } - else if(buttonRemoveMap.mouseClick(x, y) && buttonRemoveMap.getEnabled()) { - soundRenderer.playFx(coreData.getClickSoundB()); - if(selectedMapName != "") { - bool alreadyHasMap = (std::find(mapFiles.begin(),mapFiles.end(),selectedMapName) != mapFiles.end()); - if(alreadyHasMap == true) { - mainMessageBoxState = ftpmsg_GetMap; - - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModRemoveMapConfirm").c_str(),selectedMapName.c_str()); - showMessageBox(szBuf, lang.getString("Question"), true); - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModCannotRemoveMapNotInstalled").c_str(),selectedMapName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - showMessageBox(lang.getString("ModSelectMapToRemove"), lang.getString("Notice"), true); - } - } - - else if(buttonInstallScenario.mouseClick(x, y) && buttonInstallScenario.getEnabled()) { - soundRenderer.playFx(coreData.getClickSoundB()); - if(selectedScenarioName != "") { - bool alreadyHasScenario = (std::find(scenarioFiles.begin(),scenarioFiles.end(),selectedScenarioName) != scenarioFiles.end()); - if(alreadyHasScenario == true) { - bool remoteHasScenario = (scenarioCacheList.find(selectedScenarioName) != scenarioCacheList.end()); - if(remoteHasScenario){ - ModInfo &modInfo = scenarioCacheList[selectedScenarioName]; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] remote CRC [%s]\n",__FILE__,__FUNCTION__,__LINE__,modInfo.crc.c_str()); - - Config &config = Config::getInstance(); - string itemPath = config.getPathListForType(ptScenarios,"")[1] + "/" + selectedScenarioName + string("/*"); - bool forceRefresh = (mapCRCUpdateList.find(itemPath) == mapCRCUpdateList.end()); - - if( strToUInt(modInfo.crc) != 0 && - strToUInt(modInfo.crc) != getFolderTreeContentsCheckSumRecursively(itemPath, "", NULL,forceRefresh)) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] local CRC [%u]\n",__FILE__,__FUNCTION__,__LINE__,getFolderTreeContentsCheckSumRecursively(itemPath, "", NULL)); - - mainMessageBoxState = ftpmsg_ReplaceScenario; - mainMessageBox.init(lang.getString("Yes"),lang.getString("No"),450); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModLocalRemoteMismatch").c_str(),selectedScenarioName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModScenarioAlreadyInstalled").c_str(),selectedScenarioName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - } - } - else { - string scenarioName = selectedScenarioName; - string scenarioURL = scenarioCacheList[scenarioName].url; - - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] adding file to download [%s]\n",__FILE__,__FUNCTION__,__LINE__,scenarioURL.c_str()); - if(ftpClientThread != NULL) ftpClientThread->addScenarioToRequests(scenarioName,scenarioURL); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList[scenarioName] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - buttonInstallScenario.setEnabled(false); - } - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - showMessageBox(lang.getString("ModSelectScenarioToInstall"), lang.getString("Notice"), true); - } - } - else if(buttonRemoveScenario.mouseClick(x, y) && buttonRemoveScenario.getEnabled()) { - soundRenderer.playFx(coreData.getClickSoundB()); - if(selectedScenarioName != "") { - bool alreadyHasScenario = (std::find(scenarioFiles.begin(),scenarioFiles.end(),selectedScenarioName) != scenarioFiles.end()); - if(alreadyHasScenario == true) { - mainMessageBoxState = ftpmsg_GetScenario; - - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModRemoveScenarioConfirm").c_str(),selectedScenarioName.c_str()); - showMessageBox(szBuf, lang.getString("Question"), true); - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModCannotRemoveScenarioNotInstalled").c_str(),selectedScenarioName.c_str()); - showMessageBox(szBuf, lang.getString("Notice"), true); - } - } - else { - mainMessageBoxState = ftpmsg_None; - mainMessageBox.init(lang.getString("Ok"),450); - showMessageBox(lang.getString("ModSelectScenarioToRemove"), lang.getString("Notice"), true); - } - } - - else { - if(keyMapScrollBar.getElementCount() != 0) { - for (int i = keyMapScrollBar.getVisibleStart(); - i <= keyMapScrollBar.getVisibleEnd(); ++i) { - if(keyMapButtons[i]->mouseClick(x, y) && keyMapButtons[i]->getEnabled()) { - string mapName = keyMapButtons[i]->getText(); - selectedTechName = ""; - selectedTilesetName = ""; - selectedMapName = ""; - selectedScenarioName = ""; - if(mapName != "") { - selectedMapName = mapName; - bool remoteHasMap = (mapCacheList.find(mapName) != mapCacheList.end()); - if(remoteHasMap) { - showRemoteDesription(&mapCacheList[selectedMapName]); - if(mapCacheList[selectedMapName].localCRC!=""){ - loadMapPreview(mapName); - } - } - else { - showLocalDescription(mapName); - loadMapPreview(mapName); - } - - } - break; - } - } - } - if(keyTechScrollBar.getElementCount() != 0) { - for (int i = keyTechScrollBar.getVisibleStart(); - i <= keyTechScrollBar.getVisibleEnd(); ++i) { - if(keyTechButtons[i]->mouseClick(x, y) && keyTechButtons[i]->getEnabled()) { - string techName = keyTechButtons[i]->getText(); - selectedTechName = ""; - selectedTilesetName = ""; - selectedMapName = ""; - selectedScenarioName = ""; - if(techName != "") { - selectedTechName = techName; - bool remoteHasTech = (techCacheList.find(techName) != techCacheList.end()); - if(remoteHasTech) { - showRemoteDesription(&techCacheList[techName]); - } - else { - showLocalDescription(techName); - } - } - break; - } - } - } - if(keyTilesetScrollBar.getElementCount() != 0) { - for (int i = keyTilesetScrollBar.getVisibleStart(); - i <= keyTilesetScrollBar.getVisibleEnd(); ++i) { - if(keyTilesetButtons[i]->mouseClick(x, y) && keyTilesetButtons[i]->getEnabled()) { - string tilesetName = keyTilesetButtons[i]->getText(); - selectedTechName = ""; - selectedTilesetName = ""; - selectedMapName = ""; - selectedScenarioName = ""; - if(tilesetName != "") { - selectedTilesetName = tilesetName; - bool remoteHasTileset = (tilesetCacheList.find(tilesetName) != tilesetCacheList.end()); - if(remoteHasTileset) { - showRemoteDesription(&tilesetCacheList[tilesetName]); - } - else { - showLocalDescription(tilesetName); - } - } - break; - } - } - } - if(keyScenarioScrollBar.getElementCount() != 0) { - for (int i = keyScenarioScrollBar.getVisibleStart(); - i <= keyScenarioScrollBar.getVisibleEnd(); ++i) { - if(keyScenarioButtons[i]->mouseClick(x, y) && keyScenarioButtons[i]->getEnabled()) { - string scenarioName = keyScenarioButtons[i]->getText(); - selectedTechName = ""; - selectedTilesetName = ""; - selectedMapName = ""; - selectedScenarioName = ""; - if(scenarioName != "") { - selectedScenarioName = scenarioName; - bool remoteHasScenario = (scenarioCacheList.find(scenarioName) != scenarioCacheList.end()); - if(remoteHasScenario) { - showRemoteDesription(&scenarioCacheList[scenarioName]); - } - else { - showLocalDescription(scenarioName); - } - - } - break; - } - } - } - - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); -} - -string MenuStateMods::getPreviewImageFileForMod(const ModInfo *modInfo) { - string fileName = ""; - if(modInfo->imageUrl != "") { - Config &config = Config::getInstance(); - string userData = config.getString("UserData_Root",""); - if(userData != "") { - endPathWithSlash(userData); - } - string tempPath = userData + "temp/"; - if(isdir(tempPath.c_str()) == false) { - createDirectoryPaths(tempPath); - } - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("### tempPath [%s] isdir = %d\n",tempPath.c_str(),isdir(tempPath.c_str())); - - if(isdir(tempPath.c_str()) == true) { - fileName = tempPath; - switch(modInfo->type) { - case mt_Map: - fileName += "map_"; - break; - case mt_Tileset: - fileName += "tileset_"; - break; - case mt_Techtree: - fileName += "tech_"; - break; - case mt_Scenario: - fileName += "scenario_"; - break; - } - fileName += extractFileFromDirectoryPath(modInfo->imageUrl); + if (fileFTPProgressList.empty () == false) + { + mainMessageBoxState = ftpmsg_Quit; + mainMessageBox.init (lang.getString ("Yes"), lang.getString ("No"), + 450); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModDownloadInProgressCancelQuestion"). + c_str (), fileFTPProgressList.size ()); + showMessageBox (szBuf, lang.getString ("Question"), true); } - } - return fileName; -} + else + { + cleanUp (); + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + return; + } + } + else if (mainMessageBox.getEnabled ()) + { + int button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMessageBox.setEnabled (false); + mainMessageBox.init (lang.getString ("Yes"), lang.getString ("No"), + 450); + if (button == 0) + { + if (mainMessageBoxState == ftpmsg_Quit) + { + mainMessageBoxState = ftpmsg_None; + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + return; + } + else if (mainMessageBoxState == ftpmsg_GetMap || + mainMessageBoxState == ftpmsg_ReplaceMap) + { + bool getItemAfterRemoval = + (mainMessageBoxState == ftpmsg_ReplaceMap); + mainMessageBoxState = ftpmsg_None; + Config & config = Config::getInstance (); + vector < string > mapPaths = config.getPathListForType (ptMaps); + if (mapPaths.size () > 1) + { + string removeMap = mapPaths[1]; + endPathWithSlash (removeMap); + removeMap += selectedMapName; -void MenuStateMods::showLocalDescription(string name) { - Lang &lang= Lang::getInstance(); - modInfoSelected=NULL; - cleanupPreviewTexture(); - validMapPreview=false; - cleanupMapPreviewTexture(); - modDescrLabel.setText(lang.getString("ModOnlyLocal")+":\n'"+name+"'"); -} + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Removing Map [%s]\n", removeMap.c_str ()); + removeFile (removeMap); -void MenuStateMods::loadMapPreview(string mapName) { - Config &config = Config::getInstance(); - cleanupMapPreviewTexture(); - vector mapPaths = config.getPathListForType(ptMaps); - string &mapPath = mapPaths[1]; - endPathWithSlash(mapPath); - mapPath += mapName; - MapInfo mapInfo = loadMapInfo(mapPath); - if(enableMapPreview == true) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - mapPreview.loadFromFile(mapPath.c_str()); - - //printf("Loading map preview MAP\n"); - cleanupMapPreviewTexture(); - validMapPreview=true; - } -} - - - -void MenuStateMods::showRemoteDesription(ModInfo *modInfo) { - //displayModPreviewImage = false; - modInfoSelected = modInfo; - validMapPreview=false; - cleanupMapPreviewTexture(); - - string modText = modInfo->description; - replaceAll(modText, "\\n", "\n"); - modDescrLabel.setText(modText); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("### modInfo->imageUrl [%s]\n",modInfo->imageUrl.c_str()); - - if(modInfo->imageUrl != "") { - cleanupPreviewTexture(); - string tempImage = getPreviewImageFileForMod(modInfo); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("### tempImage [%s] exists [%d]\n",tempImage.c_str(),fileExists(tempImage)); - - if(tempImage != "" && fileExists(tempImage) == false) { - if(ftpClientThread != NULL) ftpClientThread->addFileToRequests(tempImage,modInfo->imageUrl); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList[tempImage] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - - } - else { - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - if(fileFTPProgressList.find(tempImage) == fileFTPProgressList.end()) { - //displayModPreviewImage = true; - displayModPreviewImage[tempImage] = true; - } - safeMutexFTPProgress.ReleaseLock(); - } - } -} - -void MenuStateMods::mouseUp(int x, int y, const MouseButton mouseButton){ - if (mouseButton == mbLeft) { - keyTechScrollBar.mouseUp(x, y); - keyTilesetScrollBar.mouseUp(x, y); - keyMapScrollBar.mouseUp(x, y); - keyScenarioScrollBar.mouseUp(x, y); - } -} - -void MenuStateMods::mouseMove(int x, int y, const MouseState *ms) { - buttonReturn.mouseMove(x, y); - - if (mainMessageBox.getEnabled()) { - mainMessageBox.mouseMove(x, y); - } - - buttonInstallTech.mouseMove(x, y); - buttonRemoveTech.mouseMove(x, y); - buttonInstallTileset.mouseMove(x, y); - buttonRemoveTileset.mouseMove(x, y); - buttonInstallMap.mouseMove(x, y); - buttonRemoveMap.mouseMove(x, y); - buttonInstallScenario.mouseMove(x, y); - buttonRemoveScenario.mouseMove(x, y); - - if (ms->get(mbLeft)) { - keyMapScrollBar.mouseDown(x, y); - keyTechScrollBar.mouseDown(x, y); - keyTilesetScrollBar.mouseDown(x, y); - keyScenarioScrollBar.mouseDown(x, y); - } - else { - keyMapScrollBar.mouseMove(x, y); - keyTechScrollBar.mouseMove(x, y); - keyTilesetScrollBar.mouseMove(x, y); - keyScenarioScrollBar.mouseMove(x, y); - } - - if(keyMapScrollBar.getElementCount() !=0) { - for(int i = keyMapScrollBar.getVisibleStart(); i <= keyMapScrollBar.getVisibleEnd(); ++i) { - keyMapButtons[i]->mouseMove(x, y); - } - } - if(keyTechScrollBar.getElementCount() !=0) { - for(int i = keyTechScrollBar.getVisibleStart(); i <= keyTechScrollBar.getVisibleEnd(); ++i) { - keyTechButtons[i]->mouseMove(x, y); - } - } - if(keyTilesetScrollBar.getElementCount() !=0) { - for(int i = keyTilesetScrollBar.getVisibleStart(); i <= keyTilesetScrollBar.getVisibleEnd(); ++i) { - keyTilesetButtons[i]->mouseMove(x, y); - } - } - if(keyScenarioScrollBar.getElementCount() !=0) { - for(int i = keyScenarioScrollBar.getVisibleStart(); i <= keyScenarioScrollBar.getVisibleEnd(); ++i) { - keyScenarioButtons[i]->mouseMove(x, y); - } - } -} - -void MenuStateMods::cleanupPreviewTexture() { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] scenarioLogoTexture [%p]\n",__FILE__,__FUNCTION__,__LINE__,modPreviewImage); - - if(modPreviewImage != NULL) { - Renderer::getInstance().endTexture(rsGlobal, modPreviewImage, false); - } - modPreviewImage = NULL; -} - -void MenuStateMods::cleanupMapPreviewTexture() { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - //printf("CLEANUP map preview texture\n"); - if(mapPreviewTexture != NULL) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - - mapPreviewTexture->end(); - - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - delete mapPreviewTexture; - mapPreviewTexture = NULL; - } - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); -} - - -void MenuStateMods::render() { - try { - Renderer &renderer= Renderer::getInstance(); - - renderer.renderLine(&lineHorizontal); - renderer.renderLine(&lineVertical); - renderer.renderLine(&lineReturn); - renderer.renderLine(&lineVerticalReturn); - renderer.renderButton(&buttonReturn); - - renderer.renderButton(&buttonInstallTech); - renderer.renderButton(&buttonRemoveTech); - renderer.renderButton(&buttonInstallTileset); - renderer.renderButton(&buttonRemoveTileset); - renderer.renderButton(&buttonInstallMap); - renderer.renderButton(&buttonRemoveMap); - renderer.renderButton(&buttonInstallScenario); - renderer.renderButton(&buttonRemoveScenario); - - renderer.renderButton(&buttonInstalled); - renderer.renderButton(&buttonAvailable); - renderer.renderButton(&buttonConflict); - renderer.renderButton(&buttonOnlyLocal); - - renderer.renderLabel(&modDescrLabel); - if(modInfoSelected!=NULL){ - string tempImage = getPreviewImageFileForMod(modInfoSelected); - if(displayModPreviewImage.find(tempImage) != displayModPreviewImage.end() && - displayModPreviewImage[tempImage] == true) { - if(modPreviewImage == NULL) { - string tempImage = getPreviewImageFileForMod(modInfoSelected); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("### Render tempImage [%s] fileExists(tempImage) = %d\n",tempImage.c_str(),fileExists(tempImage)); - - if(tempImage != "" && fileExists(tempImage) == true) { - cleanupPreviewTexture(); - modPreviewImage = Renderer::findTexture(tempImage); - } - } - if(modPreviewImage != NULL) { - renderer.renderTextureQuad(508,90,485,325,modPreviewImage,1.0f); - } - } - } - - // Render Tech List - renderer.renderLabel(&keyTechScrollBarTitle1); - renderer.renderLabel(&keyTechScrollBarTitle2); - if(keyTechScrollBar.getElementCount() != 0) { - for(int i = keyTechScrollBar.getVisibleStart(); - i <= keyTechScrollBar.getVisibleEnd(); ++i) { - bool alreadyHasTech = (std::find(techTreeFiles.begin(),techTreeFiles.end(),keyTechButtons[i]->getText()) != techTreeFiles.end()); - if(keyTechButtons[i]->getText() == selectedTechName) { - bool lightedOverride = true; - renderer.renderButton(keyTechButtons[i],&WHITE,&lightedOverride); - } - else if(alreadyHasTech == true) { - Vec4f buttonColor = WHITE; - buttonColor.w = 0.75f; - bool remoteHasTech = (techCacheList.find(keyTechButtons[i]->getText()) != techCacheList.end()); - if(remoteHasTech) - { - ModInfo &modInfo = techCacheList[keyTechButtons[i]->getText()]; - if( modInfo.crc==modInfo.localCRC) { - keyTechButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerInstalledTexture()); - } - else { - //printf("modInfo.name=%s modInfo.crc=%s modInfo.localCRC=%s\n",modInfo.name.c_str(),modInfo.crc.c_str(),modInfo.localCRC.c_str()); - keyTechButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerDifferentTexture()); - } - } - else - { - keyTechButtons[i]->setCustomTexture(CoreData::getInstance().getNotOnServerTexture()); - } - renderer.renderButton(keyTechButtons[i],&buttonColor); - } - else { - Vec4f fontColor=Vec4f(200.0f/255.0f, 187.0f/255.0f, 190.0f/255.0f, 0.75f); - //Vec4f fontColor=Vec4f(1.0f, 0.0f, 0.0f, 0.75f); - keyTechButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerTexture()); - renderer.renderButton(keyTechButtons[i],&fontColor); - } - renderer.renderLabel(labelsTech[i]); - } - } - renderer.renderScrollBar(&keyTechScrollBar); - - // Render Tileset List - renderer.renderLabel(&keyTilesetScrollBarTitle1); - if(keyTilesetScrollBar.getElementCount() != 0) { - for(int i = keyTilesetScrollBar.getVisibleStart(); - i <= keyTilesetScrollBar.getVisibleEnd(); ++i) { - bool alreadyHasTileset = (std::find(tilesetFiles.begin(),tilesetFiles.end(),keyTilesetButtons[i]->getText()) != tilesetFiles.end()); - if(keyTilesetButtons[i]->getText() == selectedTilesetName) { - bool lightedOverride = true; - renderer.renderButton(keyTilesetButtons[i],&WHITE,&lightedOverride); - } - else if(alreadyHasTileset == true) { - Vec4f buttonColor = WHITE; - buttonColor.w = 0.75f; - bool remoteHasTileset= (tilesetCacheList.find(keyTilesetButtons[i]->getText()) != tilesetCacheList.end()); - if(remoteHasTileset) - { - ModInfo &modInfo = tilesetCacheList[keyTilesetButtons[i]->getText()]; - - if( modInfo.crc==modInfo.localCRC) { - keyTilesetButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerInstalledTexture()); - } - else { - //printf("modInfo.name=%s modInfo.crc=%s modInfo.localCRC=%s\n",modInfo.name.c_str(),modInfo.crc.c_str(),modInfo.localCRC.c_str()); - //printf("name [%s] modInfo.crc [%s] modInfo.localCRC [%s]\n",modInfo.name.c_str(),modInfo.crc.c_str(),modInfo.localCRC.c_str()); - - keyTilesetButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerDifferentTexture()); - } - } - else - { - keyTilesetButtons[i]->setCustomTexture(CoreData::getInstance().getNotOnServerTexture()); - } - renderer.renderButton(keyTilesetButtons[i],&buttonColor); - } - else { - Vec4f fontColor=Vec4f(200.0f/255.0f, 187.0f/255.0f, 190.0f/255.0f, 0.75f); - keyTilesetButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerTexture()); - renderer.renderButton(keyTilesetButtons[i],&fontColor); - } - } - } - renderer.renderScrollBar(&keyTilesetScrollBar); - - // Render Map list - renderer.renderLabel(&keyMapScrollBarTitle1); - renderer.renderLabel(&keyMapScrollBarTitle2); - if(keyMapScrollBar.getElementCount() != 0) { - for(int i = keyMapScrollBar.getVisibleStart(); - i <= keyMapScrollBar.getVisibleEnd(); ++i) { - string mapNameToRender = keyMapButtons[i]->getText(); - bool alreadyHasMap = (std::find(mapFiles.begin(),mapFiles.end(),mapNameToRender) != mapFiles.end()); - if(keyMapButtons[i]->getText() == selectedMapName) { - bool lightedOverride = true; - renderer.renderButton(keyMapButtons[i],&WHITE,&lightedOverride); - } - else if(alreadyHasMap == true) { - Vec4f buttonColor = WHITE; - buttonColor.w = 0.75f; - bool remoteHasMap = (mapCacheList.find(keyMapButtons[i]->getText()) != mapCacheList.end()); - if(remoteHasMap) - { - ModInfo &modInfo = mapCacheList[keyMapButtons[i]->getText()]; - if( modInfo.crc==modInfo.localCRC) { - keyMapButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerInstalledTexture()); - } - else { - //printf("modInfo.name=%s modInfo.crc=%s modInfo.localCRC=%s\n",modInfo.name.c_str(),modInfo.crc.c_str(),modInfo.localCRC.c_str()); - keyMapButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerDifferentTexture()); - } - } - else - { - keyMapButtons[i]->setCustomTexture(CoreData::getInstance().getNotOnServerTexture()); - } - renderer.renderButton(keyMapButtons[i],&buttonColor); - } - else { - Vec4f fontColor=Vec4f(200.0f/255.0f, 187.0f/255.0f, 190.0f/255.0f, 0.75f); - keyMapButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerTexture()); - renderer.renderButton(keyMapButtons[i],&fontColor); - } - renderer.renderLabel(labelsMap[i]); - } - } - renderer.renderScrollBar(&keyMapScrollBar); - - // Render Scenario List - renderer.renderLabel(&keyScenarioScrollBarTitle1); - if(keyScenarioScrollBar.getElementCount() != 0) { - for(int i = keyScenarioScrollBar.getVisibleStart(); - i <= keyScenarioScrollBar.getVisibleEnd(); ++i) { - if(i >= (int)keyScenarioButtons.size()) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"i >= keyScenarioButtons.size(), i = %d keyScenarioButtons.size() = %d",i,(int)keyScenarioButtons.size()); - throw megaglest_runtime_error(szBuf); - } - bool alreadyHasScenario = (std::find(scenarioFiles.begin(),scenarioFiles.end(),keyScenarioButtons[i]->getText()) != scenarioFiles.end()); - - if(keyScenarioButtons[i]->getText() == selectedScenarioName) { - bool lightedOverride = true; - renderer.renderButton(keyScenarioButtons[i],&WHITE,&lightedOverride); - } - else if(alreadyHasScenario == true) { - Vec4f buttonColor = WHITE; - buttonColor.w = 0.75f; - bool remoteHasScenario= (scenarioCacheList.find(keyScenarioButtons[i]->getText()) != scenarioCacheList.end()); - if(remoteHasScenario) - { - ModInfo &modInfo = scenarioCacheList[keyScenarioButtons[i]->getText()]; - if( modInfo.crc==modInfo.localCRC) { - keyScenarioButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerInstalledTexture()); - } - else { - //printf("modInfo.name=%s modInfo.crc=%s modInfo.localCRC=%s\n",modInfo.name.c_str(),modInfo.crc.c_str(),modInfo.localCRC.c_str()); - keyScenarioButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerDifferentTexture()); - } - } - else - { - keyScenarioButtons[i]->setCustomTexture(CoreData::getInstance().getNotOnServerTexture()); - } - renderer.renderButton(keyScenarioButtons[i],&buttonColor); - } - else { - Vec4f fontColor=Vec4f(200.0f/255.0f, 187.0f/255.0f, 190.0f/255.0f, 0.75f); - keyScenarioButtons[i]->setCustomTexture(CoreData::getInstance().getOnServerTexture()); - renderer.renderButton(keyScenarioButtons[i],&fontColor); - } - } - } - renderer.renderScrollBar(&keyScenarioScrollBar); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - if(fileFTPProgressList.empty() == false) { - Lang &lang= Lang::getInstance(); - int xLocation = buttonReturn.getX(); - int yLocation = buttonReturn.getY() - 12; - for(std::map >::iterator iterMap = fileFTPProgressList.begin(); - iterMap != fileFTPProgressList.end(); ++iterMap) { - - string progressLabelPrefix = lang.getString("ModDownloading") + " " + extractFileFromDirectoryPath(iterMap->first) + " "; - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\nRendering file progress with the following prefix [%s]\n",progressLabelPrefix.c_str()); - - if(Renderer::renderText3DEnabled) { - renderer.renderProgressBar3D( - iterMap->second.first, - //10, - //yLocation, - xLocation, - yLocation, - CoreData::getInstance().getDisplayFontSmall3D(), - 185,progressLabelPrefix,false); - } - else { - renderer.renderProgressBar( - iterMap->second.first, - //10, - //yLocation, - xLocation, - yLocation, - CoreData::getInstance().getDisplayFontSmall(), - 185,progressLabelPrefix,false); + bool remoteHasMap = + (mapCacheList.find (selectedMapName) != + mapCacheList.end ()); + if (remoteHasMap == false) + { + for (unsigned int i = 0; i < keyMapButtons.size (); ++i) + { + GraphicButton *button = keyMapButtons[i]; + if (button != NULL + && button->getText () == selectedMapName) + { + delete button; + keyMapButtons.erase (keyMapButtons.begin () + i); + labelsMap.erase (labelsMap.begin () + i); + keyMapScrollBar.setElementCount ((int) keyMapButtons. + size ()); + break; + } + } } - yLocation -= 14; + if (getItemAfterRemoval == false) + { + selectedMapName = ""; + } + refreshMaps (); + Checksum::clearFileCache (); + + if (getItemAfterRemoval == true) + { + string mapName = selectedMapName; + string mapURL = mapCacheList[mapName].url; + if (ftpClientThread != NULL) + ftpClientThread->addMapToRequests (mapName, mapURL); + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()-> + setOwnerId (mutexOwnerId); + fileFTPProgressList[mapName] = pair < int, string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + buttonInstallMap.setEnabled (false); + } + } } - } - safeMutexFTPProgress.ReleaseLock(); + else if (mainMessageBoxState == ftpmsg_GetTileset || + mainMessageBoxState == ftpmsg_ReplaceTileset) + { + bool getItemAfterRemoval = + (mainMessageBoxState == ftpmsg_ReplaceTileset); + mainMessageBoxState = ftpmsg_None; - renderer.renderConsole(&console,consoleNormal,3); + Config & config = Config::getInstance (); + vector < string > tilesetPaths = + config.getPathListForType (ptTilesets); + if (tilesetPaths.size () > 1) + { + string removeTileset = tilesetPaths[1]; + endPathWithSlash (removeTileset); + removeTileset += selectedTilesetName; - if(mainMessageBox.getEnabled()) { - renderer.renderMessageBox(&mainMessageBox); - } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Removing Tileset [%s]\n", removeTileset.c_str ()); + removeFolder (removeTileset); - if(modMenuState!=mmst_None) { - if(oldMenuState!=modMenuState) - { - Lang &lang= Lang::getInstance(); - if(modMenuState== mmst_Loading){ - pleaseWaitLabel.setText(lang.getString("GettingModlistFromMasterserver")); - } - else if(modMenuState== mmst_CalculatingCRC){ - pleaseWaitLabel.setText(lang.getString("PleaseWaitCalculatingCRC")); - } - oldMenuState=modMenuState; - } - float anim= GraphicComponent::getAnim(); - if(anim < 0.5f) { - anim = 1.f - anim; - } - Vec4f colorWithAlpha = Vec4f(ORANGE.x,ORANGE.y,ORANGE.z,anim); - renderer.renderLabel(&pleaseWaitLabel,&colorWithAlpha); - } - if(validMapPreview){ - if(mapPreviewTexture != NULL) { - renderer.renderTextureQuad(5,185,150,150,mapPreviewTexture,1.0f); - } - if(enableMapPreview && (mapPreview.hasFileLoaded() == true)) { + bool remoteHasTileset = + (tilesetCacheList.find (selectedTilesetName) != + tilesetCacheList.end ()); + if (remoteHasTileset == false) + { + //printf("\n\n\n$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ remote DOES NOT have removed tileset [%s]\n\n\n",selectedTilesetName.c_str()); - int mouseX = mainMenu->getMouseX(); - int mouseY = mainMenu->getMouseY(); - int mouse2dAnim = mainMenu->getMouse2dAnim(); + for (unsigned int i = 0; i < keyTilesetButtons.size (); ++i) + { + GraphicButton *button = keyTilesetButtons[i]; + if (button != NULL + && button->getText () == selectedTilesetName) + { + delete button; + keyTilesetButtons.erase (keyTilesetButtons.begin () + + i); + keyTilesetScrollBar. + setElementCount ((int) keyTilesetButtons.size ()); + break; + } + } + } + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()-> + setOwnerId (mutexOwnerId); + Checksum::clearFileCache (); + vector < string > paths = + Config::getInstance ().getPathListForType (ptTilesets); + string pathSearchString = + string ("/") + selectedTilesetName + string ("/*"); + const string filterFileExt = ".xml"; + clearFolderTreeContentsCheckSum (paths, pathSearchString, + filterFileExt); + clearFolderTreeContentsCheckSumList (paths, pathSearchString, + filterFileExt); + safeMutexFTPProgress.ReleaseLock (); - if(mapPreviewTexture == NULL) { - renderer.renderMouse2d(mouseX, mouseY, mouse2dAnim); - renderer.renderMapPreview(&mapPreview, true, 10, 350, &mapPreviewTexture); - } - } - } + if (getItemAfterRemoval == false) + { + selectedTilesetName = ""; + } + refreshTilesets (); + } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] error [%s]\n",__FILE__,__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - throw megaglest_runtime_error(szBuf); - } -} + if (getItemAfterRemoval == true) + { + string tilesetName = selectedTilesetName; + string tilesetURL = tilesetCacheList[tilesetName].url; + if (ftpClientThread != NULL) + ftpClientThread->addTilesetToRequests (tilesetName, + tilesetURL); -void MenuStateMods::update() { - Chrono chrono; - chrono.start(); - - //Lang &lang= Lang::getInstance(); - - // Tech List - if (keyTechScrollBar.getElementCount() != 0) { - for (int i = keyTechScrollBar.getVisibleStart(); - i <= keyTechScrollBar.getVisibleEnd(); ++i) { - if(i >= (int)keyTechButtons.size()) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"i >= keyTechButtons.size(), i = %d, keyTechButtons.size() = %d",i,(int)keyTechButtons.size()); - throw megaglest_runtime_error(szBuf); - } - - keyTechButtons[i]->setY(keyButtonsYBase - keyButtonsLineHeight * (i - - keyTechScrollBar.getVisibleStart())); - labelsTech[i]->setY(keyButtonsYBase - keyButtonsLineHeight * (i - - keyTechScrollBar.getVisibleStart())); - } - } - - // Tileset List - if (keyTilesetScrollBar.getElementCount() != 0) { - for (int i = keyTilesetScrollBar.getVisibleStart(); - i <= keyTilesetScrollBar.getVisibleEnd(); ++i) { - if(i >= (int)keyTilesetButtons.size()) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"i >= keyTilesetButtons.size(), i = %d, keyTilesetButtons.size() = %d",i,(int)keyTilesetButtons.size()); - throw megaglest_runtime_error(szBuf); - } - - int yPos = keyButtonsYBase - keyButtonsLineHeight * - (i - keyTilesetScrollBar.getVisibleStart()); - keyTilesetButtons[i]->setY(yPos); - } - } - - // Map List - if (keyMapScrollBar.getElementCount() != 0) { - for (int i = keyMapScrollBar.getVisibleStart(); - i <= keyMapScrollBar.getVisibleEnd(); ++i) { - if(i >= (int)keyMapButtons.size()) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"i >= keyMapButtons.size(), i = %d, keyMapButtons.size() = %d",i,(int)keyMapButtons.size()); - throw megaglest_runtime_error(szBuf); - } - - keyMapButtons[i]->setY(keyButtonsYBase - keyButtonsLineHeight * (i - - keyMapScrollBar.getVisibleStart())); - labelsMap[i]->setY(keyButtonsYBase - keyButtonsLineHeight * (i - - keyMapScrollBar.getVisibleStart())); - } - } - - // Scenario List - if (keyScenarioScrollBar.getElementCount() != 0) { - for (int i = keyScenarioScrollBar.getVisibleStart(); - i <= keyScenarioScrollBar.getVisibleEnd(); ++i) { - if(i >= (int)keyScenarioButtons.size()) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"i >= keyScenarioButtons.size(), i = %d, keyScenarioButtons.size() = %d",i,(int)keyScenarioButtons.size()); - throw megaglest_runtime_error(szBuf); - } - - int yPos = keyButtonsYBase - keyButtonsLineHeight * - (i - keyScenarioScrollBar.getVisibleStart()); - keyScenarioButtons[i]->setY(yPos); - } - } - - console.update(); -} - -void MenuStateMods::keyDown(SDL_KeyboardEvent key) { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - //if(key == configKeys.getCharKey("ShowFullConsole")) { - if(isKeyPressed(configKeys.getSDLKey("ShowFullConsole"),key) == true) { - showFullConsole= true; - } -} - -void MenuStateMods::keyPress(SDL_KeyboardEvent c) { -} - -void MenuStateMods::keyUp(SDL_KeyboardEvent key) { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - //if(key== configKeys.getCharKey("ShowFullConsole")) { - if(isKeyPressed(configKeys.getSDLKey("ShowFullConsole"),key) == true) { - showFullConsole= false; - } -} - -void MenuStateMods::showMessageBox(const string &text, const string &header, bool toggle) { - if(toggle == false) { - mainMessageBox.setEnabled(false); - } - - if(mainMessageBox.getEnabled() == false) { - mainMessageBox.setText(text); - mainMessageBox.setHeader(header); - mainMessageBox.setEnabled(true); - } - else{ - mainMessageBox.setEnabled(false); - } -} - -void MenuStateMods::FTPClient_CallbackEvent(string itemName, - FTP_Client_CallbackType type, pair result,void *userdata) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - Lang &lang= Lang::getInstance(); - if(type == ftp_cct_DownloadProgress) { - FTPClientCallbackInterface::FtpProgressStats *stats = (FTPClientCallbackInterface::FtpProgressStats *)userdata; - if(stats != NULL) { - int fileProgress = 0; - if(stats->download_total > 0) { - fileProgress = ((stats->download_now / stats->download_total) * 100.0); + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()-> + setOwnerId (mutexOwnerId); + fileFTPProgressList[tilesetName] = + pair < int, string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + buttonInstallTileset.setEnabled (false); + } } - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] current file [%s] fileProgress = %d [now = %f, total = %f]\n",itemName.c_str(),stats->currentFilename.c_str(), fileProgress,stats->download_now,stats->download_total); + else if (mainMessageBoxState == ftpmsg_GetTechtree || + mainMessageBoxState == ftpmsg_ReplaceTechtree) + { + bool getItemAfterRemoval = + (mainMessageBoxState == ftpmsg_ReplaceTechtree); + mainMessageBoxState = ftpmsg_None; - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - pair lastProgress = fileFTPProgressList[itemName]; - fileFTPProgressList[itemName] = pair(fileProgress,stats->currentFilename); - safeMutexFTPProgress.ReleaseLock(); + Config & config = Config::getInstance (); + vector < string > techPaths = + config.getPathListForType (ptTechs); + if (techPaths.size () > 1) + { + string removeTech = techPaths[1]; + endPathWithSlash (removeTech); + removeTech += selectedTechName; + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Removing Techtree [%s]\n", removeTech.c_str ()); + removeFolder (removeTech); + + bool remoteHasTech = + (techCacheList.find (selectedTechName) != + techCacheList.end ()); + if (remoteHasTech == false) + { + for (unsigned int i = 0; i < keyTechButtons.size (); ++i) + { + GraphicButton *button = keyTechButtons[i]; + if (button != NULL + && button->getText () == selectedTechName) + { + delete button; + keyTechButtons.erase (keyTechButtons.begin () + i); + labelsTech.erase (labelsTech.begin () + i); + keyTechScrollBar.setElementCount ((int) keyTechButtons. + size ()); + break; + } + } + } + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()-> + setOwnerId (mutexOwnerId); + // Clear the CRC file Cache + Checksum::clearFileCache (); + vector < string > paths = + Config::getInstance ().getPathListForType (ptTechs); + string pathSearchString = + string ("/") + selectedTechName + string ("/*"); + const string filterFileExt = ".xml"; + clearFolderTreeContentsCheckSum (paths, pathSearchString, + filterFileExt); + clearFolderTreeContentsCheckSumList (paths, pathSearchString, + filterFileExt); + safeMutexFTPProgress.ReleaseLock (); + + if (getItemAfterRemoval == false) + { + selectedTechName = ""; + } + refreshTechs (); + } + + if (getItemAfterRemoval == true) + { + string techName = selectedTechName; + string techURL = techCacheList[techName].url; + if (ftpClientThread != NULL) + ftpClientThread->addTechtreeToRequests (techName, techURL); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()-> + setOwnerId (mutexOwnerId); + fileFTPProgressList[techName] = pair < int, string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + buttonInstallTech.setEnabled (false); + } + } + else if (mainMessageBoxState == ftpmsg_GetScenario || + mainMessageBoxState == ftpmsg_ReplaceScenario) + { + bool getItemAfterRemoval = + (mainMessageBoxState == ftpmsg_ReplaceScenario); + mainMessageBoxState = ftpmsg_None; + + Config & config = Config::getInstance (); + vector < string > scenarioPaths = + config.getPathListForType (ptScenarios); + if (scenarioPaths.size () > 1) + { + string removeScenario = scenarioPaths[1]; + endPathWithSlash (removeScenario); + removeScenario += selectedScenarioName; + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Removing Scenario [%s]\n", + removeScenario.c_str ()); + removeFolder (removeScenario); + + bool remoteHasScenario = + (scenarioCacheList.find (selectedScenarioName) != + scenarioCacheList.end ()); + if (remoteHasScenario == false) + { + for (unsigned int i = 0; i < keyScenarioButtons.size (); + ++i) + { + GraphicButton *button = keyScenarioButtons[i]; + if (button != NULL + && button->getText () == selectedScenarioName) + { + delete button; + keyScenarioButtons.erase (keyScenarioButtons.begin () + + i); + keyScenarioScrollBar. + setElementCount ((int) keyScenarioButtons.size ()); + break; + } + } + } + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()-> + setOwnerId (mutexOwnerId); + Checksum::clearFileCache (); + vector < string > paths = + Config::getInstance ().getPathListForType (ptScenarios); + string pathSearchString = + string ("/") + selectedScenarioName + string ("/*"); + const string filterFileExt = ".xml"; + clearFolderTreeContentsCheckSum (paths, pathSearchString, + filterFileExt); + clearFolderTreeContentsCheckSumList (paths, pathSearchString, + filterFileExt); + safeMutexFTPProgress.ReleaseLock (); + + if (getItemAfterRemoval == false) + { + selectedScenarioName = ""; + } + refreshScenarios (); + } + + if (getItemAfterRemoval == true) + { + string scenarioName = selectedScenarioName; + string scenarioURL = scenarioCacheList[scenarioName].url; + if (ftpClientThread != NULL) + ftpClientThread->addScenarioToRequests (scenarioName, + scenarioURL); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()-> + setOwnerId (mutexOwnerId); + fileFTPProgressList[scenarioName] = + pair < int, string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + buttonInstallScenario.setEnabled (false); + } + } + } } - } - else if(type == ftp_cct_ExtractProgress) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP extract Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); - //printf("Got FTP extract Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); + } + else if (keyTechScrollBar.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundA ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + else if (keyTilesetScrollBar.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundA ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + else if (keyMapScrollBar.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundA ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + else if (keyScenarioScrollBar.mouseClick (x, y)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundA ()); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + else if (buttonInstallTech.mouseClick (x, y) + && buttonInstallTech.getEnabled ()) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + if (selectedTechName != "") + { + bool alreadyHasTech = + (std:: + find (techTreeFiles.begin (), techTreeFiles.end (), + selectedTechName) != techTreeFiles.end ()); + if (alreadyHasTech == true) + { + bool remoteHasTech = + (techCacheList.find (selectedTechName) != techCacheList.end ()); + if (remoteHasTech == true) + { + ModInfo & modInfo = techCacheList[selectedTechName]; - if(userdata == NULL) { - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("DataMissingExtractDownloadMod").c_str(),itemName.c_str()); - //printf("%s\n",szBuf); - console.addLine(szBuf,true); - } - else { - char *szBuf = (char *)userdata; - //printf("%s\n",szBuf); - console.addLine(szBuf); - } - } - else if(type == ftp_cct_File) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d] remote CRC [%s]\n", __FILE__, + __FUNCTION__, __LINE__, modInfo.crc.c_str ()); - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList.erase(itemName); - safeMutexFTPProgress.ReleaseLock(); + Config & config = Config::getInstance (); + string itemPath = + config.getPathListForType (ptTechs, + "")[1] + "/" + selectedTechName + + string ("/*"); + bool forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + if (strToUInt (modInfo.crc) != 0 + && strToUInt (modInfo.crc) != + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", + NULL, + forceRefresh)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d] local CRC [%u]\n", __FILE__, + __FUNCTION__, __LINE__, + getFolderTreeContentsCheckSumRecursively (itemPath, + ".xml", + NULL)); + + mainMessageBoxState = ftpmsg_ReplaceTechtree; + mainMessageBox.init (lang.getString ("Yes"), + lang.getString ("No"), 450); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModLocalRemoteMismatch").c_str (), + selectedTechName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModTechAlreadyInstalled").c_str (), + selectedTechName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + mapCRCUpdateList[itemPath] = true; + } + } + else + { + string techName = selectedTechName; + string techURL = techCacheList[techName].url; + if (ftpClientThread != NULL) + ftpClientThread->addTechtreeToRequests (techName, techURL); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList[techName] = pair < int, string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + buttonInstallTech.setEnabled (false); + } + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + showMessageBox (lang.getString ("ModSelectTechToInstall"), + lang.getString ("Notice"), true); + } + } + else if (buttonRemoveTech.mouseClick (x, y) + && buttonRemoveTech.getEnabled ()) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + if (selectedTechName != "") + { + bool alreadyHasTech = + (std:: + find (techTreeFiles.begin (), techTreeFiles.end (), + selectedTechName) != techTreeFiles.end ()); + if (alreadyHasTech == true) + { + mainMessageBoxState = ftpmsg_GetTechtree; + + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModRemoveTechConfirm").c_str (), + selectedTechName.c_str ()); + showMessageBox (szBuf, lang.getString ("Question"), true); + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModCannotRemoveTechNotInstalled"). + c_str (), selectedTechName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + + showMessageBox (lang.getString ("ModSelectTechToRemove"), + lang.getString ("Notice"), true); + } + } + + else if (buttonInstallTileset.mouseClick (x, y) + && buttonInstallTileset.getEnabled ()) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + if (selectedTilesetName != "") + { + bool alreadyHasTileset = + (std:: + find (tilesetFiles.begin (), tilesetFiles.end (), + selectedTilesetName) != tilesetFiles.end ()); + if (alreadyHasTileset == true) + { + bool remoteHasTileset = + (tilesetCacheList.find (selectedTilesetName) != + tilesetCacheList.end ()); + if (remoteHasTileset) + { + ModInfo & modInfo = tilesetCacheList[selectedTilesetName]; + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d] remote CRC [%s]\n", __FILE__, + __FUNCTION__, __LINE__, modInfo.crc.c_str ()); + + Config & config = Config::getInstance (); + string itemPath = + config.getPathListForType (ptTilesets, + "")[1] + "/" + + selectedTilesetName + string ("/*"); + bool forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + + if (strToUInt (modInfo.crc) != 0 && + strToUInt (modInfo.crc) != + getFolderTreeContentsCheckSumRecursively (itemPath, ".xml", + NULL, + forceRefresh)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d] local CRC [%u] [%s]\n", + __FILE__, __FUNCTION__, __LINE__, + getFolderTreeContentsCheckSumRecursively (itemPath, + ".xml", + NULL), + itemPath.c_str ()); + + mainMessageBoxState = ftpmsg_ReplaceTileset; + mainMessageBox.init (lang.getString ("Yes"), + lang.getString ("No"), 450); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModLocalRemoteMismatch").c_str (), + selectedTilesetName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModTilesetAlreadyInstalled"). + c_str (), selectedTilesetName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + } + } + else + { + string tilesetName = selectedTilesetName; + string tilesetURL = tilesetCacheList[tilesetName].url; + if (ftpClientThread != NULL) + ftpClientThread->addTilesetToRequests (tilesetName, tilesetURL); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList[tilesetName] = pair < int, string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + buttonInstallTileset.setEnabled (false); + } + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + showMessageBox (lang.getString ("ModSelectTilesetToInstall"), + lang.getString ("Notice"), true); + } + } + else if (buttonRemoveTileset.mouseClick (x, y) + && buttonRemoveTileset.getEnabled ()) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + if (selectedTilesetName != "") + { + bool alreadyHasTileset = + (std:: + find (tilesetFiles.begin (), tilesetFiles.end (), + selectedTilesetName) != tilesetFiles.end ()); + if (alreadyHasTileset == true) + { + mainMessageBoxState = ftpmsg_GetTileset; + + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModRemoveTilesetConfirm").c_str (), + selectedTilesetName.c_str ()); + showMessageBox (szBuf, lang.getString ("Question"), true); + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModCannotRemoveTilesetNotInstalled"). + c_str (), selectedTilesetName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + showMessageBox (lang.getString ("ModSelectTilesetToRemove"), + lang.getString ("Notice"), true); + } + } + + else if (buttonInstallMap.mouseClick (x, y) + && buttonInstallMap.getEnabled ()) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + if (selectedMapName != "") + { + bool alreadyHasMap = + (std:: + find (mapFiles.begin (), mapFiles.end (), + selectedMapName) != mapFiles.end ()); + if (alreadyHasMap == true) + { + bool remoteHasMap = + (mapCacheList.find (selectedMapName) != mapCacheList.end ()); + if (remoteHasMap) + { + ModInfo & modInfo = mapCacheList[selectedMapName]; + if (modInfo.crc != modInfo.localCRC) + { + mainMessageBoxState = ftpmsg_ReplaceMap; + mainMessageBox.init (lang.getString ("Yes"), + lang.getString ("No"), 450); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModLocalRemoteMismatch").c_str (), + selectedMapName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModMapAlreadyInstalled").c_str (), + selectedMapName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + } + } + else + { + string mapName = selectedMapName; + string mapURL = mapCacheList[mapName].url; + if (ftpClientThread != NULL) + ftpClientThread->addMapToRequests (mapName, mapURL); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList[mapName] = pair < int, string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + buttonInstallMap.setEnabled (false); + } + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + showMessageBox (lang.getString ("ModSelectMapToInstall"), + lang.getString ("Notice"), true); + } + } + else if (buttonRemoveMap.mouseClick (x, y) + && buttonRemoveMap.getEnabled ()) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + if (selectedMapName != "") + { + bool alreadyHasMap = + (std:: + find (mapFiles.begin (), mapFiles.end (), + selectedMapName) != mapFiles.end ()); + if (alreadyHasMap == true) + { + mainMessageBoxState = ftpmsg_GetMap; + + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModRemoveMapConfirm").c_str (), + selectedMapName.c_str ()); + showMessageBox (szBuf, lang.getString ("Question"), true); + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModCannotRemoveMapNotInstalled"). + c_str (), selectedMapName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + showMessageBox (lang.getString ("ModSelectMapToRemove"), + lang.getString ("Notice"), true); + } + } + + else if (buttonInstallScenario.mouseClick (x, y) + && buttonInstallScenario.getEnabled ()) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + if (selectedScenarioName != "") + { + bool alreadyHasScenario = + (std:: + find (scenarioFiles.begin (), scenarioFiles.end (), + selectedScenarioName) != scenarioFiles.end ()); + if (alreadyHasScenario == true) + { + bool remoteHasScenario = + (scenarioCacheList.find (selectedScenarioName) != + scenarioCacheList.end ()); + if (remoteHasScenario) + { + ModInfo & modInfo = scenarioCacheList[selectedScenarioName]; + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d] remote CRC [%s]\n", __FILE__, + __FUNCTION__, __LINE__, modInfo.crc.c_str ()); + + Config & config = Config::getInstance (); + string itemPath = + config.getPathListForType (ptScenarios, + "")[1] + "/" + + selectedScenarioName + string ("/*"); + bool forceRefresh = + (mapCRCUpdateList.find (itemPath) == mapCRCUpdateList.end ()); + + if (strToUInt (modInfo.crc) != 0 && + strToUInt (modInfo.crc) != + getFolderTreeContentsCheckSumRecursively (itemPath, "", + NULL, + forceRefresh)) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d] local CRC [%u]\n", __FILE__, + __FUNCTION__, __LINE__, + getFolderTreeContentsCheckSumRecursively (itemPath, + "", + NULL)); + + mainMessageBoxState = ftpmsg_ReplaceScenario; + mainMessageBox.init (lang.getString ("Yes"), + lang.getString ("No"), 450); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModLocalRemoteMismatch").c_str (), + selectedScenarioName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModScenarioAlreadyInstalled"). + c_str (), selectedScenarioName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + } + } + else + { + string scenarioName = selectedScenarioName; + string scenarioURL = scenarioCacheList[scenarioName].url; + + //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] adding file to download [%s]\n",__FILE__,__FUNCTION__,__LINE__,scenarioURL.c_str()); + if (ftpClientThread != NULL) + ftpClientThread->addScenarioToRequests (scenarioName, + scenarioURL); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList[scenarioName] = pair < int, string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + buttonInstallScenario.setEnabled (false); + } + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + showMessageBox (lang.getString ("ModSelectScenarioToInstall"), + lang.getString ("Notice"), true); + } + } + else if (buttonRemoveScenario.mouseClick (x, y) + && buttonRemoveScenario.getEnabled ()) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + if (selectedScenarioName != "") + { + bool alreadyHasScenario = + (std:: + find (scenarioFiles.begin (), scenarioFiles.end (), + selectedScenarioName) != scenarioFiles.end ()); + if (alreadyHasScenario == true) + { + mainMessageBoxState = ftpmsg_GetScenario; + + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModRemoveScenarioConfirm").c_str (), + selectedScenarioName.c_str ()); + showMessageBox (szBuf, lang.getString ("Question"), true); + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModCannotRemoveScenarioNotInstalled"). + c_str (), selectedScenarioName.c_str ()); + showMessageBox (szBuf, lang.getString ("Notice"), true); + } + } + else + { + mainMessageBoxState = ftpmsg_None; + mainMessageBox.init (lang.getString ("Ok"), 450); + showMessageBox (lang.getString ("ModSelectScenarioToRemove"), + lang.getString ("Notice"), true); + } + } + + else + { + if (keyMapScrollBar.getElementCount () != 0) + { + for (int i = keyMapScrollBar.getVisibleStart (); + i <= keyMapScrollBar.getVisibleEnd (); ++i) + { + if (keyMapButtons[i]->mouseClick (x, y) + && keyMapButtons[i]->getEnabled ()) + { + string mapName = keyMapButtons[i]->getText (); + selectedTechName = ""; + selectedTilesetName = ""; + selectedMapName = ""; + selectedScenarioName = ""; + if (mapName != "") + { + selectedMapName = mapName; + bool remoteHasMap = + (mapCacheList.find (mapName) != mapCacheList.end ()); + if (remoteHasMap) + { + showRemoteDesription (&mapCacheList[selectedMapName]); + if (mapCacheList[selectedMapName].localCRC != "") + { + loadMapPreview (mapName); + } + } + else + { + showLocalDescription (mapName); + loadMapPreview (mapName); + } + + } + break; + } + } + } + if (keyTechScrollBar.getElementCount () != 0) + { + for (int i = keyTechScrollBar.getVisibleStart (); + i <= keyTechScrollBar.getVisibleEnd (); ++i) + { + if (keyTechButtons[i]->mouseClick (x, y) + && keyTechButtons[i]->getEnabled ()) + { + string techName = keyTechButtons[i]->getText (); + selectedTechName = ""; + selectedTilesetName = ""; + selectedMapName = ""; + selectedScenarioName = ""; + if (techName != "") + { + selectedTechName = techName; + bool remoteHasTech = + (techCacheList.find (techName) != techCacheList.end ()); + if (remoteHasTech) + { + showRemoteDesription (&techCacheList[techName]); + } + else + { + showLocalDescription (techName); + } + } + break; + } + } + } + if (keyTilesetScrollBar.getElementCount () != 0) + { + for (int i = keyTilesetScrollBar.getVisibleStart (); + i <= keyTilesetScrollBar.getVisibleEnd (); ++i) + { + if (keyTilesetButtons[i]->mouseClick (x, y) + && keyTilesetButtons[i]->getEnabled ()) + { + string tilesetName = keyTilesetButtons[i]->getText (); + selectedTechName = ""; + selectedTilesetName = ""; + selectedMapName = ""; + selectedScenarioName = ""; + if (tilesetName != "") + { + selectedTilesetName = tilesetName; + bool remoteHasTileset = + (tilesetCacheList.find (tilesetName) != + tilesetCacheList.end ()); + if (remoteHasTileset) + { + showRemoteDesription (&tilesetCacheList[tilesetName]); + } + else + { + showLocalDescription (tilesetName); + } + } + break; + } + } + } + if (keyScenarioScrollBar.getElementCount () != 0) + { + for (int i = keyScenarioScrollBar.getVisibleStart (); + i <= keyScenarioScrollBar.getVisibleEnd (); ++i) + { + if (keyScenarioButtons[i]->mouseClick (x, y) + && keyScenarioButtons[i]->getEnabled ()) + { + string scenarioName = keyScenarioButtons[i]->getText (); + selectedTechName = ""; + selectedTilesetName = ""; + selectedMapName = ""; + selectedScenarioName = ""; + if (scenarioName != "") + { + selectedScenarioName = scenarioName; + bool remoteHasScenario = + (scenarioCacheList.find (scenarioName) != + scenarioCacheList.end ()); + if (remoteHasScenario) + { + showRemoteDesription (&scenarioCacheList[scenarioName]); + } + else + { + showLocalDescription (scenarioName); + } + + } + break; + } + } + } + + } + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + } + + string MenuStateMods::getPreviewImageFileForMod (const ModInfo * modInfo) + { + string fileName = ""; + if (modInfo->imageUrl != "") + { + Config & config = Config::getInstance (); + string userData = config.getString ("UserData_Root", ""); + if (userData != "") + { + endPathWithSlash (userData); + } + string tempPath = userData + "temp/"; + if (isdir (tempPath.c_str ()) == false) + { + createDirectoryPaths (tempPath); + } + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("### tempPath [%s] isdir = %d\n", tempPath.c_str (), + isdir (tempPath.c_str ())); + + if (isdir (tempPath.c_str ()) == true) + { + fileName = tempPath; + switch (modInfo->type) + { + case mt_Map: + fileName += "map_"; + break; + case mt_Tileset: + fileName += "tileset_"; + break; + case mt_Techtree: + fileName += "tech_"; + break; + case mt_Scenario: + fileName += "scenario_"; + break; + } + fileName += extractFileFromDirectoryPath (modInfo->imageUrl); + } + } + return fileName; + } + + + void MenuStateMods::showLocalDescription (string name) + { + Lang & lang = Lang::getInstance (); + modInfoSelected = NULL; + cleanupPreviewTexture (); + validMapPreview = false; + cleanupMapPreviewTexture (); + modDescrLabel.setText (lang.getString ("ModOnlyLocal") + ":\n'" + name + + "'"); + } + + void MenuStateMods::loadMapPreview (string mapName) + { + Config & config = Config::getInstance (); + cleanupMapPreviewTexture (); + vector < string > mapPaths = config.getPathListForType (ptMaps); + string & mapPath = mapPaths[1]; + endPathWithSlash (mapPath); + mapPath += mapName; + MapInfo mapInfo = loadMapInfo (mapPath); + if (enableMapPreview == true) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + mapPreview.loadFromFile (mapPath.c_str ()); + + //printf("Loading map preview MAP\n"); + cleanupMapPreviewTexture (); + validMapPreview = true; + } + } + + + + void MenuStateMods::showRemoteDesription (ModInfo * modInfo) + { + //displayModPreviewImage = false; + modInfoSelected = modInfo; + validMapPreview = false; + cleanupMapPreviewTexture (); + + string modText = modInfo->description; + replaceAll (modText, "\\n", "\n"); + modDescrLabel.setText (modText); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("### modInfo->imageUrl [%s]\n", modInfo->imageUrl.c_str ()); + + if (modInfo->imageUrl != "") + { + cleanupPreviewTexture (); + string tempImage = getPreviewImageFileForMod (modInfo); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("### tempImage [%s] exists [%d]\n", tempImage.c_str (), + fileExists (tempImage)); + + if (tempImage != "" && fileExists (tempImage) == false) + { + if (ftpClientThread != NULL) + ftpClientThread->addFileToRequests (tempImage, modInfo->imageUrl); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList[tempImage] = pair < int, string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + + } + else + { + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + if (fileFTPProgressList.find (tempImage) == + fileFTPProgressList.end ()) + { + //displayModPreviewImage = true; + displayModPreviewImage[tempImage] = true; + } + safeMutexFTPProgress.ReleaseLock (); + } + } + } + + void MenuStateMods::mouseUp (int x, int y, const MouseButton mouseButton) + { + if (mouseButton == mbLeft) + { + keyTechScrollBar.mouseUp (x, y); + keyTilesetScrollBar.mouseUp (x, y); + keyMapScrollBar.mouseUp (x, y); + keyScenarioScrollBar.mouseUp (x, y); + } + } + + void MenuStateMods::mouseMove (int x, int y, const MouseState * ms) + { + buttonReturn.mouseMove (x, y); + + if (mainMessageBox.getEnabled ()) + { + mainMessageBox.mouseMove (x, y); + } + + buttonInstallTech.mouseMove (x, y); + buttonRemoveTech.mouseMove (x, y); + buttonInstallTileset.mouseMove (x, y); + buttonRemoveTileset.mouseMove (x, y); + buttonInstallMap.mouseMove (x, y); + buttonRemoveMap.mouseMove (x, y); + buttonInstallScenario.mouseMove (x, y); + buttonRemoveScenario.mouseMove (x, y); + + if (ms->get (mbLeft)) + { + keyMapScrollBar.mouseDown (x, y); + keyTechScrollBar.mouseDown (x, y); + keyTilesetScrollBar.mouseDown (x, y); + keyScenarioScrollBar.mouseDown (x, y); + } + else + { + keyMapScrollBar.mouseMove (x, y); + keyTechScrollBar.mouseMove (x, y); + keyTilesetScrollBar.mouseMove (x, y); + keyScenarioScrollBar.mouseMove (x, y); + } + + if (keyMapScrollBar.getElementCount () != 0) + { + for (int i = keyMapScrollBar.getVisibleStart (); + i <= keyMapScrollBar.getVisibleEnd (); ++i) + { + keyMapButtons[i]->mouseMove (x, y); + } + } + if (keyTechScrollBar.getElementCount () != 0) + { + for (int i = keyTechScrollBar.getVisibleStart (); + i <= keyTechScrollBar.getVisibleEnd (); ++i) + { + keyTechButtons[i]->mouseMove (x, y); + } + } + if (keyTilesetScrollBar.getElementCount () != 0) + { + for (int i = keyTilesetScrollBar.getVisibleStart (); + i <= keyTilesetScrollBar.getVisibleEnd (); ++i) + { + keyTilesetButtons[i]->mouseMove (x, y); + } + } + if (keyScenarioScrollBar.getElementCount () != 0) + { + for (int i = keyScenarioScrollBar.getVisibleStart (); + i <= keyScenarioScrollBar.getVisibleEnd (); ++i) + { + keyScenarioButtons[i]->mouseMove (x, y); + } + } + } + + void MenuStateMods::cleanupPreviewTexture () + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] scenarioLogoTexture [%p]\n", __FILE__, + __FUNCTION__, __LINE__, modPreviewImage); + + if (modPreviewImage != NULL) + { + Renderer::getInstance ().endTexture (rsGlobal, modPreviewImage, + false); + } + modPreviewImage = NULL; + } + + void MenuStateMods::cleanupMapPreviewTexture () + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + //printf("CLEANUP map preview texture\n"); + if (mapPreviewTexture != NULL) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + + mapPreviewTexture->end (); + + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + delete mapPreviewTexture; + mapPreviewTexture = NULL; + } + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", + extractFileFromDirectoryPath (__FILE__). + c_str (), __FUNCTION__, __LINE__); + } + + + void MenuStateMods::render () + { + try + { + Renderer & renderer = Renderer::getInstance (); + + renderer.renderLine (&lineHorizontal); + renderer.renderLine (&lineVertical); + renderer.renderLine (&lineReturn); + renderer.renderLine (&lineVerticalReturn); + renderer.renderButton (&buttonReturn); + + renderer.renderButton (&buttonInstallTech); + renderer.renderButton (&buttonRemoveTech); + renderer.renderButton (&buttonInstallTileset); + renderer.renderButton (&buttonRemoveTileset); + renderer.renderButton (&buttonInstallMap); + renderer.renderButton (&buttonRemoveMap); + renderer.renderButton (&buttonInstallScenario); + renderer.renderButton (&buttonRemoveScenario); + + renderer.renderButton (&buttonInstalled); + renderer.renderButton (&buttonAvailable); + renderer.renderButton (&buttonConflict); + renderer.renderButton (&buttonOnlyLocal); + + renderer.renderLabel (&modDescrLabel); + if (modInfoSelected != NULL) + { + string tempImage = getPreviewImageFileForMod (modInfoSelected); + if (displayModPreviewImage.find (tempImage) != + displayModPreviewImage.end () + && displayModPreviewImage[tempImage] == true) + { + if (modPreviewImage == NULL) + { + string tempImage = getPreviewImageFileForMod (modInfoSelected); + + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("### Render tempImage [%s] fileExists(tempImage) = %d\n", + tempImage.c_str (), fileExists (tempImage)); + + if (tempImage != "" && fileExists (tempImage) == true) + { + cleanupPreviewTexture (); + modPreviewImage = Renderer::findTexture (tempImage); + } + } + if (modPreviewImage != NULL) + { + renderer.renderTextureQuad (508, 90, 485, 325, modPreviewImage, + 1.0f); + } + } + } + + // Render Tech List + renderer.renderLabel (&keyTechScrollBarTitle1); + renderer.renderLabel (&keyTechScrollBarTitle2); + if (keyTechScrollBar.getElementCount () != 0) + { + for (int i = keyTechScrollBar.getVisibleStart (); + i <= keyTechScrollBar.getVisibleEnd (); ++i) + { + bool alreadyHasTech = + (std:: + find (techTreeFiles.begin (), techTreeFiles.end (), + keyTechButtons[i]->getText ()) != techTreeFiles.end ()); + if (keyTechButtons[i]->getText () == selectedTechName) + { + bool lightedOverride = true; + renderer.renderButton (keyTechButtons[i], &WHITE, + &lightedOverride); + } + else if (alreadyHasTech == true) + { + Vec4f buttonColor = WHITE; + buttonColor.w = 0.75f; + bool remoteHasTech = + (techCacheList.find (keyTechButtons[i]->getText ()) != + techCacheList.end ()); + if (remoteHasTech) + { + ModInfo & modInfo = + techCacheList[keyTechButtons[i]->getText ()]; + if (modInfo.crc == modInfo.localCRC) + { + keyTechButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getOnServerInstalledTexture ()); + } + else + { + //printf("modInfo.name=%s modInfo.crc=%s modInfo.localCRC=%s\n",modInfo.name.c_str(),modInfo.crc.c_str(),modInfo.localCRC.c_str()); + keyTechButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getOnServerDifferentTexture ()); + } + } + else + { + keyTechButtons[i]->setCustomTexture (CoreData::getInstance (). + getNotOnServerTexture + ()); + } + renderer.renderButton (keyTechButtons[i], &buttonColor); + } + else + { + Vec4f fontColor = + Vec4f (200.0f / 255.0f, 187.0f / 255.0f, 190.0f / 255.0f, + 0.75f); + //Vec4f fontColor=Vec4f(1.0f, 0.0f, 0.0f, 0.75f); + keyTechButtons[i]->setCustomTexture (CoreData::getInstance (). + getOnServerTexture ()); + renderer.renderButton (keyTechButtons[i], &fontColor); + } + renderer.renderLabel (labelsTech[i]); + } + } + renderer.renderScrollBar (&keyTechScrollBar); + + // Render Tileset List + renderer.renderLabel (&keyTilesetScrollBarTitle1); + if (keyTilesetScrollBar.getElementCount () != 0) + { + for (int i = keyTilesetScrollBar.getVisibleStart (); + i <= keyTilesetScrollBar.getVisibleEnd (); ++i) + { + bool alreadyHasTileset = + (std:: + find (tilesetFiles.begin (), tilesetFiles.end (), + keyTilesetButtons[i]->getText ()) != + tilesetFiles.end ()); + if (keyTilesetButtons[i]->getText () == selectedTilesetName) + { + bool lightedOverride = true; + renderer.renderButton (keyTilesetButtons[i], &WHITE, + &lightedOverride); + } + else if (alreadyHasTileset == true) + { + Vec4f buttonColor = WHITE; + buttonColor.w = 0.75f; + bool remoteHasTileset = + (tilesetCacheList.find (keyTilesetButtons[i]->getText ()) != + tilesetCacheList.end ()); + if (remoteHasTileset) + { + ModInfo & modInfo = + tilesetCacheList[keyTilesetButtons[i]->getText ()]; + + if (modInfo.crc == modInfo.localCRC) + { + keyTilesetButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getOnServerInstalledTexture ()); + } + else + { + //printf("modInfo.name=%s modInfo.crc=%s modInfo.localCRC=%s\n",modInfo.name.c_str(),modInfo.crc.c_str(),modInfo.localCRC.c_str()); + //printf("name [%s] modInfo.crc [%s] modInfo.localCRC [%s]\n",modInfo.name.c_str(),modInfo.crc.c_str(),modInfo.localCRC.c_str()); + + keyTilesetButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getOnServerDifferentTexture ()); + } + } + else + { + keyTilesetButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getNotOnServerTexture ()); + } + renderer.renderButton (keyTilesetButtons[i], &buttonColor); + } + else + { + Vec4f fontColor = + Vec4f (200.0f / 255.0f, 187.0f / 255.0f, 190.0f / 255.0f, + 0.75f); + keyTilesetButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getOnServerTexture ()); + renderer.renderButton (keyTilesetButtons[i], &fontColor); + } + } + } + renderer.renderScrollBar (&keyTilesetScrollBar); + + // Render Map list + renderer.renderLabel (&keyMapScrollBarTitle1); + renderer.renderLabel (&keyMapScrollBarTitle2); + if (keyMapScrollBar.getElementCount () != 0) + { + for (int i = keyMapScrollBar.getVisibleStart (); + i <= keyMapScrollBar.getVisibleEnd (); ++i) + { + string mapNameToRender = keyMapButtons[i]->getText (); + bool alreadyHasMap = + (std:: + find (mapFiles.begin (), mapFiles.end (), + mapNameToRender) != mapFiles.end ()); + if (keyMapButtons[i]->getText () == selectedMapName) + { + bool lightedOverride = true; + renderer.renderButton (keyMapButtons[i], &WHITE, + &lightedOverride); + } + else if (alreadyHasMap == true) + { + Vec4f buttonColor = WHITE; + buttonColor.w = 0.75f; + bool remoteHasMap = + (mapCacheList.find (keyMapButtons[i]->getText ()) != + mapCacheList.end ()); + if (remoteHasMap) + { + ModInfo & modInfo = + mapCacheList[keyMapButtons[i]->getText ()]; + if (modInfo.crc == modInfo.localCRC) + { + keyMapButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getOnServerInstalledTexture ()); + } + else + { + //printf("modInfo.name=%s modInfo.crc=%s modInfo.localCRC=%s\n",modInfo.name.c_str(),modInfo.crc.c_str(),modInfo.localCRC.c_str()); + keyMapButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getOnServerDifferentTexture ()); + } + } + else + { + keyMapButtons[i]->setCustomTexture (CoreData::getInstance (). + getNotOnServerTexture ()); + } + renderer.renderButton (keyMapButtons[i], &buttonColor); + } + else + { + Vec4f fontColor = + Vec4f (200.0f / 255.0f, 187.0f / 255.0f, 190.0f / 255.0f, + 0.75f); + keyMapButtons[i]->setCustomTexture (CoreData::getInstance (). + getOnServerTexture ()); + renderer.renderButton (keyMapButtons[i], &fontColor); + } + renderer.renderLabel (labelsMap[i]); + } + } + renderer.renderScrollBar (&keyMapScrollBar); + + // Render Scenario List + renderer.renderLabel (&keyScenarioScrollBarTitle1); + if (keyScenarioScrollBar.getElementCount () != 0) + { + for (int i = keyScenarioScrollBar.getVisibleStart (); + i <= keyScenarioScrollBar.getVisibleEnd (); ++i) + { + if (i >= (int) keyScenarioButtons.size ()) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "i >= keyScenarioButtons.size(), i = %d keyScenarioButtons.size() = %d", + i, (int) keyScenarioButtons.size ()); + throw megaglest_runtime_error (szBuf); + } + bool alreadyHasScenario = + (std:: + find (scenarioFiles.begin (), scenarioFiles.end (), + keyScenarioButtons[i]->getText ()) != + scenarioFiles.end ()); + + if (keyScenarioButtons[i]->getText () == selectedScenarioName) + { + bool lightedOverride = true; + renderer.renderButton (keyScenarioButtons[i], &WHITE, + &lightedOverride); + } + else if (alreadyHasScenario == true) + { + Vec4f buttonColor = WHITE; + buttonColor.w = 0.75f; + bool remoteHasScenario = + (scenarioCacheList.find (keyScenarioButtons[i]->getText ()) != + scenarioCacheList.end ()); + if (remoteHasScenario) + { + ModInfo & modInfo = + scenarioCacheList[keyScenarioButtons[i]->getText ()]; + if (modInfo.crc == modInfo.localCRC) + { + keyScenarioButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getOnServerInstalledTexture ()); + } + else + { + //printf("modInfo.name=%s modInfo.crc=%s modInfo.localCRC=%s\n",modInfo.name.c_str(),modInfo.crc.c_str(),modInfo.localCRC.c_str()); + keyScenarioButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getOnServerDifferentTexture ()); + } + } + else + { + keyScenarioButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getNotOnServerTexture ()); + } + renderer.renderButton (keyScenarioButtons[i], &buttonColor); + } + else + { + Vec4f fontColor = + Vec4f (200.0f / 255.0f, 187.0f / 255.0f, 190.0f / 255.0f, + 0.75f); + keyScenarioButtons[i]-> + setCustomTexture (CoreData::getInstance (). + getOnServerTexture ()); + renderer.renderButton (keyScenarioButtons[i], &fontColor); + } + } + } + renderer.renderScrollBar (&keyScenarioScrollBar); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + if (fileFTPProgressList.empty () == false) + { + Lang & lang = Lang::getInstance (); + int xLocation = buttonReturn.getX (); + int yLocation = buttonReturn.getY () - 12; + for (std::map < string, pair < int, string > >::iterator iterMap = + fileFTPProgressList.begin (); + iterMap != fileFTPProgressList.end (); ++iterMap) + { + + string progressLabelPrefix = + lang.getString ("ModDownloading") + " " + + extractFileFromDirectoryPath (iterMap->first) + " "; + //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\nRendering file progress with the following prefix [%s]\n",progressLabelPrefix.c_str()); + + if (Renderer::renderText3DEnabled) + { + renderer.renderProgressBar3D (iterMap->second.first, + //10, + //yLocation, + xLocation, + yLocation, + CoreData::getInstance (). + getDisplayFontSmall3D (), 185, + progressLabelPrefix, false); + } + else + { + renderer.renderProgressBar (iterMap->second.first, + //10, + //yLocation, + xLocation, + yLocation, + CoreData::getInstance (). + getDisplayFontSmall (), 185, + progressLabelPrefix, false); + } + + yLocation -= 14; + } + } + safeMutexFTPProgress.ReleaseLock (); + + renderer.renderConsole (&console, consoleNormal, 3); + + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + + if (modMenuState != mmst_None) + { + if (oldMenuState != modMenuState) + { + Lang & lang = Lang::getInstance (); + if (modMenuState == mmst_Loading) + { + pleaseWaitLabel.setText (lang. + getString + ("GettingModlistFromMasterserver")); + } + else if (modMenuState == mmst_CalculatingCRC) + { + pleaseWaitLabel.setText (lang. + getString + ("PleaseWaitCalculatingCRC")); + } + oldMenuState = modMenuState; + } + float anim = GraphicComponent::getAnim (); + if (anim < 0.5f) + { + anim = 1.f - anim; + } + Vec4f colorWithAlpha = Vec4f (ORANGE.x, ORANGE.y, ORANGE.z, anim); + renderer.renderLabel (&pleaseWaitLabel, &colorWithAlpha); + } + if (validMapPreview) + { + if (mapPreviewTexture != NULL) + { + renderer.renderTextureQuad (5, 185, 150, 150, mapPreviewTexture, + 1.0f); + } + if (enableMapPreview && (mapPreview.hasFileLoaded () == true)) + { + + int mouseX = mainMenu->getMouseX (); + int mouseY = mainMenu->getMouseY (); + int mouse2dAnim = mainMenu->getMouse2dAnim (); + + if (mapPreviewTexture == NULL) + { + renderer.renderMouse2d (mouseX, mouseY, mouse2dAnim); + renderer.renderMapPreview (&mapPreview, true, 10, 350, + &mapPreviewTexture); + } + } + } + + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d] error [%s]\n", __FILE__, + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + throw megaglest_runtime_error (szBuf); + } + } + + void MenuStateMods::update () + { + Chrono chrono; + chrono.start (); + + //Lang &lang= Lang::getInstance(); + + // Tech List + if (keyTechScrollBar.getElementCount () != 0) + { + for (int i = keyTechScrollBar.getVisibleStart (); + i <= keyTechScrollBar.getVisibleEnd (); ++i) + { + if (i >= (int) keyTechButtons.size ()) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "i >= keyTechButtons.size(), i = %d, keyTechButtons.size() = %d", + i, (int) keyTechButtons.size ()); + throw megaglest_runtime_error (szBuf); + } + + keyTechButtons[i]->setY (keyButtonsYBase - keyButtonsLineHeight * (i + - + keyTechScrollBar. + getVisibleStart + ())); + labelsTech[i]->setY (keyButtonsYBase - + keyButtonsLineHeight * (i - + keyTechScrollBar. + getVisibleStart ())); + } + } + + // Tileset List + if (keyTilesetScrollBar.getElementCount () != 0) + { + for (int i = keyTilesetScrollBar.getVisibleStart (); + i <= keyTilesetScrollBar.getVisibleEnd (); ++i) + { + if (i >= (int) keyTilesetButtons.size ()) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "i >= keyTilesetButtons.size(), i = %d, keyTilesetButtons.size() = %d", + i, (int) keyTilesetButtons.size ()); + throw megaglest_runtime_error (szBuf); + } + + int yPos = keyButtonsYBase - keyButtonsLineHeight * + (i - keyTilesetScrollBar.getVisibleStart ()); + keyTilesetButtons[i]->setY (yPos); + } + } + + // Map List + if (keyMapScrollBar.getElementCount () != 0) + { + for (int i = keyMapScrollBar.getVisibleStart (); + i <= keyMapScrollBar.getVisibleEnd (); ++i) + { + if (i >= (int) keyMapButtons.size ()) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "i >= keyMapButtons.size(), i = %d, keyMapButtons.size() = %d", + i, (int) keyMapButtons.size ()); + throw megaglest_runtime_error (szBuf); + } + + keyMapButtons[i]->setY (keyButtonsYBase - keyButtonsLineHeight * (i + - + keyMapScrollBar. + getVisibleStart + ())); + labelsMap[i]->setY (keyButtonsYBase - + keyButtonsLineHeight * (i - + keyMapScrollBar. + getVisibleStart ())); + } + } + + // Scenario List + if (keyScenarioScrollBar.getElementCount () != 0) + { + for (int i = keyScenarioScrollBar.getVisibleStart (); + i <= keyScenarioScrollBar.getVisibleEnd (); ++i) + { + if (i >= (int) keyScenarioButtons.size ()) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "i >= keyScenarioButtons.size(), i = %d, keyScenarioButtons.size() = %d", + i, (int) keyScenarioButtons.size ()); + throw megaglest_runtime_error (szBuf); + } + + int yPos = keyButtonsYBase - keyButtonsLineHeight * + (i - keyScenarioScrollBar.getVisibleStart ()); + keyScenarioButtons[i]->setY (yPos); + } + } + + console.update (); + } + + void MenuStateMods::keyDown (SDL_KeyboardEvent key) + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + //if(key == configKeys.getCharKey("ShowFullConsole")) { + if (isKeyPressed (configKeys.getSDLKey ("ShowFullConsole"), key) == + true) + { + showFullConsole = true; + } + } + + void MenuStateMods::keyPress (SDL_KeyboardEvent c) + { + } + + void MenuStateMods::keyUp (SDL_KeyboardEvent key) + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + //if(key== configKeys.getCharKey("ShowFullConsole")) { + if (isKeyPressed (configKeys.getSDLKey ("ShowFullConsole"), key) == + true) + { + showFullConsole = false; + } + } + + void MenuStateMods::showMessageBox (const string & text, + const string & header, bool toggle) + { + if (toggle == false) + { + mainMessageBox.setEnabled (false); + } + + if (mainMessageBox.getEnabled () == false) + { + mainMessageBox.setText (text); + mainMessageBox.setHeader (header); + mainMessageBox.setEnabled (true); + } + else + { + mainMessageBox.setEnabled (false); + } + } + + void MenuStateMods::FTPClient_CallbackEvent (string itemName, + FTP_Client_CallbackType type, + pair < FTP_Client_ResultType, + string > result, + void *userdata) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + + Lang & lang = Lang::getInstance (); + if (type == ftp_cct_DownloadProgress) + { + FTPClientCallbackInterface::FtpProgressStats * stats = + (FTPClientCallbackInterface::FtpProgressStats *) userdata; + if (stats != NULL) + { + int fileProgress = 0; + if (stats->download_total > 0) + { + fileProgress = + ((stats->download_now / stats->download_total) * 100.0); + } + //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] current file [%s] fileProgress = %d [now = %f, total = %f]\n",itemName.c_str(),stats->currentFilename.c_str(), fileProgress,stats->download_now,stats->download_total); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + pair < int, string > lastProgress = fileFTPProgressList[itemName]; + fileFTPProgressList[itemName] = + pair < int, string > (fileProgress, stats->currentFilename); + safeMutexFTPProgress.ReleaseLock (); + } + } + else if (type == ftp_cct_ExtractProgress) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP extract Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); + //printf("Got FTP extract Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); + + if (userdata == NULL) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("DataMissingExtractDownloadMod").c_str (), + itemName.c_str ()); + //printf("%s\n",szBuf); + console.addLine (szBuf, true); + } + else + { + char *szBuf = (char *) userdata; + //printf("%s\n",szBuf); + console.addLine (szBuf); + } + } + else if (type == ftp_cct_File) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList.erase (itemName); + safeMutexFTPProgress.ReleaseLock (); //printf("### downloaded file [%s] result = %d\n",itemName.c_str(),result.first); - if(result.first == ftp_crt_SUCCESS) { - displayModPreviewImage[itemName] = true; + if (result.first == ftp_crt_SUCCESS) + { + displayModPreviewImage[itemName] = true; } - } + } - else if(type == ftp_cct_Map) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); + else if (type == ftp_cct_Map) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList.erase(itemName); - safeMutexFTPProgress.ReleaseLock(); + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList.erase (itemName); + safeMutexFTPProgress.ReleaseLock (); selectedMapName = ""; - buttonInstallMap.setEnabled(true); + buttonInstallMap.setEnabled (true); - if(result.first == ftp_crt_SUCCESS) { - refreshMaps(); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModDownloadMapSuccess").c_str(),itemName.c_str()); - console.addLine(szBuf,true); + if (result.first == ftp_crt_SUCCESS) + { + refreshMaps (); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModDownloadMapSuccess").c_str (), + itemName.c_str ()); + console.addLine (szBuf, true); } - else { - curl_version_info_data *curlVersion= curl_version_info(CURLVERSION_NOW); + else + { + curl_version_info_data *curlVersion = + curl_version_info (CURLVERSION_NOW); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModDownloadMapFail").c_str(),itemName.c_str(),curlVersion->version,result.second.c_str()); - console.addLine(szBuf,true); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModDownloadMapFail").c_str (), + itemName.c_str (), curlVersion->version, + result.second.c_str ()); + console.addLine (szBuf, true); } - } - else if(type == ftp_cct_Tileset) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); + } + else if (type == ftp_cct_Tileset) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList.erase(itemName); - safeMutexFTPProgress.ReleaseLock(true); + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList.erase (itemName); + safeMutexFTPProgress.ReleaseLock (true); selectedTilesetName = ""; - buttonInstallTileset.setEnabled(true); + buttonInstallTileset.setEnabled (true); - if(result.first == ftp_crt_SUCCESS) { - refreshTilesets(); + if (result.first == ftp_crt_SUCCESS) + { + refreshTilesets (); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModDownloadTilesetSuccess").c_str(),itemName.c_str()); - console.addLine(szBuf,true); - // END + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModDownloadTilesetSuccess").c_str (), + itemName.c_str ()); + console.addLine (szBuf, true); + // END } - else { - curl_version_info_data *curlVersion= curl_version_info(CURLVERSION_NOW); + else + { + curl_version_info_data *curlVersion = + curl_version_info (CURLVERSION_NOW); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModDownloadTilesetFail").c_str(),itemName.c_str(),curlVersion->version,result.second.c_str()); - console.addLine(szBuf,true); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModDownloadTilesetFail").c_str (), + itemName.c_str (), curlVersion->version, + result.second.c_str ()); + console.addLine (szBuf, true); } - } - else if(type == ftp_cct_Techtree) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); + } + else if (type == ftp_cct_Techtree) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList.erase(itemName); - safeMutexFTPProgress.ReleaseLock(true); + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList.erase (itemName); + safeMutexFTPProgress.ReleaseLock (true); selectedTechName = ""; - buttonInstallTech.setEnabled(true); + buttonInstallTech.setEnabled (true); - if(result.first == ftp_crt_SUCCESS) { + if (result.first == ftp_crt_SUCCESS) + { - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModDownloadTechSuccess").c_str(),itemName.c_str()); - console.addLine(szBuf,true); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModDownloadTechSuccess").c_str (), + itemName.c_str ()); + console.addLine (szBuf, true); - // START - // Clear the CRC Cache if it is populated - safeMutexFTPProgress.Lock(); - Checksum::clearFileCache(); + // START + // Clear the CRC Cache if it is populated + safeMutexFTPProgress.Lock (); + Checksum::clearFileCache (); - vector paths = Config::getInstance().getPathListForType(ptTechs); - string pathSearchString = string("/") + itemName + string("/*"); - const string filterFileExt = ".xml"; - clearFolderTreeContentsCheckSum(paths, pathSearchString, filterFileExt); - clearFolderTreeContentsCheckSumList(paths, pathSearchString, filterFileExt); + vector < string > paths = + Config::getInstance ().getPathListForType (ptTechs); + string pathSearchString = string ("/") + itemName + string ("/*"); + const string filterFileExt = ".xml"; + clearFolderTreeContentsCheckSum (paths, pathSearchString, + filterFileExt); + clearFolderTreeContentsCheckSumList (paths, pathSearchString, + filterFileExt); - // Refresh CRC - Config &config = Config::getInstance(); - getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptTechs,""), string("/") + itemName + string("/*"), ".xml", NULL, true); - safeMutexFTPProgress.ReleaseLock(); + // Refresh CRC + Config & config = Config::getInstance (); + getFolderTreeContentsCheckSumRecursively (config. + getPathListForType + (ptTechs, ""), + string ("/") + itemName + + string ("/*"), ".xml", + NULL, true); + safeMutexFTPProgress.ReleaseLock (); - refreshTechs(); - // END + refreshTechs (); + // END } - else { - curl_version_info_data *curlVersion= curl_version_info(CURLVERSION_NOW); + else + { + curl_version_info_data *curlVersion = + curl_version_info (CURLVERSION_NOW); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModDownloadTechFail").c_str(),itemName.c_str(),curlVersion->version,result.second.c_str()); - console.addLine(szBuf,true); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModDownloadTechFail").c_str (), + itemName.c_str (), curlVersion->version, + result.second.c_str ()); + console.addLine (szBuf, true); } - } - else if(type == ftp_cct_Scenario) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); + } + else if (type == ftp_cct_Scenario) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList.erase(itemName); - safeMutexFTPProgress.ReleaseLock(true); + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList.erase (itemName); + safeMutexFTPProgress.ReleaseLock (true); selectedScenarioName = ""; - buttonInstallScenario.setEnabled(true); + buttonInstallScenario.setEnabled (true); - if(result.first == ftp_crt_SUCCESS) { - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModDownloadScenarioSuccess").c_str(),itemName.c_str()); - console.addLine(szBuf,true); + if (result.first == ftp_crt_SUCCESS) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModDownloadScenarioSuccess").c_str (), + itemName.c_str ()); + console.addLine (szBuf, true); - // START - // Clear the CRC Cache if it is populated - // - // Clear the CRC file Cache - safeMutexFTPProgress.Lock(); - Checksum::clearFileCache(); + // START + // Clear the CRC Cache if it is populated + // + // Clear the CRC file Cache + safeMutexFTPProgress.Lock (); + Checksum::clearFileCache (); - vector paths = Config::getInstance().getPathListForType(ptScenarios); - string pathSearchString = string("/") + itemName + string("/*"); - const string filterFileExt = ".xml"; - clearFolderTreeContentsCheckSum(paths, pathSearchString, filterFileExt); - clearFolderTreeContentsCheckSumList(paths, pathSearchString, filterFileExt); + vector < string > paths = + Config::getInstance ().getPathListForType (ptScenarios); + string pathSearchString = string ("/") + itemName + string ("/*"); + const string filterFileExt = ".xml"; + clearFolderTreeContentsCheckSum (paths, pathSearchString, + filterFileExt); + clearFolderTreeContentsCheckSumList (paths, pathSearchString, + filterFileExt); - // Refresh CRC - Config &config = Config::getInstance(); - getFolderTreeContentsCheckSumRecursively(config.getPathListForType(ptScenarios,""), string("/") + itemName + string("/*"), ".xml", NULL, true); - safeMutexFTPProgress.ReleaseLock(); + // Refresh CRC + Config & config = Config::getInstance (); + getFolderTreeContentsCheckSumRecursively (config. + getPathListForType + (ptScenarios, ""), + string ("/") + itemName + + string ("/*"), ".xml", + NULL, true); + safeMutexFTPProgress.ReleaseLock (); - refreshScenarios(); - // END + refreshScenarios (); + // END } - else { - curl_version_info_data *curlVersion= curl_version_info(CURLVERSION_NOW); + else + { + curl_version_info_data *curlVersion = + curl_version_info (CURLVERSION_NOW); - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("ModDownloadScenarioFail").c_str(),itemName.c_str(),curlVersion->version,result.second.c_str()); - console.addLine(szBuf,true); + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("ModDownloadScenarioFail").c_str (), + itemName.c_str (), curlVersion->version, + result.second.c_str ()); + console.addLine (szBuf, true); } + } + } -} - -}}//end namespace +}} //end namespace diff --git a/source/glest_game/menu/menu_state_mods.h b/source/glest_game/menu/menu_state_mods.h index a5afe501a..a83d2f29b 100644 --- a/source/glest_game/menu/menu_state_mods.h +++ b/source/glest_game/menu/menu_state_mods.h @@ -1,220 +1,230 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2011 Mark Vejvoda +// Copyright (C) 2011 Mark Vejvoda // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef MENU_STATE_MODS_H_ -#define MENU_STATE_MODS_H_ +# define MENU_STATE_MODS_H_ -#include "main_menu.h" -#include "map_preview.h" -#include "miniftpclient.h" -#include -#include -#include "leak_dumper.h" +# include "main_menu.h" +# include "map_preview.h" +# include "miniftpclient.h" +# include +# include +# include "leak_dumper.h" -namespace Glest { namespace Game { +namespace Glest +{ + namespace Game + { -enum FTPMessageType { - ftpmsg_None, - ftpmsg_GetMap, - ftpmsg_GetTileset, - ftpmsg_GetTechtree, - ftpmsg_GetScenario, + enum FTPMessageType + { + ftpmsg_None, + ftpmsg_GetMap, + ftpmsg_GetTileset, + ftpmsg_GetTechtree, + ftpmsg_GetScenario, - ftpmsg_ReplaceMap, - ftpmsg_ReplaceTileset, - ftpmsg_ReplaceTechtree, - ftpmsg_ReplaceScenario, + ftpmsg_ReplaceMap, + ftpmsg_ReplaceTileset, + ftpmsg_ReplaceTechtree, + ftpmsg_ReplaceScenario, - ftpmsg_Quit -}; + ftpmsg_Quit + }; -enum ModMenuState { - mmst_None, - mmst_Loading, - mmst_CalculatingCRC -}; + enum ModMenuState + { + mmst_None, + mmst_Loading, + mmst_CalculatingCRC + }; -typedef vector UserButtons; -typedef vector GraphicLabels; + typedef vector < GraphicButton * >UserButtons; + typedef vector < GraphicLabel * >GraphicLabels; // =============================== -// class MenuStateMods +// class MenuStateMods // =============================== -class MenuStateMods: public MenuState, public FTPClientCallbackInterface, public SimpleTaskCallbackInterface { -private: + class MenuStateMods:public MenuState, public FTPClientCallbackInterface, + public SimpleTaskCallbackInterface + { + private: - GraphicButton buttonReturn; - GraphicLine lineHorizontal; - GraphicLine lineVertical; - GraphicLine lineReturn; - GraphicLine lineVerticalReturn; + GraphicButton buttonReturn; + GraphicLine lineHorizontal; + GraphicLine lineVertical; + GraphicLine lineReturn; + GraphicLine lineVerticalReturn; - GraphicMessageBox mainMessageBox; - FTPMessageType mainMessageBoxState; + GraphicMessageBox mainMessageBox; + FTPMessageType mainMessageBoxState; - int techInfoXPos; - int mapInfoXPos; - int tilesetInfoXPos; - int scenarioInfoXPos; - int labelWidth; - int scrollListsYPos; - int listBoxLength; + int techInfoXPos; + int mapInfoXPos; + int tilesetInfoXPos; + int scenarioInfoXPos; + int labelWidth; + int scrollListsYPos; + int listBoxLength; - GraphicButton buttonInstallTech; - GraphicButton buttonRemoveTech; - GraphicLabel keyTechScrollBarTitle1; - GraphicLabel keyTechScrollBarTitle2; - GraphicScrollBar keyTechScrollBar; - UserButtons keyTechButtons; - GraphicLabels labelsTech; + GraphicButton buttonInstallTech; + GraphicButton buttonRemoveTech; + GraphicLabel keyTechScrollBarTitle1; + GraphicLabel keyTechScrollBarTitle2; + GraphicScrollBar keyTechScrollBar; + UserButtons keyTechButtons; + GraphicLabels labelsTech; - GraphicButton buttonInstallTileset; - GraphicButton buttonRemoveTileset; - GraphicLabel keyTilesetScrollBarTitle1; - GraphicScrollBar keyTilesetScrollBar; - UserButtons keyTilesetButtons; + GraphicButton buttonInstallTileset; + GraphicButton buttonRemoveTileset; + GraphicLabel keyTilesetScrollBarTitle1; + GraphicScrollBar keyTilesetScrollBar; + UserButtons keyTilesetButtons; - GraphicButton buttonInstallMap; - GraphicButton buttonRemoveMap; - GraphicLabel keyMapScrollBarTitle1; - GraphicLabel keyMapScrollBarTitle2; - GraphicScrollBar keyMapScrollBar; - UserButtons keyMapButtons; - GraphicLabels labelsMap; + GraphicButton buttonInstallMap; + GraphicButton buttonRemoveMap; + GraphicLabel keyMapScrollBarTitle1; + GraphicLabel keyMapScrollBarTitle2; + GraphicScrollBar keyMapScrollBar; + UserButtons keyMapButtons; + GraphicLabels labelsMap; - GraphicButton buttonInstallScenario; - GraphicButton buttonRemoveScenario; - GraphicLabel keyScenarioScrollBarTitle1; - GraphicLabel keyScenarioScrollBarTitle2; - GraphicScrollBar keyScenarioScrollBar; - UserButtons keyScenarioButtons; + GraphicButton buttonInstallScenario; + GraphicButton buttonRemoveScenario; + GraphicLabel keyScenarioScrollBarTitle1; + GraphicLabel keyScenarioScrollBarTitle2; + GraphicScrollBar keyScenarioScrollBar; + UserButtons keyScenarioButtons; - GraphicLabel modDescrLabel; - Texture2D *modPreviewImage; - ModInfo *modInfoSelected; - map displayModPreviewImage; + GraphicLabel modDescrLabel; + Texture2D *modPreviewImage; + ModInfo *modInfoSelected; + map < string, bool > displayModPreviewImage; - GraphicButton buttonInstalled; - GraphicButton buttonAvailable; - GraphicButton buttonConflict; - GraphicButton buttonOnlyLocal; + GraphicButton buttonInstalled; + GraphicButton buttonAvailable; + GraphicButton buttonConflict; + GraphicButton buttonOnlyLocal; - GraphicLabel pleaseWaitLabel; - ModMenuState modMenuState; - ModMenuState oldMenuState; + GraphicLabel pleaseWaitLabel; + ModMenuState modMenuState; + ModMenuState oldMenuState; - bool enableMapPreview; - bool validMapPreview; - MapInfo mapInfo; - MapPreview mapPreview; - Texture2D *mapPreviewTexture; + bool enableMapPreview; + bool validMapPreview; + MapInfo mapInfo; + MapPreview mapPreview; + Texture2D *mapPreviewTexture; - int keyButtonsToRender; - int keyButtonsYBase; - int keyButtonsXBase; - int keyButtonsLineHeight; - int keyButtonsHeight; - int keyButtonsWidth; - int keyButtonsWidthTech; - int keyButtonsWidthMap; - int keyButtonsWidthTil; - int keyButtonsWidthScen; + int keyButtonsToRender; + int keyButtonsYBase; + int keyButtonsXBase; + int keyButtonsLineHeight; + int keyButtonsHeight; + int keyButtonsWidth; + int keyButtonsWidthTech; + int keyButtonsWidthMap; + int keyButtonsWidthTil; + int keyButtonsWidthScen; - //Console console; - bool showFullConsole; + //Console console; + bool showFullConsole; - string selectedTechName; - std::vector techListRemote; - std::map techCacheList; - vector techTreeFiles; - vector techTreeFilesUserData; + string selectedTechName; + std::vector < std::string > techListRemote; + std::map < string, ModInfo > techCacheList; + vector < string > techTreeFiles; + vector < string > techTreeFilesUserData; - string selectedTilesetName; - std::vector tilesetListRemote; - std::map tilesetCacheList; - vector tilesetFiles; - vector tilesetFilesUserData; + string selectedTilesetName; + std::vector < std::string > tilesetListRemote; + std::map < string, ModInfo > tilesetCacheList; + vector < string > tilesetFiles; + vector < string > tilesetFilesUserData; - string selectedMapName; - std::vector mapListRemote; - std::map mapCacheList; - vector mapFiles; - vector mapFilesUserData; + string selectedMapName; + std::vector < std::string > mapListRemote; + std::map < string, ModInfo > mapCacheList; + vector < string > mapFiles; + vector < string > mapFilesUserData; - string selectedScenarioName; - std::vector scenarioListRemote; - std::map scenarioCacheList; - vector scenarioFiles; - vector scenarioFilesUserData; + string selectedScenarioName; + std::vector < std::string > scenarioListRemote; + std::map < string, ModInfo > scenarioCacheList; + vector < string > scenarioFiles; + vector < string > scenarioFilesUserData; - FTPClientThread *ftpClientThread; - std::map > fileFTPProgressList; + FTPClientThread *ftpClientThread; + std::map < string, pair < int, string > >fileFTPProgressList; - SimpleTaskThread *modHttpServerThread; + SimpleTaskThread *modHttpServerThread; - void getTechsLocalList(); - string refreshTechModInfo(string techInfo); - void refreshTechs(); + void getTechsLocalList (); + string refreshTechModInfo (string techInfo); + void refreshTechs (); - void getTilesetsLocalList(); - string refreshTilesetModInfo(string tilesetInfo); - void refreshTilesets(); + void getTilesetsLocalList (); + string refreshTilesetModInfo (string tilesetInfo); + void refreshTilesets (); - void getMapsLocalList(); - string refreshMapModInfo(string mapInfo); - void refreshMaps(); - string getMapCRC(string mapName); + void getMapsLocalList (); + string refreshMapModInfo (string mapInfo); + void refreshMaps (); + string getMapCRC (string mapName); - void getScenariosLocalList(); - string refreshScenarioModInfo(string scenarioInfo); - void refreshScenarios(); + void getScenariosLocalList (); + string refreshScenarioModInfo (string scenarioInfo); + void refreshScenarios (); - void showLocalDescription(string name); - void loadMapPreview(string name); - void showRemoteDesription(ModInfo *modInfo); + void showLocalDescription (string name); + void loadMapPreview (string name); + void showRemoteDesription (ModInfo * modInfo); - std::map mapCRCUpdateList; -public: + std::map < string, bool > mapCRCUpdateList; + public: - MenuStateMods(Program *program, MainMenu *mainMenu); - virtual ~MenuStateMods(); + MenuStateMods (Program * program, MainMenu * mainMenu); + virtual ~ MenuStateMods (); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseUp(int x, int y, const MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - void update(); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseUp (int x, int y, const MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void render (); + void update (); - virtual void keyDown(SDL_KeyboardEvent key); - virtual void keyPress(SDL_KeyboardEvent c); - virtual void keyUp(SDL_KeyboardEvent key); + virtual void keyDown (SDL_KeyboardEvent key); + virtual void keyPress (SDL_KeyboardEvent c); + virtual void keyUp (SDL_KeyboardEvent key); - virtual void simpleTask(BaseThread *callingThread,void *userdata); + virtual void simpleTask (BaseThread * callingThread, void *userdata); - virtual void reloadUI(); + virtual void reloadUI (); -private: + private: - void cleanUp(); - MapInfo loadMapInfo(string file); - void showMessageBox(const string &text, const string &header, bool toggle); - void clearUserButtons(); - virtual void FTPClient_CallbackEvent(string itemName, - FTP_Client_CallbackType type, pair result,void *userdata); + void cleanUp (); + MapInfo loadMapInfo (string file); + void showMessageBox (const string & text, const string & header, + bool toggle); + void clearUserButtons (); + virtual void FTPClient_CallbackEvent (string itemName, + FTP_Client_CallbackType type, + pair < FTP_Client_ResultType, + string > result, void *userdata); - string getPreviewImageFileForMod(const ModInfo *modInfo); - void cleanupPreviewTexture(); - void cleanupMapPreviewTexture(); -}; + string getPreviewImageFileForMod (const ModInfo * modInfo); + void cleanupPreviewTexture (); + void cleanupMapPreviewTexture (); + }; -}}//end namespace +}} //end namespace -#endif /* MENU_STATE_MODS_H_ */ +#endif /* MENU_STATE_MODS_H_ */ diff --git a/source/glest_game/menu/menu_state_new_game.cpp b/source/glest_game/menu/menu_state_new_game.cpp index fa9a9987d..6d430fb12 100644 --- a/source/glest_game/menu/menu_state_new_game.cpp +++ b/source/glest_game/menu/menu_state_new_game.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_new_game.h" @@ -28,136 +28,169 @@ #include "leak_dumper.h" -namespace Glest{ namespace Game{ - -// ===================================================== -// class MenuStateNewGame -// ===================================================== - -MenuStateNewGame::MenuStateNewGame(Program *program, MainMenu *mainMenu): - MenuState(program, mainMenu, "root") +namespace Glest { - containerName = "NewGame"; - Lang &lang= Lang::getInstance(); + namespace Game + { - int buttonWidth = 200; - int buttonXPosition = (1000 - buttonWidth) / 2; - int yPos=465; - buttonTutorial.registerGraphicComponent(containerName,"buttonTutorial"); - buttonTutorial.init(buttonXPosition, yPos, buttonWidth); - yPos-=40; - buttonScenario.registerGraphicComponent(containerName,"buttonScenario"); - buttonScenario.init(buttonXPosition, yPos, buttonWidth); - yPos-=40; - buttonCustomGame.registerGraphicComponent(containerName,"buttonCustomGame"); - buttonCustomGame.init(buttonXPosition, yPos, buttonWidth); - yPos-=40; - buttonMasterserverGame.registerGraphicComponent(containerName,"buttonMasterserverGame"); - buttonMasterserverGame.init(buttonXPosition, yPos, buttonWidth); - yPos-=40; - buttonJoinGame.registerGraphicComponent(containerName,"buttonJoinGame"); - buttonJoinGame.init(buttonXPosition, yPos, buttonWidth); - yPos-=40; - buttonReturn.registerGraphicComponent(containerName,"buttonReturn"); - buttonReturn.init(buttonXPosition, yPos, buttonWidth); +// ===================================================== +// class MenuStateNewGame +// ===================================================== - buttonCustomGame.setText(lang.getString("CustomGame")); - buttonScenario.setText(lang.getString("Scenario")); - buttonJoinGame.setText(lang.getString("JoinGame")); - buttonMasterserverGame.setText(lang.getString("JoinInternetGame")); - buttonTutorial.setText(lang.getString("Tutorial")); - buttonReturn.setText(lang.getString("Return")); + MenuStateNewGame::MenuStateNewGame (Program * program, + MainMenu * + mainMenu):MenuState (program, + mainMenu, "root") + { + containerName = "NewGame"; + Lang & lang = Lang::getInstance (); - GraphicComponent::applyAllCustomProperties(containerName); + int buttonWidth = 200; + int buttonXPosition = (1000 - buttonWidth) / 2; + int yPos = 465; + buttonTutorial.registerGraphicComponent (containerName, + "buttonTutorial"); + buttonTutorial.init (buttonXPosition, yPos, buttonWidth); + yPos -= 40; + buttonScenario.registerGraphicComponent (containerName, + "buttonScenario"); + buttonScenario.init (buttonXPosition, yPos, buttonWidth); + yPos -= 40; + buttonCustomGame.registerGraphicComponent (containerName, + "buttonCustomGame"); + buttonCustomGame.init (buttonXPosition, yPos, buttonWidth); + yPos -= 40; + buttonMasterserverGame.registerGraphicComponent (containerName, + "buttonMasterserverGame"); + buttonMasterserverGame.init (buttonXPosition, yPos, buttonWidth); + yPos -= 40; + buttonJoinGame.registerGraphicComponent (containerName, + "buttonJoinGame"); + buttonJoinGame.init (buttonXPosition, yPos, buttonWidth); + yPos -= 40; + buttonReturn.registerGraphicComponent (containerName, "buttonReturn"); + buttonReturn.init (buttonXPosition, yPos, buttonWidth); - NetworkManager::getInstance().end(); -} + buttonCustomGame.setText (lang.getString ("CustomGame")); + buttonScenario.setText (lang.getString ("Scenario")); + buttonJoinGame.setText (lang.getString ("JoinGame")); + buttonMasterserverGame.setText (lang.getString ("JoinInternetGame")); + buttonTutorial.setText (lang.getString ("Tutorial")); + buttonReturn.setText (lang.getString ("Return")); -void MenuStateNewGame::reloadUI() { - Lang &lang= Lang::getInstance(); + GraphicComponent::applyAllCustomProperties (containerName); - buttonCustomGame.setText(lang.getString("CustomGame")); - buttonScenario.setText(lang.getString("Scenario")); - buttonJoinGame.setText(lang.getString("JoinGame")); - buttonMasterserverGame.setText(lang.getString("JoinInternetGame")); - buttonTutorial.setText(lang.getString("Tutorial")); - buttonReturn.setText(lang.getString("Return")); - - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} - -void MenuStateNewGame::mouseClick(int x, int y, MouseButton mouseButton){ - - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - if(buttonCustomGame.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateCustomGame(program, mainMenu)); + NetworkManager::getInstance ().end (); } - else if(buttonScenario.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateScenario(program, mainMenu, false, - Config::getInstance().getPathListForType(ptScenarios))); + + void MenuStateNewGame::reloadUI () + { + Lang & lang = Lang::getInstance (); + + buttonCustomGame.setText (lang.getString ("CustomGame")); + buttonScenario.setText (lang.getString ("Scenario")); + buttonJoinGame.setText (lang.getString ("JoinGame")); + buttonMasterserverGame.setText (lang.getString ("JoinInternetGame")); + buttonTutorial.setText (lang.getString ("Tutorial")); + buttonReturn.setText (lang.getString ("Return")); + + GraphicComponent:: + reloadFontsForRegisterGraphicComponents (containerName); } - else if(buttonJoinGame.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateJoinGame(program, mainMenu)); + + void MenuStateNewGame::mouseClick (int x, int y, MouseButton mouseButton) + { + + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + + if (buttonCustomGame.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateCustomGame (program, mainMenu)); + } + else if (buttonScenario.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateScenario (program, mainMenu, false, + Config::getInstance (). + getPathListForType + (ptScenarios))); + } + else if (buttonJoinGame.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateJoinGame (program, mainMenu)); + } + else if (buttonMasterserverGame.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateMasterserver (program, mainMenu)); + } + else if (buttonTutorial.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateScenario (program, mainMenu, true, + Config::getInstance (). + getPathListForType + (ptTutorials))); + } + else if (buttonReturn.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + } } - else if(buttonMasterserverGame.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateMasterserver(program, mainMenu)); + + void MenuStateNewGame::mouseMove (int x, int y, const MouseState * ms) + { + buttonCustomGame.mouseMove (x, y); + buttonScenario.mouseMove (x, y); + buttonJoinGame.mouseMove (x, y); + buttonMasterserverGame.mouseMove (x, y); + buttonTutorial.mouseMove (x, y); + buttonReturn.mouseMove (x, y); } - else if(buttonTutorial.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateScenario(program, mainMenu, true, - Config::getInstance().getPathListForType(ptTutorials))); + + void MenuStateNewGame::render () + { + Renderer & renderer = Renderer::getInstance (); + + renderer.renderButton (&buttonCustomGame); + renderer.renderButton (&buttonScenario); + renderer.renderButton (&buttonJoinGame); + renderer.renderButton (&buttonMasterserverGame); + renderer.renderButton (&buttonTutorial); + renderer.renderButton (&buttonReturn); + + renderer.renderConsole (&console); + if (program != NULL) + program->renderProgramMsgBox (); } - else if(buttonReturn.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateRoot(program, mainMenu)); + + void MenuStateNewGame::update () + { + if (Config::getInstance ().getBool ("AutoTest")) + { + AutoTest::getInstance ().updateNewGame (program, mainMenu); + return; + } + console.update (); } -} -void MenuStateNewGame::mouseMove(int x, int y, const MouseState *ms){ - buttonCustomGame.mouseMove(x, y); - buttonScenario.mouseMove(x, y); - buttonJoinGame.mouseMove(x, y); - buttonMasterserverGame.mouseMove(x, y); - buttonTutorial.mouseMove(x, y); - buttonReturn.mouseMove(x, y); -} + void MenuStateNewGame::keyDown (SDL_KeyboardEvent key) + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + //if(key == configKeys.getCharKey("SaveGUILayout")) { + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) == true) + { + GraphicComponent::saveAllCustomProperties (containerName); + //Lang &lang= Lang::getInstance(); + //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); + } + } -void MenuStateNewGame::render(){ - Renderer &renderer= Renderer::getInstance(); - - renderer.renderButton(&buttonCustomGame); - renderer.renderButton(&buttonScenario); - renderer.renderButton(&buttonJoinGame); - renderer.renderButton(&buttonMasterserverGame); - renderer.renderButton(&buttonTutorial); - renderer.renderButton(&buttonReturn); - - renderer.renderConsole(&console); - if(program != NULL) program->renderProgramMsgBox(); -} - -void MenuStateNewGame::update(){ - if(Config::getInstance().getBool("AutoTest")){ - AutoTest::getInstance().updateNewGame(program, mainMenu); - return; - } - console.update(); -} - -void MenuStateNewGame::keyDown(SDL_KeyboardEvent key) { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - //if(key == configKeys.getCharKey("SaveGUILayout")) { - if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - GraphicComponent::saveAllCustomProperties(containerName); - //Lang &lang= Lang::getInstance(); - //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } -} - -}}//end namespace + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_new_game.h b/source/glest_game/menu/menu_state_new_game.h index d8ac2d2e0..71fe59c4a 100644 --- a/source/glest_game/menu/menu_state_new_game.h +++ b/source/glest_game/menu/menu_state_new_game.h @@ -1,48 +1,52 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATENEWGAME_H_ -#define _GLEST_GAME_MENUSTATENEWGAME_H_ +# define _GLEST_GAME_MENUSTATENEWGAME_H_ -#include "main_menu.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class MenuStateNewGame +// class MenuStateNewGame // =============================== -class MenuStateNewGame: public MenuState{ -private: - GraphicButton buttonCustomGame; - GraphicButton buttonScenario; - GraphicButton buttonJoinGame; - GraphicButton buttonMasterserverGame; - GraphicButton buttonTutorial; - GraphicButton buttonReturn; + class MenuStateNewGame:public MenuState + { + private: + GraphicButton buttonCustomGame; + GraphicButton buttonScenario; + GraphicButton buttonJoinGame; + GraphicButton buttonMasterserverGame; + GraphicButton buttonTutorial; + GraphicButton buttonReturn; -public: - MenuStateNewGame(Program *program, MainMenu *mainMenu); + public: + MenuStateNewGame (Program * program, MainMenu * mainMenu); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void update(); - void render(); - virtual void keyDown(SDL_KeyboardEvent key); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void update (); + void render (); + virtual void keyDown (SDL_KeyboardEvent key); - void reloadUI(); -}; + void reloadUI (); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_options.cpp b/source/glest_game/menu/menu_state_options.cpp index ac187d27e..022fac0bd 100644 --- a/source/glest_game/menu/menu_state_options.cpp +++ b/source/glest_game/menu/menu_state_options.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_options.h" @@ -28,1136 +28,1498 @@ #include "metrics.h" #include "leak_dumper.h" -using namespace Shared::Util; - -namespace Glest{ namespace Game{ - -// ===================================================== -// class MenuStateOptions -// ===================================================== -MenuStateOptions::MenuStateOptions(Program *program, MainMenu *mainMenu, ProgramState **parentUI) : - MenuState(program, mainMenu, "config"), - buttonOk("Options","buttonOk"), - buttonReturn("Options","buttonReturn"), - - labelLang("Options","labelLang"), - listBoxLang("Options","listBoxLang"), - labelPlayerName("Options","labelPlayerName"), - labelPlayerNameLabel("Options","labelPlayerNameLabel"), - - buttonKeyboardSetup("Options","buttonKeyboardSetup"), - buttonVideoSection("Options","buttonVideoSection"), - buttonAudioSection("Options","buttonAudioSection"), - buttonMiscSection("Options","buttonMiscSection"), - buttonNetworkSettings("Options","buttonNetworkSettings"), - - labelFontSizeAdjustment("Options","labelFontSizeAdjustment"), - listFontSizeAdjustment("Options","listFontSizeAdjustment"), - - mainMessageBox("Options","mainMessageBox"), - - labelScreenShotType("Options","labelScreenShotType"), - listBoxScreenShotType("Options","listBoxScreenShotType"), - - labelDisableScreenshotConsoleText("Options","labelDisableScreenshotConsoleText"), - checkBoxDisableScreenshotConsoleText("Options","checkBoxDisableScreenshotConsoleText"), - - labelMouseMoveScrollsWorld("Options","labelMouseMoveScrollsWorld"), - checkBoxMouseMoveScrollsWorld("Options","checkBoxMouseMoveScrollsWorld"), - - labelCameraMoveSpeed("Options","labelCameraMoveSpeed"), - listCameraMoveSpeed("Options","listCameraMoveSpeed"), - - labelVisibleHud("Options","labelVisibleHud"), - checkBoxVisibleHud("Options","checkBoxVisibleHud"), - labelHealthBars("Options","labelHealthBars"), - listBoxHealthBars("Options","listBoxHealthBars"), - - labelTimeDisplay("Options","labelTimeDisplay"), - checkBoxTimeDisplay("Options","checkBoxTimeDisplay"), - labelChatStaysActive("Options","labelChatStaysActive"), - checkBoxChatStaysActive("Options","checkBoxChatStaysActive"), - - labelLuaDisableSecuritySandbox("Options","labelLuaDisableSecuritySandbox"), - checkBoxLuaDisableSecuritySandbox("Options","checkBoxLuaDisableSecuritySandbox"), - - luaMessageBox("Options","luaMessageBox"), - - labelCustomTranslation("Options","labelCustomTranslation"), - checkBoxCustomTranslation("Options","checkBoxCustomTranslation"), - - buttonGetNewLanguageFiles("Options","buttonGetNewLanguageFiles"), - buttonDeleteNewLanguageFiles("Options","buttonDeleteNewLanguageFiles"), - labelTransifexUserLabel("Options","labelTransifexUserLabel"), - labelTransifexUser("Options","labelTransifexUser"), - labelTransifexPwdLabel("Options","labelTransifexPwdLabel"), - labelTransifexPwd("Options","labelTransifexPwd"), - labelTransifexI18NLabel("Options","labelTransifexI18NLabel"), - labelTransifexI18N("Options","labelTransifexI18N") +using namespace + Shared::Util; +namespace + Glest { - try { - containerName = "Options"; - this->parentUI=parentUI; - Lang &lang= Lang::getInstance(); - Config &config= Config::getInstance(); - - this->console.setOnlyChatMessagesInStoredLines(false); - activeInputLabel=NULL; - - int leftLabelStart=100; - int leftColumnStart=leftLabelStart+300; - int buttonRowPos=50; - int buttonStartPos=170; - int lineOffset=30; - int tabButtonWidth=200; - int tabButtonHeight=30; - - mainMessageBox.init(lang.getString("Ok")); - mainMessageBox.setEnabled(false); - mainMessageBoxState=0; - - buttonAudioSection.init(0, 720,tabButtonWidth,tabButtonHeight); - buttonAudioSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonAudioSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonAudioSection.setText(lang.getString("Audio")); - // Video Section - buttonVideoSection.init(200, 720,tabButtonWidth,tabButtonHeight); - buttonVideoSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonVideoSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonVideoSection.setText(lang.getString("Video")); - //MiscSection - buttonMiscSection.init(400, 700,tabButtonWidth,tabButtonHeight+20); - buttonMiscSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonMiscSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonMiscSection.setText(lang.getString("Misc")); - //NetworkSettings - buttonNetworkSettings.init(600, 720,tabButtonWidth,tabButtonHeight); - buttonNetworkSettings.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonNetworkSettings.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonNetworkSettings.setText(lang.getString("Network")); - - //KeyboardSetup - buttonKeyboardSetup.init(800, 720,tabButtonWidth,tabButtonHeight); - buttonKeyboardSetup.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonKeyboardSetup.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonKeyboardSetup.setText(lang.getString("Keyboardsetup")); - - int currentLine=650; // reset line pos - int currentLabelStart=leftLabelStart; // set to right side - int currentColumnStart=leftColumnStart; // set to right side - - //lang - labelLang.init(currentLabelStart, currentLine); - labelLang.setText(lang.getString("Language")); - - listBoxLang.init(currentColumnStart, currentLine, 375); - vector langResults; - - languageList = Lang::getInstance().getDiscoveredLanguageList(true); - for(map::iterator iterMap = languageList.begin(); - iterMap != languageList.end(); ++iterMap) { - langResults.push_back(iterMap->first + "-" + iterMap->second); - } - - listBoxLang.setItems(langResults); - - pair defaultLang = Lang::getInstance().getNavtiveNameFromLanguageName(config.getString("Lang")); - if(defaultLang.first == "" && defaultLang.second == "") { - defaultLang = Lang::getInstance().getNavtiveNameFromLanguageName(Lang::getInstance().getDefaultLanguage()); - } - listBoxLang.setSelectedItem(defaultLang.second + "-" + defaultLang.first); - currentLine-=lineOffset; - - //playerName - labelPlayerNameLabel.init(currentLabelStart,currentLine); - labelPlayerNameLabel.setText(lang.getString("Playername")); - - labelPlayerName.init(currentColumnStart,currentLine); - labelPlayerName.setText(config.getString("NetPlayerName",Socket::getHostName().c_str())); - labelPlayerName.setFont(CoreData::getInstance().getMenuFontBig()); - labelPlayerName.setFont3D(CoreData::getInstance().getMenuFontBig3D()); - labelPlayerName.setEditable(true); - labelPlayerName.setMaxEditWidth(16); - labelPlayerName.setMaxEditRenderWidth(200); - currentLine-=lineOffset; - - //FontSizeAdjustment - labelFontSizeAdjustment.init(currentLabelStart,currentLine); - labelFontSizeAdjustment.setText(lang.getString("FontSizeAdjustment")); - - listFontSizeAdjustment.init(currentColumnStart, currentLine, 80); - for(int i=-5; i<=5; i+=1){ - listFontSizeAdjustment.pushBackItem(intToStr(i)); - } - listFontSizeAdjustment.setSelectedItem(intToStr(config.getInt("FontSizeAdjustment"))); - - currentLine-=lineOffset; - // Screenshot type flag - labelScreenShotType.init(currentLabelStart ,currentLine); - labelScreenShotType.setText(lang.getString("ScreenShotFileType")); - - listBoxScreenShotType.init(currentColumnStart ,currentLine, 80 ); - listBoxScreenShotType.pushBackItem("bmp"); - listBoxScreenShotType.pushBackItem("jpg"); - listBoxScreenShotType.pushBackItem("png"); - listBoxScreenShotType.pushBackItem("tga"); - listBoxScreenShotType.setSelectedItem(config.getString("ScreenShotFileType","jpg")); - - currentLine-=lineOffset; - - labelDisableScreenshotConsoleText.init(currentLabelStart ,currentLine); - labelDisableScreenshotConsoleText.setText(lang.getString("ScreenShotConsoleText")); - - checkBoxDisableScreenshotConsoleText.init(currentColumnStart ,currentLine ); - checkBoxDisableScreenshotConsoleText.setValue(!config.getBool("DisableScreenshotConsoleText","false")); - - currentLine-=lineOffset; - - labelMouseMoveScrollsWorld.init(currentLabelStart ,currentLine); - labelMouseMoveScrollsWorld.setText(lang.getString("MouseScrollsWorld")); - - checkBoxMouseMoveScrollsWorld.init(currentColumnStart ,currentLine ); - checkBoxMouseMoveScrollsWorld.setValue(config.getBool("MouseMoveScrollsWorld","true")); - currentLine-=lineOffset; - - //CameraMoveSpeed - labelCameraMoveSpeed.init(currentLabelStart,currentLine); - labelCameraMoveSpeed.setText(lang.getString("CameraMoveSpeed")); - - listCameraMoveSpeed.init(currentColumnStart, currentLine, 80); - for(int i=15; i<=50; i+=5){ - listCameraMoveSpeed.pushBackItem(intToStr(i)); - } - listCameraMoveSpeed.setSelectedItem(intToStr((int) (config.getFloat("CameraMoveSpeed","15")))); - currentLine-=lineOffset; - - labelVisibleHud.init(currentLabelStart ,currentLine); - labelVisibleHud.setText(lang.getString("VisibleHUD")); - - checkBoxVisibleHud.init(currentColumnStart ,currentLine ); - checkBoxVisibleHud.setValue(config.getBool("VisibleHud","true")); - - currentLine-=lineOffset; - - labelHealthBars.init(currentLabelStart ,currentLine); - labelHealthBars.setText(lang.getString("Healthbar")); - - listBoxHealthBars.init(currentColumnStart ,currentLine, 375); - listBoxHealthBars.pushBackItem(lang.getString("HealthbarsFactionDefault")); - listBoxHealthBars.pushBackItem(lang.getString("HealthbarsOff")); - listBoxHealthBars.pushBackItem(lang.getString("HealthbarsAlways")); - listBoxHealthBars.pushBackItem(lang.getString("HealthbarsIfNeeded")); - listBoxHealthBars.pushBackItem(lang.getString("HealthbarsSelected")); - listBoxHealthBars.pushBackItem(lang.getString("HealthbarsSelectedOrNeeded")); - - int hpMode=config.getInt("HealthBarMode","4"); - int hpIndex=0; - switch (hpMode) { - case hbvUndefined: - hpIndex = 0; - break; - case hbvOff: - hpIndex = 1; - break; - case hbvAlways: - hpIndex = 2; - break; - case hbvIfNeeded: - hpIndex = 3; - break; - case hbvSelected: - hpIndex = 4; - break; - case hbvSelected | hbvIfNeeded: - hpIndex = 5; - break; - default: - hpIndex = 0; - break; - } - - listBoxHealthBars.setSelectedItemIndex(hpIndex); - - currentLine-=lineOffset; - - labelChatStaysActive.init(currentLabelStart ,currentLine); - labelChatStaysActive.setText(lang.getString("ChatStaysActive")); - - checkBoxChatStaysActive.init(currentColumnStart ,currentLine ); - checkBoxChatStaysActive.setValue(config.getBool("ChatStaysActive","false")); - - currentLine-=lineOffset; - - labelTimeDisplay.init(currentLabelStart ,currentLine); - labelTimeDisplay.setText(lang.getString("TimeDisplay")); - - checkBoxTimeDisplay.init(currentColumnStart ,currentLine ); - checkBoxTimeDisplay.setValue(config.getBool("TimeDisplay","true")); - - currentLine-=lineOffset; - - labelLuaDisableSecuritySandbox.init(currentLabelStart ,currentLine); - labelLuaDisableSecuritySandbox.setText(lang.getString("LuaDisableSecuritySandbox")); - - checkBoxLuaDisableSecuritySandbox.init(currentColumnStart ,currentLine ); - checkBoxLuaDisableSecuritySandbox.setValue(config.getBool("DisableLuaSandbox","false")); - - luaMessageBox.init(lang.getString("Yes"),lang.getString("No")); - luaMessageBox.setEnabled(false); - luaMessageBoxState=0; - - currentLine-=lineOffset; - - currentLine-=lineOffset/2; - - // buttons - buttonOk.init(buttonStartPos, buttonRowPos, 100); - buttonOk.setText(lang.getString("Save")); - - buttonReturn.init(buttonStartPos+110, buttonRowPos, 100); - buttonReturn.setText(lang.getString("Return")); - - // Transifex related UI - currentLine-=lineOffset*3; - labelCustomTranslation.init(currentLabelStart ,currentLine); - labelCustomTranslation.setText(lang.getString("CustomTranslation")); - - checkBoxCustomTranslation.init(currentColumnStart ,currentLine ); - checkBoxCustomTranslation.setValue(false); - currentLine-=lineOffset; - - labelTransifexUserLabel.init(currentLabelStart,currentLine); - labelTransifexUserLabel.setText(lang.getString("TransifexUserName")); - - labelTransifexPwdLabel.init(currentLabelStart + 260 ,currentLine); - labelTransifexPwdLabel.setText(lang.getString("TransifexPwd")); - - labelTransifexI18NLabel.init(currentLabelStart + 520 ,currentLine); - labelTransifexI18NLabel.setText(lang.getString("TransifexI18N")); - - currentLine-=lineOffset; - - labelTransifexUser.init(currentLabelStart,currentLine); - labelTransifexUser.setEditable(true); - labelTransifexUser.setMaxEditWidth(28); - labelTransifexUser.setMaxEditRenderWidth(250); - labelTransifexUser.setText(config.getString("TranslationGetURLUser","")); - - labelTransifexPwd.init(currentLabelStart + 260 ,currentLine); - labelTransifexPwd.setIsPassword(true); - labelTransifexPwd.setEditable(true); - labelTransifexPwd.setMaxEditWidth(28); - labelTransifexPwd.setMaxEditRenderWidth(250); - labelTransifexPwd.setText(config.getString("TranslationGetURLPassword","")); - - labelTransifexI18N.init(currentLabelStart + 520 ,currentLine); - labelTransifexI18N.setEditable(true); - labelTransifexI18N.setMaxEditWidth(6); - labelTransifexI18N.setMaxEditRenderWidth(70); - labelTransifexI18N.setText(config.getString("TranslationGetURLLanguage","en")); - currentLine-=lineOffset; - - buttonGetNewLanguageFiles.init(currentLabelStart, currentLine, 250); - buttonGetNewLanguageFiles.setText(lang.getString("TransifexGetLanguageFiles")); - - buttonDeleteNewLanguageFiles.init(currentLabelStart + 260, currentLine, 250); - buttonDeleteNewLanguageFiles.setText(lang.getString("TransifexDeleteLanguageFiles")); - - setupTransifexUI(); - - GraphicComponent::applyAllCustomProperties(containerName); - } - catch(exception &e) { - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error loading options: %s\n",__FILE__,__FUNCTION__,__LINE__,e.what()); - throw megaglest_runtime_error(string("Error loading options msg: ") + e.what()); - } -} - -MenuStateOptions::~MenuStateOptions() { -} - -void MenuStateOptions::reloadUI() { - Lang &lang = Lang::getInstance(); - - mainMessageBox.init(lang.getString("Ok")); - luaMessageBox.init(lang.getString("Yes"),lang.getString("No")); - - buttonAudioSection.setText(lang.getString("Audio")); - buttonVideoSection.setText(lang.getString("Video")); - buttonMiscSection.setText(lang.getString("Misc")); - buttonNetworkSettings.setText(lang.getString("Network")); - buttonKeyboardSetup.setText(lang.getString("Keyboardsetup")); - - labelVisibleHud.setText(lang.getString("VisibleHUD")); - labelHealthBars.setText(lang.getString("Healthbar")); - labelChatStaysActive.setText(lang.getString("ChatStaysActive")); - labelTimeDisplay.setText(lang.getString("TimeDisplay")); - - labelLuaDisableSecuritySandbox.setText(lang.getString("LuaDisableSecuritySandbox")); - labelLang.setText(lang.getString("Language")); - labelPlayerNameLabel.setText(lang.getString("Playername")); - labelFontSizeAdjustment.setText(lang.getString("FontSizeAdjustment")); - labelScreenShotType.setText(lang.getString("ScreenShotFileType")); - labelDisableScreenshotConsoleText.setText(lang.getString("ScreenShotConsoleText")); - labelMouseMoveScrollsWorld.setText(lang.getString("MouseScrollsWorld")); - labelCameraMoveSpeed.setText(lang.getString("CameraMoveSpeed")); - - buttonOk.setText(lang.getString("Save")); - buttonReturn.setText(lang.getString("Return")); - - labelCustomTranslation.setText(lang.getString("CustomTranslation")); - buttonGetNewLanguageFiles.setText(lang.getString("TransifexGetLanguageFiles")); - buttonDeleteNewLanguageFiles.setText(lang.getString("TransifexDeleteLanguageFiles")); - labelTransifexUserLabel.setText(lang.getString("TransifexUserName")); - labelTransifexPwdLabel.setText(lang.getString("TransifexPwd")); - labelTransifexI18NLabel.setText(lang.getString("TransifexI18N")); -} - -void MenuStateOptions::setupTransifexUI() { - buttonGetNewLanguageFiles.setEnabled(checkBoxCustomTranslation.getValue()); - buttonDeleteNewLanguageFiles.setEnabled(checkBoxCustomTranslation.getValue()); - labelTransifexUserLabel.setEnabled(checkBoxCustomTranslation.getValue()); - labelTransifexUser.setEnabled(checkBoxCustomTranslation.getValue()); - labelTransifexPwdLabel.setEnabled(checkBoxCustomTranslation.getValue()); - labelTransifexPwd.setEnabled(checkBoxCustomTranslation.getValue()); - labelTransifexI18NLabel.setEnabled(checkBoxCustomTranslation.getValue()); - labelTransifexI18N.setEnabled(checkBoxCustomTranslation.getValue()); -} - -void MenuStateOptions::showMessageBox(const string &text, const string &header, bool toggle){ - if(!toggle){ - mainMessageBox.setEnabled(false); - } - - if(!mainMessageBox.getEnabled()){ - mainMessageBox.setText(text); - mainMessageBox.setHeader(header); - mainMessageBox.setEnabled(true); - } - else{ - mainMessageBox.setEnabled(false); - } -} - -void MenuStateOptions::showLuaMessageBox(const string &text, const string &header, bool toggle) { - if(!toggle) { - luaMessageBox.setEnabled(false); - } - - if(!luaMessageBox.getEnabled()){ - luaMessageBox.setText(text); - luaMessageBox.setHeader(header); - luaMessageBox.setEnabled(true); - } - else{ - luaMessageBox.setEnabled(false); - } -} - -void MenuStateOptions::mouseClick(int x, int y, MouseButton mouseButton){ - - Config &config= Config::getInstance(); - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - if(mainMessageBox.getEnabled()) { - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - soundRenderer.playFx(coreData.getClickSoundA()); - if(button == 0) { - if(mainMessageBoxState == 1) { - mainMessageBoxState=0; - mainMessageBox.setEnabled(false); - saveConfig(); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - mainMenu->setState(new MenuStateRoot(program, mainMenu)); - } - else { - mainMessageBox.setEnabled(false); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - } - } - else { - if(mainMessageBoxState == 1) { - mainMessageBoxState=0; - mainMessageBox.setEnabled(false); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - } - } - } - } - else if(luaMessageBox.getEnabled()){ - int button= 0; - if(luaMessageBox.mouseClick(x, y, button)) { - checkBoxLuaDisableSecuritySandbox.setValue(false); - soundRenderer.playFx(coreData.getClickSoundA()); - if(button == 0) { - if(luaMessageBoxState == 1) { - checkBoxLuaDisableSecuritySandbox.setValue(true); - } - } - luaMessageBox.setEnabled(false); - } - } - else if(checkBoxLuaDisableSecuritySandbox.mouseClick(x, y)) { - if(checkBoxLuaDisableSecuritySandbox.getValue() == true) { - checkBoxLuaDisableSecuritySandbox.setValue(false); - - luaMessageBoxState=1; - Lang &lang= Lang::getInstance(); - showLuaMessageBox(lang.getString("LuaDisableSecuritySandboxWarning"), lang.getString("Question"), false); - } - } - else if(buttonOk.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - - string currentFontSizeAdjustment=config.getString("FontSizeAdjustment"); - string selectedFontSizeAdjustment=listFontSizeAdjustment.getSelectedItem(); - if(currentFontSizeAdjustment != selectedFontSizeAdjustment){ - mainMessageBoxState=1; - Lang &lang= Lang::getInstance(); - showMessageBox(lang.getString("RestartNeeded"), lang.getString("FontSizeAdjustmentChanged"), false); - return; - } - saveConfig(); - //mainMenu->setState(new MenuStateRoot(program, mainMenu)); - reloadUI(); - return; + namespace + Game + { + +// ===================================================== +// class MenuStateOptions +// ===================================================== + MenuStateOptions::MenuStateOptions (Program * program, + MainMenu * mainMenu, + ProgramState ** parentUI): + MenuState (program, mainMenu, "config"), + buttonOk ("Options", "buttonOk"), + buttonReturn ("Options", "buttonReturn"), + labelLang ("Options", "labelLang"), + listBoxLang ("Options", "listBoxLang"), + labelPlayerName ("Options", "labelPlayerName"), + labelPlayerNameLabel ("Options", "labelPlayerNameLabel"), + buttonKeyboardSetup ("Options", "buttonKeyboardSetup"), + buttonVideoSection ("Options", "buttonVideoSection"), + buttonAudioSection ("Options", "buttonAudioSection"), + buttonMiscSection ("Options", "buttonMiscSection"), + buttonNetworkSettings ("Options", "buttonNetworkSettings"), + labelFontSizeAdjustment ("Options", "labelFontSizeAdjustment"), + listFontSizeAdjustment ("Options", "listFontSizeAdjustment"), + mainMessageBox ("Options", "mainMessageBox"), + labelScreenShotType ("Options", "labelScreenShotType"), + listBoxScreenShotType ("Options", "listBoxScreenShotType"), + labelDisableScreenshotConsoleText ("Options", + "labelDisableScreenshotConsoleText"), + checkBoxDisableScreenshotConsoleText ("Options", + "checkBoxDisableScreenshotConsoleText"), + labelMouseMoveScrollsWorld ("Options", "labelMouseMoveScrollsWorld"), + checkBoxMouseMoveScrollsWorld ("Options", + "checkBoxMouseMoveScrollsWorld"), + labelCameraMoveSpeed ("Options", "labelCameraMoveSpeed"), + listCameraMoveSpeed ("Options", "listCameraMoveSpeed"), + labelVisibleHud ("Options", "labelVisibleHud"), + checkBoxVisibleHud ("Options", "checkBoxVisibleHud"), + labelHealthBars ("Options", "labelHealthBars"), + listBoxHealthBars ("Options", "listBoxHealthBars"), + labelTimeDisplay ("Options", "labelTimeDisplay"), + checkBoxTimeDisplay ("Options", "checkBoxTimeDisplay"), + labelChatStaysActive ("Options", "labelChatStaysActive"), + checkBoxChatStaysActive ("Options", "checkBoxChatStaysActive"), + labelLuaDisableSecuritySandbox ("Options", + "labelLuaDisableSecuritySandbox"), + checkBoxLuaDisableSecuritySandbox ("Options", + "checkBoxLuaDisableSecuritySandbox"), + luaMessageBox ("Options", "luaMessageBox"), + labelCustomTranslation ("Options", "labelCustomTranslation"), + checkBoxCustomTranslation ("Options", "checkBoxCustomTranslation"), + buttonGetNewLanguageFiles ("Options", "buttonGetNewLanguageFiles"), + buttonDeleteNewLanguageFiles ("Options", "buttonDeleteNewLanguageFiles"), + labelTransifexUserLabel ("Options", "labelTransifexUserLabel"), + labelTransifexUser ("Options", "labelTransifexUser"), + labelTransifexPwdLabel ("Options", "labelTransifexPwdLabel"), + labelTransifexPwd ("Options", "labelTransifexPwd"), + labelTransifexI18NLabel ("Options", "labelTransifexI18NLabel"), + labelTransifexI18N ("Options", "labelTransifexI18N") + { + try + { + containerName = "Options"; + this-> + parentUI = parentUI; + Lang & + lang = Lang::getInstance (); + Config & + config = Config::getInstance (); + + this-> + console. + setOnlyChatMessagesInStoredLines (false); + activeInputLabel = NULL; + + int + leftLabelStart = 100; + int + leftColumnStart = leftLabelStart + 300; + int + buttonRowPos = 50; + int + buttonStartPos = 170; + int + lineOffset = 30; + int + tabButtonWidth = 200; + int + tabButtonHeight = 30; + + mainMessageBox. + init (lang.getString ("Ok")); + mainMessageBox. + setEnabled (false); + mainMessageBoxState = 0; + + buttonAudioSection. + init (0, 720, tabButtonWidth, tabButtonHeight); + buttonAudioSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonAudioSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonAudioSection. + setText (lang.getString ("Audio")); + // Video Section + buttonVideoSection. + init (200, 720, tabButtonWidth, tabButtonHeight); + buttonVideoSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonVideoSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonVideoSection. + setText (lang.getString ("Video")); + //MiscSection + buttonMiscSection. + init (400, 700, tabButtonWidth, tabButtonHeight + 20); + buttonMiscSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonMiscSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonMiscSection. + setText (lang.getString ("Misc")); + //NetworkSettings + buttonNetworkSettings. + init (600, 720, tabButtonWidth, tabButtonHeight); + buttonNetworkSettings. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonNetworkSettings. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonNetworkSettings. + setText (lang.getString ("Network")); + + //KeyboardSetup + buttonKeyboardSetup. + init (800, 720, tabButtonWidth, tabButtonHeight); + buttonKeyboardSetup. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonKeyboardSetup. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonKeyboardSetup. + setText (lang.getString ("Keyboardsetup")); + + int + currentLine = 650; // reset line pos + int + currentLabelStart = leftLabelStart; // set to right side + int + currentColumnStart = leftColumnStart; // set to right side + + //lang + labelLang. + init (currentLabelStart, currentLine); + labelLang. + setText (lang.getString ("Language")); + + listBoxLang. + init (currentColumnStart, currentLine, 375); + vector < + string > + langResults; + + languageList = Lang::getInstance ().getDiscoveredLanguageList (true); + for (map < string, string >::iterator iterMap = languageList.begin (); + iterMap != languageList.end (); ++iterMap) + { + langResults.push_back (iterMap->first + "-" + iterMap->second); + } + + listBoxLang. + setItems (langResults); + + pair < + string, + string > + defaultLang = + Lang::getInstance ().getNavtiveNameFromLanguageName (config. + getString + ("Lang")); + if (defaultLang.first == "" && defaultLang.second == "") + { + defaultLang = + Lang::getInstance (). + getNavtiveNameFromLanguageName (Lang::getInstance (). + getDefaultLanguage ()); + } + listBoxLang. + setSelectedItem (defaultLang.second + "-" + defaultLang.first); + currentLine -= lineOffset; + + //playerName + labelPlayerNameLabel.init (currentLabelStart, currentLine); + labelPlayerNameLabel.setText (lang.getString ("Playername")); + + labelPlayerName.init (currentColumnStart, currentLine); + labelPlayerName.setText (config. + getString ("NetPlayerName", + Socket::getHostName ().c_str ())); + labelPlayerName.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelPlayerName.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); + labelPlayerName.setEditable (true); + labelPlayerName.setMaxEditWidth (16); + labelPlayerName.setMaxEditRenderWidth (200); + currentLine -= lineOffset; + + //FontSizeAdjustment + labelFontSizeAdjustment.init (currentLabelStart, currentLine); + labelFontSizeAdjustment.setText (lang. + getString ("FontSizeAdjustment")); + + listFontSizeAdjustment.init (currentColumnStart, currentLine, 80); + for (int i = -5; i <= 5; i += 1) + { + listFontSizeAdjustment.pushBackItem (intToStr (i)); + } + listFontSizeAdjustment. + setSelectedItem (intToStr (config.getInt ("FontSizeAdjustment"))); + + currentLine -= lineOffset; + // Screenshot type flag + labelScreenShotType.init (currentLabelStart, currentLine); + labelScreenShotType.setText (lang.getString ("ScreenShotFileType")); + + listBoxScreenShotType.init (currentColumnStart, currentLine, 80); + listBoxScreenShotType.pushBackItem ("bmp"); + listBoxScreenShotType.pushBackItem ("jpg"); + listBoxScreenShotType.pushBackItem ("png"); + listBoxScreenShotType.pushBackItem ("tga"); + listBoxScreenShotType.setSelectedItem (config. + getString + ("ScreenShotFileType", "jpg")); + + currentLine -= lineOffset; + + labelDisableScreenshotConsoleText.init (currentLabelStart, + currentLine); + labelDisableScreenshotConsoleText.setText (lang. + getString + ("ScreenShotConsoleText")); + + checkBoxDisableScreenshotConsoleText.init (currentColumnStart, + currentLine); + checkBoxDisableScreenshotConsoleText.setValue (!config. + getBool + ("DisableScreenshotConsoleText", + "false")); + + currentLine -= lineOffset; + + labelMouseMoveScrollsWorld.init (currentLabelStart, currentLine); + labelMouseMoveScrollsWorld.setText (lang. + getString ("MouseScrollsWorld")); + + checkBoxMouseMoveScrollsWorld.init (currentColumnStart, currentLine); + checkBoxMouseMoveScrollsWorld.setValue (config. + getBool + ("MouseMoveScrollsWorld", + "true")); + currentLine -= lineOffset; + + //CameraMoveSpeed + labelCameraMoveSpeed.init (currentLabelStart, currentLine); + labelCameraMoveSpeed.setText (lang.getString ("CameraMoveSpeed")); + + listCameraMoveSpeed.init (currentColumnStart, currentLine, 80); + for (int i = 15; i <= 50; i += 5) + { + listCameraMoveSpeed.pushBackItem (intToStr (i)); + } + listCameraMoveSpeed. + setSelectedItem (intToStr + ((int) + (config.getFloat ("CameraMoveSpeed", "15")))); + currentLine -= lineOffset; + + labelVisibleHud.init (currentLabelStart, currentLine); + labelVisibleHud.setText (lang.getString ("VisibleHUD")); + + checkBoxVisibleHud.init (currentColumnStart, currentLine); + checkBoxVisibleHud.setValue (config.getBool ("VisibleHud", "true")); + + currentLine -= lineOffset; + + labelHealthBars.init (currentLabelStart, currentLine); + labelHealthBars.setText (lang.getString ("Healthbar")); + + listBoxHealthBars.init (currentColumnStart, currentLine, 375); + listBoxHealthBars.pushBackItem (lang. + getString + ("HealthbarsFactionDefault")); + listBoxHealthBars.pushBackItem (lang.getString ("HealthbarsOff")); + listBoxHealthBars.pushBackItem (lang.getString ("HealthbarsAlways")); + listBoxHealthBars.pushBackItem (lang. + getString ("HealthbarsIfNeeded")); + listBoxHealthBars.pushBackItem (lang. + getString ("HealthbarsSelected")); + listBoxHealthBars.pushBackItem (lang. + getString + ("HealthbarsSelectedOrNeeded")); + + int + hpMode = config.getInt ("HealthBarMode", "4"); + int + hpIndex = 0; + switch (hpMode) + { + case hbvUndefined: + hpIndex = 0; + break; + case hbvOff: + hpIndex = 1; + break; + case hbvAlways: + hpIndex = 2; + break; + case hbvIfNeeded: + hpIndex = 3; + break; + case hbvSelected: + hpIndex = 4; + break; + case hbvSelected | hbvIfNeeded: + hpIndex = 5; + break; + default: + hpIndex = 0; + break; + } + + listBoxHealthBars.setSelectedItemIndex (hpIndex); + + currentLine -= lineOffset; + + labelChatStaysActive.init (currentLabelStart, currentLine); + labelChatStaysActive.setText (lang.getString ("ChatStaysActive")); + + checkBoxChatStaysActive.init (currentColumnStart, currentLine); + checkBoxChatStaysActive.setValue (config. + getBool ("ChatStaysActive", + "false")); + + currentLine -= lineOffset; + + labelTimeDisplay.init (currentLabelStart, currentLine); + labelTimeDisplay.setText (lang.getString ("TimeDisplay")); + + checkBoxTimeDisplay.init (currentColumnStart, currentLine); + checkBoxTimeDisplay.setValue (config.getBool ("TimeDisplay", "true")); + + currentLine -= lineOffset; + + labelLuaDisableSecuritySandbox.init (currentLabelStart, currentLine); + labelLuaDisableSecuritySandbox.setText (lang. + getString + ("LuaDisableSecuritySandbox")); + + checkBoxLuaDisableSecuritySandbox.init (currentColumnStart, + currentLine); + checkBoxLuaDisableSecuritySandbox.setValue (config. + getBool + ("DisableLuaSandbox", + "false")); + + luaMessageBox.init (lang.getString ("Yes"), lang.getString ("No")); + luaMessageBox.setEnabled (false); + luaMessageBoxState = 0; + + currentLine -= lineOffset; + + currentLine -= lineOffset / 2; + + // buttons + buttonOk.init (buttonStartPos, buttonRowPos, 100); + buttonOk.setText (lang.getString ("Save")); + + buttonReturn.init (buttonStartPos + 110, buttonRowPos, 100); + buttonReturn.setText (lang.getString ("Return")); + + // Transifex related UI + currentLine -= lineOffset * 3; + labelCustomTranslation.init (currentLabelStart, currentLine); + labelCustomTranslation.setText (lang.getString ("CustomTranslation")); + + checkBoxCustomTranslation.init (currentColumnStart, currentLine); + checkBoxCustomTranslation.setValue (false); + currentLine -= lineOffset; + + labelTransifexUserLabel.init (currentLabelStart, currentLine); + labelTransifexUserLabel.setText (lang. + getString ("TransifexUserName")); + + labelTransifexPwdLabel.init (currentLabelStart + 260, currentLine); + labelTransifexPwdLabel.setText (lang.getString ("TransifexPwd")); + + labelTransifexI18NLabel.init (currentLabelStart + 520, currentLine); + labelTransifexI18NLabel.setText (lang.getString ("TransifexI18N")); + + currentLine -= lineOffset; + + labelTransifexUser.init (currentLabelStart, currentLine); + labelTransifexUser.setEditable (true); + labelTransifexUser.setMaxEditWidth (28); + labelTransifexUser.setMaxEditRenderWidth (250); + labelTransifexUser.setText (config. + getString ("TranslationGetURLUser", + "")); + + labelTransifexPwd.init (currentLabelStart + 260, currentLine); + labelTransifexPwd.setIsPassword (true); + labelTransifexPwd.setEditable (true); + labelTransifexPwd.setMaxEditWidth (28); + labelTransifexPwd.setMaxEditRenderWidth (250); + labelTransifexPwd.setText (config. + getString ("TranslationGetURLPassword", + "")); + + labelTransifexI18N.init (currentLabelStart + 520, currentLine); + labelTransifexI18N.setEditable (true); + labelTransifexI18N.setMaxEditWidth (6); + labelTransifexI18N.setMaxEditRenderWidth (70); + labelTransifexI18N.setText (config. + getString ("TranslationGetURLLanguage", + "en")); + currentLine -= lineOffset; + + buttonGetNewLanguageFiles.init (currentLabelStart, currentLine, 250); + buttonGetNewLanguageFiles.setText (lang. + getString + ("TransifexGetLanguageFiles")); + + buttonDeleteNewLanguageFiles.init (currentLabelStart + 260, + currentLine, 250); + buttonDeleteNewLanguageFiles.setText (lang. + getString + ("TransifexDeleteLanguageFiles")); + + setupTransifexUI (); + + GraphicComponent::applyAllCustomProperties (containerName); + } + catch (exception & e) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error loading options: %s\n", + __FILE__, __FUNCTION__, __LINE__, + e.what ()); + throw + megaglest_runtime_error (string ("Error loading options msg: ") + + e.what ()); + } } - else if(buttonReturn.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - if(this->parentUI != NULL) { - *this->parentUI = NULL; - delete *this->parentUI; - } - mainMenu->setState(new MenuStateRoot(program, mainMenu)); - return; + + MenuStateOptions::~MenuStateOptions () + { } - else if(buttonKeyboardSetup.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateKeysetup(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - //showMessageBox("Not implemented yet", "Keyboard setup", false); - return; - } - else if(buttonAudioSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsSound(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonNetworkSettings.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsNetwork(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonMiscSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - //mainMenu->setState(new MenuStateOptions(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonVideoSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(checkBoxCustomTranslation.mouseClick(x, y)) { - setupTransifexUI(); - } - else if(buttonDeleteNewLanguageFiles.mouseClick(x, y)) { - soundRenderer.playFx(coreData.getClickSoundA()); - - setActiveInputLable(NULL); - - if(labelTransifexI18N.getText() != "") { - Lang &lang= Lang::getInstance(); - string language = lang.getLanguageFile(labelTransifexI18N.getText()); - replaceAll(language,"(",""); - replaceAll(language,")",""); - - if(language != "") { - bool foundFilesToDelete = false; - - Config &config = Config::getInstance(); - string data_path = config.getString("UserData_Root",""); - if(data_path != "") { - endPathWithSlash(data_path); - } - - if(data_path != "") { - - string txnURLFileListMapping = Config::getInstance().getString("TranslationGetURLFileListMapping"); - vector languageFileMappings; - Tokenize(txnURLFileListMapping,languageFileMappings,"|"); - - Config &config = Config::getInstance(); - - // Cleanup Scenarios - vector scenarioPaths = config.getPathListForType(ptScenarios); - if(scenarioPaths.size() > 1) { - string &scenarioPath = scenarioPaths[1]; - endPathWithSlash(scenarioPath); - - vector scenarioList; - findDirs(scenarioPath, scenarioList, false,false); - for(unsigned int i = 0; i < scenarioList.size(); ++i) { - string scenario = scenarioList[i]; - - vector langResults; - findAll(scenarioPath + scenario + "/*.lng", langResults, false, false); - for(unsigned int j = 0; j < langResults.size(); ++j) { - string testLanguage = langResults[j]; - - string removeLngFile = scenarioPath + scenario + "/" + testLanguage; - - if(EndsWith(testLanguage,language + ".lng") == true) { - - for(unsigned int k = 0; k < languageFileMappings.size(); ++k) { - string mapping = languageFileMappings[k]; - replaceAll(mapping,"$language",language); - - //printf("Comparing found [%s] with [%s]\n",removeLngFile.c_str(),mapping.c_str()); - - if(EndsWith(removeLngFile,mapping) == true) { - printf("About to delete file [%s]\n",removeLngFile.c_str()); - removeFile(removeLngFile); - foundFilesToDelete = true; - break; - } - } - } - } - } - } - - // Cleanup tutorials - vector tutorialPaths = config.getPathListForType(ptTutorials); - if(tutorialPaths.size() > 1) { - string &tutorialPath = tutorialPaths[1]; - endPathWithSlash(tutorialPath); - - vector tutorialList; - findDirs(tutorialPath, tutorialList, false, false); - for(unsigned int i = 0; i < tutorialList.size(); ++i) { - string tutorial = tutorialList[i]; - - vector langResults; - findAll(tutorialPath + tutorial + "/*.lng", langResults, false, false); - for(unsigned int j = 0; j < langResults.size(); ++j) { - string testLanguage = langResults[j]; - - string removeLngFile = tutorialPath + tutorial + "/" + testLanguage; - if(EndsWith(testLanguage,language + ".lng") == true) { - - - for(unsigned int k = 0; k < languageFileMappings.size(); ++k) { - string mapping = languageFileMappings[k]; - replaceAll(mapping,"$language",language); - - //printf("Comparing found [%s] with [%s]\n",removeLngFile.c_str(),mapping.c_str()); - - if(EndsWith(removeLngFile,mapping) == true) { - printf("About to delete file [%s]\n",removeLngFile.c_str()); - removeFile(removeLngFile); - foundFilesToDelete = true; - break; - } - } - } - } - } - } - - // Cleanup main and hint language files - string mainLngFile = data_path + "data/lang/" + language + ".lng"; - if(fileExists(mainLngFile) == true) { - - for(unsigned int k = 0; k < languageFileMappings.size(); ++k) { - string mapping = languageFileMappings[k]; - replaceAll(mapping,"$language",language); - - if(EndsWith(mainLngFile,mapping) == true) { - printf("About to delete file [%s]\n",mainLngFile.c_str()); - removeFile(mainLngFile); - foundFilesToDelete = true; - break; - } - } - } - - string hintLngFile = data_path + "data/lang/hint/hint_" + language + ".lng"; - if(fileExists(hintLngFile) == true) { - for(unsigned int k = 0; k < languageFileMappings.size(); ++k) { - string mapping = languageFileMappings[k]; - replaceAll(mapping,"$language",language); - - if(EndsWith(hintLngFile,mapping) == true) { - printf("About to delete file [%s]\n",hintLngFile.c_str()); - removeFile(hintLngFile); - foundFilesToDelete = true; - break; - } - } - } - } - - if(lang.isLanguageLocal(toLower(language)) == true) { - lang.loadGameStrings(toLower(language)); - } - - if(foundFilesToDelete == true) { - mainMessageBoxState=0; - Lang &lang= Lang::getInstance(); - showMessageBox(lang.getString("TransifexDeleteSuccess"), lang.getString("Notice"), false); - } - } - } - } - else if(buttonGetNewLanguageFiles.mouseClick(x, y)) { - soundRenderer.playFx(coreData.getClickSoundA()); - - setActiveInputLable(NULL); - - string orig_txnURLUser = Config::getInstance().getString("TranslationGetURLUser"); - //string orig_txnURLPwd = Config::getInstance().getString("TranslationGetURLPassword",""); - string orig_txnURLLang = Config::getInstance().getString("TranslationGetURLLanguage"); - - Config::getInstance().setString("TranslationGetURLUser",labelTransifexUser.getText()); - Config::getInstance().setString("TranslationGetURLPassword",labelTransifexPwd.getText(),true); - Config::getInstance().setString("TranslationGetURLLanguage",labelTransifexI18N.getText()); - - bool saveChanges = (orig_txnURLUser != labelTransifexUser.getText() || - orig_txnURLLang != labelTransifexI18N.getText()); - - string txnURL = Config::getInstance().getString("TranslationGetURL"); - string txnURLUser = Config::getInstance().getString("TranslationGetURLUser"); - string txnURLPwd = Config::getInstance().getString("TranslationGetURLPassword"); - string txnURLLang = Config::getInstance().getString("TranslationGetURLLanguage"); - string txnURLFileList = Config::getInstance().getString("TranslationGetURLFileList"); - string txnURLFileListMapping = Config::getInstance().getString("TranslationGetURLFileListMapping"); - - string txnURLDetails = Config::getInstance().getString("TranslationGetURLDetails"); - - string credentials = txnURLUser + ":" + txnURLPwd; - - printf("URL1 [%s] credentials [%s]\n",txnURL.c_str(),credentials.c_str()); - - //txnURLUser = SystemFlags::escapeURL(txnURLUser,handle); - //replaceAll(txnURL,"$user",txnURLUser); - - //printf("URL2 [%s]\n",txnURL.c_str()); - - //txnURLPwd = SystemFlags::escapeURL(txnURLPwd,handle); - //replaceAll(txnURL,"$password",txnURLPwd); - - //printf("URL3 [%s]\n",txnURL.c_str()); - - replaceAll(txnURL,"$language",txnURLLang); - - printf("URL4 [%s]\n",txnURL.c_str()); - - //txnURLFileList - vector languageFiles; - Tokenize(txnURLFileList,languageFiles,"|"); - - vector languageFileMappings; - Tokenize(txnURLFileListMapping,languageFileMappings,"|"); - - printf("URL5 file count = " MG_SIZE_T_SPECIFIER ", " MG_SIZE_T_SPECIFIER " [%s]\n",languageFiles.size(),languageFileMappings.size(),(languageFiles.empty() == false ? languageFiles[0].c_str() : "")); - - if(languageFiles.empty() == false) { - - bool gotDownloads = false; - bool reloadLanguage = false; - string langName = ""; - - CURL *handle = SystemFlags::initHTTP(); - for(unsigned int i = 0; i < languageFiles.size(); ++i) { - string fileURL = txnURL; - replaceAll(fileURL,"$file",languageFiles[i]); - - if(langName == "") { - // Get language name for file - string fileURLDetails = txnURLDetails; - replaceAll(fileURLDetails,"$file",languageFiles[0]); - - printf(" i = %u Trying [%s]\n",i,fileURLDetails.c_str()); - curl_easy_setopt(handle, CURLOPT_VERBOSE, 1); - curl_easy_setopt(handle, CURLOPT_SSL_VERIFYPEER, 0L); - curl_easy_setopt(handle, CURLOPT_USERPWD, credentials.c_str()); - std::string fileDataDetails = SystemFlags::getHTTP(fileURLDetails,handle); - - // "available_languages": [ - // { - // "code_aliases": " ", - // "code": "ca", - // "name": "Catalan" - // }, - // { - // "code_aliases": " ", - // "code": "zh", - // "name": "Chinese" - // }, - // curl -i -L --user softcoder -X GET https://www.transifex.com/api/2/project/megaglest/resource/main-language-file/?details - - string search_detail_key = "\"code\": \"" + txnURLLang + "\""; - size_t posDetails = fileDataDetails.find( search_detail_key, 0 ); - if( posDetails != fileDataDetails.npos ) { - posDetails = fileDataDetails.find( "\"name\": \"", posDetails+search_detail_key.length() ); - - if( posDetails != fileDataDetails.npos ) { - - size_t posDetailsEnd = fileDataDetails.find( "\"", posDetails + 9 ); - - langName = fileDataDetails.substr(posDetails + 9, posDetailsEnd - (posDetails + 9)); - replaceAll(langName,",",""); - replaceAll(langName,"\\",""); - replaceAll(langName,"/",""); - replaceAll(langName,"?",""); - replaceAll(langName,":",""); - replaceAll(langName,"@",""); - replaceAll(langName,"!",""); - replaceAll(langName,"*",""); - replaceAll(langName,"(",""); - replaceAll(langName,")",""); - langName = trim(langName); - replaceAll(langName," ","-"); - } - - printf("PARSED Language filename [%s]\n",langName.c_str()); - } - } - - printf("i = %u Trying [%s]\n",i,fileURL.c_str()); - curl_easy_setopt(handle, CURLOPT_VERBOSE, 1); - curl_easy_setopt(handle, CURLOPT_SSL_VERIFYPEER, 0L); - curl_easy_setopt(handle, CURLOPT_USERPWD, credentials.c_str()); - std::string fileData = SystemFlags::getHTTP(fileURL,handle); - - // "content": " - // ", - // "mimetype": "text/plain" - size_t pos = fileData.find( "\"content\": \"", 0 ); - if( pos != fileData.npos ) { - fileData = fileData.substr(pos+12, fileData.length()); - - pos = fileData.find( "\",\n", 0 ); - if( pos != fileData.npos ) { - fileData = fileData.substr(0, pos); - } - - replaceAll(fileData,"\\\\n","$requires-newline$"); - replaceAll(fileData,"\\n","\n"); - replaceAll(fileData,"$requires-newline$","\\n"); - - //replaceAll(fileData,""","\""); - replaceAllHTMLEntities(fileData); - - - printf("PARSED Language text\n[%s]\n",fileData.c_str()); - - //vector languageName; - //Tokenize(fileData,languageName," "); - //printf("PARSED Language Name guessed to be [%s]\n",languageName[1].c_str()); - - //string data_path= getGameReadWritePath(GameConstants::path_data_CacheLookupKey); - //if(data_path != ""){ - //endPathWithSlash(data_path); - //} - Config &config = Config::getInstance(); - string data_path = config.getString("UserData_Root",""); - if(data_path != "") { - endPathWithSlash(data_path); - } - - string outputFile = languageFileMappings[i]; - replaceAll(outputFile,"$language",toLower(langName)); - //string lngFile = getGameCustomCoreDataPath(data_path, "data/lang/" + toLower(languageName[1]) + ".lng"); - string lngFile = getGameCustomCoreDataPath(data_path, outputFile); - - string lngPath = extractDirectoryPathFromFile(lngFile); - createDirectoryPaths(lngPath); - - printf("Save data to Language Name [%s]\n",lngFile.c_str()); - saveDataToFile(lngFile, fileData); - gotDownloads = true; - - reloadLanguage = true; - if(saveChanges == true) { - saveChanges = false; - config.save(); - } - } - else { - printf("UNPARSED Language text\n[%s]\n",fileData.c_str()); - } - } - - SystemFlags::cleanupHTTP(&handle); - - if(reloadLanguage == true && langName != "") { - Lang &lang= Lang::getInstance(); - if(lang.isLanguageLocal(toLower(langName)) == true) { - lang.loadGameStrings(toLower(langName)); - } - } - - if(gotDownloads == true) { - mainMessageBoxState=0; - Lang &lang= Lang::getInstance(); - showMessageBox(lang.getString("TransifexDownloadSuccess") + "\n" + langName, lang.getString("Notice"), false); - } - } - return; - } - else if(labelPlayerName.mouseClick(x, y) && ( activeInputLabel != &labelPlayerName )){ - setActiveInputLable(&labelPlayerName); - } - else if(labelTransifexUser.mouseClick(x, y) && ( activeInputLabel != &labelTransifexUser )){ - setActiveInputLable(&labelTransifexUser); - } - else if(labelTransifexPwd.mouseClick(x, y) && ( activeInputLabel != &labelTransifexPwd )){ - setActiveInputLable(&labelTransifexPwd); - } - else if(labelTransifexI18N.mouseClick(x, y) && ( activeInputLabel != &labelTransifexI18N )){ - setActiveInputLable(&labelTransifexI18N); - } - else - { - listBoxLang.mouseClick(x, y); - listFontSizeAdjustment.mouseClick(x, y); - - listBoxScreenShotType.mouseClick(x, y); - - checkBoxDisableScreenshotConsoleText.mouseClick(x, y); - checkBoxMouseMoveScrollsWorld.mouseClick(x, y); - listCameraMoveSpeed.mouseClick(x, y); - checkBoxVisibleHud.mouseClick(x, y); - listBoxHealthBars.mouseClick(x, y); - checkBoxChatStaysActive.mouseClick(x, y); - checkBoxTimeDisplay.mouseClick(x, y); - checkBoxLuaDisableSecuritySandbox.mouseClick(x, y); - } -} - -void MenuStateOptions::mouseMove(int x, int y, const MouseState *ms){ - if (mainMessageBox.getEnabled()) { - mainMessageBox.mouseMove(x, y); - } - if (luaMessageBox.getEnabled()) { - luaMessageBox.mouseMove(x, y); - } - - buttonOk.mouseMove(x, y); - buttonReturn.mouseMove(x, y); - buttonKeyboardSetup.mouseMove(x, y); - buttonAudioSection.mouseMove(x, y); - buttonNetworkSettings.mouseMove(x, y); - buttonMiscSection.mouseMove(x, y); - buttonVideoSection.mouseMove(x, y); - buttonGetNewLanguageFiles.mouseMove(x, y); - buttonDeleteNewLanguageFiles.mouseMove(x, y); - listBoxLang.mouseMove(x, y); - listBoxLang.mouseMove(x, y); - listFontSizeAdjustment.mouseMove(x, y); - listBoxScreenShotType.mouseMove(x, y); - checkBoxDisableScreenshotConsoleText.mouseMove(x, y); - checkBoxMouseMoveScrollsWorld.mouseMove(x, y); - listCameraMoveSpeed.mouseMove(x, y); - listBoxHealthBars.mouseMove(x, y); - checkBoxVisibleHud.mouseMove(x, y); - checkBoxChatStaysActive.mouseMove(x, y); - checkBoxTimeDisplay.mouseMove(x, y); - checkBoxLuaDisableSecuritySandbox.mouseMove(x, y); - checkBoxCustomTranslation.mouseMove(x, y); -} - -bool MenuStateOptions::isInSpecialKeyCaptureEvent() { - return (activeInputLabel != NULL); -} - -void MenuStateOptions::keyDown(SDL_KeyboardEvent key) { - if(activeInputLabel != NULL) { - keyDownEditLabel(key, &activeInputLabel); - } -} - -bool MenuStateOptions::textInput(std::string text) { - if(activeInputLabel != NULL) { - //printf("[%d]\n",c); fflush(stdout); - if( &labelPlayerName == activeInputLabel || - &labelTransifexUser == activeInputLabel || - &labelTransifexPwd == activeInputLabel || - &labelTransifexI18N == activeInputLabel) { - return textInputEditLabel(text, &activeInputLabel); - } - } - return false; -} - -void MenuStateOptions::keyPress(SDL_KeyboardEvent c) { - if (activeInputLabel != NULL) { - keyPressEditLabel(c, &activeInputLabel); - } else { - Config &configKeys = Config::getInstance( - std::pair(cfgMainKeys, cfgUserKeys)); - if (isKeyPressed(configKeys.getSDLKey("SaveGUILayout"), c) == true) { - GraphicComponent::saveAllCustomProperties(containerName); - //Lang &lang= Lang::getInstance(); - //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } - } -} - -void MenuStateOptions::render(){ - Renderer &renderer= Renderer::getInstance(); -// char szBuf[8096]=""; -// snprintf(szBuf,8096,"\nIn [%s::%s Line: %d]\n\nRender options menu [%p]!\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,this); -// printf(szBuf); - - if(mainMessageBox.getEnabled()){ - renderer.renderMessageBox(&mainMessageBox); - } - else if(luaMessageBox.getEnabled()){ - renderer.renderMessageBox(&luaMessageBox); - } - else - { - renderer.renderButton(&buttonOk); - renderer.renderButton(&buttonReturn); - renderer.renderButton(&buttonKeyboardSetup); - renderer.renderButton(&buttonVideoSection); - renderer.renderButton(&buttonAudioSection); - renderer.renderButton(&buttonMiscSection); - renderer.renderButton(&buttonNetworkSettings); - - renderer.renderLabel(&labelCustomTranslation); - renderer.renderCheckBox(&checkBoxCustomTranslation); - - if(buttonGetNewLanguageFiles.getEnabled()) renderer.renderButton(&buttonGetNewLanguageFiles); - if(buttonDeleteNewLanguageFiles.getEnabled()) renderer.renderButton(&buttonDeleteNewLanguageFiles); - if(labelTransifexUserLabel.getEnabled()) renderer.renderLabel(&labelTransifexUserLabel); - if(labelTransifexPwdLabel.getEnabled()) renderer.renderLabel(&labelTransifexPwdLabel); - if(labelTransifexI18NLabel.getEnabled()) renderer.renderLabel(&labelTransifexI18NLabel); - if(labelTransifexUser.getEnabled()) renderer.renderLabel(&labelTransifexUser); - if(labelTransifexPwd.getEnabled()) renderer.renderLabel(&labelTransifexPwd); - if(labelTransifexI18N.getEnabled()) renderer.renderLabel(&labelTransifexI18N); - - renderer.renderListBox(&listBoxLang); - renderer.renderLabel(&labelLang); - renderer.renderLabel(&labelPlayerNameLabel); - renderer.renderLabel(&labelPlayerName); - renderer.renderListBox(&listFontSizeAdjustment); - renderer.renderLabel(&labelFontSizeAdjustment); - - renderer.renderLabel(&labelScreenShotType); - renderer.renderListBox(&listBoxScreenShotType); - - renderer.renderLabel(&labelDisableScreenshotConsoleText); - renderer.renderCheckBox(&checkBoxDisableScreenshotConsoleText); - - renderer.renderLabel(&labelMouseMoveScrollsWorld); - renderer.renderCheckBox(&checkBoxMouseMoveScrollsWorld); - renderer.renderLabel(&labelCameraMoveSpeed); - renderer.renderListBox(&listCameraMoveSpeed); - - renderer.renderLabel(&labelVisibleHud); - renderer.renderLabel(&labelHealthBars); - renderer.renderListBox(&listBoxHealthBars); - renderer.renderLabel(&labelChatStaysActive); - renderer.renderLabel(&labelTimeDisplay); - - renderer.renderLabel(&labelLuaDisableSecuritySandbox); - renderer.renderCheckBox(&checkBoxLuaDisableSecuritySandbox); - - renderer.renderCheckBox(&checkBoxVisibleHud); - renderer.renderCheckBox(&checkBoxChatStaysActive); - renderer.renderCheckBox(&checkBoxTimeDisplay); - - } - - renderer.renderConsole(&console); - if(program != NULL) program->renderProgramMsgBox(); -} - -void MenuStateOptions::saveConfig(){ - Config &config= Config::getInstance(); - Lang &lang= Lang::getInstance(); - setActiveInputLable(NULL); - - if(labelPlayerName.getText().length()>0) - { - config.setString("NetPlayerName", labelPlayerName.getText()); - } - //Copy values - map::iterator iterMap = languageList.begin(); - std::advance(iterMap, listBoxLang.getSelectedItemIndex()); - - config.setString("Lang", iterMap->first); - lang.loadGameStrings(config.getString("Lang")); - - config.setString("FontSizeAdjustment", listFontSizeAdjustment.getSelectedItem()); - config.setString("ScreenShotFileType", listBoxScreenShotType.getSelectedItem()); - - config.setBool("DisableScreenshotConsoleText", !checkBoxDisableScreenshotConsoleText.getValue()); - config.setBool("MouseMoveScrollsWorld", checkBoxMouseMoveScrollsWorld.getValue()); - config.setString("CameraMoveSpeed", listCameraMoveSpeed.getSelectedItem()); - - int hpIndex=listBoxHealthBars.getSelectedItemIndex(); - int hpMode=hbvUndefined; - switch (hpIndex) { - case 0: - hpMode = hbvUndefined; - break; - case 1: - hpMode = hbvOff; - break; - case 2: - hpMode = hbvAlways; - break; - case 3: - hpMode = hbvIfNeeded; - break; - case 4: - hpMode = hbvSelected; - break; - case 5: - hpMode = hbvSelected | hbvIfNeeded; - break; - default: - hpMode = hbvUndefined; - break; - } - - config.setInt("HealthBarMode",hpMode ); - config.setBool("VisibleHud", checkBoxVisibleHud.getValue()); - config.setBool("ChatStaysActive", checkBoxChatStaysActive.getValue()); - config.setBool("TimeDisplay", checkBoxTimeDisplay.getValue()); - - config.setBool("DisableLuaSandbox", checkBoxLuaDisableSecuritySandbox.getValue()); - config.save(); - - if(config.getBool("DisableLuaSandbox","false") == true) { - LuaScript::setDisableSandbox(true); - } - Renderer::getInstance().loadConfig(); - console.addLine(lang.getString("SettingsSaved")); -} - -void MenuStateOptions::setActiveInputLable(GraphicLabel *newLable) { - MenuState::setActiveInputLabel(newLable,&activeInputLabel); - - if(newLable == &labelTransifexPwd) { - labelTransifexPwd.setIsPassword(false); - } - else { - labelTransifexPwd.setIsPassword(true); - } -} - -}}//end namespace + + void + MenuStateOptions::reloadUI () + { + Lang & lang = Lang::getInstance (); + + mainMessageBox.init (lang.getString ("Ok")); + luaMessageBox.init (lang.getString ("Yes"), lang.getString ("No")); + + buttonAudioSection.setText (lang.getString ("Audio")); + buttonVideoSection.setText (lang.getString ("Video")); + buttonMiscSection.setText (lang.getString ("Misc")); + buttonNetworkSettings.setText (lang.getString ("Network")); + buttonKeyboardSetup.setText (lang.getString ("Keyboardsetup")); + + labelVisibleHud.setText (lang.getString ("VisibleHUD")); + labelHealthBars.setText (lang.getString ("Healthbar")); + labelChatStaysActive.setText (lang.getString ("ChatStaysActive")); + labelTimeDisplay.setText (lang.getString ("TimeDisplay")); + + labelLuaDisableSecuritySandbox.setText (lang. + getString + ("LuaDisableSecuritySandbox")); + labelLang.setText (lang.getString ("Language")); + labelPlayerNameLabel.setText (lang.getString ("Playername")); + labelFontSizeAdjustment.setText (lang.getString ("FontSizeAdjustment")); + labelScreenShotType.setText (lang.getString ("ScreenShotFileType")); + labelDisableScreenshotConsoleText.setText (lang. + getString + ("ScreenShotConsoleText")); + labelMouseMoveScrollsWorld.setText (lang. + getString ("MouseScrollsWorld")); + labelCameraMoveSpeed.setText (lang.getString ("CameraMoveSpeed")); + + buttonOk.setText (lang.getString ("Save")); + buttonReturn.setText (lang.getString ("Return")); + + labelCustomTranslation.setText (lang.getString ("CustomTranslation")); + buttonGetNewLanguageFiles.setText (lang. + getString + ("TransifexGetLanguageFiles")); + buttonDeleteNewLanguageFiles.setText (lang. + getString + ("TransifexDeleteLanguageFiles")); + labelTransifexUserLabel.setText (lang.getString ("TransifexUserName")); + labelTransifexPwdLabel.setText (lang.getString ("TransifexPwd")); + labelTransifexI18NLabel.setText (lang.getString ("TransifexI18N")); + } + + void + MenuStateOptions::setupTransifexUI () + { + buttonGetNewLanguageFiles.setEnabled (checkBoxCustomTranslation. + getValue ()); + buttonDeleteNewLanguageFiles.setEnabled (checkBoxCustomTranslation. + getValue ()); + labelTransifexUserLabel.setEnabled (checkBoxCustomTranslation. + getValue ()); + labelTransifexUser.setEnabled (checkBoxCustomTranslation.getValue ()); + labelTransifexPwdLabel.setEnabled (checkBoxCustomTranslation. + getValue ()); + labelTransifexPwd.setEnabled (checkBoxCustomTranslation.getValue ()); + labelTransifexI18NLabel.setEnabled (checkBoxCustomTranslation. + getValue ()); + labelTransifexI18N.setEnabled (checkBoxCustomTranslation.getValue ()); + } + + void + MenuStateOptions::showMessageBox (const string & text, + const string & header, bool toggle) + { + if (!toggle) + { + mainMessageBox.setEnabled (false); + } + + if (!mainMessageBox.getEnabled ()) + { + mainMessageBox.setText (text); + mainMessageBox.setHeader (header); + mainMessageBox.setEnabled (true); + } + else + { + mainMessageBox.setEnabled (false); + } + } + + void + MenuStateOptions::showLuaMessageBox (const string & text, + const string & header, bool toggle) + { + if (!toggle) + { + luaMessageBox.setEnabled (false); + } + + if (!luaMessageBox.getEnabled ()) + { + luaMessageBox.setText (text); + luaMessageBox.setHeader (header); + luaMessageBox.setEnabled (true); + } + else + { + luaMessageBox.setEnabled (false); + } + } + + void + MenuStateOptions::mouseClick (int x, int y, MouseButton mouseButton) + { + + Config & config = Config::getInstance (); + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + + if (mainMessageBox.getEnabled ()) + { + int + button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (button == 0) + { + if (mainMessageBoxState == 1) + { + mainMessageBoxState = 0; + mainMessageBox.setEnabled (false); + saveConfig (); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + } + else + { + mainMessageBox.setEnabled (false); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + } + } + else + { + if (mainMessageBoxState == 1) + { + mainMessageBoxState = 0; + mainMessageBox.setEnabled (false); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + } + } + } + } + else if (luaMessageBox.getEnabled ()) + { + int + button = 0; + if (luaMessageBox.mouseClick (x, y, button)) + { + checkBoxLuaDisableSecuritySandbox.setValue (false); + soundRenderer.playFx (coreData.getClickSoundA ()); + if (button == 0) + { + if (luaMessageBoxState == 1) + { + checkBoxLuaDisableSecuritySandbox.setValue (true); + } + } + luaMessageBox.setEnabled (false); + } + } + else if (checkBoxLuaDisableSecuritySandbox.mouseClick (x, y)) + { + if (checkBoxLuaDisableSecuritySandbox.getValue () == true) + { + checkBoxLuaDisableSecuritySandbox.setValue (false); + + luaMessageBoxState = 1; + Lang & lang = Lang::getInstance (); + showLuaMessageBox (lang. + getString ("LuaDisableSecuritySandboxWarning"), + lang.getString ("Question"), false); + } + } + else if (buttonOk.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + + string + currentFontSizeAdjustment = config.getString ("FontSizeAdjustment"); + string + selectedFontSizeAdjustment = + listFontSizeAdjustment.getSelectedItem (); + if (currentFontSizeAdjustment != selectedFontSizeAdjustment) + { + mainMessageBoxState = 1; + Lang & lang = Lang::getInstance (); + showMessageBox (lang.getString ("RestartNeeded"), + lang.getString ("FontSizeAdjustmentChanged"), + false); + return; + } + saveConfig (); + //mainMenu->setState(new MenuStateRoot(program, mainMenu)); + reloadUI (); + return; + } + else if (buttonReturn.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (this->parentUI != NULL) + { + *this->parentUI = NULL; + delete * + this-> + parentUI; + } + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + return; + } + else if (buttonKeyboardSetup.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateKeysetup (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + //showMessageBox("Not implemented yet", "Keyboard setup", false); + return; + } + else if (buttonAudioSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsSound (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonNetworkSettings.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsNetwork (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonMiscSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + //mainMenu->setState(new MenuStateOptions(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonVideoSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsGraphics (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (checkBoxCustomTranslation.mouseClick (x, y)) + { + setupTransifexUI (); + } + else if (buttonDeleteNewLanguageFiles.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + + setActiveInputLable (NULL); + + if (labelTransifexI18N.getText () != "") + { + Lang & lang = Lang::getInstance (); + string + language = lang.getLanguageFile (labelTransifexI18N.getText ()); + replaceAll (language, "(", ""); + replaceAll (language, ")", ""); + + if (language != "") + { + bool + foundFilesToDelete = false; + + Config & config = Config::getInstance (); + string + data_path = config.getString ("UserData_Root", ""); + if (data_path != "") + { + endPathWithSlash (data_path); + } + + if (data_path != "") + { + + string + txnURLFileListMapping = + Config::getInstance (). + getString ("TranslationGetURLFileListMapping"); + vector < string > languageFileMappings; + Tokenize (txnURLFileListMapping, languageFileMappings, "|"); + + Config & config = Config::getInstance (); + + // Cleanup Scenarios + vector < string > scenarioPaths = + config.getPathListForType (ptScenarios); + if (scenarioPaths.size () > 1) + { + string & scenarioPath = scenarioPaths[1]; + endPathWithSlash (scenarioPath); + + vector < string > scenarioList; + findDirs (scenarioPath, scenarioList, false, false); + for (unsigned int i = 0; i < scenarioList.size (); ++i) + { + string + scenario = scenarioList[i]; + + vector < string > langResults; + findAll (scenarioPath + scenario + "/*.lng", langResults, + false, false); + for (unsigned int j = 0; j < langResults.size (); ++j) + { + string + testLanguage = langResults[j]; + + string + removeLngFile = + scenarioPath + scenario + "/" + testLanguage; + + if (EndsWith (testLanguage, language + ".lng") == true) + { + + for (unsigned int k = 0; + k < languageFileMappings.size (); ++k) + { + string + mapping = languageFileMappings[k]; + replaceAll (mapping, "$language", language); + + //printf("Comparing found [%s] with [%s]\n",removeLngFile.c_str(),mapping.c_str()); + + if (EndsWith (removeLngFile, mapping) == true) + { + printf ("About to delete file [%s]\n", + removeLngFile.c_str ()); + removeFile (removeLngFile); + foundFilesToDelete = true; + break; + } + } + } + } + } + } + + // Cleanup tutorials + vector < string > tutorialPaths = + config.getPathListForType (ptTutorials); + if (tutorialPaths.size () > 1) + { + string & tutorialPath = tutorialPaths[1]; + endPathWithSlash (tutorialPath); + + vector < string > tutorialList; + findDirs (tutorialPath, tutorialList, false, false); + for (unsigned int i = 0; i < tutorialList.size (); ++i) + { + string + tutorial = tutorialList[i]; + + vector < string > langResults; + findAll (tutorialPath + tutorial + "/*.lng", langResults, + false, false); + for (unsigned int j = 0; j < langResults.size (); ++j) + { + string + testLanguage = langResults[j]; + + string + removeLngFile = + tutorialPath + tutorial + "/" + testLanguage; + if (EndsWith (testLanguage, language + ".lng") == true) + { + + + for (unsigned int k = 0; + k < languageFileMappings.size (); ++k) + { + string + mapping = languageFileMappings[k]; + replaceAll (mapping, "$language", language); + + //printf("Comparing found [%s] with [%s]\n",removeLngFile.c_str(),mapping.c_str()); + + if (EndsWith (removeLngFile, mapping) == true) + { + printf ("About to delete file [%s]\n", + removeLngFile.c_str ()); + removeFile (removeLngFile); + foundFilesToDelete = true; + break; + } + } + } + } + } + } + + // Cleanup main and hint language files + string + mainLngFile = data_path + "data/lang/" + language + ".lng"; + if (fileExists (mainLngFile) == true) + { + + for (unsigned int k = 0; k < languageFileMappings.size (); + ++k) + { + string + mapping = languageFileMappings[k]; + replaceAll (mapping, "$language", language); + + if (EndsWith (mainLngFile, mapping) == true) + { + printf ("About to delete file [%s]\n", + mainLngFile.c_str ()); + removeFile (mainLngFile); + foundFilesToDelete = true; + break; + } + } + } + + string + hintLngFile = + data_path + "data/lang/hint/hint_" + language + ".lng"; + if (fileExists (hintLngFile) == true) + { + for (unsigned int k = 0; k < languageFileMappings.size (); + ++k) + { + string + mapping = languageFileMappings[k]; + replaceAll (mapping, "$language", language); + + if (EndsWith (hintLngFile, mapping) == true) + { + printf ("About to delete file [%s]\n", + hintLngFile.c_str ()); + removeFile (hintLngFile); + foundFilesToDelete = true; + break; + } + } + } + } + + if (lang.isLanguageLocal (toLower (language)) == true) + { + lang.loadGameStrings (toLower (language)); + } + + if (foundFilesToDelete == true) + { + mainMessageBoxState = 0; + Lang & lang = Lang::getInstance (); + showMessageBox (lang.getString ("TransifexDeleteSuccess"), + lang.getString ("Notice"), false); + } + } + } + } + else if (buttonGetNewLanguageFiles.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + + setActiveInputLable (NULL); + + string + orig_txnURLUser = + Config::getInstance ().getString ("TranslationGetURLUser"); + //string orig_txnURLPwd = Config::getInstance().getString("TranslationGetURLPassword",""); + string + orig_txnURLLang = + Config::getInstance ().getString ("TranslationGetURLLanguage"); + + Config::getInstance ().setString ("TranslationGetURLUser", + labelTransifexUser.getText ()); + Config::getInstance ().setString ("TranslationGetURLPassword", + labelTransifexPwd.getText (), true); + Config::getInstance ().setString ("TranslationGetURLLanguage", + labelTransifexI18N.getText ()); + + bool + saveChanges = (orig_txnURLUser != labelTransifexUser.getText () || + orig_txnURLLang != labelTransifexI18N.getText ()); + + string + txnURL = Config::getInstance ().getString ("TranslationGetURL"); + string + txnURLUser = + Config::getInstance ().getString ("TranslationGetURLUser"); + string + txnURLPwd = + Config::getInstance ().getString ("TranslationGetURLPassword"); + string + txnURLLang = + Config::getInstance ().getString ("TranslationGetURLLanguage"); + string + txnURLFileList = + Config::getInstance ().getString ("TranslationGetURLFileList"); + string + txnURLFileListMapping = + Config::getInstance (). + getString ("TranslationGetURLFileListMapping"); + + string + txnURLDetails = + Config::getInstance ().getString ("TranslationGetURLDetails"); + + string + credentials = txnURLUser + ":" + txnURLPwd; + + printf ("URL1 [%s] credentials [%s]\n", txnURL.c_str (), + credentials.c_str ()); + + //txnURLUser = SystemFlags::escapeURL(txnURLUser,handle); + //replaceAll(txnURL,"$user",txnURLUser); + + //printf("URL2 [%s]\n",txnURL.c_str()); + + //txnURLPwd = SystemFlags::escapeURL(txnURLPwd,handle); + //replaceAll(txnURL,"$password",txnURLPwd); + + //printf("URL3 [%s]\n",txnURL.c_str()); + + replaceAll (txnURL, "$language", txnURLLang); + + printf ("URL4 [%s]\n", txnURL.c_str ()); + + //txnURLFileList + vector < string > languageFiles; + Tokenize (txnURLFileList, languageFiles, "|"); + + vector < string > languageFileMappings; + Tokenize (txnURLFileListMapping, languageFileMappings, "|"); + + printf ("URL5 file count = " MG_SIZE_T_SPECIFIER ", " + MG_SIZE_T_SPECIFIER " [%s]\n", languageFiles.size (), + languageFileMappings.size (), + (languageFiles.empty () == + false ? languageFiles[0].c_str () : "")); + + if (languageFiles.empty () == false) + { + + bool + gotDownloads = false; + bool + reloadLanguage = false; + string + langName = ""; + + CURL * + handle = SystemFlags::initHTTP (); + for (unsigned int i = 0; i < languageFiles.size (); ++i) + { + string + fileURL = txnURL; + replaceAll (fileURL, "$file", languageFiles[i]); + + if (langName == "") + { + // Get language name for file + string + fileURLDetails = txnURLDetails; + replaceAll (fileURLDetails, "$file", languageFiles[0]); + + printf (" i = %u Trying [%s]\n", i, fileURLDetails.c_str ()); + curl_easy_setopt (handle, CURLOPT_VERBOSE, 1); + curl_easy_setopt (handle, CURLOPT_SSL_VERIFYPEER, 0L); + curl_easy_setopt (handle, CURLOPT_USERPWD, + credentials.c_str ()); + std::string fileDataDetails = + SystemFlags::getHTTP (fileURLDetails, handle); + + // "available_languages": [ + // { + // "code_aliases": " ", + // "code": "ca", + // "name": "Catalan" + // }, + // { + // "code_aliases": " ", + // "code": "zh", + // "name": "Chinese" + // }, + // curl -i -L --user softcoder -X GET https://www.transifex.com/api/2/project/megaglest/resource/main-language-file/?details + + string + search_detail_key = "\"code\": \"" + txnURLLang + "\""; + size_t + posDetails = fileDataDetails.find (search_detail_key, 0); + if (posDetails != fileDataDetails.npos) + { + posDetails = + fileDataDetails.find ("\"name\": \"", + posDetails + + search_detail_key.length ()); + + if (posDetails != fileDataDetails.npos) + { + + size_t + posDetailsEnd = + fileDataDetails.find ("\"", posDetails + 9); + + langName = + fileDataDetails.substr (posDetails + 9, + posDetailsEnd - (posDetails + 9)); + replaceAll (langName, ",", ""); + replaceAll (langName, "\\", ""); + replaceAll (langName, "/", ""); + replaceAll (langName, "?", ""); + replaceAll (langName, ":", ""); + replaceAll (langName, "@", ""); + replaceAll (langName, "!", ""); + replaceAll (langName, "*", ""); + replaceAll (langName, "(", ""); + replaceAll (langName, ")", ""); + langName = trim (langName); + replaceAll (langName, " ", "-"); + } + + printf ("PARSED Language filename [%s]\n", langName.c_str ()); + } + } + + printf ("i = %u Trying [%s]\n", i, fileURL.c_str ()); + curl_easy_setopt (handle, CURLOPT_VERBOSE, 1); + curl_easy_setopt (handle, CURLOPT_SSL_VERIFYPEER, 0L); + curl_easy_setopt (handle, CURLOPT_USERPWD, credentials.c_str ()); + std::string fileData = SystemFlags::getHTTP (fileURL, handle); + + // "content": " + // ", + // "mimetype": "text/plain" + size_t + pos = fileData.find ("\"content\": \"", 0); + if (pos != fileData.npos) + { + fileData = fileData.substr (pos + 12, fileData.length ()); + + pos = fileData.find ("\",\n", 0); + if (pos != fileData.npos) + { + fileData = fileData.substr (0, pos); + } + + replaceAll (fileData, "\\\\n", "$requires-newline$"); + replaceAll (fileData, "\\n", "\n"); + replaceAll (fileData, "$requires-newline$", "\\n"); + + //replaceAll(fileData,""","\""); + replaceAllHTMLEntities (fileData); + + + printf ("PARSED Language text\n[%s]\n", fileData.c_str ()); + + //vector languageName; + //Tokenize(fileData,languageName," "); + //printf("PARSED Language Name guessed to be [%s]\n",languageName[1].c_str()); + + //string data_path= getGameReadWritePath(GameConstants::path_data_CacheLookupKey); + //if(data_path != ""){ + //endPathWithSlash(data_path); + //} + Config & config = Config::getInstance (); + string + data_path = config.getString ("UserData_Root", ""); + if (data_path != "") + { + endPathWithSlash (data_path); + } + + string + outputFile = languageFileMappings[i]; + replaceAll (outputFile, "$language", toLower (langName)); + //string lngFile = getGameCustomCoreDataPath(data_path, "data/lang/" + toLower(languageName[1]) + ".lng"); + string + lngFile = getGameCustomCoreDataPath (data_path, outputFile); + + string + lngPath = extractDirectoryPathFromFile (lngFile); + createDirectoryPaths (lngPath); + + printf ("Save data to Language Name [%s]\n", lngFile.c_str ()); + saveDataToFile (lngFile, fileData); + gotDownloads = true; + + reloadLanguage = true; + if (saveChanges == true) + { + saveChanges = false; + config.save (); + } + } + else + { + printf ("UNPARSED Language text\n[%s]\n", fileData.c_str ()); + } + } + + SystemFlags::cleanupHTTP (&handle); + + if (reloadLanguage == true && langName != "") + { + Lang & lang = Lang::getInstance (); + if (lang.isLanguageLocal (toLower (langName)) == true) + { + lang.loadGameStrings (toLower (langName)); + } + } + + if (gotDownloads == true) + { + mainMessageBoxState = 0; + Lang & lang = Lang::getInstance (); + showMessageBox (lang.getString ("TransifexDownloadSuccess") + + "\n" + langName, lang.getString ("Notice"), + false); + } + } + return; + } + else if (labelPlayerName.mouseClick (x, y) + && (activeInputLabel != &labelPlayerName)) + { + setActiveInputLable (&labelPlayerName); + } + else if (labelTransifexUser.mouseClick (x, y) + && (activeInputLabel != &labelTransifexUser)) + { + setActiveInputLable (&labelTransifexUser); + } + else if (labelTransifexPwd.mouseClick (x, y) + && (activeInputLabel != &labelTransifexPwd)) + { + setActiveInputLable (&labelTransifexPwd); + } + else if (labelTransifexI18N.mouseClick (x, y) + && (activeInputLabel != &labelTransifexI18N)) + { + setActiveInputLable (&labelTransifexI18N); + } + else + { + listBoxLang.mouseClick (x, y); + listFontSizeAdjustment.mouseClick (x, y); + + listBoxScreenShotType.mouseClick (x, y); + + checkBoxDisableScreenshotConsoleText.mouseClick (x, y); + checkBoxMouseMoveScrollsWorld.mouseClick (x, y); + listCameraMoveSpeed.mouseClick (x, y); + checkBoxVisibleHud.mouseClick (x, y); + listBoxHealthBars.mouseClick (x, y); + checkBoxChatStaysActive.mouseClick (x, y); + checkBoxTimeDisplay.mouseClick (x, y); + checkBoxLuaDisableSecuritySandbox.mouseClick (x, y); + } + } + + void + MenuStateOptions::mouseMove (int x, int y, const MouseState * ms) + { + if (mainMessageBox.getEnabled ()) + { + mainMessageBox.mouseMove (x, y); + } + if (luaMessageBox.getEnabled ()) + { + luaMessageBox.mouseMove (x, y); + } + + buttonOk.mouseMove (x, y); + buttonReturn.mouseMove (x, y); + buttonKeyboardSetup.mouseMove (x, y); + buttonAudioSection.mouseMove (x, y); + buttonNetworkSettings.mouseMove (x, y); + buttonMiscSection.mouseMove (x, y); + buttonVideoSection.mouseMove (x, y); + buttonGetNewLanguageFiles.mouseMove (x, y); + buttonDeleteNewLanguageFiles.mouseMove (x, y); + listBoxLang.mouseMove (x, y); + listBoxLang.mouseMove (x, y); + listFontSizeAdjustment.mouseMove (x, y); + listBoxScreenShotType.mouseMove (x, y); + checkBoxDisableScreenshotConsoleText.mouseMove (x, y); + checkBoxMouseMoveScrollsWorld.mouseMove (x, y); + listCameraMoveSpeed.mouseMove (x, y); + listBoxHealthBars.mouseMove (x, y); + checkBoxVisibleHud.mouseMove (x, y); + checkBoxChatStaysActive.mouseMove (x, y); + checkBoxTimeDisplay.mouseMove (x, y); + checkBoxLuaDisableSecuritySandbox.mouseMove (x, y); + checkBoxCustomTranslation.mouseMove (x, y); + } + + bool + MenuStateOptions::isInSpecialKeyCaptureEvent () + { + return (activeInputLabel != NULL); + } + + void + MenuStateOptions::keyDown (SDL_KeyboardEvent key) + { + if (activeInputLabel != NULL) + { + keyDownEditLabel (key, &activeInputLabel); + } + } + + bool + MenuStateOptions::textInput (std::string text) + { + if (activeInputLabel != NULL) + { + //printf("[%d]\n",c); fflush(stdout); + if (&labelPlayerName == activeInputLabel || + &labelTransifexUser == activeInputLabel || + &labelTransifexPwd == activeInputLabel || + &labelTransifexI18N == activeInputLabel) + { + return textInputEditLabel (text, &activeInputLabel); + } + } + return false; + } + + void + MenuStateOptions::keyPress (SDL_KeyboardEvent c) + { + if (activeInputLabel != NULL) + { + keyPressEditLabel (c, &activeInputLabel); + } + else + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), c) == true) + { + GraphicComponent::saveAllCustomProperties (containerName); + //Lang &lang= Lang::getInstance(); + //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); + } + } + } + + void + MenuStateOptions::render () + { + Renderer & renderer = Renderer::getInstance (); +// char szBuf[8096]=""; +// snprintf(szBuf,8096,"\nIn [%s::%s Line: %d]\n\nRender options menu [%p]!\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,this); +// printf(szBuf); + + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + else if (luaMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&luaMessageBox); + } + else + { + renderer.renderButton (&buttonOk); + renderer.renderButton (&buttonReturn); + renderer.renderButton (&buttonKeyboardSetup); + renderer.renderButton (&buttonVideoSection); + renderer.renderButton (&buttonAudioSection); + renderer.renderButton (&buttonMiscSection); + renderer.renderButton (&buttonNetworkSettings); + + renderer.renderLabel (&labelCustomTranslation); + renderer.renderCheckBox (&checkBoxCustomTranslation); + + if (buttonGetNewLanguageFiles.getEnabled ()) + renderer.renderButton (&buttonGetNewLanguageFiles); + if (buttonDeleteNewLanguageFiles.getEnabled ()) + renderer.renderButton (&buttonDeleteNewLanguageFiles); + if (labelTransifexUserLabel.getEnabled ()) + renderer.renderLabel (&labelTransifexUserLabel); + if (labelTransifexPwdLabel.getEnabled ()) + renderer.renderLabel (&labelTransifexPwdLabel); + if (labelTransifexI18NLabel.getEnabled ()) + renderer.renderLabel (&labelTransifexI18NLabel); + if (labelTransifexUser.getEnabled ()) + renderer.renderLabel (&labelTransifexUser); + if (labelTransifexPwd.getEnabled ()) + renderer.renderLabel (&labelTransifexPwd); + if (labelTransifexI18N.getEnabled ()) + renderer.renderLabel (&labelTransifexI18N); + + renderer.renderListBox (&listBoxLang); + renderer.renderLabel (&labelLang); + renderer.renderLabel (&labelPlayerNameLabel); + renderer.renderLabel (&labelPlayerName); + renderer.renderListBox (&listFontSizeAdjustment); + renderer.renderLabel (&labelFontSizeAdjustment); + + renderer.renderLabel (&labelScreenShotType); + renderer.renderListBox (&listBoxScreenShotType); + + renderer.renderLabel (&labelDisableScreenshotConsoleText); + renderer.renderCheckBox (&checkBoxDisableScreenshotConsoleText); + + renderer.renderLabel (&labelMouseMoveScrollsWorld); + renderer.renderCheckBox (&checkBoxMouseMoveScrollsWorld); + renderer.renderLabel (&labelCameraMoveSpeed); + renderer.renderListBox (&listCameraMoveSpeed); + + renderer.renderLabel (&labelVisibleHud); + renderer.renderLabel (&labelHealthBars); + renderer.renderListBox (&listBoxHealthBars); + renderer.renderLabel (&labelChatStaysActive); + renderer.renderLabel (&labelTimeDisplay); + + renderer.renderLabel (&labelLuaDisableSecuritySandbox); + renderer.renderCheckBox (&checkBoxLuaDisableSecuritySandbox); + + renderer.renderCheckBox (&checkBoxVisibleHud); + renderer.renderCheckBox (&checkBoxChatStaysActive); + renderer.renderCheckBox (&checkBoxTimeDisplay); + + } + + renderer.renderConsole (&console); + if (program != NULL) + program->renderProgramMsgBox (); + } + + void + MenuStateOptions::saveConfig () + { + Config & config = Config::getInstance (); + Lang & lang = Lang::getInstance (); + setActiveInputLable (NULL); + + if (labelPlayerName.getText ().length () > 0) + { + config.setString ("NetPlayerName", labelPlayerName.getText ()); + } + //Copy values + map < string, string >::iterator iterMap = languageList.begin (); + std::advance (iterMap, listBoxLang.getSelectedItemIndex ()); + + config.setString ("Lang", iterMap->first); + lang.loadGameStrings (config.getString ("Lang")); + + config.setString ("FontSizeAdjustment", + listFontSizeAdjustment.getSelectedItem ()); + config.setString ("ScreenShotFileType", + listBoxScreenShotType.getSelectedItem ()); + + config.setBool ("DisableScreenshotConsoleText", + !checkBoxDisableScreenshotConsoleText.getValue ()); + config.setBool ("MouseMoveScrollsWorld", + checkBoxMouseMoveScrollsWorld.getValue ()); + config.setString ("CameraMoveSpeed", + listCameraMoveSpeed.getSelectedItem ()); + + int + hpIndex = listBoxHealthBars.getSelectedItemIndex (); + int + hpMode = hbvUndefined; + switch (hpIndex) + { + case 0: + hpMode = hbvUndefined; + break; + case 1: + hpMode = hbvOff; + break; + case 2: + hpMode = hbvAlways; + break; + case 3: + hpMode = hbvIfNeeded; + break; + case 4: + hpMode = hbvSelected; + break; + case 5: + hpMode = hbvSelected | hbvIfNeeded; + break; + default: + hpMode = hbvUndefined; + break; + } + + config.setInt ("HealthBarMode", hpMode); + config.setBool ("VisibleHud", checkBoxVisibleHud.getValue ()); + config.setBool ("ChatStaysActive", checkBoxChatStaysActive.getValue ()); + config.setBool ("TimeDisplay", checkBoxTimeDisplay.getValue ()); + + config.setBool ("DisableLuaSandbox", + checkBoxLuaDisableSecuritySandbox.getValue ()); + config.save (); + + if (config.getBool ("DisableLuaSandbox", "false") == true) + { + LuaScript::setDisableSandbox (true); + } + Renderer::getInstance ().loadConfig (); + console.addLine (lang.getString ("SettingsSaved")); + } + + void + MenuStateOptions::setActiveInputLable (GraphicLabel * newLable) + { + MenuState::setActiveInputLabel (newLable, &activeInputLabel); + + if (newLable == &labelTransifexPwd) + { + labelTransifexPwd.setIsPassword (false); + } + else + { + labelTransifexPwd.setIsPassword (true); + } + } + + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_options.h b/source/glest_game/menu/menu_state_options.h index ed6689b5c..48653bb3a 100644 --- a/source/glest_game/menu/menu_state_options.h +++ b/source/glest_game/menu/menu_state_options.h @@ -1,117 +1,124 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATEOPTIONS_H_ -#define _GLEST_GAME_MENUSTATEOPTIONS_H_ +# define _GLEST_GAME_MENUSTATEOPTIONS_H_ -#include "main_menu.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class MenuStateOptions +// class MenuStateOptions // =============================== -class MenuStateOptions: public MenuState{ -private: - GraphicButton buttonOk; - GraphicButton buttonReturn; + class MenuStateOptions:public MenuState + { + private: + GraphicButton buttonOk; + GraphicButton buttonReturn; - GraphicLabel labelLang; - GraphicListBox listBoxLang; - GraphicLabel labelPlayerName; - GraphicLabel labelPlayerNameLabel; - GraphicLabel *activeInputLabel; + GraphicLabel labelLang; + GraphicListBox listBoxLang; + GraphicLabel labelPlayerName; + GraphicLabel labelPlayerNameLabel; + GraphicLabel *activeInputLabel; - GraphicButton buttonKeyboardSetup; // configure the keyboard - GraphicButton buttonVideoSection; - GraphicButton buttonAudioSection; - GraphicButton buttonMiscSection; - GraphicButton buttonNetworkSettings; + GraphicButton buttonKeyboardSetup; // configure the keyboard + GraphicButton buttonVideoSection; + GraphicButton buttonAudioSection; + GraphicButton buttonMiscSection; + GraphicButton buttonNetworkSettings; - GraphicLabel labelFontSizeAdjustment; - GraphicListBox listFontSizeAdjustment; + GraphicLabel labelFontSizeAdjustment; + GraphicListBox listFontSizeAdjustment; - GraphicMessageBox mainMessageBox; - int mainMessageBoxState; + GraphicMessageBox mainMessageBox; + int mainMessageBoxState; - GraphicLabel labelScreenShotType; - GraphicListBox listBoxScreenShotType; + GraphicLabel labelScreenShotType; + GraphicListBox listBoxScreenShotType; - GraphicLabel labelDisableScreenshotConsoleText; - GraphicCheckBox checkBoxDisableScreenshotConsoleText; + GraphicLabel labelDisableScreenshotConsoleText; + GraphicCheckBox checkBoxDisableScreenshotConsoleText; - GraphicLabel labelMouseMoveScrollsWorld; - GraphicCheckBox checkBoxMouseMoveScrollsWorld; + GraphicLabel labelMouseMoveScrollsWorld; + GraphicCheckBox checkBoxMouseMoveScrollsWorld; - GraphicLabel labelCameraMoveSpeed; - GraphicListBox listCameraMoveSpeed; + GraphicLabel labelCameraMoveSpeed; + GraphicListBox listCameraMoveSpeed; - GraphicLabel labelVisibleHud; - GraphicCheckBox checkBoxVisibleHud; - GraphicLabel labelHealthBars; - GraphicListBox listBoxHealthBars; + GraphicLabel labelVisibleHud; + GraphicCheckBox checkBoxVisibleHud; + GraphicLabel labelHealthBars; + GraphicListBox listBoxHealthBars; - GraphicLabel labelTimeDisplay; - GraphicCheckBox checkBoxTimeDisplay; - GraphicLabel labelChatStaysActive; - GraphicCheckBox checkBoxChatStaysActive; + GraphicLabel labelTimeDisplay; + GraphicCheckBox checkBoxTimeDisplay; + GraphicLabel labelChatStaysActive; + GraphicCheckBox checkBoxChatStaysActive; - GraphicLabel labelLuaDisableSecuritySandbox; - GraphicCheckBox checkBoxLuaDisableSecuritySandbox; + GraphicLabel labelLuaDisableSecuritySandbox; + GraphicCheckBox checkBoxLuaDisableSecuritySandbox; - GraphicMessageBox luaMessageBox; - int luaMessageBoxState; + GraphicMessageBox luaMessageBox; + int luaMessageBoxState; - map languageList; + map < string, string > languageList; - GraphicLabel labelCustomTranslation; - GraphicCheckBox checkBoxCustomTranslation; + GraphicLabel labelCustomTranslation; + GraphicCheckBox checkBoxCustomTranslation; - GraphicButton buttonGetNewLanguageFiles; - GraphicButton buttonDeleteNewLanguageFiles; - GraphicLabel labelTransifexUserLabel; - GraphicLabel labelTransifexUser; - GraphicLabel labelTransifexPwdLabel; - GraphicLabel labelTransifexPwd; - GraphicLabel labelTransifexI18NLabel; - GraphicLabel labelTransifexI18N; + GraphicButton buttonGetNewLanguageFiles; + GraphicButton buttonDeleteNewLanguageFiles; + GraphicLabel labelTransifexUserLabel; + GraphicLabel labelTransifexUser; + GraphicLabel labelTransifexPwdLabel; + GraphicLabel labelTransifexPwd; + GraphicLabel labelTransifexI18NLabel; + GraphicLabel labelTransifexI18N; - ProgramState **parentUI; + ProgramState **parentUI; -public: - MenuStateOptions(Program *program, MainMenu *mainMenu, ProgramState **parentUI=NULL); - virtual ~MenuStateOptions(); + public: + MenuStateOptions (Program * program, MainMenu * mainMenu, + ProgramState ** parentUI = NULL); + virtual ~ MenuStateOptions (); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - virtual bool textInput(std::string text); - virtual void keyDown(SDL_KeyboardEvent key); - virtual void keyPress(SDL_KeyboardEvent c); - virtual bool isInSpecialKeyCaptureEvent(); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void render (); + virtual bool textInput (std::string text); + virtual void keyDown (SDL_KeyboardEvent key); + virtual void keyPress (SDL_KeyboardEvent c); + virtual bool isInSpecialKeyCaptureEvent (); - virtual void reloadUI(); + virtual void reloadUI (); -private: - void saveConfig(); - void setActiveInputLable(GraphicLabel* newLable); - void showMessageBox(const string &text, const string &header, bool toggle); - void showLuaMessageBox(const string &text, const string &header, bool toggle); + private: + void saveConfig (); + void setActiveInputLable (GraphicLabel * newLable); + void showMessageBox (const string & text, const string & header, + bool toggle); + void showLuaMessageBox (const string & text, const string & header, + bool toggle); - void setupTransifexUI(); -}; + void setupTransifexUI (); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_options_graphics.cpp b/source/glest_game/menu/menu_state_options_graphics.cpp index 71d5c6e6c..33b530ce7 100644 --- a/source/glest_game/menu/menu_state_options_graphics.cpp +++ b/source/glest_game/menu/menu_state_options_graphics.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_options_graphics.h" @@ -29,928 +29,1171 @@ #include "metrics.h" #include "leak_dumper.h" -using namespace Shared::Util; - -namespace Glest{ namespace Game{ - -// ===================================================== -// class MenuStateOptions -// ===================================================== -MenuStateOptionsGraphics::MenuStateOptionsGraphics(Program *program, MainMenu *mainMenu, ProgramState **parentUI) : - MenuState(program, mainMenu, "config"), - buttonOk("Options_Graphics","buttonOk"), - buttonReturn("Options_Graphics","buttonReturn"), - buttonAutoConfig("Options_Graphics","buttonAutoConfig"), - buttonVideoInfo("Options_Graphics","buttonVideoInfo"), - - buttonKeyboardSetup("Options_Graphics","buttonKeyboardSetup"), - buttonVideoSection("Options_Graphics","buttonVideoSection"), - buttonAudioSection("Options_Graphics","buttonAudioSection"), - buttonMiscSection("Options_Graphics","buttonMiscSection"), - buttonNetworkSettings("Options_Graphics","buttonNetworkSettings"), - - labelShadows("Options_Graphics","labelShadows"), - listBoxShadows("Options_Graphics","listBoxShadows"), - labelFilter("Options_Graphics","labelFilter"), - listBoxFilter("Options_Graphics","listBoxFilter"), - labelFilterMaxAnisotropy("Options_Graphics","labelFilterMaxAnisotropy"), - listBoxFilterMaxAnisotropy("Options_Graphics","listBoxFilterMaxAnisotropy"), - - labelTextures3D("Options_Graphics","labelTextures3D"), - checkBoxTextures3D("Options_Graphics","checkBoxTextures3D"), - labelLights("Options_Graphics","labelLights"), - listBoxLights("Options_Graphics","listBoxLights"), - labelUnitParticles("Options_Graphics","labelUnitParticles"), - checkBoxUnitParticles("Options_Graphics","checkBoxUnitParticles"), - - labelTilesetParticles("Options_Graphics","labelTilesetParticles"), - checkBoxTilesetParticles("Options_Graphics","checkBoxTilesetParticles"), - labelAnimatedTilesetObjects("Options_Graphics","labelAnimatedTilesetObjects"), - listBoxAnimatedTilesetObjects("Options_Graphics","listBoxAnimatedTilesetObjects"), - - labelScreenModes("Options_Graphics","labelScreenModes"), - listBoxScreenModes("Options_Graphics","listBoxScreenModes"), - - labelFullscreenWindowed("Options_Graphics","labelFullscreenWindowed"), - checkBoxFullscreenWindowed("Options_Graphics","checkBoxFullscreenWindowed"), - - labelMapPreview("Options_Graphics","labelMapPreview"), - checkBoxMapPreview("Options_Graphics","checkBoxMapPreview"), - - mainMessageBox("Options_Graphics","mainMessageBox"), - - labelEnableTextureCompression("Options_Graphics","labelEnableTextureCompression"), - checkBoxEnableTextureCompression("Options_Graphics","checkBoxEnableTextureCompression"), - - labelRainEffect("Options_Graphics","labelRainEffect"), - labelRainEffectSeparator("Options_Graphics","labelRainEffectSeparator"), - checkBoxRainEffect("Options_Graphics","checkBoxRainEffect"), - checkBoxRainEffectMenu("Options_Graphics","checkBoxRainEffectMenu"), - - labelGammaCorrection("Options_Graphics","labelGammaCorrection"), - listBoxGammaCorrection("Options_Graphics","listBoxGammaCorrection"), - - labelShadowIntensity("Options_Graphics","labelShadowIntensity"), - listBoxShadowIntensity("Options_Graphics","listBoxShadowIntensity"), - - labelShadowTextureSize("Options_Graphics","labelShadowTextureSize"), - listBoxShadowTextureSize("Options_Graphics","listBoxShadowTextureSize"), - - labelVideos("Options_Graphics","labelVideos"), - checkBoxVideos("Options_Graphics","checkBoxVideos"), - - labelSelectionType("Options_Graphics","labelSelectionType"), - listBoxSelectionType("Options_Graphics","listBoxSelectionType") +using namespace + Shared::Util; +namespace + Glest { - try { - containerName = "Options_Graphics"; - this->parentUI=parentUI; - Lang &lang= Lang::getInstance(); - Config &config= Config::getInstance(); - this->console.setOnlyChatMessagesInStoredLines(false); - screenModeChangedTimer= time(NULL); // just init - - ::Shared::PlatformCommon::getFullscreenVideoModes(&modeInfos,!config.getBool("Windowed")); - - int leftLabelStart=100; - int leftColumnStart=leftLabelStart+300; - int buttonRowPos=50; - int buttonStartPos=170; - int lineOffset=30; - int tabButtonWidth=200; - int tabButtonHeight=30; - - mainMessageBox.init(lang.getString("Ok")); - mainMessageBox.setEnabled(false); - mainMessageBoxState=0; - - buttonAudioSection.init(0, 720,tabButtonWidth,tabButtonHeight); - buttonAudioSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonAudioSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonAudioSection.setText(lang.getString("Audio")); - // Video Section - buttonVideoSection.init(200, 700,tabButtonWidth,tabButtonHeight+20); - buttonVideoSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonVideoSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonVideoSection.setText(lang.getString("Video")); - //MiscSection - buttonMiscSection.init(400, 720,tabButtonWidth,tabButtonHeight); - buttonMiscSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonMiscSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonMiscSection.setText(lang.getString("Misc")); - //NetworkSettings - buttonNetworkSettings.init(600, 720,tabButtonWidth,tabButtonHeight); - buttonNetworkSettings.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonNetworkSettings.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonNetworkSettings.setText(lang.getString("Network")); - - //KeyboardSetup - buttonKeyboardSetup.init(800, 720,tabButtonWidth,tabButtonHeight); - buttonKeyboardSetup.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonKeyboardSetup.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonKeyboardSetup.setText(lang.getString("Keyboardsetup")); - - int currentLine=650; // reset line pos - int currentLabelStart=leftLabelStart; // set to right side - int currentColumnStart=leftColumnStart; // set to right side - - //resolution - labelScreenModes.init(currentLabelStart, currentLine); - labelScreenModes.setText(lang.getString("Resolution")); - - listBoxScreenModes.init(currentColumnStart, currentLine, 200); - - string currentResString = config.getString("ScreenWidth") + "x" + - config.getString("ScreenHeight") + "-" + - intToStr(config.getInt("ColorBits")); - bool currentResolutionFound = false; - for(vector::const_iterator it= modeInfos.begin(); it!=modeInfos.end(); ++it){ - if((*it).getString() == currentResString) { - currentResolutionFound = true; - } - listBoxScreenModes.pushBackItem((*it).getString()); - } - if(currentResolutionFound == false) { - listBoxScreenModes.pushBackItem(currentResString); - } - listBoxScreenModes.setSelectedItem(currentResString); - currentLine-=lineOffset; - - - //FullscreenWindowed - labelFullscreenWindowed.init(currentLabelStart, currentLine); - - checkBoxFullscreenWindowed.init(currentColumnStart, currentLine); - labelFullscreenWindowed.setText(lang.getString("Windowed")); - checkBoxFullscreenWindowed.setValue(config.getBool("Windowed")); - currentLine-=lineOffset; - - //gammaCorrection - labelGammaCorrection.init(currentLabelStart, currentLine); - labelGammaCorrection.setText(lang.getString("GammaCorrection")); - - listBoxGammaCorrection.init(currentColumnStart, currentLine, 200); - for (float f=0.5;f<3.0f;f=f+0.1f) { - listBoxGammaCorrection.pushBackItem(floatToStr(f)); - } - float gammaValue=config.getFloat("GammaValue","1.0"); - if(gammaValue==0.0f) gammaValue=1.0f; - listBoxGammaCorrection.setSelectedItem(floatToStr(gammaValue),false); - - currentLine-=lineOffset; - - //filter - labelFilter.init(currentLabelStart, currentLine); - labelFilter.setText(lang.getString("Filter")); - - listBoxFilter.init(currentColumnStart, currentLine, 200); - listBoxFilter.pushBackItem("Bilinear"); - listBoxFilter.pushBackItem("Trilinear"); - listBoxFilter.setSelectedItem(config.getString("Filter")); - currentLine-=lineOffset; - - //FilterMaxAnisotropy - labelFilterMaxAnisotropy.init(currentLabelStart, currentLine); - labelFilterMaxAnisotropy.setText(lang.getString("FilterMaxAnisotropy")); - - listBoxFilterMaxAnisotropy.init(currentColumnStart, currentLine, 200); - listBoxFilterMaxAnisotropy.pushBackItem("1"); - listBoxFilterMaxAnisotropy.pushBackItem("2"); - listBoxFilterMaxAnisotropy.pushBackItem("4"); - listBoxFilterMaxAnisotropy.pushBackItem("8"); - listBoxFilterMaxAnisotropy.pushBackItem("16"); - listBoxFilterMaxAnisotropy.setSelectedItem(config.getString("FilterMaxAnisotropy","1")); - currentLine-=lineOffset; - - //selectionType - labelSelectionType.init(currentLabelStart, currentLine); - labelSelectionType.setText(lang.getString("SelectionType")); - - listBoxSelectionType.init(currentColumnStart, currentLine, 250); - listBoxSelectionType.pushBackItem("SelectBuffer (nvidia)"); - listBoxSelectionType.pushBackItem("ColorPicking (default)"); - listBoxSelectionType.pushBackItem("FrustumPicking (bad)"); - - const string selectionType=toLower(config.getString("SelectionType",Config::colorPicking)); - if( selectionType==Config::colorPicking) - listBoxSelectionType.setSelectedItemIndex(1); - else if ( selectionType==Config::frustumPicking ) - listBoxSelectionType.setSelectedItemIndex(2); - else - listBoxSelectionType.setSelectedItemIndex(0); - currentLine-=lineOffset; - - //shadows - labelShadows.init(currentLabelStart, currentLine); - labelShadows.setText(lang.getString("Shadows")); - - listBoxShadows.init(currentColumnStart, currentLine, 250); - for(int i= 0; i(i)))); - } - string str= config.getString("Shadows"); - listBoxShadows.setSelectedItemIndex(clamp(Renderer::strToShadows(str), 0, Renderer::sCount-1)); - currentLine-=lineOffset; - - //shadows - labelShadowTextureSize.init(currentLabelStart, currentLine); - labelShadowTextureSize.setText(lang.getString("ShadowTextureSize")); - - listBoxShadowTextureSize.init(currentColumnStart, currentLine, 200); - listBoxShadowTextureSize.pushBackItem("256"); - listBoxShadowTextureSize.pushBackItem("512"); - listBoxShadowTextureSize.pushBackItem("1024"); - listBoxShadowTextureSize.setSelectedItemIndex(1,false); - listBoxShadowTextureSize.setSelectedItem(intToStr(config.getInt("ShadowTextureSize","512")),false); - currentLine-=lineOffset; - - //shadows - labelShadowIntensity.init(currentLabelStart, currentLine); - labelShadowIntensity.setText(lang.getString("ShadowIntensity")); - - listBoxShadowIntensity.init(currentColumnStart, currentLine, 200); - for (float f=0.5f;f<3.0f;f=f+0.1f) { - listBoxShadowIntensity.pushBackItem(floatToStr(f)); - } - float shadowIntensity=config.getFloat("ShadowIntensity","1.0"); - if(shadowIntensity<=0.0f) shadowIntensity=1.0f; - listBoxShadowIntensity.setSelectedItem(floatToStr(shadowIntensity),false); - - currentLine-=lineOffset; - - //textures 3d - labelTextures3D.init(currentLabelStart, currentLine); - - checkBoxTextures3D.init(currentColumnStart, currentLine); - labelTextures3D.setText(lang.getString("Textures3D")); - checkBoxTextures3D.setValue(config.getBool("Textures3D")); - currentLine-=lineOffset; - - //lights - labelLights.init(currentLabelStart, currentLine); - labelLights.setText(lang.getString("MaxLights")); - - listBoxLights.init(currentColumnStart, currentLine, 80); - for(int i= 1; i<=8; ++i){ - listBoxLights.pushBackItem(intToStr(i)); - } - listBoxLights.setSelectedItemIndex(clamp(config.getInt("MaxLights")-1, 0, 7)); - currentLine-=lineOffset; - - //unit particles - labelUnitParticles.init(currentLabelStart,currentLine); - labelUnitParticles.setText(lang.getString("ShowUnitParticles")); - - checkBoxUnitParticles.init(currentColumnStart,currentLine); - checkBoxUnitParticles.setValue(config.getBool("UnitParticles","true")); - currentLine-=lineOffset; - - //tileset particles - labelTilesetParticles.init(currentLabelStart,currentLine); - labelTilesetParticles.setText(lang.getString("ShowTilesetParticles")); - - checkBoxTilesetParticles.init(currentColumnStart,currentLine); - checkBoxTilesetParticles.setValue(config.getBool("TilesetParticles","true")); - currentLine-=lineOffset; - - //animated tileset objects - labelAnimatedTilesetObjects.init(currentLabelStart,currentLine); - labelAnimatedTilesetObjects.setText(lang.getString("AnimatedTilesetObjects")); - - listBoxAnimatedTilesetObjects.init(currentColumnStart, currentLine, 80); - listBoxAnimatedTilesetObjects.pushBackItem("0"); - listBoxAnimatedTilesetObjects.pushBackItem("10"); - listBoxAnimatedTilesetObjects.pushBackItem("25"); - listBoxAnimatedTilesetObjects.pushBackItem("50"); - listBoxAnimatedTilesetObjects.pushBackItem("100"); - listBoxAnimatedTilesetObjects.pushBackItem("300"); - listBoxAnimatedTilesetObjects.pushBackItem("500"); - listBoxAnimatedTilesetObjects.pushBackItem("∞"); - listBoxAnimatedTilesetObjects.setSelectedItem("∞",true); - listBoxAnimatedTilesetObjects.setSelectedItem(config.getString("AnimatedTilesetObjects","-1"),false); - currentLine-=lineOffset; - - //unit particles - labelMapPreview.init(currentLabelStart,currentLine); - labelMapPreview.setText(lang.getString("ShowMapPreview")); - - checkBoxMapPreview.init(currentColumnStart,currentLine); - checkBoxMapPreview.setValue(config.getBool("MapPreview","true")); - currentLine-=lineOffset; - - // Texture Compression flag - labelEnableTextureCompression.init(currentLabelStart ,currentLine); - labelEnableTextureCompression.setText(lang.getString("EnableTextureCompression")); - - checkBoxEnableTextureCompression.init(currentColumnStart ,currentLine ); - checkBoxEnableTextureCompression.setValue(config.getBool("EnableTextureCompression","false")); - currentLine-=lineOffset; - - labelRainEffect.init(currentLabelStart ,currentLine); - labelRainEffect.setText(lang.getString("RainEffectMenuGame")); - - checkBoxRainEffectMenu.init(currentColumnStart ,currentLine ); - checkBoxRainEffectMenu.setValue(config.getBool("RainEffectMenu","true")); - - labelRainEffectSeparator.init(currentColumnStart+30 ,currentLine); - labelRainEffectSeparator.setText("/"); - - checkBoxRainEffect.init(currentColumnStart+42 ,currentLine ); - checkBoxRainEffect.setValue(config.getBool("RainEffect","true")); - currentLine-=lineOffset; - - labelVideos.init(currentLabelStart ,currentLine); - labelVideos.setText(lang.getString("EnableVideos")); - - checkBoxVideos.init(currentColumnStart ,currentLine ); - checkBoxVideos.setValue(config.getBool("EnableVideos","true")); - - // end - - // external server port - - // buttons - buttonOk.init(buttonStartPos, buttonRowPos, 100); - buttonOk.setText(lang.getString("Save")); - buttonReturn.setText(lang.getString("Return")); - - buttonReturn.init(buttonStartPos+110, buttonRowPos, 100); - buttonAutoConfig.setText(lang.getString("AutoConfig")); - - buttonAutoConfig.init(buttonStartPos+230, buttonRowPos, 175); - - buttonVideoInfo.setText(lang.getString("VideoInfo")); - buttonVideoInfo.init(buttonStartPos+415, buttonRowPos, 175); // was 620 - - GraphicComponent::applyAllCustomProperties(containerName); - } - catch(exception &e) { - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error loading options: %s\n",__FILE__,__FUNCTION__,__LINE__,e.what()); - throw megaglest_runtime_error(string("Error loading options msg: ") + e.what()); - } -} - -void MenuStateOptionsGraphics::reloadUI() { - Lang &lang= Lang::getInstance(); - - mainMessageBox.init(lang.getString("Ok")); - - buttonAudioSection.setText(lang.getString("Audio")); - buttonVideoSection.setText(lang.getString("Video")); - buttonMiscSection.setText(lang.getString("Misc")); - buttonNetworkSettings.setText(lang.getString("Network")); - - std::vector listboxData; - listboxData.push_back("None"); - listboxData.push_back("OpenAL"); - - labelScreenModes.setText(lang.getString("Resolution")); - - labelFullscreenWindowed.setText(lang.getString("Windowed")); - labelFilter.setText(lang.getString("Filter")); - - listboxData.clear(); - listboxData.push_back("Bilinear"); - listboxData.push_back("Trilinear"); - listBoxFilter.setItems(listboxData); - - labelFilterMaxAnisotropy.setText(lang.getString("FilterMaxAnisotropy")); - listboxData.clear(); - listboxData.push_back("1"); - listboxData.push_back("2"); - listboxData.push_back("4"); - listboxData.push_back("8"); - listboxData.push_back("16"); - listBoxFilterMaxAnisotropy.setItems(listboxData); - - listboxData.clear(); - for (float f=0.0;f<2.1f;f=f+0.1f) { - listboxData.push_back(floatToStr(f)); - } - listBoxGammaCorrection.setItems(listboxData); - - - listboxData.clear(); - for (float f=0.5;f<3.0f;f=f+0.1f) { - listboxData.push_back(floatToStr(f)); - } - listBoxShadowIntensity.setItems(listboxData); - - - labelShadows.setText(lang.getString("Shadows")); - labelShadowTextureSize.setText(lang.getString("ShadowTextureSize")); - - labelShadowIntensity.setText(lang.getString("ShadowIntensity")); - labelGammaCorrection.setText(lang.getString("GammaCorrection")); - - listboxData.clear(); - for(int i= 0; i(i)))); - } - listBoxShadows.setItems(listboxData); - - labelTextures3D.setText(lang.getString("Textures3D")); - labelLights.setText(lang.getString("MaxLights")); - labelUnitParticles.setText(lang.getString("ShowUnitParticles")); - labelTilesetParticles.setText(lang.getString("ShowTilesetParticles")); - labelAnimatedTilesetObjects.setText(lang.getString("AnimatedTilesetObjects")); - labelMapPreview.setText(lang.getString("ShowMapPreview")); - labelEnableTextureCompression.setText(lang.getString("EnableTextureCompression")); - labelRainEffect.setText(lang.getString("RainEffectMenuGame")); - labelVideos.setText(lang.getString("EnableVideos")); - - buttonOk.setText(lang.getString("Save")); - buttonReturn.setText(lang.getString("Return")); - buttonAutoConfig.setText(lang.getString("AutoConfig")); - buttonVideoInfo.setText(lang.getString("VideoInfo")); - - labelSelectionType.setText(lang.getString("SelectionType")); -} - - -void MenuStateOptionsGraphics::showMessageBox(const string &text, const string &header, bool toggle){ - if(!toggle){ - mainMessageBox.setEnabled(false); - } - - if(!mainMessageBox.getEnabled()){ - mainMessageBox.setText(text); - mainMessageBox.setHeader(header); - mainMessageBox.setEnabled(true); - } - else{ - mainMessageBox.setEnabled(false); - } -} - -void MenuStateOptionsGraphics::revertScreenMode(){ - Config &config= Config::getInstance(); - //!!! - // Revert resolution or fullscreen - checkBoxFullscreenWindowed.setValue(config.getBool("Windowed")); - string currentResString = config.getString("ScreenWidth") + "x" + - config.getString("ScreenHeight") + "-" + - intToStr(config.getInt("ColorBits")); - listBoxScreenModes.setSelectedItem(currentResString); - - - changeVideoModeFullScreen(!config.getBool("Windowed")); - WindowGl *window = this->program->getWindow(); - window->ChangeVideoMode(true, - config.getInt("ScreenWidth"), - config.getInt("ScreenHeight"), - !config.getBool("Windowed"), - config.getInt("ColorBits"), - config.getInt("DepthBits"), - config.getInt("StencilBits"), - config.getBool("HardwareAcceleration","false"), - config.getBool("FullScreenAntiAliasing","false"), - config.getFloat("GammaValue","0.0")); - Metrics::reload(this->program->getWindow()->getScreenWidth(), - this->program->getWindow()->getScreenHeight()); - window->setText(config.getString("WindowTitle","MegaGlest")); - - this->mainMenu->init(); -} - -void MenuStateOptionsGraphics::update(){ - if(mainMessageBox.getEnabled() && (mainMessageBoxState == 1)) { - int waitTime=10; - if(( time(NULL) - screenModeChangedTimer >waitTime)){ - mainMessageBoxState=0; - mainMessageBox.setEnabled(false); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - - revertScreenMode(); - } - else - { - Lang &lang= Lang::getInstance(); - int timeToShow=waitTime- time(NULL) + screenModeChangedTimer; - // show timer in button - mainMessageBox.getButton(0)->setText(lang.getString("Ok")+" ("+intToStr(timeToShow)+")"); - } - } -} - -void MenuStateOptionsGraphics::mouseClick(int x, int y, MouseButton mouseButton){ - - Config &config= Config::getInstance(); - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - - - if(mainMessageBox.getEnabled()) { - int button= 0; - - if(mainMessageBox.mouseClick(x, y, button)) { - soundRenderer.playFx(coreData.getClickSoundA()); - if(button == 0) { - if(mainMessageBoxState == 1) { - mainMessageBoxState=0; - mainMessageBox.setEnabled(false); - saveConfig(); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - //mainMenu->setState(new MenuStateOptions(program, mainMenu)); - } - else { - mainMessageBox.setEnabled(false); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - } - } - else { - if(mainMessageBoxState == 1) { - mainMessageBoxState=0; - mainMessageBox.setEnabled(false); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - - revertScreenMode(); - } - } - } - } - else if(buttonOk.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - Lang &lang= Lang::getInstance(); - bool selectedFullscreenWindowed = checkBoxFullscreenWindowed.getValue(); - string currentResolution=config.getString("ScreenWidth")+"x"+config.getString("ScreenHeight")+"-"+intToStr(config.getInt("ColorBits")); - string selectedResolution=listBoxScreenModes.getSelectedItem(); - bool currentFullscreenWindowed=config.getBool("Windowed"); - if(currentResolution != selectedResolution || currentFullscreenWindowed != selectedFullscreenWindowed){ - - changeVideoModeFullScreen(!selectedFullscreenWindowed); - const ModeInfo *selectedMode = NULL; - for(vector::const_iterator it= modeInfos.begin(); it!=modeInfos.end(); ++it) { - if((*it).getString() == selectedResolution) { - //config.setInt("ScreenWidth",(*it).width); - //config.setInt("ScreenHeight",(*it).height); - //config.setInt("ColorBits",(*it).depth); - selectedMode = &(*it); - } - } - if(selectedMode == NULL) { // if we cannot find the selectedResolution we try it with current one - for(vector::const_iterator it= modeInfos.begin(); it!=modeInfos.end(); ++it) { - if((*it).getString() == currentResolution) { - //config.setInt("ScreenWidth",(*it).width); - //config.setInt("ScreenHeight",(*it).height); - //config.setInt("ColorBits",(*it).depth); - selectedMode = &(*it); - } - } - } - if(selectedMode == NULL) { - throw megaglest_runtime_error("selectedMode == NULL"); - } + namespace + Game + { + +// ===================================================== +// class MenuStateOptions +// ===================================================== + MenuStateOptionsGraphics::MenuStateOptionsGraphics (Program * program, + MainMenu * mainMenu, + ProgramState ** + parentUI): + MenuState (program, mainMenu, "config"), + buttonOk ("Options_Graphics", "buttonOk"), + buttonReturn ("Options_Graphics", "buttonReturn"), + buttonAutoConfig ("Options_Graphics", "buttonAutoConfig"), + buttonVideoInfo ("Options_Graphics", "buttonVideoInfo"), + buttonKeyboardSetup ("Options_Graphics", "buttonKeyboardSetup"), + buttonVideoSection ("Options_Graphics", "buttonVideoSection"), + buttonAudioSection ("Options_Graphics", "buttonAudioSection"), + buttonMiscSection ("Options_Graphics", "buttonMiscSection"), + buttonNetworkSettings ("Options_Graphics", "buttonNetworkSettings"), + labelShadows ("Options_Graphics", "labelShadows"), + listBoxShadows ("Options_Graphics", "listBoxShadows"), + labelFilter ("Options_Graphics", "labelFilter"), + listBoxFilter ("Options_Graphics", "listBoxFilter"), + labelFilterMaxAnisotropy ("Options_Graphics", "labelFilterMaxAnisotropy"), + listBoxFilterMaxAnisotropy ("Options_Graphics", + "listBoxFilterMaxAnisotropy"), + labelTextures3D ("Options_Graphics", "labelTextures3D"), + checkBoxTextures3D ("Options_Graphics", "checkBoxTextures3D"), + labelLights ("Options_Graphics", "labelLights"), + listBoxLights ("Options_Graphics", "listBoxLights"), + labelUnitParticles ("Options_Graphics", "labelUnitParticles"), + checkBoxUnitParticles ("Options_Graphics", "checkBoxUnitParticles"), + labelTilesetParticles ("Options_Graphics", "labelTilesetParticles"), + checkBoxTilesetParticles ("Options_Graphics", "checkBoxTilesetParticles"), + labelAnimatedTilesetObjects ("Options_Graphics", + "labelAnimatedTilesetObjects"), + listBoxAnimatedTilesetObjects ("Options_Graphics", + "listBoxAnimatedTilesetObjects"), + labelScreenModes ("Options_Graphics", "labelScreenModes"), + listBoxScreenModes ("Options_Graphics", "listBoxScreenModes"), + labelFullscreenWindowed ("Options_Graphics", "labelFullscreenWindowed"), + checkBoxFullscreenWindowed ("Options_Graphics", + "checkBoxFullscreenWindowed"), + labelMapPreview ("Options_Graphics", "labelMapPreview"), + checkBoxMapPreview ("Options_Graphics", "checkBoxMapPreview"), + mainMessageBox ("Options_Graphics", "mainMessageBox"), + labelEnableTextureCompression ("Options_Graphics", + "labelEnableTextureCompression"), + checkBoxEnableTextureCompression ("Options_Graphics", + "checkBoxEnableTextureCompression"), + labelRainEffect ("Options_Graphics", "labelRainEffect"), + labelRainEffectSeparator ("Options_Graphics", "labelRainEffectSeparator"), + checkBoxRainEffect ("Options_Graphics", "checkBoxRainEffect"), + checkBoxRainEffectMenu ("Options_Graphics", "checkBoxRainEffectMenu"), + labelGammaCorrection ("Options_Graphics", "labelGammaCorrection"), + listBoxGammaCorrection ("Options_Graphics", "listBoxGammaCorrection"), + labelShadowIntensity ("Options_Graphics", "labelShadowIntensity"), + listBoxShadowIntensity ("Options_Graphics", "listBoxShadowIntensity"), + labelShadowTextureSize ("Options_Graphics", "labelShadowTextureSize"), + listBoxShadowTextureSize ("Options_Graphics", "listBoxShadowTextureSize"), + labelVideos ("Options_Graphics", "labelVideos"), + checkBoxVideos ("Options_Graphics", "checkBoxVideos"), + labelSelectionType ("Options_Graphics", "labelSelectionType"), + listBoxSelectionType ("Options_Graphics", "listBoxSelectionType") + { + try + { + containerName = "Options_Graphics"; + this-> + parentUI = parentUI; + Lang & + lang = Lang::getInstance (); + Config & + config = Config::getInstance (); + this-> + console. + setOnlyChatMessagesInStoredLines (false); + screenModeChangedTimer = time (NULL); // just init + + ::Shared::PlatformCommon::getFullscreenVideoModes (&modeInfos, + !config. + getBool + ("Windowed")); + + int + leftLabelStart = 100; + int + leftColumnStart = leftLabelStart + 300; + int + buttonRowPos = 50; + int + buttonStartPos = 170; + int + lineOffset = 30; + int + tabButtonWidth = 200; + int + tabButtonHeight = 30; + + mainMessageBox. + init (lang.getString ("Ok")); + mainMessageBox. + setEnabled (false); + mainMessageBoxState = 0; + + buttonAudioSection. + init (0, 720, tabButtonWidth, tabButtonHeight); + buttonAudioSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonAudioSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonAudioSection. + setText (lang.getString ("Audio")); + // Video Section + buttonVideoSection. + init (200, 700, tabButtonWidth, tabButtonHeight + 20); + buttonVideoSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonVideoSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonVideoSection. + setText (lang.getString ("Video")); + //MiscSection + buttonMiscSection. + init (400, 720, tabButtonWidth, tabButtonHeight); + buttonMiscSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonMiscSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonMiscSection. + setText (lang.getString ("Misc")); + //NetworkSettings + buttonNetworkSettings. + init (600, 720, tabButtonWidth, tabButtonHeight); + buttonNetworkSettings. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonNetworkSettings. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonNetworkSettings. + setText (lang.getString ("Network")); + + //KeyboardSetup + buttonKeyboardSetup. + init (800, 720, tabButtonWidth, tabButtonHeight); + buttonKeyboardSetup. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonKeyboardSetup. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonKeyboardSetup. + setText (lang.getString ("Keyboardsetup")); + + int + currentLine = 650; // reset line pos + int + currentLabelStart = leftLabelStart; // set to right side + int + currentColumnStart = leftColumnStart; // set to right side + + //resolution + labelScreenModes. + init (currentLabelStart, currentLine); + labelScreenModes. + setText (lang.getString ("Resolution")); + + listBoxScreenModes. + init (currentColumnStart, currentLine, 200); + + string + currentResString = config.getString ("ScreenWidth") + "x" + + config.getString ("ScreenHeight") + "-" + + intToStr (config.getInt ("ColorBits")); + bool + currentResolutionFound = false; + for (vector < ModeInfo >::const_iterator it = modeInfos.begin (); + it != modeInfos.end (); ++it) + { + if ((*it).getString () == currentResString) + { + currentResolutionFound = true; + } + listBoxScreenModes. + pushBackItem ((*it).getString ()); + } + if (currentResolutionFound == false) + { + listBoxScreenModes.pushBackItem (currentResString); + } + listBoxScreenModes.setSelectedItem (currentResString); + currentLine -= lineOffset; + + + //FullscreenWindowed + labelFullscreenWindowed.init (currentLabelStart, currentLine); + + checkBoxFullscreenWindowed.init (currentColumnStart, currentLine); + labelFullscreenWindowed.setText (lang.getString ("Windowed")); + checkBoxFullscreenWindowed.setValue (config.getBool ("Windowed")); + currentLine -= lineOffset; + + //gammaCorrection + labelGammaCorrection.init (currentLabelStart, currentLine); + labelGammaCorrection.setText (lang.getString ("GammaCorrection")); + + listBoxGammaCorrection.init (currentColumnStart, currentLine, 200); + for (float f = 0.5; f < 3.0f; f = f + 0.1f) + { + listBoxGammaCorrection.pushBackItem (floatToStr (f)); + } + float + gammaValue = config.getFloat ("GammaValue", "1.0"); + if (gammaValue == 0.0f) + gammaValue = 1.0f; + listBoxGammaCorrection.setSelectedItem (floatToStr (gammaValue), + false); + + currentLine -= lineOffset; + + //filter + labelFilter.init (currentLabelStart, currentLine); + labelFilter.setText (lang.getString ("Filter")); + + listBoxFilter.init (currentColumnStart, currentLine, 200); + listBoxFilter.pushBackItem ("Bilinear"); + listBoxFilter.pushBackItem ("Trilinear"); + listBoxFilter.setSelectedItem (config.getString ("Filter")); + currentLine -= lineOffset; + + //FilterMaxAnisotropy + labelFilterMaxAnisotropy.init (currentLabelStart, currentLine); + labelFilterMaxAnisotropy.setText (lang. + getString ("FilterMaxAnisotropy")); + + listBoxFilterMaxAnisotropy.init (currentColumnStart, currentLine, + 200); + listBoxFilterMaxAnisotropy.pushBackItem ("1"); + listBoxFilterMaxAnisotropy.pushBackItem ("2"); + listBoxFilterMaxAnisotropy.pushBackItem ("4"); + listBoxFilterMaxAnisotropy.pushBackItem ("8"); + listBoxFilterMaxAnisotropy.pushBackItem ("16"); + listBoxFilterMaxAnisotropy.setSelectedItem (config. + getString + ("FilterMaxAnisotropy", + "1")); + currentLine -= lineOffset; + + //selectionType + labelSelectionType.init (currentLabelStart, currentLine); + labelSelectionType.setText (lang.getString ("SelectionType")); + + listBoxSelectionType.init (currentColumnStart, currentLine, 250); + listBoxSelectionType.pushBackItem ("SelectBuffer (nvidia)"); + listBoxSelectionType.pushBackItem ("ColorPicking (default)"); + listBoxSelectionType.pushBackItem ("FrustumPicking (bad)"); + + const string + selectionType = + toLower (config.getString ("SelectionType", Config::colorPicking)); + if (selectionType == Config::colorPicking) + listBoxSelectionType.setSelectedItemIndex (1); + else if (selectionType == Config::frustumPicking) + listBoxSelectionType.setSelectedItemIndex (2); + else + listBoxSelectionType.setSelectedItemIndex (0); + currentLine -= lineOffset; + + //shadows + labelShadows.init (currentLabelStart, currentLine); + labelShadows.setText (lang.getString ("Shadows")); + + listBoxShadows.init (currentColumnStart, currentLine, 250); + for (int i = 0; i < Renderer::sCount; ++i) + { + listBoxShadows.pushBackItem (lang. + getString (Renderer:: + shadowsToStr (static_cast < + Renderer:: + Shadows > + (i)))); + } + string + str = config.getString ("Shadows"); + listBoxShadows. + setSelectedItemIndex (clamp + (Renderer::strToShadows (str), 0, + Renderer::sCount - 1)); + currentLine -= lineOffset; + + //shadows + labelShadowTextureSize.init (currentLabelStart, currentLine); + labelShadowTextureSize.setText (lang.getString ("ShadowTextureSize")); + + listBoxShadowTextureSize.init (currentColumnStart, currentLine, 200); + listBoxShadowTextureSize.pushBackItem ("256"); + listBoxShadowTextureSize.pushBackItem ("512"); + listBoxShadowTextureSize.pushBackItem ("1024"); + listBoxShadowTextureSize.setSelectedItemIndex (1, false); + listBoxShadowTextureSize. + setSelectedItem (intToStr + (config.getInt ("ShadowTextureSize", "512")), + false); + currentLine -= lineOffset; + + //shadows + labelShadowIntensity.init (currentLabelStart, currentLine); + labelShadowIntensity.setText (lang.getString ("ShadowIntensity")); + + listBoxShadowIntensity.init (currentColumnStart, currentLine, 200); + for (float f = 0.5f; f < 3.0f; f = f + 0.1f) + { + listBoxShadowIntensity.pushBackItem (floatToStr (f)); + } + float + shadowIntensity = config.getFloat ("ShadowIntensity", "1.0"); + if (shadowIntensity <= 0.0f) + shadowIntensity = 1.0f; + listBoxShadowIntensity.setSelectedItem (floatToStr (shadowIntensity), + false); + + currentLine -= lineOffset; + + //textures 3d + labelTextures3D.init (currentLabelStart, currentLine); + + checkBoxTextures3D.init (currentColumnStart, currentLine); + labelTextures3D.setText (lang.getString ("Textures3D")); + checkBoxTextures3D.setValue (config.getBool ("Textures3D")); + currentLine -= lineOffset; + + //lights + labelLights.init (currentLabelStart, currentLine); + labelLights.setText (lang.getString ("MaxLights")); + + listBoxLights.init (currentColumnStart, currentLine, 80); + for (int i = 1; i <= 8; ++i) + { + listBoxLights.pushBackItem (intToStr (i)); + } + listBoxLights. + setSelectedItemIndex (clamp + (config.getInt ("MaxLights") - 1, 0, 7)); + currentLine -= lineOffset; + + //unit particles + labelUnitParticles.init (currentLabelStart, currentLine); + labelUnitParticles.setText (lang.getString ("ShowUnitParticles")); + + checkBoxUnitParticles.init (currentColumnStart, currentLine); + checkBoxUnitParticles.setValue (config. + getBool ("UnitParticles", "true")); + currentLine -= lineOffset; + + //tileset particles + labelTilesetParticles.init (currentLabelStart, currentLine); + labelTilesetParticles.setText (lang. + getString ("ShowTilesetParticles")); + + checkBoxTilesetParticles.init (currentColumnStart, currentLine); + checkBoxTilesetParticles.setValue (config. + getBool ("TilesetParticles", + "true")); + currentLine -= lineOffset; + + //animated tileset objects + labelAnimatedTilesetObjects.init (currentLabelStart, currentLine); + labelAnimatedTilesetObjects.setText (lang. + getString + ("AnimatedTilesetObjects")); + + listBoxAnimatedTilesetObjects.init (currentColumnStart, currentLine, + 80); + listBoxAnimatedTilesetObjects.pushBackItem ("0"); + listBoxAnimatedTilesetObjects.pushBackItem ("10"); + listBoxAnimatedTilesetObjects.pushBackItem ("25"); + listBoxAnimatedTilesetObjects.pushBackItem ("50"); + listBoxAnimatedTilesetObjects.pushBackItem ("100"); + listBoxAnimatedTilesetObjects.pushBackItem ("300"); + listBoxAnimatedTilesetObjects.pushBackItem ("500"); + listBoxAnimatedTilesetObjects.pushBackItem ("∞"); + listBoxAnimatedTilesetObjects.setSelectedItem ("∞", true); + listBoxAnimatedTilesetObjects.setSelectedItem (config. + getString + ("AnimatedTilesetObjects", + "-1"), false); + currentLine -= lineOffset; + + //unit particles + labelMapPreview.init (currentLabelStart, currentLine); + labelMapPreview.setText (lang.getString ("ShowMapPreview")); + + checkBoxMapPreview.init (currentColumnStart, currentLine); + checkBoxMapPreview.setValue (config.getBool ("MapPreview", "true")); + currentLine -= lineOffset; + + // Texture Compression flag + labelEnableTextureCompression.init (currentLabelStart, currentLine); + labelEnableTextureCompression.setText (lang. + getString + ("EnableTextureCompression")); + + checkBoxEnableTextureCompression.init (currentColumnStart, + currentLine); + checkBoxEnableTextureCompression.setValue (config. + getBool + ("EnableTextureCompression", + "false")); + currentLine -= lineOffset; + + labelRainEffect.init (currentLabelStart, currentLine); + labelRainEffect.setText (lang.getString ("RainEffectMenuGame")); + + checkBoxRainEffectMenu.init (currentColumnStart, currentLine); + checkBoxRainEffectMenu.setValue (config. + getBool ("RainEffectMenu", "true")); + + labelRainEffectSeparator.init (currentColumnStart + 30, currentLine); + labelRainEffectSeparator.setText ("/"); + + checkBoxRainEffect.init (currentColumnStart + 42, currentLine); + checkBoxRainEffect.setValue (config.getBool ("RainEffect", "true")); + currentLine -= lineOffset; + + labelVideos.init (currentLabelStart, currentLine); + labelVideos.setText (lang.getString ("EnableVideos")); + + checkBoxVideos.init (currentColumnStart, currentLine); + checkBoxVideos.setValue (config.getBool ("EnableVideos", "true")); + + // end + + // external server port + + // buttons + buttonOk.init (buttonStartPos, buttonRowPos, 100); + buttonOk.setText (lang.getString ("Save")); + buttonReturn.setText (lang.getString ("Return")); + + buttonReturn.init (buttonStartPos + 110, buttonRowPos, 100); + buttonAutoConfig.setText (lang.getString ("AutoConfig")); + + buttonAutoConfig.init (buttonStartPos + 230, buttonRowPos, 175); + + buttonVideoInfo.setText (lang.getString ("VideoInfo")); + buttonVideoInfo.init (buttonStartPos + 415, buttonRowPos, 175); // was 620 + + GraphicComponent::applyAllCustomProperties (containerName); + } + catch (exception & e) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error loading options: %s\n", + __FILE__, __FUNCTION__, __LINE__, + e.what ()); + throw + megaglest_runtime_error (string ("Error loading options msg: ") + + e.what ()); + } + } + + void + MenuStateOptionsGraphics::reloadUI () + { + Lang & lang = Lang::getInstance (); + + mainMessageBox.init (lang.getString ("Ok")); + + buttonAudioSection.setText (lang.getString ("Audio")); + buttonVideoSection.setText (lang.getString ("Video")); + buttonMiscSection.setText (lang.getString ("Misc")); + buttonNetworkSettings.setText (lang.getString ("Network")); + + std::vector < string > listboxData; + listboxData.push_back ("None"); + listboxData.push_back ("OpenAL"); + + labelScreenModes.setText (lang.getString ("Resolution")); + + labelFullscreenWindowed.setText (lang.getString ("Windowed")); + labelFilter.setText (lang.getString ("Filter")); + + listboxData.clear (); + listboxData.push_back ("Bilinear"); + listboxData.push_back ("Trilinear"); + listBoxFilter.setItems (listboxData); + + labelFilterMaxAnisotropy.setText (lang. + getString ("FilterMaxAnisotropy")); + listboxData.clear (); + listboxData.push_back ("1"); + listboxData.push_back ("2"); + listboxData.push_back ("4"); + listboxData.push_back ("8"); + listboxData.push_back ("16"); + listBoxFilterMaxAnisotropy.setItems (listboxData); + + listboxData.clear (); + for (float f = 0.0; f < 2.1f; f = f + 0.1f) + { + listboxData.push_back (floatToStr (f)); + } + listBoxGammaCorrection.setItems (listboxData); + + + listboxData.clear (); + for (float f = 0.5; f < 3.0f; f = f + 0.1f) + { + listboxData.push_back (floatToStr (f)); + } + listBoxShadowIntensity.setItems (listboxData); + + + labelShadows.setText (lang.getString ("Shadows")); + labelShadowTextureSize.setText (lang.getString ("ShadowTextureSize")); + + labelShadowIntensity.setText (lang.getString ("ShadowIntensity")); + labelGammaCorrection.setText (lang.getString ("GammaCorrection")); + + listboxData.clear (); + for (int i = 0; i < Renderer::sCount; ++i) + { + listboxData.push_back (lang. + getString (Renderer:: + shadowsToStr (static_cast < + Renderer::Shadows > + (i)))); + } + listBoxShadows.setItems (listboxData); + + labelTextures3D.setText (lang.getString ("Textures3D")); + labelLights.setText (lang.getString ("MaxLights")); + labelUnitParticles.setText (lang.getString ("ShowUnitParticles")); + labelTilesetParticles.setText (lang.getString ("ShowTilesetParticles")); + labelAnimatedTilesetObjects.setText (lang. + getString + ("AnimatedTilesetObjects")); + labelMapPreview.setText (lang.getString ("ShowMapPreview")); + labelEnableTextureCompression.setText (lang. + getString + ("EnableTextureCompression")); + labelRainEffect.setText (lang.getString ("RainEffectMenuGame")); + labelVideos.setText (lang.getString ("EnableVideos")); + + buttonOk.setText (lang.getString ("Save")); + buttonReturn.setText (lang.getString ("Return")); + buttonAutoConfig.setText (lang.getString ("AutoConfig")); + buttonVideoInfo.setText (lang.getString ("VideoInfo")); + + labelSelectionType.setText (lang.getString ("SelectionType")); + } + + + void + MenuStateOptionsGraphics::showMessageBox (const string & text, + const string & header, + bool toggle) + { + if (!toggle) + { + mainMessageBox.setEnabled (false); + } + + if (!mainMessageBox.getEnabled ()) + { + mainMessageBox.setText (text); + mainMessageBox.setHeader (header); + mainMessageBox.setEnabled (true); + } + else + { + mainMessageBox.setEnabled (false); + } + } + + void + MenuStateOptionsGraphics::revertScreenMode () + { + Config & config = Config::getInstance (); + //!!! + // Revert resolution or fullscreen + checkBoxFullscreenWindowed.setValue (config.getBool ("Windowed")); + string + currentResString = config.getString ("ScreenWidth") + "x" + + config.getString ("ScreenHeight") + "-" + + intToStr (config.getInt ("ColorBits")); + listBoxScreenModes.setSelectedItem (currentResString); + + + changeVideoModeFullScreen (!config.getBool ("Windowed")); + WindowGl * + window = this->program->getWindow (); + window->ChangeVideoMode (true, + config.getInt ("ScreenWidth"), + config.getInt ("ScreenHeight"), + !config.getBool ("Windowed"), + config.getInt ("ColorBits"), + config.getInt ("DepthBits"), + config.getInt ("StencilBits"), + config.getBool ("HardwareAcceleration", + "false"), + config.getBool ("FullScreenAntiAliasing", + "false"), + config.getFloat ("GammaValue", "0.0")); + Metrics::reload (this->program->getWindow ()->getScreenWidth (), + this->program->getWindow ()->getScreenHeight ()); + window->setText (config.getString ("WindowTitle", "MegaGlest")); + + this->mainMenu->init (); + } + + void + MenuStateOptionsGraphics::update () + { + if (mainMessageBox.getEnabled () && (mainMessageBoxState == 1)) + { + int + waitTime = 10; + if ((time (NULL) - screenModeChangedTimer > waitTime)) + { + mainMessageBoxState = 0; + mainMessageBox.setEnabled (false); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + + revertScreenMode (); + } + else + { + Lang & lang = Lang::getInstance (); + int + timeToShow = waitTime - time (NULL) + screenModeChangedTimer; + // show timer in button + mainMessageBox.getButton (0)->setText (lang.getString ("Ok") + + " (" + + intToStr (timeToShow) + ")"); + } + } + } + + void + MenuStateOptionsGraphics::mouseClick (int x, int y, + MouseButton mouseButton) + { + + Config & config = Config::getInstance (); + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + + + + if (mainMessageBox.getEnabled ()) + { + int + button = 0; + + if (mainMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (button == 0) + { + if (mainMessageBoxState == 1) + { + mainMessageBoxState = 0; + mainMessageBox.setEnabled (false); + saveConfig (); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + //mainMenu->setState(new MenuStateOptions(program, mainMenu)); + } + else + { + mainMessageBox.setEnabled (false); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + } + } + else + { + if (mainMessageBoxState == 1) + { + mainMessageBoxState = 0; + mainMessageBox.setEnabled (false); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + + revertScreenMode (); + } + } + } + } + else if (buttonOk.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + Lang & lang = Lang::getInstance (); + bool + selectedFullscreenWindowed = checkBoxFullscreenWindowed.getValue (); + string + currentResolution = + config.getString ("ScreenWidth") + "x" + + config.getString ("ScreenHeight") + "-" + + intToStr (config.getInt ("ColorBits")); + string + selectedResolution = listBoxScreenModes.getSelectedItem (); + bool + currentFullscreenWindowed = config.getBool ("Windowed"); + if (currentResolution != selectedResolution + || currentFullscreenWindowed != selectedFullscreenWindowed) + { + + changeVideoModeFullScreen (!selectedFullscreenWindowed); + const ModeInfo * + selectedMode = NULL; + for (vector < ModeInfo >::const_iterator it = modeInfos.begin (); + it != modeInfos.end (); ++it) + { + if ((*it).getString () == selectedResolution) + { + //config.setInt("ScreenWidth",(*it).width); + //config.setInt("ScreenHeight",(*it).height); + //config.setInt("ColorBits",(*it).depth); + selectedMode = &(*it); + } + } + if (selectedMode == NULL) + { // if we cannot find the selectedResolution we try it with current one + for (vector < ModeInfo >::const_iterator it = modeInfos.begin (); + it != modeInfos.end (); ++it) + { + if ((*it).getString () == currentResolution) + { + //config.setInt("ScreenWidth",(*it).width); + //config.setInt("ScreenHeight",(*it).height); + //config.setInt("ColorBits",(*it).depth); + selectedMode = &(*it); + } + } + } + if (selectedMode == NULL) + { + throw + megaglest_runtime_error ("selectedMode == NULL"); + } #if defined(__APPLE__) - mainMessageBoxState=1; - mainMessageBox.init(lang.getString("Ok"),lang.getString("Cancel")); - screenModeChangedTimer= time(NULL); + mainMessageBoxState = 1; + mainMessageBox.init (lang.getString ("Ok"), + lang.getString ("Cancel")); + screenModeChangedTimer = time (NULL); - showMessageBox(lang.getString("RestartNeeded"), lang.getString("ResolutionChanged"), false); + showMessageBox (lang.getString ("RestartNeeded"), + lang.getString ("ResolutionChanged"), false); #else - WindowGl *window = this->program->getWindow(); - window->ChangeVideoMode(true, - selectedMode->width, - selectedMode->height, - !selectedFullscreenWindowed, - selectedMode->depth, - config.getInt("DepthBits"), - config.getInt("StencilBits"), - config.getBool("HardwareAcceleration","false"), - config.getBool("FullScreenAntiAliasing","false"), - strToFloat(listBoxGammaCorrection.getSelectedItem())); + WindowGl * + window = this->program->getWindow (); + window->ChangeVideoMode (true, + selectedMode->width, + selectedMode->height, + !selectedFullscreenWindowed, + selectedMode->depth, + config.getInt ("DepthBits"), + config.getInt ("StencilBits"), + config.getBool ("HardwareAcceleration", + "false"), + config.getBool ("FullScreenAntiAliasing", + "false"), + strToFloat (listBoxGammaCorrection. + getSelectedItem ())); - Metrics::reload(this->program->getWindow()->getScreenWidth(), - this->program->getWindow()->getScreenHeight()); + Metrics::reload (this->program->getWindow ()->getScreenWidth (), + this->program->getWindow ()->getScreenHeight ()); - this->mainMenu->init(); + this->mainMenu->init (); - mainMessageBoxState=1; - mainMessageBox.init(lang.getString("Ok"),lang.getString("Cancel")); - screenModeChangedTimer= time(NULL); + mainMessageBoxState = 1; + mainMessageBox.init (lang.getString ("Ok"), + lang.getString ("Cancel")); + screenModeChangedTimer = time (NULL); - showMessageBox(lang.getString("ResolutionChanged"), lang.getString("Notice"), false); + showMessageBox (lang.getString ("ResolutionChanged"), + lang.getString ("Notice"), false); #endif - //No saveConfig() here! this is done by the messageBox - return; - } - saveConfig(); - return; + //No saveConfig() here! this is done by the messageBox + return; + } + saveConfig (); + return; + } + else if (buttonReturn.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + + // reset the gamma to former value + string + currentGammaCorrection = config.getString ("GammaValue", "1.0"); + string + selectedGammaCorrection = listBoxGammaCorrection.getSelectedItem (); + if (currentGammaCorrection != selectedGammaCorrection) + { + float + gammaValue = strToFloat (currentGammaCorrection); + if (gammaValue == 0.0f) + gammaValue = 1.0f; + if (gammaValue != 0.0) + { + program->getWindow ()->setGamma (gammaValue); + } + } + if (this->parentUI != NULL) + { + *this->parentUI = NULL; + delete * + this-> + parentUI; + } + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + return; + } + else if (buttonKeyboardSetup.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + //mainMenu->setState(new MenuStateKeysetup(program, mainMenu)); // open keyboard shortcuts setup screen + //mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu)); // open keyboard shortcuts setup screen + //mainMenu->setState(new MenuStateOptionsNetwork(program, mainMenu)); // open keyboard shortcuts setup screen + mainMenu->setState (new MenuStateKeysetup (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + //showMessageBox("Not implemented yet", "Keyboard setup", false); + return; + } + else if (buttonAudioSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsSound (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonNetworkSettings.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsNetwork (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonMiscSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptions (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonVideoSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + //mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonAutoConfig.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + Renderer::getInstance ().autoConfig (); + //saveConfig(); + mainMenu->setState (new MenuStateOptionsGraphics (program, mainMenu)); + return; + } + else if (buttonVideoInfo.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateGraphicInfo (program, mainMenu)); + return; + } + else + { + listBoxSelectionType.mouseClick (x, y); + listBoxShadows.mouseClick (x, y); + listBoxAnimatedTilesetObjects.mouseClick (x, y); + listBoxShadowTextureSize.mouseClick (x, y); + listBoxShadowIntensity.mouseClick (x, y); + listBoxFilter.mouseClick (x, y); + listBoxFilterMaxAnisotropy.mouseClick (x, y); + if (listBoxGammaCorrection.mouseClick (x, y)) + { + float + gammaValue = + strToFloat (listBoxGammaCorrection.getSelectedItem ()); + if (gammaValue != 0.0) + { + program->getWindow ()->setGamma (gammaValue); + } + } + checkBoxTextures3D.mouseClick (x, y); + checkBoxUnitParticles.mouseClick (x, y); + checkBoxTilesetParticles.mouseClick (x, y); + checkBoxMapPreview.mouseClick (x, y); + listBoxLights.mouseClick (x, y); + listBoxScreenModes.mouseClick (x, y); + checkBoxFullscreenWindowed.mouseClick (x, y); + checkBoxEnableTextureCompression.mouseClick (x, y); + checkBoxRainEffect.mouseClick (x, y); + checkBoxRainEffectMenu.mouseClick (x, y); + + checkBoxVideos.mouseClick (x, y); + } } - else if(buttonReturn.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - // reset the gamma to former value - string currentGammaCorrection=config.getString("GammaValue","1.0"); - string selectedGammaCorrection=listBoxGammaCorrection.getSelectedItem(); - if(currentGammaCorrection!=selectedGammaCorrection){ - float gammaValue=strToFloat(currentGammaCorrection); - if(gammaValue==0.0f) gammaValue=1.0f; - if(gammaValue!=0.0){ - program->getWindow()->setGamma(gammaValue); - } - } - if(this->parentUI != NULL) { - *this->parentUI = NULL; - delete *this->parentUI; - } - mainMenu->setState(new MenuStateRoot(program, mainMenu)); - return; + void + MenuStateOptionsGraphics::mouseMove (int x, int y, const MouseState * ms) + { + if (mainMessageBox.getEnabled ()) + { + mainMessageBox.mouseMove (x, y); + } + + buttonOk.mouseMove (x, y); + buttonReturn.mouseMove (x, y); + buttonKeyboardSetup.mouseMove (x, y); + buttonAudioSection.mouseMove (x, y); + buttonNetworkSettings.mouseMove (x, y); + buttonMiscSection.mouseMove (x, y); + buttonVideoSection.mouseMove (x, y); + buttonAutoConfig.mouseMove (x, y); + buttonVideoInfo.mouseMove (x, y); + listBoxFilter.mouseMove (x, y); + listBoxFilterMaxAnisotropy.mouseMove (x, y); + listBoxGammaCorrection.mouseMove (x, y); + listBoxShadowIntensity.mouseMove (x, y); + listBoxSelectionType.mouseMove (x, y); + listBoxShadows.mouseMove (x, y); + checkBoxTextures3D.mouseMove (x, y); + checkBoxUnitParticles.mouseMove (x, y); + checkBoxTilesetParticles.mouseMove (x, y); + labelAnimatedTilesetObjects.mouseMove (x, y); + listBoxAnimatedTilesetObjects.mouseMove (x, y); + checkBoxTilesetParticles.mouseMove (x, y); + checkBoxMapPreview.mouseMove (x, y); + listBoxLights.mouseMove (x, y); + listBoxScreenModes.mouseMove (x, y); + checkBoxFullscreenWindowed.mouseMove (x, y); + checkBoxEnableTextureCompression.mouseMove (x, y); + + checkBoxRainEffect.mouseMove (x, y); + checkBoxRainEffectMenu.mouseMove (x, y); + + checkBoxVideos.mouseMove (x, y); } - else if(buttonKeyboardSetup.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - //mainMenu->setState(new MenuStateKeysetup(program, mainMenu)); // open keyboard shortcuts setup screen - //mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu)); // open keyboard shortcuts setup screen - //mainMenu->setState(new MenuStateOptionsNetwork(program, mainMenu)); // open keyboard shortcuts setup screen - mainMenu->setState(new MenuStateKeysetup(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - //showMessageBox("Not implemented yet", "Keyboard setup", false); - return; - } - else if(buttonAudioSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsSound(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonNetworkSettings.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsNetwork(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonMiscSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptions(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonVideoSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - //mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonAutoConfig.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - Renderer::getInstance().autoConfig(); - //saveConfig(); - mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu)); - return; - } - else if(buttonVideoInfo.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateGraphicInfo(program, mainMenu)); - return; - } - else - { - listBoxSelectionType.mouseClick(x, y); - listBoxShadows.mouseClick(x, y); - listBoxAnimatedTilesetObjects.mouseClick(x, y); - listBoxShadowTextureSize.mouseClick(x, y); - listBoxShadowIntensity.mouseClick(x, y); - listBoxFilter.mouseClick(x, y); - listBoxFilterMaxAnisotropy.mouseClick(x, y); - if(listBoxGammaCorrection.mouseClick(x, y)){ - float gammaValue=strToFloat(listBoxGammaCorrection.getSelectedItem()); - if(gammaValue!=0.0){ - program->getWindow()->setGamma(gammaValue); - } - } - checkBoxTextures3D.mouseClick(x, y); - checkBoxUnitParticles.mouseClick(x, y); - checkBoxTilesetParticles.mouseClick(x, y); - checkBoxMapPreview.mouseClick(x, y); - listBoxLights.mouseClick(x, y); - listBoxScreenModes.mouseClick(x, y); - checkBoxFullscreenWindowed.mouseClick(x, y); - checkBoxEnableTextureCompression.mouseClick(x, y); - checkBoxRainEffect.mouseClick(x,y); - checkBoxRainEffectMenu.mouseClick(x,y); - - checkBoxVideos.mouseClick(x,y); - } -} - -void MenuStateOptionsGraphics::mouseMove(int x, int y, const MouseState *ms){ - if (mainMessageBox.getEnabled()) { - mainMessageBox.mouseMove(x, y); - } - - buttonOk.mouseMove(x, y); - buttonReturn.mouseMove(x, y); - buttonKeyboardSetup.mouseMove(x, y); - buttonAudioSection.mouseMove(x, y); - buttonNetworkSettings.mouseMove(x, y); - buttonMiscSection.mouseMove(x, y); - buttonVideoSection.mouseMove(x, y); - buttonAutoConfig.mouseMove(x, y); - buttonVideoInfo.mouseMove(x, y); - listBoxFilter.mouseMove(x, y); - listBoxFilterMaxAnisotropy.mouseMove(x, y); - listBoxGammaCorrection.mouseMove(x, y); - listBoxShadowIntensity.mouseMove(x, y); - listBoxSelectionType.mouseMove(x, y); - listBoxShadows.mouseMove(x, y); - checkBoxTextures3D.mouseMove(x, y); - checkBoxUnitParticles.mouseMove(x, y); - checkBoxTilesetParticles.mouseMove(x, y); - labelAnimatedTilesetObjects.mouseMove(x, y); - listBoxAnimatedTilesetObjects.mouseMove(x, y); - checkBoxTilesetParticles.mouseMove(x, y); - checkBoxMapPreview.mouseMove(x, y); - listBoxLights.mouseMove(x, y); - listBoxScreenModes.mouseMove(x, y); - checkBoxFullscreenWindowed.mouseMove(x, y); - checkBoxEnableTextureCompression.mouseMove(x, y); - - checkBoxRainEffect.mouseMove(x, y); - checkBoxRainEffectMenu.mouseMove(x, y); - - checkBoxVideos.mouseMove(x, y); -} //bool MenuStateOptionsGraphics::isInSpecialKeyCaptureEvent() { -// return (activeInputLabel != NULL); +// return (activeInputLabel != NULL); //} // //void MenuStateOptionsGraphics::keyDown(SDL_KeyboardEvent key) { -// if(activeInputLabel != NULL) { -// keyDownEditLabel(key, &activeInputLabel); -// } +// if(activeInputLabel != NULL) { +// keyDownEditLabel(key, &activeInputLabel); +// } //} -void MenuStateOptionsGraphics::keyPress(SDL_KeyboardEvent c) { -// if(activeInputLabel != NULL) { -// //printf("[%d]\n",c); fflush(stdout); -// if( &labelPlayerName == activeInputLabel || -// &labelTransifexUser == activeInputLabel || -// &labelTransifexPwd == activeInputLabel || -// &labelTransifexI18N == activeInputLabel) { -// textInputEditLabel(c, &activeInputLabel); -// } -// } -// else { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),c) == true) { - GraphicComponent::saveAllCustomProperties(containerName); - //Lang &lang= Lang::getInstance(); - //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } -// } -} + void + MenuStateOptionsGraphics::keyPress (SDL_KeyboardEvent c) + { +// if(activeInputLabel != NULL) { +// //printf("[%d]\n",c); fflush(stdout); +// if( &labelPlayerName == activeInputLabel || +// &labelTransifexUser == activeInputLabel || +// &labelTransifexPwd == activeInputLabel || +// &labelTransifexI18N == activeInputLabel) { +// textInputEditLabel(c, &activeInputLabel); +// } +// } +// else { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), c) == true) + { + GraphicComponent::saveAllCustomProperties (containerName); + //Lang &lang= Lang::getInstance(); + //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); + } +// } + } -void MenuStateOptionsGraphics::render(){ - Renderer &renderer= Renderer::getInstance(); + void + MenuStateOptionsGraphics::render () + { + Renderer & renderer = Renderer::getInstance (); - if(mainMessageBox.getEnabled()){ - renderer.renderMessageBox(&mainMessageBox); - } - else - { - renderer.renderButton(&buttonOk); - renderer.renderButton(&buttonReturn); - renderer.renderButton(&buttonKeyboardSetup); - renderer.renderButton(&buttonVideoSection); - renderer.renderButton(&buttonAudioSection); - renderer.renderButton(&buttonMiscSection); - renderer.renderButton(&buttonNetworkSettings); - renderer.renderButton(&buttonAutoConfig); - renderer.renderButton(&buttonVideoInfo); - renderer.renderListBox(&listBoxShadows); - renderer.renderCheckBox(&checkBoxTextures3D); - renderer.renderCheckBox(&checkBoxUnitParticles); - renderer.renderCheckBox(&checkBoxTilesetParticles); - renderer.renderCheckBox(&checkBoxMapPreview); - renderer.renderListBox(&listBoxLights); - renderer.renderListBox(&listBoxFilter); - renderer.renderListBox(&listBoxFilterMaxAnisotropy); - renderer.renderListBox(&listBoxGammaCorrection); - renderer.renderListBox(&listBoxShadowIntensity); - renderer.renderLabel(&labelShadows); - renderer.renderLabel(&labelTextures3D); - renderer.renderLabel(&labelUnitParticles); - renderer.renderLabel(&labelTilesetParticles); - renderer.renderListBox(&listBoxAnimatedTilesetObjects); - renderer.renderLabel(&labelAnimatedTilesetObjects); - renderer.renderLabel(&labelMapPreview); - renderer.renderLabel(&labelLights); - renderer.renderLabel(&labelFilter); - renderer.renderLabel(&labelFilterMaxAnisotropy); - renderer.renderLabel(&labelGammaCorrection); - renderer.renderLabel(&labelShadowIntensity); - renderer.renderLabel(&labelScreenModes); - renderer.renderListBox(&listBoxScreenModes); - renderer.renderLabel(&labelFullscreenWindowed); - renderer.renderCheckBox(&checkBoxFullscreenWindowed); + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + else + { + renderer.renderButton (&buttonOk); + renderer.renderButton (&buttonReturn); + renderer.renderButton (&buttonKeyboardSetup); + renderer.renderButton (&buttonVideoSection); + renderer.renderButton (&buttonAudioSection); + renderer.renderButton (&buttonMiscSection); + renderer.renderButton (&buttonNetworkSettings); + renderer.renderButton (&buttonAutoConfig); + renderer.renderButton (&buttonVideoInfo); + renderer.renderListBox (&listBoxShadows); + renderer.renderCheckBox (&checkBoxTextures3D); + renderer.renderCheckBox (&checkBoxUnitParticles); + renderer.renderCheckBox (&checkBoxTilesetParticles); + renderer.renderCheckBox (&checkBoxMapPreview); + renderer.renderListBox (&listBoxLights); + renderer.renderListBox (&listBoxFilter); + renderer.renderListBox (&listBoxFilterMaxAnisotropy); + renderer.renderListBox (&listBoxGammaCorrection); + renderer.renderListBox (&listBoxShadowIntensity); + renderer.renderLabel (&labelShadows); + renderer.renderLabel (&labelTextures3D); + renderer.renderLabel (&labelUnitParticles); + renderer.renderLabel (&labelTilesetParticles); + renderer.renderListBox (&listBoxAnimatedTilesetObjects); + renderer.renderLabel (&labelAnimatedTilesetObjects); + renderer.renderLabel (&labelMapPreview); + renderer.renderLabel (&labelLights); + renderer.renderLabel (&labelFilter); + renderer.renderLabel (&labelFilterMaxAnisotropy); + renderer.renderLabel (&labelGammaCorrection); + renderer.renderLabel (&labelShadowIntensity); + renderer.renderLabel (&labelScreenModes); + renderer.renderListBox (&listBoxScreenModes); + renderer.renderLabel (&labelFullscreenWindowed); + renderer.renderCheckBox (&checkBoxFullscreenWindowed); - renderer.renderLabel(&labelEnableTextureCompression); - renderer.renderCheckBox(&checkBoxEnableTextureCompression); + renderer.renderLabel (&labelEnableTextureCompression); + renderer.renderCheckBox (&checkBoxEnableTextureCompression); - renderer.renderLabel(&labelRainEffect); - renderer.renderCheckBox(&checkBoxRainEffect); - renderer.renderLabel(&labelRainEffectSeparator); - renderer.renderCheckBox(&checkBoxRainEffectMenu); + renderer.renderLabel (&labelRainEffect); + renderer.renderCheckBox (&checkBoxRainEffect); + renderer.renderLabel (&labelRainEffectSeparator); + renderer.renderCheckBox (&checkBoxRainEffectMenu); - renderer.renderLabel(&labelShadowTextureSize); - renderer.renderListBox(&listBoxShadowTextureSize); + renderer.renderLabel (&labelShadowTextureSize); + renderer.renderListBox (&listBoxShadowTextureSize); - renderer.renderLabel(&labelSelectionType); - renderer.renderListBox(&listBoxSelectionType); + renderer.renderLabel (&labelSelectionType); + renderer.renderListBox (&listBoxSelectionType); - renderer.renderLabel(&labelVideos); - renderer.renderCheckBox(&checkBoxVideos); - } + renderer.renderLabel (&labelVideos); + renderer.renderCheckBox (&checkBoxVideos); + } - renderer.renderConsole(&console); - if(program != NULL) program->renderProgramMsgBox(); -} + renderer.renderConsole (&console); + if (program != NULL) + program->renderProgramMsgBox (); + } -void MenuStateOptionsGraphics::saveConfig(){ - Config &config= Config::getInstance(); - Lang &lang= Lang::getInstance(); - //setActiveInputLable(NULL); + void + MenuStateOptionsGraphics::saveConfig () + { + Config & config = Config::getInstance (); + Lang & lang = Lang::getInstance (); + //setActiveInputLable(NULL); - int selectionTypeindex= listBoxSelectionType.getSelectedItemIndex(); - if(selectionTypeindex==0){ - config.setString("SelectionType",Config::selectBufPicking); - } - else if (selectionTypeindex==1){ - config.setString("SelectionType",Config::colorPicking); - } - else if (selectionTypeindex==2){ - config.setString("SelectionType",Config::frustumPicking); - } + int + selectionTypeindex = listBoxSelectionType.getSelectedItemIndex (); + if (selectionTypeindex == 0) + { + config.setString ("SelectionType", Config::selectBufPicking); + } + else if (selectionTypeindex == 1) + { + config.setString ("SelectionType", Config::colorPicking); + } + else if (selectionTypeindex == 2) + { + config.setString ("SelectionType", Config::frustumPicking); + } - int index= listBoxShadows.getSelectedItemIndex(); - config.setString("Shadows", Renderer::shadowsToStr(static_cast(index))); + int + index = listBoxShadows.getSelectedItemIndex (); + config.setString ("Shadows", + Renderer::shadowsToStr (static_cast < + Renderer::Shadows > (index))); - string texSizeString= listBoxShadowTextureSize.getSelectedItem(); - config.setInt("ShadowTextureSize",strToInt(texSizeString) ); + string + texSizeString = listBoxShadowTextureSize.getSelectedItem (); + config.setInt ("ShadowTextureSize", strToInt (texSizeString)); - config.setBool("Windowed", checkBoxFullscreenWindowed.getValue()); - config.setString("Filter", listBoxFilter.getSelectedItem()); - config.setInt("FilterMaxAnisotropy", strToInt(listBoxFilterMaxAnisotropy.getSelectedItem())); - config.setFloat("GammaValue", strToFloat(listBoxGammaCorrection.getSelectedItem())); - config.setFloat("ShadowIntensity", strToFloat(listBoxShadowIntensity.getSelectedItem())); - config.setBool("Textures3D", checkBoxTextures3D.getValue()); - config.setBool("UnitParticles", (checkBoxUnitParticles.getValue())); - config.setBool("TilesetParticles", (checkBoxTilesetParticles.getValue())); - config.setBool("MapPreview", checkBoxMapPreview.getValue()); - config.setInt("MaxLights", listBoxLights.getSelectedItemIndex()+1); + config.setBool ("Windowed", checkBoxFullscreenWindowed.getValue ()); + config.setString ("Filter", listBoxFilter.getSelectedItem ()); + config.setInt ("FilterMaxAnisotropy", + strToInt (listBoxFilterMaxAnisotropy. + getSelectedItem ())); + config.setFloat ("GammaValue", + strToFloat (listBoxGammaCorrection. + getSelectedItem ())); + config.setFloat ("ShadowIntensity", + strToFloat (listBoxShadowIntensity. + getSelectedItem ())); + config.setBool ("Textures3D", checkBoxTextures3D.getValue ()); + config.setBool ("UnitParticles", (checkBoxUnitParticles.getValue ())); + config.setBool ("TilesetParticles", + (checkBoxTilesetParticles.getValue ())); + config.setBool ("MapPreview", checkBoxMapPreview.getValue ()); + config.setInt ("MaxLights", listBoxLights.getSelectedItemIndex () + 1); - if (listBoxAnimatedTilesetObjects.getSelectedItem()=="∞") { - config.setInt("AnimatedTilesetObjects", -1); - } else { - config.setInt("AnimatedTilesetObjects", atoi(listBoxAnimatedTilesetObjects.getSelectedItem().c_str())); - } + if (listBoxAnimatedTilesetObjects.getSelectedItem () == "∞") + { + config.setInt ("AnimatedTilesetObjects", -1); + } + else + { + config.setInt ("AnimatedTilesetObjects", + atoi (listBoxAnimatedTilesetObjects.getSelectedItem (). + c_str ())); + } - config.setBool("RainEffect", checkBoxRainEffect.getValue()); - config.setBool("RainEffectMenu", checkBoxRainEffectMenu.getValue()); + config.setBool ("RainEffect", checkBoxRainEffect.getValue ()); + config.setBool ("RainEffectMenu", checkBoxRainEffectMenu.getValue ()); - config.setBool("EnableTextureCompression", checkBoxEnableTextureCompression.getValue()); + config.setBool ("EnableTextureCompression", + checkBoxEnableTextureCompression.getValue ()); - config.setBool("EnableVideos", checkBoxVideos.getValue()); + config.setBool ("EnableVideos", checkBoxVideos.getValue ()); - string currentResolution=config.getString("ScreenWidth")+"x"+config.getString("ScreenHeight"); - string selectedResolution=listBoxScreenModes.getSelectedItem(); - if(currentResolution!=selectedResolution){ - for(vector::const_iterator it= modeInfos.begin(); it!=modeInfos.end(); ++it){ - if((*it).getString()==selectedResolution) - { - config.setInt("ScreenWidth",(*it).width); - config.setInt("ScreenHeight",(*it).height); - config.setInt("ColorBits",(*it).depth); - } - } - } + string + currentResolution = + config.getString ("ScreenWidth") + "x" + + config.getString ("ScreenHeight"); + string + selectedResolution = listBoxScreenModes.getSelectedItem (); + if (currentResolution != selectedResolution) + { + for (vector < ModeInfo >::const_iterator it = modeInfos.begin (); + it != modeInfos.end (); ++it) + { + if ((*it).getString () == selectedResolution) + { + config.setInt ("ScreenWidth", (*it).width); + config.setInt ("ScreenHeight", (*it).height); + config.setInt ("ColorBits", (*it).depth); + } + } + } - config.save(); + config.save (); - if(config.getBool("DisableLuaSandbox","false") == true) { - LuaScript::setDisableSandbox(true); - } + if (config.getBool ("DisableLuaSandbox", "false") == true) + { + LuaScript::setDisableSandbox (true); + } - Renderer::getInstance().loadConfig(); - console.addLine(lang.getString("SettingsSaved")); -} + Renderer::getInstance ().loadConfig (); + console.addLine (lang.getString ("SettingsSaved")); + } //void MenuStateOptionsGraphics::setActiveInputLable(GraphicLabel *newLable) { -// MenuState::setActiveInputLabel(newLable,&activeInputLabel); +// MenuState::setActiveInputLabel(newLable,&activeInputLabel); // -// if(newLable == &labelTransifexPwd) { -// labelTransifexPwd.setIsPassword(false); -// } -// else { -// labelTransifexPwd.setIsPassword(true); -// } +// if(newLable == &labelTransifexPwd) { +// labelTransifexPwd.setIsPassword(false); +// } +// else { +// labelTransifexPwd.setIsPassword(true); +// } //} -}}//end namespace + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_options_graphics.h b/source/glest_game/menu/menu_state_options_graphics.h index 75203ac6a..ac7cf9898 100644 --- a/source/glest_game/menu/menu_state_options_graphics.h +++ b/source/glest_game/menu/menu_state_options_graphics.h @@ -1,122 +1,128 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATEOPTIONS_GRAPHICS_H_ -#define _GLEST_GAME_MENUSTATEOPTIONS_GRAPHICS_H_ +# define _GLEST_GAME_MENUSTATEOPTIONS_GRAPHICS_H_ -#include "main_menu.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class MenuStateOptionsGraphics +// class MenuStateOptionsGraphics // =============================== -class MenuStateOptionsGraphics: public MenuState{ -private: + class MenuStateOptionsGraphics:public MenuState + { + private: - GraphicButton buttonOk; - GraphicButton buttonReturn; - GraphicButton buttonAutoConfig; - GraphicButton buttonVideoInfo; + GraphicButton buttonOk; + GraphicButton buttonReturn; + GraphicButton buttonAutoConfig; + GraphicButton buttonVideoInfo; - GraphicButton buttonKeyboardSetup; // configure the keyboard - GraphicButton buttonVideoSection; - GraphicButton buttonAudioSection; - GraphicButton buttonMiscSection; - GraphicButton buttonNetworkSettings; + GraphicButton buttonKeyboardSetup; // configure the keyboard + GraphicButton buttonVideoSection; + GraphicButton buttonAudioSection; + GraphicButton buttonMiscSection; + GraphicButton buttonNetworkSettings; - GraphicLabel labelShadows; - GraphicListBox listBoxShadows; - GraphicLabel labelFilter; - GraphicListBox listBoxFilter; - GraphicLabel labelFilterMaxAnisotropy; - GraphicListBox listBoxFilterMaxAnisotropy; + GraphicLabel labelShadows; + GraphicListBox listBoxShadows; + GraphicLabel labelFilter; + GraphicListBox listBoxFilter; + GraphicLabel labelFilterMaxAnisotropy; + GraphicListBox listBoxFilterMaxAnisotropy; - GraphicLabel labelTextures3D; - GraphicCheckBox checkBoxTextures3D; - GraphicLabel labelLights; - GraphicListBox listBoxLights; - GraphicLabel labelUnitParticles; - GraphicCheckBox checkBoxUnitParticles; + GraphicLabel labelTextures3D; + GraphicCheckBox checkBoxTextures3D; + GraphicLabel labelLights; + GraphicListBox listBoxLights; + GraphicLabel labelUnitParticles; + GraphicCheckBox checkBoxUnitParticles; - GraphicLabel labelTilesetParticles; - GraphicCheckBox checkBoxTilesetParticles; - GraphicLabel labelAnimatedTilesetObjects; - GraphicListBox listBoxAnimatedTilesetObjects; + GraphicLabel labelTilesetParticles; + GraphicCheckBox checkBoxTilesetParticles; + GraphicLabel labelAnimatedTilesetObjects; + GraphicListBox listBoxAnimatedTilesetObjects; - GraphicLabel labelScreenModes; - GraphicListBox listBoxScreenModes; - vector modeInfos; + GraphicLabel labelScreenModes; + GraphicListBox listBoxScreenModes; + vector < ModeInfo > modeInfos; - GraphicLabel labelFullscreenWindowed; - GraphicCheckBox checkBoxFullscreenWindowed; + GraphicLabel labelFullscreenWindowed; + GraphicCheckBox checkBoxFullscreenWindowed; - GraphicLabel labelMapPreview; - GraphicCheckBox checkBoxMapPreview; + GraphicLabel labelMapPreview; + GraphicCheckBox checkBoxMapPreview; - GraphicMessageBox mainMessageBox; - int mainMessageBoxState; + GraphicMessageBox mainMessageBox; + int mainMessageBoxState; - GraphicLabel labelEnableTextureCompression; - GraphicCheckBox checkBoxEnableTextureCompression; + GraphicLabel labelEnableTextureCompression; + GraphicCheckBox checkBoxEnableTextureCompression; - GraphicLabel labelRainEffect; - GraphicLabel labelRainEffectSeparator; - GraphicCheckBox checkBoxRainEffect; - GraphicCheckBox checkBoxRainEffectMenu; + GraphicLabel labelRainEffect; + GraphicLabel labelRainEffectSeparator; + GraphicCheckBox checkBoxRainEffect; + GraphicCheckBox checkBoxRainEffectMenu; - GraphicLabel labelGammaCorrection; - GraphicListBox listBoxGammaCorrection; + GraphicLabel labelGammaCorrection; + GraphicListBox listBoxGammaCorrection; - GraphicLabel labelShadowIntensity; - GraphicListBox listBoxShadowIntensity; + GraphicLabel labelShadowIntensity; + GraphicListBox listBoxShadowIntensity; - GraphicLabel labelShadowTextureSize; - GraphicListBox listBoxShadowTextureSize; + GraphicLabel labelShadowTextureSize; + GraphicListBox listBoxShadowTextureSize; - GraphicLabel labelVideos; - GraphicCheckBox checkBoxVideos; + GraphicLabel labelVideos; + GraphicCheckBox checkBoxVideos; - GraphicLabel labelSelectionType; - GraphicListBox listBoxSelectionType; + GraphicLabel labelSelectionType; + GraphicListBox listBoxSelectionType; - ProgramState **parentUI; - time_t screenModeChangedTimer; + ProgramState **parentUI; + time_t screenModeChangedTimer; -public: - MenuStateOptionsGraphics(Program *program, MainMenu *mainMenu, ProgramState **parentUI=NULL); + public: + MenuStateOptionsGraphics (Program * program, MainMenu * mainMenu, + ProgramState ** parentUI = NULL); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - //virtual void keyDown(SDL_KeyboardEvent key); - virtual void keyPress(SDL_KeyboardEvent c); - //virtual bool isInSpecialKeyCaptureEvent(); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void render (); + //virtual void keyDown(SDL_KeyboardEvent key); + virtual void keyPress (SDL_KeyboardEvent c); + //virtual bool isInSpecialKeyCaptureEvent(); - virtual void reloadUI(); + virtual void reloadUI (); -private: - void saveConfig(); - void setActiveInputLable(GraphicLabel* newLable); - void showMessageBox(const string &text, const string &header, bool toggle); - void revertScreenMode(); - void setupTransifexUI(); - virtual void update(); -}; + private: + void saveConfig (); + void setActiveInputLable (GraphicLabel * newLable); + void showMessageBox (const string & text, const string & header, + bool toggle); + void revertScreenMode (); + void setupTransifexUI (); + virtual void update (); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_options_network.cpp b/source/glest_game/menu/menu_state_options_network.cpp index 611b8b701..21b140ea2 100644 --- a/source/glest_game/menu/menu_state_options_network.cpp +++ b/source/glest_game/menu/menu_state_options_network.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_options_network.h" @@ -28,472 +28,620 @@ #include "metrics.h" #include "leak_dumper.h" -using namespace Shared::Util; - -namespace Glest{ namespace Game{ - -// ===================================================== -// class MenuStateOptions -// ===================================================== -MenuStateOptionsNetwork::MenuStateOptionsNetwork(Program *program, MainMenu *mainMenu, ProgramState **parentUI) : - MenuState(program, mainMenu, "config"), - buttonOk("Options_Network","buttonOk"), - buttonReturn("Options_Network","buttonReturn"), - - buttonKeyboardSetup("Options_Network","buttonKeyboardSetup"), - buttonVideoSection("Options_Network","buttonVideoSection"), - buttonAudioSection("Options_Network","buttonAudioSection"), - buttonMiscSection("Options_Network","buttonMiscSection"), - buttonNetworkSettings("Options_Network","buttonNetworkSettings"), - - mainMessageBox("Options_Network","mainMessageBox"), - - labelExternalPort("Options_Network","labelExternalPort"), - labelServerPortLabel("Options_Network","labelServerPortLabel"), - - labelPublishServerExternalPort("Options_Network","labelPublishServerExternalPort"), - listBoxServerPort("Options_Network","listBoxServerPort"), - - labelEnableFTP("Options_Network","labelEnableFTP"), - checkBoxEnableFTP("Options_Network","checkBoxEnableFTP"), - - labelEnableFTPServer("Options_Network","labelEnableFTPServer"), - checkBoxEnableFTPServer("Options_Network","checkBoxEnableFTPServer"), - - labelFTPServerPortLabel("Options_Network","labelFTPServerPortLabel"), - labelFTPServerPort("Options_Network","labelFTPServerPort"), - - labelFTPServerDataPortsLabel("Options_Network","labelFTPServerDataPortsLabel"), - labelFTPServerDataPorts("Options_Network","labelFTPServerDataPorts"), - - labelEnableFTPServerInternetTilesetXfer("Options_Network","labelEnableFTPServerInternetTilesetXfer"), - checkBoxEnableFTPServerInternetTilesetXfer("Options_Network","checkBoxEnableFTPServerInternetTilesetXfer"), - - labelEnableFTPServerInternetTechtreeXfer("Options_Network","labelEnableFTPServerInternetTechtreeXfer"), - checkBoxEnableFTPServerInternetTechtreeXfer("Options_Network","checkBoxEnableFTPServerInternetTechtreeXfer"), - - labelEnablePrivacy("Options_Network","labelEnablePrivacy"), - checkBoxEnablePrivacy("Options_Network","checkBoxEnablePrivacy") +using namespace + Shared::Util; +namespace + Glest { - try { - containerName = "Options_Network"; - Lang &lang= Lang::getInstance(); - Config &config= Config::getInstance(); - this->parentUI=parentUI; - this->console.setOnlyChatMessagesInStoredLines(false); + namespace + Game + { - int leftLabelStart=100; - int leftColumnStart=leftLabelStart+300; - int buttonRowPos=50; - int buttonStartPos=170; - int lineOffset=30; - int tabButtonWidth=200; - int tabButtonHeight=30; +// ===================================================== +// class MenuStateOptions +// ===================================================== + MenuStateOptionsNetwork::MenuStateOptionsNetwork (Program * program, + MainMenu * mainMenu, + ProgramState ** + parentUI): + MenuState (program, mainMenu, "config"), + buttonOk ("Options_Network", "buttonOk"), + buttonReturn ("Options_Network", "buttonReturn"), + buttonKeyboardSetup ("Options_Network", "buttonKeyboardSetup"), + buttonVideoSection ("Options_Network", "buttonVideoSection"), + buttonAudioSection ("Options_Network", "buttonAudioSection"), + buttonMiscSection ("Options_Network", "buttonMiscSection"), + buttonNetworkSettings ("Options_Network", "buttonNetworkSettings"), + mainMessageBox ("Options_Network", "mainMessageBox"), + labelExternalPort ("Options_Network", "labelExternalPort"), + labelServerPortLabel ("Options_Network", "labelServerPortLabel"), + labelPublishServerExternalPort ("Options_Network", + "labelPublishServerExternalPort"), + listBoxServerPort ("Options_Network", "listBoxServerPort"), + labelEnableFTP ("Options_Network", "labelEnableFTP"), + checkBoxEnableFTP ("Options_Network", "checkBoxEnableFTP"), + labelEnableFTPServer ("Options_Network", "labelEnableFTPServer"), + checkBoxEnableFTPServer ("Options_Network", "checkBoxEnableFTPServer"), + labelFTPServerPortLabel ("Options_Network", "labelFTPServerPortLabel"), + labelFTPServerPort ("Options_Network", "labelFTPServerPort"), + labelFTPServerDataPortsLabel ("Options_Network", + "labelFTPServerDataPortsLabel"), + labelFTPServerDataPorts ("Options_Network", "labelFTPServerDataPorts"), + labelEnableFTPServerInternetTilesetXfer ("Options_Network", + "labelEnableFTPServerInternetTilesetXfer"), + checkBoxEnableFTPServerInternetTilesetXfer ("Options_Network", + "checkBoxEnableFTPServerInternetTilesetXfer"), + labelEnableFTPServerInternetTechtreeXfer ("Options_Network", + "labelEnableFTPServerInternetTechtreeXfer"), + checkBoxEnableFTPServerInternetTechtreeXfer ("Options_Network", + "checkBoxEnableFTPServerInternetTechtreeXfer"), + labelEnablePrivacy ("Options_Network", "labelEnablePrivacy"), + checkBoxEnablePrivacy ("Options_Network", "checkBoxEnablePrivacy") + { + try + { + containerName = "Options_Network"; + Lang & + lang = Lang::getInstance (); + Config & + config = Config::getInstance (); + this-> + parentUI = parentUI; + this-> + console. + setOnlyChatMessagesInStoredLines (false); - mainMessageBox.init(lang.getString("Ok")); - mainMessageBox.setEnabled(false); - mainMessageBoxState=0; + int + leftLabelStart = 100; + int + leftColumnStart = leftLabelStart + 300; + int + buttonRowPos = 50; + int + buttonStartPos = 170; + int + lineOffset = 30; + int + tabButtonWidth = 200; + int + tabButtonHeight = 30; - buttonAudioSection.init(0, 720,tabButtonWidth,tabButtonHeight); - buttonAudioSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonAudioSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonAudioSection.setText(lang.getString("Audio")); - // Video Section - buttonVideoSection.init(200, 720,tabButtonWidth,tabButtonHeight); - buttonVideoSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonVideoSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonVideoSection.setText(lang.getString("Video")); - //currentLine-=lineOffset; - //MiscSection - buttonMiscSection.init(400, 720,tabButtonWidth,tabButtonHeight); - buttonMiscSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonMiscSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonMiscSection.setText(lang.getString("Misc")); - //NetworkSettings - buttonNetworkSettings.init(600, 700,tabButtonWidth,tabButtonHeight+20); - buttonNetworkSettings.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonNetworkSettings.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonNetworkSettings.setText(lang.getString("Network")); + mainMessageBox. + init (lang.getString ("Ok")); + mainMessageBox. + setEnabled (false); + mainMessageBoxState = 0; - //KeyboardSetup - buttonKeyboardSetup.init(800, 720,tabButtonWidth,tabButtonHeight); - buttonKeyboardSetup.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonKeyboardSetup.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonKeyboardSetup.setText(lang.getString("Keyboardsetup")); + buttonAudioSection. + init (0, 720, tabButtonWidth, tabButtonHeight); + buttonAudioSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonAudioSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonAudioSection. + setText (lang.getString ("Audio")); + // Video Section + buttonVideoSection. + init (200, 720, tabButtonWidth, tabButtonHeight); + buttonVideoSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonVideoSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonVideoSection. + setText (lang.getString ("Video")); + //currentLine-=lineOffset; + //MiscSection + buttonMiscSection. + init (400, 720, tabButtonWidth, tabButtonHeight); + buttonMiscSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonMiscSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonMiscSection. + setText (lang.getString ("Misc")); + //NetworkSettings + buttonNetworkSettings. + init (600, 700, tabButtonWidth, tabButtonHeight + 20); + buttonNetworkSettings. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonNetworkSettings. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonNetworkSettings. + setText (lang.getString ("Network")); - int currentLine=650; // reset line pos - int currentLabelStart=leftLabelStart; // set to right side - int currentColumnStart=leftColumnStart; // set to right side + //KeyboardSetup + buttonKeyboardSetup. + init (800, 720, tabButtonWidth, tabButtonHeight); + buttonKeyboardSetup. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonKeyboardSetup. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonKeyboardSetup. + setText (lang.getString ("Keyboardsetup")); + + int + currentLine = 650; // reset line pos + int + currentLabelStart = leftLabelStart; // set to right side + int + currentColumnStart = leftColumnStart; // set to right side - // external server port - labelPublishServerExternalPort.init(currentLabelStart, currentLine, 150); - labelPublishServerExternalPort.setText(lang.getString("PublishServerExternalPort")); + // external server port + labelPublishServerExternalPort. + init (currentLabelStart, currentLine, 150); + labelPublishServerExternalPort. + setText (lang.getString ("PublishServerExternalPort")); - labelExternalPort.init(currentColumnStart,currentLine); - string extPort= config.getString("PortExternal","not set"); - if(extPort == "not set" || extPort == "0"){ - extPort=" --- "; - } - else{ - extPort="!!! "+extPort+" !!!"; - } - labelExternalPort.setText(extPort); + labelExternalPort. + init (currentColumnStart, currentLine); + string + extPort = config.getString ("PortExternal", "not set"); + if (extPort == "not set" || extPort == "0") + { + extPort = " --- "; + } + else + { + extPort = "!!! " + extPort + " !!!"; + } + labelExternalPort. + setText (extPort); - currentLine-=lineOffset; - // server port - labelServerPortLabel.init(currentLabelStart,currentLine); - labelServerPortLabel.setText(lang.getString("ServerPort")); + currentLine -= lineOffset; + // server port + labelServerPortLabel.init (currentLabelStart, currentLine); + labelServerPortLabel.setText (lang.getString ("ServerPort")); - listBoxServerPort.init(currentColumnStart, currentLine, 160); + listBoxServerPort.init (currentColumnStart, currentLine, 160); - string portListString = config.getString("PortList",intToStr(GameConstants::serverPort).c_str()); - std::vector portList; - Tokenize(portListString,portList,","); + string + portListString = + config.getString ("PortList", + intToStr (GameConstants::serverPort).c_str ()); + std::vector < std::string > portList; + Tokenize (portListString, portList, ","); - string currentPort=config.getString("PortServer", intToStr(GameConstants::serverPort).c_str()); - int portSelectionIndex=0; - for(int idx = 0; idx < (int)portList.size(); idx++) { - if(portList[idx] != "" && IsNumeric(portList[idx].c_str(),false)) { - listBoxServerPort.pushBackItem(portList[idx]); - if(currentPort==portList[idx]) - { - portSelectionIndex=idx; - } - } - } - listBoxServerPort.setSelectedItemIndex(portSelectionIndex); + string + currentPort = + config.getString ("PortServer", + intToStr (GameConstants::serverPort).c_str ()); + int + portSelectionIndex = 0; + for (int idx = 0; idx < (int) portList.size (); idx++) + { + if (portList[idx] != "" + && IsNumeric (portList[idx].c_str (), false)) + { + listBoxServerPort.pushBackItem (portList[idx]); + if (currentPort == portList[idx]) + { + portSelectionIndex = idx; + } + } + } + listBoxServerPort.setSelectedItemIndex (portSelectionIndex); - currentLine-=lineOffset; - labelFTPServerPortLabel.init(currentLabelStart ,currentLine ); - labelFTPServerPortLabel.setText(lang.getString("FTPServerPort")); + currentLine -= lineOffset; + labelFTPServerPortLabel.init (currentLabelStart, currentLine); + labelFTPServerPortLabel.setText (lang.getString ("FTPServerPort")); - int FTPPort = config.getInt("FTPServerPort",intToStr(ServerSocket::getFTPServerPort()).c_str()); - labelFTPServerPort.init(currentColumnStart ,currentLine ); - labelFTPServerPort.setText(intToStr(FTPPort)); - currentLine-=lineOffset; - labelFTPServerDataPortsLabel.init(currentLabelStart ,currentLine ); - labelFTPServerDataPortsLabel.setText(lang.getString("FTPServerDataPort")); + int + FTPPort = + config.getInt ("FTPServerPort", + intToStr (ServerSocket::getFTPServerPort ()). + c_str ()); + labelFTPServerPort.init (currentColumnStart, currentLine); + labelFTPServerPort.setText (intToStr (FTPPort)); + currentLine -= lineOffset; + labelFTPServerDataPortsLabel.init (currentLabelStart, currentLine); + labelFTPServerDataPortsLabel.setText (lang. + getString + ("FTPServerDataPort")); - char szBuf[8096]=""; - snprintf(szBuf,8096,"%d - %d",FTPPort + 1, FTPPort + GameConstants::maxPlayers); + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "%d - %d", FTPPort + 1, + FTPPort + GameConstants::maxPlayers); - labelFTPServerDataPorts.init(currentColumnStart,currentLine ); - labelFTPServerDataPorts.setText(szBuf); - currentLine-=lineOffset; - labelEnableFTPServer.init(currentLabelStart ,currentLine); - labelEnableFTPServer.setText(lang.getString("EnableFTPServer")); + labelFTPServerDataPorts.init (currentColumnStart, currentLine); + labelFTPServerDataPorts.setText (szBuf); + currentLine -= lineOffset; + labelEnableFTPServer.init (currentLabelStart, currentLine); + labelEnableFTPServer.setText (lang.getString ("EnableFTPServer")); - checkBoxEnableFTPServer.init(currentColumnStart ,currentLine ); - checkBoxEnableFTPServer.setValue(config.getBool("EnableFTPServer","true")); - currentLine-=lineOffset; - // FTP Config - start - labelEnableFTP.init(currentLabelStart ,currentLine); - labelEnableFTP.setText(lang.getString("EnableFTP")); + checkBoxEnableFTPServer.init (currentColumnStart, currentLine); + checkBoxEnableFTPServer.setValue (config. + getBool ("EnableFTPServer", + "true")); + currentLine -= lineOffset; + // FTP Config - start + labelEnableFTP.init (currentLabelStart, currentLine); + labelEnableFTP.setText (lang.getString ("EnableFTP")); - checkBoxEnableFTP.init(currentColumnStart ,currentLine ); - checkBoxEnableFTP.setValue(config.getBool("EnableFTPXfer","true")); - currentLine-=lineOffset; + checkBoxEnableFTP.init (currentColumnStart, currentLine); + checkBoxEnableFTP.setValue (config.getBool ("EnableFTPXfer", "true")); + currentLine -= lineOffset; - labelEnableFTPServerInternetTilesetXfer.init(currentLabelStart ,currentLine ); - labelEnableFTPServerInternetTilesetXfer.setText(lang.getString("EnableFTPServerInternetTilesetXfer")); + labelEnableFTPServerInternetTilesetXfer.init (currentLabelStart, + currentLine); + labelEnableFTPServerInternetTilesetXfer.setText (lang. + getString + ("EnableFTPServerInternetTilesetXfer")); - checkBoxEnableFTPServerInternetTilesetXfer.init(currentColumnStart ,currentLine ); - checkBoxEnableFTPServerInternetTilesetXfer.setValue(config.getBool("EnableFTPServerInternetTilesetXfer","true")); + checkBoxEnableFTPServerInternetTilesetXfer.init (currentColumnStart, + currentLine); + checkBoxEnableFTPServerInternetTilesetXfer.setValue (config. + getBool + ("EnableFTPServerInternetTilesetXfer", + "true")); - currentLine-=lineOffset; + currentLine -= lineOffset; - labelEnableFTPServerInternetTechtreeXfer.init(currentLabelStart ,currentLine ); - labelEnableFTPServerInternetTechtreeXfer.setText(lang.getString("EnableFTPServerInternetTechtreeXfer")); + labelEnableFTPServerInternetTechtreeXfer.init (currentLabelStart, + currentLine); + labelEnableFTPServerInternetTechtreeXfer.setText (lang. + getString + ("EnableFTPServerInternetTechtreeXfer")); - checkBoxEnableFTPServerInternetTechtreeXfer.init(currentColumnStart ,currentLine ); - checkBoxEnableFTPServerInternetTechtreeXfer.setValue(config.getBool("EnableFTPServerInternetTechtreeXfer","true")); + checkBoxEnableFTPServerInternetTechtreeXfer.init (currentColumnStart, + currentLine); + checkBoxEnableFTPServerInternetTechtreeXfer.setValue (config. + getBool + ("EnableFTPServerInternetTechtreeXfer", + "true")); - currentLine-=lineOffset; + currentLine -= lineOffset; - // FTP config end + // FTP config end - // Privacy flag - labelEnablePrivacy.init(currentLabelStart ,currentLine); - labelEnablePrivacy.setText(lang.getString("PrivacyPlease")); + // Privacy flag + labelEnablePrivacy.init (currentLabelStart, currentLine); + labelEnablePrivacy.setText (lang.getString ("PrivacyPlease")); - checkBoxEnablePrivacy.init(currentColumnStart ,currentLine ); - checkBoxEnablePrivacy.setValue(config.getBool("PrivacyPlease","false")); - //currentLine-=lineOffset; - // end + checkBoxEnablePrivacy.init (currentColumnStart, currentLine); + checkBoxEnablePrivacy.setValue (config. + getBool ("PrivacyPlease", "false")); + //currentLine-=lineOffset; + // end - // buttons - buttonOk.init(buttonStartPos, buttonRowPos, 100); - buttonOk.setText(lang.getString("Save")); + // buttons + buttonOk.init (buttonStartPos, buttonRowPos, 100); + buttonOk.setText (lang.getString ("Save")); - buttonReturn.setText(lang.getString("Return")); - buttonReturn.init(buttonStartPos+110, buttonRowPos, 100); + buttonReturn.setText (lang.getString ("Return")); + buttonReturn.init (buttonStartPos + 110, buttonRowPos, 100); - GraphicComponent::applyAllCustomProperties(containerName); - } - catch(exception &e) { - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error loading options: %s\n",__FILE__,__FUNCTION__,__LINE__,e.what()); - throw megaglest_runtime_error(string("Error loading options msg: ") + e.what()); - } -} - -void MenuStateOptionsNetwork::reloadUI() { - Lang &lang= Lang::getInstance(); - - mainMessageBox.init(lang.getString("Ok")); - - buttonAudioSection.setText(lang.getString("Audio")); - buttonVideoSection.setText(lang.getString("Video")); - buttonMiscSection.setText(lang.getString("Misc")); - buttonNetworkSettings.setText(lang.getString("Network")); - - std::vector listboxData; - listboxData.push_back("None"); - listboxData.push_back("OpenAL"); - - listboxData.clear(); - listboxData.push_back("Bilinear"); - listboxData.push_back("Trilinear"); - - listboxData.clear(); - for (float f=0.0;f<2.1f;f=f+0.1f) { - listboxData.push_back(floatToStr(f)); - } - listboxData.clear(); - for(int i= 0; i(i)))); - } - - - labelServerPortLabel.setText(lang.getString("ServerPort")); - labelPublishServerExternalPort.setText(lang.getString("PublishServerExternalPort")); - labelEnableFTP.setText(lang.getString("EnableFTP")); - labelEnableFTPServer.setText(lang.getString("EnableFTPServer")); - labelFTPServerPortLabel.setText(lang.getString("FTPServerPort")); - labelFTPServerDataPortsLabel.setText(lang.getString("FTPServerDataPort")); - labelEnableFTPServerInternetTilesetXfer.setText(lang.getString("EnableFTPServerInternetTilesetXfer")); - labelEnableFTPServerInternetTechtreeXfer.setText(lang.getString("EnableFTPServerInternetTechtreeXfer")); - labelEnablePrivacy.setText(lang.getString("PrivacyPlease")); - buttonOk.setText(lang.getString("Save")); - buttonReturn.setText(lang.getString("Return")); -} - -void MenuStateOptionsNetwork::mouseClick(int x, int y, MouseButton mouseButton) { - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - if(mainMessageBox.getEnabled()) { - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - soundRenderer.playFx(coreData.getClickSoundA()); - if(button == 0) { - if(mainMessageBoxState == 1) { - mainMessageBoxState=0; - mainMessageBox.setEnabled(false); - saveConfig(); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - mainMenu->setState(new MenuStateOptions(program, mainMenu)); - } - else { - mainMessageBox.setEnabled(false); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - } - } - - } - } - else if(buttonOk.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - saveConfig(); - //mainMenu->setState(new MenuStateOptions(program, mainMenu,this->parentUI)); - return; + GraphicComponent::applyAllCustomProperties (containerName); + } + catch (exception & e) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error loading options: %s\n", + __FILE__, __FUNCTION__, __LINE__, + e.what ()); + throw + megaglest_runtime_error (string ("Error loading options msg: ") + + e.what ()); + } } - else if(buttonReturn.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - if(this->parentUI != NULL) { - *this->parentUI = NULL; - delete *this->parentUI; - } - mainMenu->setState(new MenuStateRoot(program, mainMenu)); - return; + + void + MenuStateOptionsNetwork::reloadUI () + { + Lang & lang = Lang::getInstance (); + + mainMessageBox.init (lang.getString ("Ok")); + + buttonAudioSection.setText (lang.getString ("Audio")); + buttonVideoSection.setText (lang.getString ("Video")); + buttonMiscSection.setText (lang.getString ("Misc")); + buttonNetworkSettings.setText (lang.getString ("Network")); + + std::vector < string > listboxData; + listboxData.push_back ("None"); + listboxData.push_back ("OpenAL"); + + listboxData.clear (); + listboxData.push_back ("Bilinear"); + listboxData.push_back ("Trilinear"); + + listboxData.clear (); + for (float f = 0.0; f < 2.1f; f = f + 0.1f) + { + listboxData.push_back (floatToStr (f)); + } + listboxData.clear (); + for (int i = 0; i < Renderer::sCount; ++i) + { + listboxData.push_back (lang. + getString (Renderer:: + shadowsToStr (static_cast < + Renderer::Shadows > + (i)))); + } + + + labelServerPortLabel.setText (lang.getString ("ServerPort")); + labelPublishServerExternalPort.setText (lang. + getString + ("PublishServerExternalPort")); + labelEnableFTP.setText (lang.getString ("EnableFTP")); + labelEnableFTPServer.setText (lang.getString ("EnableFTPServer")); + labelFTPServerPortLabel.setText (lang.getString ("FTPServerPort")); + labelFTPServerDataPortsLabel.setText (lang. + getString ("FTPServerDataPort")); + labelEnableFTPServerInternetTilesetXfer.setText (lang. + getString + ("EnableFTPServerInternetTilesetXfer")); + labelEnableFTPServerInternetTechtreeXfer.setText (lang. + getString + ("EnableFTPServerInternetTechtreeXfer")); + labelEnablePrivacy.setText (lang.getString ("PrivacyPlease")); + buttonOk.setText (lang.getString ("Save")); + buttonReturn.setText (lang.getString ("Return")); } - else if(buttonAudioSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsSound(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonNetworkSettings.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - //mainMenu->setState(new MenuStateOptionsNetwork(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonMiscSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptions(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonVideoSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - return; - } - else if(buttonKeyboardSetup.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateKeysetup(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen - //showMessageBox("Not implemented yet", "Keyboard setup", false); - return; - } - else - { - if(listBoxServerPort.mouseClick(x, y)){ - int selectedPort=strToInt(listBoxServerPort.getSelectedItem()); - if(selectedPort<10000){ - selectedPort=GameConstants::serverPort; - } - // use the following ports for ftp - char szBuf[8096]=""; - snprintf(szBuf,8096,"%d - %d",selectedPort + 2, selectedPort + 1 + GameConstants::maxPlayers); - labelFTPServerPort.setText(intToStr(selectedPort+1)); - labelFTPServerDataPorts.setText(szBuf); - } - checkBoxEnableFTP.mouseClick(x, y); - checkBoxEnableFTPServer.mouseClick(x, y); + void + MenuStateOptionsNetwork::mouseClick (int x, int y, + MouseButton mouseButton) + { + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); - checkBoxEnableFTPServerInternetTilesetXfer.mouseClick(x, y); - checkBoxEnableFTPServerInternetTechtreeXfer.mouseClick(x, y); + if (mainMessageBox.getEnabled ()) + { + int + button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (button == 0) + { + if (mainMessageBoxState == 1) + { + mainMessageBoxState = 0; + mainMessageBox.setEnabled (false); + saveConfig (); - checkBoxEnablePrivacy.mouseClick(x, y); - } -} + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + mainMenu->setState (new MenuStateOptions (program, mainMenu)); + } + else + { + mainMessageBox.setEnabled (false); -void MenuStateOptionsNetwork::mouseMove(int x, int y, const MouseState *ms){ - if (mainMessageBox.getEnabled()) { - mainMessageBox.mouseMove(x, y); - } + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + } + } - buttonOk.mouseMove(x, y); - buttonReturn.mouseMove(x, y); - buttonKeyboardSetup.mouseMove(x, y); - buttonAudioSection.mouseMove(x, y); - buttonNetworkSettings.mouseMove(x, y); - buttonMiscSection.mouseMove(x, y); - buttonVideoSection.mouseMove(x, y); - listBoxServerPort.mouseMove(x, y); - checkBoxEnableFTP.mouseMove(x, y); - checkBoxEnableFTPServer.mouseMove(x, y); - checkBoxEnableFTPServerInternetTilesetXfer.mouseMove(x, y); - checkBoxEnableFTPServerInternetTechtreeXfer.mouseMove(x, y); - checkBoxEnablePrivacy.mouseMove(x, y); -} + } + } + else if (buttonOk.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + saveConfig (); + //mainMenu->setState(new MenuStateOptions(program, mainMenu,this->parentUI)); + return; + } + else if (buttonReturn.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (this->parentUI != NULL) + { + *this->parentUI = NULL; + delete * + this-> + parentUI; + } + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + return; + } + else if (buttonAudioSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsSound (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonNetworkSettings.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + //mainMenu->setState(new MenuStateOptionsNetwork(program, mainMenu,this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonMiscSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptions (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonVideoSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsGraphics (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + return; + } + else if (buttonKeyboardSetup.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateKeysetup (program, mainMenu, this->parentUI)); // open keyboard shortcuts setup screen + //showMessageBox("Not implemented yet", "Keyboard setup", false); + return; + } + else + { + if (listBoxServerPort.mouseClick (x, y)) + { + int + selectedPort = strToInt (listBoxServerPort.getSelectedItem ()); + if (selectedPort < 10000) + { + selectedPort = GameConstants::serverPort; + } + // use the following ports for ftp + char + szBuf[8096] = ""; + snprintf (szBuf, 8096, "%d - %d", selectedPort + 2, + selectedPort + 1 + GameConstants::maxPlayers); + labelFTPServerPort.setText (intToStr (selectedPort + 1)); + labelFTPServerDataPorts.setText (szBuf); + } + + checkBoxEnableFTP.mouseClick (x, y); + checkBoxEnableFTPServer.mouseClick (x, y); + + checkBoxEnableFTPServerInternetTilesetXfer.mouseClick (x, y); + checkBoxEnableFTPServerInternetTechtreeXfer.mouseClick (x, y); + + checkBoxEnablePrivacy.mouseClick (x, y); + } + } + + void + MenuStateOptionsNetwork::mouseMove (int x, int y, const MouseState * ms) + { + if (mainMessageBox.getEnabled ()) + { + mainMessageBox.mouseMove (x, y); + } + + buttonOk.mouseMove (x, y); + buttonReturn.mouseMove (x, y); + buttonKeyboardSetup.mouseMove (x, y); + buttonAudioSection.mouseMove (x, y); + buttonNetworkSettings.mouseMove (x, y); + buttonMiscSection.mouseMove (x, y); + buttonVideoSection.mouseMove (x, y); + listBoxServerPort.mouseMove (x, y); + checkBoxEnableFTP.mouseMove (x, y); + checkBoxEnableFTPServer.mouseMove (x, y); + checkBoxEnableFTPServerInternetTilesetXfer.mouseMove (x, y); + checkBoxEnableFTPServerInternetTechtreeXfer.mouseMove (x, y); + checkBoxEnablePrivacy.mouseMove (x, y); + } //bool MenuStateOptionsNetwork::isInSpecialKeyCaptureEvent() { -// return (activeInputLabel != NULL); +// return (activeInputLabel != NULL); //} // //void MenuStateOptionsNetwork::keyDown(SDL_KeyboardEvent key) { -// if(activeInputLabel != NULL) { -// keyDownEditLabel(key, &activeInputLabel); -// } +// if(activeInputLabel != NULL) { +// keyDownEditLabel(key, &activeInputLabel); +// } //} -void MenuStateOptionsNetwork::keyPress(SDL_KeyboardEvent c) { -// if(activeInputLabel != NULL) { -// //printf("[%d]\n",c); fflush(stdout); -// if( &labelPlayerName == activeInputLabel || -// &labelTransifexUser == activeInputLabel || -// &labelTransifexPwd == activeInputLabel || -// &labelTransifexI18N == activeInputLabel) { -// textInputEditLabel(c, &activeInputLabel); -// } -// } -// else { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),c) == true) { - GraphicComponent::saveAllCustomProperties(containerName); - //Lang &lang= Lang::getInstance(); - //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } -// } -} + void + MenuStateOptionsNetwork::keyPress (SDL_KeyboardEvent c) + { +// if(activeInputLabel != NULL) { +// //printf("[%d]\n",c); fflush(stdout); +// if( &labelPlayerName == activeInputLabel || +// &labelTransifexUser == activeInputLabel || +// &labelTransifexPwd == activeInputLabel || +// &labelTransifexI18N == activeInputLabel) { +// textInputEditLabel(c, &activeInputLabel); +// } +// } +// else { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), c) == true) + { + GraphicComponent::saveAllCustomProperties (containerName); + //Lang &lang= Lang::getInstance(); + //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); + } +// } + } -void MenuStateOptionsNetwork::render(){ - Renderer &renderer= Renderer::getInstance(); + void + MenuStateOptionsNetwork::render () + { + Renderer & renderer = Renderer::getInstance (); - if(mainMessageBox.getEnabled()){ - renderer.renderMessageBox(&mainMessageBox); - } - else - { - renderer.renderButton(&buttonOk); - renderer.renderButton(&buttonReturn); - renderer.renderButton(&buttonKeyboardSetup); - renderer.renderButton(&buttonVideoSection); - renderer.renderButton(&buttonAudioSection); - renderer.renderButton(&buttonMiscSection); - renderer.renderButton(&buttonNetworkSettings); - renderer.renderLabel(&labelServerPortLabel); - renderer.renderLabel(&labelExternalPort); - renderer.renderLabel(&labelPublishServerExternalPort); - renderer.renderListBox(&listBoxServerPort); + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + else + { + renderer.renderButton (&buttonOk); + renderer.renderButton (&buttonReturn); + renderer.renderButton (&buttonKeyboardSetup); + renderer.renderButton (&buttonVideoSection); + renderer.renderButton (&buttonAudioSection); + renderer.renderButton (&buttonMiscSection); + renderer.renderButton (&buttonNetworkSettings); + renderer.renderLabel (&labelServerPortLabel); + renderer.renderLabel (&labelExternalPort); + renderer.renderLabel (&labelPublishServerExternalPort); + renderer.renderListBox (&listBoxServerPort); - renderer.renderLabel(&labelEnableFTP); - renderer.renderCheckBox(&checkBoxEnableFTP); + renderer.renderLabel (&labelEnableFTP); + renderer.renderCheckBox (&checkBoxEnableFTP); - renderer.renderLabel(&labelEnableFTPServer); - renderer.renderCheckBox(&checkBoxEnableFTPServer); + renderer.renderLabel (&labelEnableFTPServer); + renderer.renderCheckBox (&checkBoxEnableFTPServer); - renderer.renderLabel(&labelFTPServerPortLabel); - renderer.renderLabel(&labelFTPServerPort); - renderer.renderLabel(&labelFTPServerDataPortsLabel); - renderer.renderLabel(&labelFTPServerDataPorts); + renderer.renderLabel (&labelFTPServerPortLabel); + renderer.renderLabel (&labelFTPServerPort); + renderer.renderLabel (&labelFTPServerDataPortsLabel); + renderer.renderLabel (&labelFTPServerDataPorts); - renderer.renderLabel(&labelEnableFTPServerInternetTilesetXfer); - renderer.renderCheckBox(&checkBoxEnableFTPServerInternetTilesetXfer); - renderer.renderLabel(&labelEnableFTPServerInternetTechtreeXfer); - renderer.renderCheckBox(&checkBoxEnableFTPServerInternetTechtreeXfer); + renderer.renderLabel (&labelEnableFTPServerInternetTilesetXfer); + renderer.renderCheckBox (&checkBoxEnableFTPServerInternetTilesetXfer); + renderer.renderLabel (&labelEnableFTPServerInternetTechtreeXfer); + renderer. + renderCheckBox (&checkBoxEnableFTPServerInternetTechtreeXfer); - renderer.renderLabel(&labelEnablePrivacy); - renderer.renderCheckBox(&checkBoxEnablePrivacy); + renderer.renderLabel (&labelEnablePrivacy); + renderer.renderCheckBox (&checkBoxEnablePrivacy); - } + } - renderer.renderConsole(&console); - if(program != NULL) program->renderProgramMsgBox(); -} + renderer.renderConsole (&console); + if (program != NULL) + program->renderProgramMsgBox (); + } -void MenuStateOptionsNetwork::saveConfig(){ - Config &config= Config::getInstance(); - Lang &lang= Lang::getInstance(); - setActiveInputLable(NULL); + void + MenuStateOptionsNetwork::saveConfig () + { + Config & config = Config::getInstance (); + Lang & lang = Lang::getInstance (); + setActiveInputLable (NULL); - lang.loadGameStrings(config.getString("Lang")); + lang.loadGameStrings (config.getString ("Lang")); - config.setString("PortServer", listBoxServerPort.getSelectedItem()); - config.setInt("FTPServerPort",config.getInt("PortServer")+1); - config.setBool("EnableFTPXfer", checkBoxEnableFTP.getValue()); - config.setBool("EnableFTPServer", checkBoxEnableFTPServer.getValue()); + config.setString ("PortServer", listBoxServerPort.getSelectedItem ()); + config.setInt ("FTPServerPort", config.getInt ("PortServer") + 1); + config.setBool ("EnableFTPXfer", checkBoxEnableFTP.getValue ()); + config.setBool ("EnableFTPServer", checkBoxEnableFTPServer.getValue ()); - config.setBool("EnableFTPServerInternetTilesetXfer", checkBoxEnableFTPServerInternetTilesetXfer.getValue()); - config.setBool("EnableFTPServerInternetTechtreeXfer", checkBoxEnableFTPServerInternetTechtreeXfer.getValue()); + config.setBool ("EnableFTPServerInternetTilesetXfer", + checkBoxEnableFTPServerInternetTilesetXfer.getValue ()); + config.setBool ("EnableFTPServerInternetTechtreeXfer", + checkBoxEnableFTPServerInternetTechtreeXfer. + getValue ()); - config.setBool("PrivacyPlease", checkBoxEnablePrivacy.getValue()); + config.setBool ("PrivacyPlease", checkBoxEnablePrivacy.getValue ()); - config.save(); + config.save (); - Renderer::getInstance().loadConfig(); - console.addLine(lang.getString("SettingsSaved")); -} + Renderer::getInstance ().loadConfig (); + console.addLine (lang.getString ("SettingsSaved")); + } -void MenuStateOptionsNetwork::setActiveInputLable(GraphicLabel *newLable) { -} + void + MenuStateOptionsNetwork::setActiveInputLable (GraphicLabel * newLable) + { + } -}}//end namespace +}} //end namespace diff --git a/source/glest_game/menu/menu_state_options_network.h b/source/glest_game/menu/menu_state_options_network.h index 71a470fb2..750d93112 100644 --- a/source/glest_game/menu/menu_state_options_network.h +++ b/source/glest_game/menu/menu_state_options_network.h @@ -1,90 +1,95 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATEOPTIONS_NETWORK_H_ -#define _GLEST_GAME_MENUSTATEOPTIONS_NETWORK_H_ +# define _GLEST_GAME_MENUSTATEOPTIONS_NETWORK_H_ -#include "main_menu.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class MenuStateOptionsNetwork +// class MenuStateOptionsNetwork // =============================== -class MenuStateOptionsNetwork: public MenuState{ -private: + class MenuStateOptionsNetwork:public MenuState + { + private: - GraphicButton buttonOk; - GraphicButton buttonReturn; + GraphicButton buttonOk; + GraphicButton buttonReturn; - GraphicButton buttonKeyboardSetup; // configure the keyboard - GraphicButton buttonVideoSection; - GraphicButton buttonAudioSection; - GraphicButton buttonMiscSection; - GraphicButton buttonNetworkSettings; + GraphicButton buttonKeyboardSetup; // configure the keyboard + GraphicButton buttonVideoSection; + GraphicButton buttonAudioSection; + GraphicButton buttonMiscSection; + GraphicButton buttonNetworkSettings; - GraphicMessageBox mainMessageBox; - int mainMessageBoxState; + GraphicMessageBox mainMessageBox; + int mainMessageBoxState; - GraphicLabel labelExternalPort; - GraphicLabel labelServerPortLabel; + GraphicLabel labelExternalPort; + GraphicLabel labelServerPortLabel; - GraphicLabel labelPublishServerExternalPort; - GraphicListBox listBoxServerPort; + GraphicLabel labelPublishServerExternalPort; + GraphicListBox listBoxServerPort; - GraphicLabel labelEnableFTP; - GraphicCheckBox checkBoxEnableFTP; + GraphicLabel labelEnableFTP; + GraphicCheckBox checkBoxEnableFTP; - GraphicLabel labelEnableFTPServer; - GraphicCheckBox checkBoxEnableFTPServer; + GraphicLabel labelEnableFTPServer; + GraphicCheckBox checkBoxEnableFTPServer; - GraphicLabel labelFTPServerPortLabel; - GraphicLabel labelFTPServerPort; + GraphicLabel labelFTPServerPortLabel; + GraphicLabel labelFTPServerPort; - GraphicLabel labelFTPServerDataPortsLabel; - GraphicLabel labelFTPServerDataPorts; + GraphicLabel labelFTPServerDataPortsLabel; + GraphicLabel labelFTPServerDataPorts; - GraphicLabel labelEnableFTPServerInternetTilesetXfer; - GraphicCheckBox checkBoxEnableFTPServerInternetTilesetXfer; + GraphicLabel labelEnableFTPServerInternetTilesetXfer; + GraphicCheckBox checkBoxEnableFTPServerInternetTilesetXfer; - GraphicLabel labelEnableFTPServerInternetTechtreeXfer; - GraphicCheckBox checkBoxEnableFTPServerInternetTechtreeXfer; + GraphicLabel labelEnableFTPServerInternetTechtreeXfer; + GraphicCheckBox checkBoxEnableFTPServerInternetTechtreeXfer; - GraphicLabel labelEnablePrivacy; - GraphicCheckBox checkBoxEnablePrivacy; + GraphicLabel labelEnablePrivacy; + GraphicCheckBox checkBoxEnablePrivacy; - ProgramState **parentUI; + ProgramState **parentUI; -public: - MenuStateOptionsNetwork(Program *program, MainMenu *mainMenu, ProgramState **parentUI=NULL); + public: + MenuStateOptionsNetwork (Program * program, MainMenu * mainMenu, + ProgramState ** parentUI = NULL); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - //virtual void keyDown(SDL_KeyboardEvent key); - virtual void keyPress(SDL_KeyboardEvent c); - //virtual bool isInSpecialKeyCaptureEvent(); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void render (); + //virtual void keyDown(SDL_KeyboardEvent key); + virtual void keyPress (SDL_KeyboardEvent c); + //virtual bool isInSpecialKeyCaptureEvent(); - virtual void reloadUI(); + virtual void reloadUI (); -private: - void saveConfig(); - void setActiveInputLable(GraphicLabel* newLable); - //void showMessageBox(const string &text, const string &header, bool toggle); -}; + private: + void saveConfig (); + void setActiveInputLable (GraphicLabel * newLable); + //void showMessageBox(const string &text, const string &header, bool toggle); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_options_sound.cpp b/source/glest_game/menu/menu_state_options_sound.cpp index 40835a1eb..d958f3b28 100644 --- a/source/glest_game/menu/menu_state_options_sound.cpp +++ b/source/glest_game/menu/menu_state_options_sound.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_options_sound.h" @@ -28,407 +28,528 @@ #include "metrics.h" #include "leak_dumper.h" -using namespace Shared::Util; +using namespace + Shared::Util; -namespace Glest{ namespace Game{ - -// ===================================================== -// class MenuStateOptions -// ===================================================== -MenuStateOptionsSound::MenuStateOptionsSound(Program *program, MainMenu *mainMenu, ProgramState **parentUI) : - MenuState(program, mainMenu, "config"), - buttonOk("Options_Sound","buttonOk"), - buttonReturn("Options_Sound","buttonReturn"), - - buttonKeyboardSetup("Options_Sound","buttonKeyboardSetup"), - buttonVideoSection("Options_Sound","buttonVideoSection"), - buttonAudioSection("Options_Sound","buttonAudioSection"), - buttonMiscSection("Options_Sound","buttonMiscSection"), - buttonNetworkSettings("Options_Sound","buttonNetworkSettings"), - - labelSoundFactory("Options_Sound","labelSoundFactory"), - listBoxSoundFactory("Options_Sound","listBoxSoundFactory"), - - labelVolumeFx("Options_Sound","labelVolumeFx"), - listBoxVolumeFx("Options_Sound","listBoxVolumeFx"), - - labelVolumeAmbient("Options_Sound","labelVolumeAmbient"), - listBoxVolumeAmbient("Options_Sound","listBoxVolumeAmbient"), - - labelVolumeMusic("Options_Sound","labelVolumeMusic"), - listBoxVolumeMusic("Options_Sound","listBoxVolumeMusic"), - - mainMessageBox("Options_Sound","mainMessageBox") +namespace + Glest { - try { - containerName = "Options_Sound"; - this->parentUI=parentUI; - Lang &lang= Lang::getInstance(); - Config &config= Config::getInstance(); - this->console.setOnlyChatMessagesInStoredLines(false); + namespace + Game + { - int leftLabelStart=100; - int leftColumnStart=leftLabelStart+300; - int buttonRowPos=50; - int buttonStartPos=170; - int lineOffset=30; - int tabButtonWidth=200; - int tabButtonHeight=30; +// ===================================================== +// class MenuStateOptions +// ===================================================== + MenuStateOptionsSound::MenuStateOptionsSound (Program * program, + MainMenu * mainMenu, + ProgramState ** parentUI): + MenuState (program, mainMenu, "config"), + buttonOk ("Options_Sound", "buttonOk"), + buttonReturn ("Options_Sound", "buttonReturn"), + buttonKeyboardSetup ("Options_Sound", "buttonKeyboardSetup"), + buttonVideoSection ("Options_Sound", "buttonVideoSection"), + buttonAudioSection ("Options_Sound", "buttonAudioSection"), + buttonMiscSection ("Options_Sound", "buttonMiscSection"), + buttonNetworkSettings ("Options_Sound", "buttonNetworkSettings"), + labelSoundFactory ("Options_Sound", "labelSoundFactory"), + listBoxSoundFactory ("Options_Sound", "listBoxSoundFactory"), + labelVolumeFx ("Options_Sound", "labelVolumeFx"), + listBoxVolumeFx ("Options_Sound", "listBoxVolumeFx"), + labelVolumeAmbient ("Options_Sound", "labelVolumeAmbient"), + listBoxVolumeAmbient ("Options_Sound", "listBoxVolumeAmbient"), + labelVolumeMusic ("Options_Sound", "labelVolumeMusic"), + listBoxVolumeMusic ("Options_Sound", "listBoxVolumeMusic"), + mainMessageBox ("Options_Sound", "mainMessageBox") + { + try + { + containerName = "Options_Sound"; + this-> + parentUI = parentUI; + Lang & + lang = Lang::getInstance (); + Config & + config = Config::getInstance (); + this-> + console. + setOnlyChatMessagesInStoredLines (false); - mainMessageBox.init(lang.getString("Ok")); - mainMessageBox.setEnabled(false); - mainMessageBoxState=0; + int + leftLabelStart = 100; + int + leftColumnStart = leftLabelStart + 300; + int + buttonRowPos = 50; + int + buttonStartPos = 170; + int + lineOffset = 30; + int + tabButtonWidth = 200; + int + tabButtonHeight = 30; - buttonAudioSection.init(0, 700,tabButtonWidth,tabButtonHeight+20); - buttonAudioSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonAudioSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonAudioSection.setText(lang.getString("Audio")); - // Video Section - buttonVideoSection.init(200, 720,tabButtonWidth,tabButtonHeight); - buttonVideoSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonVideoSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonVideoSection.setText(lang.getString("Video")); - //currentLine-=lineOffset; - //MiscSection - buttonMiscSection.init(400, 720,tabButtonWidth,tabButtonHeight); - buttonMiscSection.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonMiscSection.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonMiscSection.setText(lang.getString("Misc")); - //NetworkSettings - buttonNetworkSettings.init(600, 720,tabButtonWidth,tabButtonHeight); - buttonNetworkSettings.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonNetworkSettings.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonNetworkSettings.setText(lang.getString("Network")); + mainMessageBox. + init (lang.getString ("Ok")); + mainMessageBox. + setEnabled (false); + mainMessageBoxState = 0; - //KeyboardSetup - buttonKeyboardSetup.init(800, 720,tabButtonWidth,tabButtonHeight); - buttonKeyboardSetup.setFont(CoreData::getInstance().getMenuFontVeryBig()); - buttonKeyboardSetup.setFont3D(CoreData::getInstance().getMenuFontVeryBig3D()); - buttonKeyboardSetup.setText(lang.getString("Keyboardsetup")); + buttonAudioSection. + init (0, 700, tabButtonWidth, tabButtonHeight + 20); + buttonAudioSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonAudioSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonAudioSection. + setText (lang.getString ("Audio")); + // Video Section + buttonVideoSection. + init (200, 720, tabButtonWidth, tabButtonHeight); + buttonVideoSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonVideoSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonVideoSection. + setText (lang.getString ("Video")); + //currentLine-=lineOffset; + //MiscSection + buttonMiscSection. + init (400, 720, tabButtonWidth, tabButtonHeight); + buttonMiscSection. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonMiscSection. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonMiscSection. + setText (lang.getString ("Misc")); + //NetworkSettings + buttonNetworkSettings. + init (600, 720, tabButtonWidth, tabButtonHeight); + buttonNetworkSettings. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonNetworkSettings. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonNetworkSettings. + setText (lang.getString ("Network")); - int currentLine=650; // reset line pos - int currentLabelStart=leftLabelStart; // set to right side - int currentColumnStart=leftColumnStart; // set to right side + //KeyboardSetup + buttonKeyboardSetup. + init (800, 720, tabButtonWidth, tabButtonHeight); + buttonKeyboardSetup. + setFont (CoreData::getInstance ().getMenuFontVeryBig ()); + buttonKeyboardSetup. + setFont3D (CoreData::getInstance ().getMenuFontVeryBig3D ()); + buttonKeyboardSetup. + setText (lang.getString ("Keyboardsetup")); - //soundboxes - labelSoundFactory.init(currentLabelStart, currentLine); - labelSoundFactory.setText(lang.getString("SoundAndMusic2")); + int + currentLine = 650; // reset line pos + int + currentLabelStart = leftLabelStart; // set to right side + int + currentColumnStart = leftColumnStart; // set to right side - listBoxSoundFactory.init(currentColumnStart, currentLine, 175); - listBoxSoundFactory.pushBackItem(lang.getString("None")); - listBoxSoundFactory.pushBackItem("OpenAL"); + //soundboxes + labelSoundFactory. + init (currentLabelStart, currentLine); + labelSoundFactory. + setText (lang.getString ("SoundAndMusic2")); - string FSoundMode=config.getString("FactorySound"); - string FSoundModeT=lang.getString(config.getString("FactorySound")); - if(FSoundModeT != "???" + FSoundMode + "???") { - FSoundMode=FSoundModeT; - } - listBoxSoundFactory.setSelectedItem(FSoundMode); - currentLine-=lineOffset; + listBoxSoundFactory. + init (currentColumnStart, currentLine, 175); + listBoxSoundFactory. + pushBackItem (lang.getString ("None")); + listBoxSoundFactory. + pushBackItem ("OpenAL"); - labelVolumeFx.init(currentLabelStart, currentLine); - labelVolumeFx.setText(lang.getString("FxVolume")); + string + FSoundMode = config.getString ("FactorySound"); + string + FSoundModeT = lang.getString (config.getString ("FactorySound")); + if (FSoundModeT != "???" + FSoundMode + "???") + { + FSoundMode = FSoundModeT; + } + listBoxSoundFactory. + setSelectedItem (FSoundMode); + currentLine -= + lineOffset; - listBoxVolumeFx.init(currentColumnStart, currentLine, 80); - currentLine-=lineOffset; + labelVolumeFx. + init (currentLabelStart, currentLine); + labelVolumeFx. + setText (lang.getString ("FxVolume")); - labelVolumeAmbient.init(currentLabelStart, currentLine); + listBoxVolumeFx. + init (currentColumnStart, currentLine, 80); + currentLine -= + lineOffset; - listBoxVolumeAmbient.init(currentColumnStart, currentLine, 80); - labelVolumeAmbient.setText(lang.getString("AmbientVolume")); - currentLine-=lineOffset; + labelVolumeAmbient. + init (currentLabelStart, currentLine); - labelVolumeMusic.init(currentLabelStart, currentLine); + listBoxVolumeAmbient. + init (currentColumnStart, currentLine, 80); + labelVolumeAmbient. + setText (lang.getString ("AmbientVolume")); + currentLine -= + lineOffset; - listBoxVolumeMusic.init(currentColumnStart, currentLine, 80); - labelVolumeMusic.setText(lang.getString("MusicVolume")); - //currentLine-=lineOffset; + labelVolumeMusic. + init (currentLabelStart, currentLine); - for(int i=0; i<=100; i+=5){ - listBoxVolumeFx.pushBackItem(intToStr(i)); - listBoxVolumeAmbient.pushBackItem(intToStr(i)); - listBoxVolumeMusic.pushBackItem(intToStr(i)); - } - listBoxVolumeFx.setSelectedItem(intToStr(config.getInt("SoundVolumeFx")/5*5)); - listBoxVolumeAmbient.setSelectedItem(intToStr(config.getInt("SoundVolumeAmbient")/5*5)); - listBoxVolumeMusic.setSelectedItem(intToStr(config.getInt("SoundVolumeMusic")/5*5)); + listBoxVolumeMusic. + init (currentColumnStart, currentLine, 80); + labelVolumeMusic. + setText (lang.getString ("MusicVolume")); + //currentLine-=lineOffset; - //currentLine-=lineOffset/2; + for (int i = 0; i <= 100; i += 5) + { + listBoxVolumeFx.pushBackItem (intToStr (i)); + listBoxVolumeAmbient. + pushBackItem (intToStr (i)); + listBoxVolumeMusic. + pushBackItem (intToStr (i)); + } + listBoxVolumeFx. + setSelectedItem (intToStr (config.getInt ("SoundVolumeFx") / 5 * 5)); + listBoxVolumeAmbient. + setSelectedItem (intToStr + (config.getInt ("SoundVolumeAmbient") / 5 * 5)); + listBoxVolumeMusic. + setSelectedItem (intToStr + (config.getInt ("SoundVolumeMusic") / 5 * 5)); + + //currentLine-=lineOffset/2; - ////////////////////////////////////////////////////////////////// - ///////// RIGHT SIDE - ////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////////// + ///////// RIGHT SIDE + ////////////////////////////////////////////////////////////////// - //currentLine=700; // reset line pos - //currentLabelStart=rightLabelStart; // set to right side - //currentColumnStart=rightColumnStart; // set to right side + //currentLine=700; // reset line pos + //currentLabelStart=rightLabelStart; // set to right side + //currentColumnStart=rightColumnStart; // set to right side - // buttons - buttonOk.init(buttonStartPos, buttonRowPos, 100); - buttonOk.setText(lang.getString("Save")); - buttonReturn.setText(lang.getString("Return")); + // buttons + buttonOk.init (buttonStartPos, buttonRowPos, 100); + buttonOk.setText (lang.getString ("Save")); + buttonReturn.setText (lang.getString ("Return")); - buttonReturn.init(buttonStartPos+110, buttonRowPos, 100); + buttonReturn.init (buttonStartPos + 110, buttonRowPos, 100); - GraphicComponent::applyAllCustomProperties(containerName); - } - catch(exception &e) { - SystemFlags::OutputDebug(SystemFlags::debugError,"In [%s::%s Line: %d] Error loading options: %s\n",__FILE__,__FUNCTION__,__LINE__,e.what()); - throw megaglest_runtime_error(string("Error loading options msg: ") + e.what()); - } -} - -void MenuStateOptionsSound::reloadUI() { - Lang &lang= Lang::getInstance(); - - mainMessageBox.init(lang.getString("Ok")); - - buttonAudioSection.setText(lang.getString("Audio")); - buttonVideoSection.setText(lang.getString("Video")); - buttonMiscSection.setText(lang.getString("Misc")); - buttonNetworkSettings.setText(lang.getString("Network")); - labelSoundFactory.setText(lang.getString("SoundAndMusic2")); - - std::vector listboxData; - listboxData.push_back(lang.getString("None")); - listboxData.push_back("OpenAL"); - - listBoxSoundFactory.setItems(listboxData); - - labelVolumeFx.setText(lang.getString("FxVolume")); - labelVolumeAmbient.setText(lang.getString("AmbientVolume")); - labelVolumeMusic.setText(lang.getString("MusicVolume")); - - listboxData.clear(); - - buttonOk.setText(lang.getString("Save")); - buttonReturn.setText(lang.getString("Return")); -} - -void MenuStateOptionsSound::mouseClick(int x, int y, MouseButton mouseButton){ - - //Config &config= Config::getInstance(); - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - - if(mainMessageBox.getEnabled()) { - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - soundRenderer.playFx(coreData.getClickSoundA()); - if(button == 0) { - if(mainMessageBoxState == 1) { - mainMessageBoxState=0; - mainMessageBox.setEnabled(false); - saveConfig(); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - mainMenu->setState(new MenuStateOptions(program, mainMenu)); - } - else { - mainMessageBox.setEnabled(false); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - } - } - else { - if(mainMessageBoxState == 1) { - mainMessageBoxState=0; - mainMessageBox.setEnabled(false); - - Lang &lang= Lang::getInstance(); - mainMessageBox.init(lang.getString("Ok")); - - - this->mainMenu->init(); - } - } - } - } - else if(buttonOk.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - saveConfig(); - //mainMenu->setState(new MenuStateOptions(program, mainMenu)); - return; + GraphicComponent::applyAllCustomProperties (containerName); + } + catch (exception & e) + { + SystemFlags::OutputDebug (SystemFlags::debugError, + "In [%s::%s Line: %d] Error loading options: %s\n", + __FILE__, __FUNCTION__, __LINE__, + e.what ()); + throw + megaglest_runtime_error (string ("Error loading options msg: ") + + e.what ()); + } } - else if(buttonReturn.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - if(this->parentUI != NULL) { - *this->parentUI = NULL; - delete *this->parentUI; - } - mainMenu->setState(new MenuStateRoot(program, mainMenu)); - return; + + void + MenuStateOptionsSound::reloadUI () + { + Lang & lang = Lang::getInstance (); + + mainMessageBox.init (lang.getString ("Ok")); + + buttonAudioSection.setText (lang.getString ("Audio")); + buttonVideoSection.setText (lang.getString ("Video")); + buttonMiscSection.setText (lang.getString ("Misc")); + buttonNetworkSettings.setText (lang.getString ("Network")); + labelSoundFactory.setText (lang.getString ("SoundAndMusic2")); + + std::vector < string > listboxData; + listboxData.push_back (lang.getString ("None")); + listboxData.push_back ("OpenAL"); + + listBoxSoundFactory.setItems (listboxData); + + labelVolumeFx.setText (lang.getString ("FxVolume")); + labelVolumeAmbient.setText (lang.getString ("AmbientVolume")); + labelVolumeMusic.setText (lang.getString ("MusicVolume")); + + listboxData.clear (); + + buttonOk.setText (lang.getString ("Save")); + buttonReturn.setText (lang.getString ("Return")); } - else if(buttonKeyboardSetup.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - //mainMenu->setState(new MenuStateKeysetup(program, mainMenu)); // open keyboard shortcuts setup screen - //mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu)); // open keyboard shortcuts setup screen - //mainMenu->setState(new MenuStateOptionsNetwork(program, mainMenu)); // open keyboard shortcuts setup screen - mainMenu->setState(new MenuStateKeysetup(program, mainMenu)); // open keyboard shortcuts setup screen - //showMessageBox("Not implemented yet", "Keyboard setup", false); - return; - } - else if(buttonAudioSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - //mainMenu->setState(new MenuStateOptionsSound(program, mainMenu)); // open keyboard shortcuts setup screen - return; - } - else if(buttonNetworkSettings.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsNetwork(program, mainMenu)); // open keyboard shortcuts setup screen - return; - } - else if(buttonMiscSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptions(program, mainMenu)); // open keyboard shortcuts setup screen - return; - } - else if(buttonVideoSection.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu)); // open keyboard shortcuts setup screen - return; - } - else - { - listBoxSoundFactory.mouseClick(x, y); - listBoxVolumeFx.mouseClick(x, y); - listBoxVolumeAmbient.mouseClick(x, y); - listBoxVolumeMusic.mouseClick(x, y); - } -} -void MenuStateOptionsSound::mouseMove(int x, int y, const MouseState *ms){ - if (mainMessageBox.getEnabled()) { - mainMessageBox.mouseMove(x, y); - } - buttonOk.mouseMove(x, y); - buttonReturn.mouseMove(x, y); - buttonKeyboardSetup.mouseMove(x, y); - buttonAudioSection.mouseMove(x, y); - buttonNetworkSettings.mouseMove(x, y); - buttonMiscSection.mouseMove(x, y); - buttonVideoSection.mouseMove(x, y); + void + MenuStateOptionsSound::mouseClick (int x, int y, MouseButton mouseButton) + { - listBoxSoundFactory.mouseMove(x, y); - listBoxVolumeFx.mouseMove(x, y); - listBoxVolumeAmbient.mouseMove(x, y); - listBoxVolumeMusic.mouseMove(x, y); -} + //Config &config= Config::getInstance(); + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + + if (mainMessageBox.getEnabled ()) + { + int + button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (button == 0) + { + if (mainMessageBoxState == 1) + { + mainMessageBoxState = 0; + mainMessageBox.setEnabled (false); + saveConfig (); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + mainMenu->setState (new MenuStateOptions (program, mainMenu)); + } + else + { + mainMessageBox.setEnabled (false); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + } + } + else + { + if (mainMessageBoxState == 1) + { + mainMessageBoxState = 0; + mainMessageBox.setEnabled (false); + + Lang & lang = Lang::getInstance (); + mainMessageBox.init (lang.getString ("Ok")); + + + this->mainMenu->init (); + } + } + } + } + else if (buttonOk.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + saveConfig (); + //mainMenu->setState(new MenuStateOptions(program, mainMenu)); + return; + } + else if (buttonReturn.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (this->parentUI != NULL) + { + *this->parentUI = NULL; + delete * + this-> + parentUI; + } + mainMenu->setState (new MenuStateRoot (program, mainMenu)); + return; + } + else if (buttonKeyboardSetup.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + //mainMenu->setState(new MenuStateKeysetup(program, mainMenu)); // open keyboard shortcuts setup screen + //mainMenu->setState(new MenuStateOptionsGraphics(program, mainMenu)); // open keyboard shortcuts setup screen + //mainMenu->setState(new MenuStateOptionsNetwork(program, mainMenu)); // open keyboard shortcuts setup screen + mainMenu->setState (new MenuStateKeysetup (program, mainMenu)); // open keyboard shortcuts setup screen + //showMessageBox("Not implemented yet", "Keyboard setup", false); + return; + } + else if (buttonAudioSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + //mainMenu->setState(new MenuStateOptionsSound(program, mainMenu)); // open keyboard shortcuts setup screen + return; + } + else if (buttonNetworkSettings.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsNetwork (program, mainMenu)); // open keyboard shortcuts setup screen + return; + } + else if (buttonMiscSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptions (program, mainMenu)); // open keyboard shortcuts setup screen + return; + } + else if (buttonVideoSection.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateOptionsGraphics (program, mainMenu)); // open keyboard shortcuts setup screen + return; + } + else + { + listBoxSoundFactory.mouseClick (x, y); + listBoxVolumeFx.mouseClick (x, y); + listBoxVolumeAmbient.mouseClick (x, y); + listBoxVolumeMusic.mouseClick (x, y); + } + } + + void + MenuStateOptionsSound::mouseMove (int x, int y, const MouseState * ms) + { + if (mainMessageBox.getEnabled ()) + { + mainMessageBox.mouseMove (x, y); + } + buttonOk.mouseMove (x, y); + buttonReturn.mouseMove (x, y); + buttonKeyboardSetup.mouseMove (x, y); + buttonAudioSection.mouseMove (x, y); + buttonNetworkSettings.mouseMove (x, y); + buttonMiscSection.mouseMove (x, y); + buttonVideoSection.mouseMove (x, y); + + listBoxSoundFactory.mouseMove (x, y); + listBoxVolumeFx.mouseMove (x, y); + listBoxVolumeAmbient.mouseMove (x, y); + listBoxVolumeMusic.mouseMove (x, y); + } //bool MenuStateOptionsSound::isInSpecialKeyCaptureEvent() { -// return (activeInputLabel != NULL); +// return (activeInputLabel != NULL); //} // //void MenuStateOptionsSound::keyDown(SDL_KeyboardEvent key) { -// if(activeInputLabel != NULL) { -// keyDownEditLabel(key, &activeInputLabel); -// } +// if(activeInputLabel != NULL) { +// keyDownEditLabel(key, &activeInputLabel); +// } //} -void MenuStateOptionsSound::keyPress(SDL_KeyboardEvent c) { -// if(activeInputLabel != NULL) { -// //printf("[%d]\n",c); fflush(stdout); -// if( &labelPlayerName == activeInputLabel || -// &labelTransifexUser == activeInputLabel || -// &labelTransifexPwd == activeInputLabel || -// &labelTransifexI18N == activeInputLabel) { -// textInputEditLabel(c, &activeInputLabel); -// } -// } -// else { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),c) == true) { - GraphicComponent::saveAllCustomProperties(containerName); - //Lang &lang= Lang::getInstance(); - //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } -// } -} - -void MenuStateOptionsSound::render(){ - Renderer &renderer= Renderer::getInstance(); - - if(mainMessageBox.getEnabled()){ - renderer.renderMessageBox(&mainMessageBox); - } - else - { - renderer.renderButton(&buttonOk); - renderer.renderButton(&buttonReturn); - renderer.renderButton(&buttonKeyboardSetup); - renderer.renderButton(&buttonVideoSection); - renderer.renderButton(&buttonAudioSection); - renderer.renderButton(&buttonMiscSection); - renderer.renderButton(&buttonNetworkSettings); - renderer.renderListBox(&listBoxSoundFactory); - renderer.renderLabel(&labelSoundFactory); - - - renderer.renderListBox(&listBoxVolumeFx); - renderer.renderLabel(&labelVolumeFx); - renderer.renderListBox(&listBoxVolumeAmbient); - renderer.renderLabel(&labelVolumeAmbient); - renderer.renderListBox(&listBoxVolumeMusic); - renderer.renderLabel(&labelVolumeMusic); - - - - } - - renderer.renderConsole(&console); - if(program != NULL) program->renderProgramMsgBox(); -} - -void MenuStateOptionsSound::saveConfig(){ - Config &config= Config::getInstance(); - Lang &lang= Lang::getInstance(); - setActiveInputLable(NULL); - - int FSoundIndex=listBoxSoundFactory.getSelectedItemIndex(); - string FSoundMode; - switch (FSoundIndex) { - case 0: - FSoundMode = "None"; - break; - case 1: - FSoundMode = "OpenAL"; - break; - } - config.setString("FactorySound",FSoundMode); - - config.setString("SoundVolumeFx", listBoxVolumeFx.getSelectedItem()); - config.setString("SoundVolumeAmbient", listBoxVolumeAmbient.getSelectedItem()); - CoreData::getInstance().getMenuMusic()->setVolume(strToInt(listBoxVolumeMusic.getSelectedItem())/100.f); - config.setString("SoundVolumeMusic", listBoxVolumeMusic.getSelectedItem()); - - config.save(); - - if(config.getBool("DisableLuaSandbox","false") == true) { - LuaScript::setDisableSandbox(true); - } - - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - soundRenderer.stopAllSounds(); - program->stopSoundSystem(); - soundRenderer.init(program->getWindow()); - soundRenderer.loadConfig(); - soundRenderer.setMusicVolume(CoreData::getInstance().getMenuMusic()); - program->startSoundSystem(); - - if(CoreData::getInstance().hasMainMenuVideoFilename() == false) { - soundRenderer.playMusic(CoreData::getInstance().getMenuMusic()); + void + MenuStateOptionsSound::keyPress (SDL_KeyboardEvent c) + { +// if(activeInputLabel != NULL) { +// //printf("[%d]\n",c); fflush(stdout); +// if( &labelPlayerName == activeInputLabel || +// &labelTransifexUser == activeInputLabel || +// &labelTransifexPwd == activeInputLabel || +// &labelTransifexI18N == activeInputLabel) { +// textInputEditLabel(c, &activeInputLabel); +// } +// } +// else { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), c) == true) + { + GraphicComponent::saveAllCustomProperties (containerName); + //Lang &lang= Lang::getInstance(); + //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); + } +// } } - Renderer::getInstance().loadConfig(); - console.addLine(lang.getString("SettingsSaved")); -} + void + MenuStateOptionsSound::render () + { + Renderer & renderer = Renderer::getInstance (); -void MenuStateOptionsSound::setActiveInputLable(GraphicLabel *newLable) { -} + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + else + { + renderer.renderButton (&buttonOk); + renderer.renderButton (&buttonReturn); + renderer.renderButton (&buttonKeyboardSetup); + renderer.renderButton (&buttonVideoSection); + renderer.renderButton (&buttonAudioSection); + renderer.renderButton (&buttonMiscSection); + renderer.renderButton (&buttonNetworkSettings); + renderer.renderListBox (&listBoxSoundFactory); + renderer.renderLabel (&labelSoundFactory); -}}//end namespace + + renderer.renderListBox (&listBoxVolumeFx); + renderer.renderLabel (&labelVolumeFx); + renderer.renderListBox (&listBoxVolumeAmbient); + renderer.renderLabel (&labelVolumeAmbient); + renderer.renderListBox (&listBoxVolumeMusic); + renderer.renderLabel (&labelVolumeMusic); + + + + } + + renderer.renderConsole (&console); + if (program != NULL) + program->renderProgramMsgBox (); + } + + void + MenuStateOptionsSound::saveConfig () + { + Config & config = Config::getInstance (); + Lang & lang = Lang::getInstance (); + setActiveInputLable (NULL); + + int + FSoundIndex = listBoxSoundFactory.getSelectedItemIndex (); + string + FSoundMode; + switch (FSoundIndex) + { + case 0: + FSoundMode = "None"; + break; + case 1: + FSoundMode = "OpenAL"; + break; + } + config.setString ("FactorySound", FSoundMode); + + config.setString ("SoundVolumeFx", listBoxVolumeFx.getSelectedItem ()); + config.setString ("SoundVolumeAmbient", + listBoxVolumeAmbient.getSelectedItem ()); + CoreData::getInstance ().getMenuMusic ()-> + setVolume (strToInt (listBoxVolumeMusic.getSelectedItem ()) / 100.f); + config.setString ("SoundVolumeMusic", + listBoxVolumeMusic.getSelectedItem ()); + + config.save (); + + if (config.getBool ("DisableLuaSandbox", "false") == true) + { + LuaScript::setDisableSandbox (true); + } + + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + soundRenderer.stopAllSounds (); + program->stopSoundSystem (); + soundRenderer.init (program->getWindow ()); + soundRenderer.loadConfig (); + soundRenderer.setMusicVolume (CoreData::getInstance ().getMenuMusic ()); + program->startSoundSystem (); + + if (CoreData::getInstance ().hasMainMenuVideoFilename () == false) + { + soundRenderer.playMusic (CoreData::getInstance ().getMenuMusic ()); + } + + Renderer::getInstance ().loadConfig (); + console.addLine (lang.getString ("SettingsSaved")); + } + + void + MenuStateOptionsSound::setActiveInputLable (GraphicLabel * newLable) + { + } + +}} //end namespace diff --git a/source/glest_game/menu/menu_state_options_sound.h b/source/glest_game/menu/menu_state_options_sound.h index dc4cef950..c8ea1cb50 100644 --- a/source/glest_game/menu/menu_state_options_sound.h +++ b/source/glest_game/menu/menu_state_options_sound.h @@ -1,74 +1,79 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATEOPTIONS_SOUND_H_ -#define _GLEST_GAME_MENUSTATEOPTIONS_SOUND_H_ +# define _GLEST_GAME_MENUSTATEOPTIONS_SOUND_H_ -#include "main_menu.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class MenuStateOptionsSound +// class MenuStateOptionsSound // =============================== -class MenuStateOptionsSound: public MenuState{ -private: + class MenuStateOptionsSound:public MenuState + { + private: - GraphicButton buttonOk; - GraphicButton buttonReturn; + GraphicButton buttonOk; + GraphicButton buttonReturn; - GraphicButton buttonKeyboardSetup; // configure the keyboard - GraphicButton buttonVideoSection; - GraphicButton buttonAudioSection; - GraphicButton buttonMiscSection; - GraphicButton buttonNetworkSettings; + GraphicButton buttonKeyboardSetup; // configure the keyboard + GraphicButton buttonVideoSection; + GraphicButton buttonAudioSection; + GraphicButton buttonMiscSection; + GraphicButton buttonNetworkSettings; - GraphicLabel labelSoundFactory; - GraphicListBox listBoxSoundFactory; + GraphicLabel labelSoundFactory; + GraphicListBox listBoxSoundFactory; - GraphicLabel labelVolumeFx; - GraphicListBox listBoxVolumeFx; + GraphicLabel labelVolumeFx; + GraphicListBox listBoxVolumeFx; - GraphicLabel labelVolumeAmbient; - GraphicListBox listBoxVolumeAmbient; + GraphicLabel labelVolumeAmbient; + GraphicListBox listBoxVolumeAmbient; - GraphicLabel labelVolumeMusic; - GraphicListBox listBoxVolumeMusic; + GraphicLabel labelVolumeMusic; + GraphicListBox listBoxVolumeMusic; - GraphicMessageBox mainMessageBox; - int mainMessageBoxState; + GraphicMessageBox mainMessageBox; + int mainMessageBoxState; - ProgramState **parentUI; + ProgramState **parentUI; -public: - MenuStateOptionsSound(Program *program, MainMenu *mainMenu, ProgramState **parentUI=NULL); + public: + MenuStateOptionsSound (Program * program, MainMenu * mainMenu, + ProgramState ** parentUI = NULL); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - //virtual void keyDown(SDL_KeyboardEvent key); - virtual void keyPress(SDL_KeyboardEvent c); - //virtual bool isInSpecialKeyCaptureEvent(); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void render (); + //virtual void keyDown(SDL_KeyboardEvent key); + virtual void keyPress (SDL_KeyboardEvent c); + //virtual bool isInSpecialKeyCaptureEvent(); - virtual void reloadUI(); + virtual void reloadUI (); -private: - void saveConfig(); - void setActiveInputLable(GraphicLabel* newLable); - //void showMessageBox(const string &text, const string &header, bool toggle); -}; + private: + void saveConfig (); + void setActiveInputLable (GraphicLabel * newLable); + //void showMessageBox(const string &text, const string &header, bool toggle); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_root.cpp b/source/glest_game/menu/menu_state_root.cpp index d711ec846..1aaed4399 100644 --- a/source/glest_game/menu/menu_state_root.cpp +++ b/source/glest_game/menu/menu_state_root.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_root.h" @@ -31,791 +31,1117 @@ #include "leak_dumper.h" -namespace Glest{ namespace Game{ - -// ===================================================== -// class MenuStateRoot -// ===================================================== - -bool MenuStateRoot::gameUpdateChecked = false; - -MenuStateRoot::MenuStateRoot(Program *program, MainMenu *mainMenu) : - MenuState(program, mainMenu, "root"), updatesHttpServerThread(NULL), - buttonNewGame("MainMenu","buttonNewGame"), - buttonLoadGame("MainMenu","buttonLoadGame"), - buttonMods("MainMenu","buttonMods"), - buttonOptions("MainMenu","buttonOptions"), - buttonAbout("MainMenu","buttonAbout"), - buttonExit("MainMenu","buttonExit"), - labelVersion("MainMenu","labelVersion"), - labelGreeting("MainMenu","labelGreeting"), - - mainMessageBox("MainMenu","mainMessageBox"), - errorMessageBox("MainMenu","errorMessageBox"), - ftpMessageBox("MainMenu","ftpMessageBox"), - - popupMenu("MainMenu","popupMenu") - +namespace Glest { - containerName = "MainMenu"; + namespace Game + { - ftpClientThread = NULL; - lastDownloadProgress = 0; +// ===================================================== +// class MenuStateRoot +// ===================================================== - Lang &lang= Lang::getInstance(); - int yPos=440; - int buttonWidth = 200; - int buttonXPosition = (1000 - buttonWidth) / 2; + bool MenuStateRoot::gameUpdateChecked = false; + + MenuStateRoot::MenuStateRoot (Program * program, + MainMenu * mainMenu):MenuState (program, + mainMenu, + "root"), + updatesHttpServerThread (NULL), buttonNewGame ("MainMenu", + "buttonNewGame"), + buttonLoadGame ("MainMenu", "buttonLoadGame"), buttonMods ("MainMenu", + "buttonMods"), + buttonOptions ("MainMenu", "buttonOptions"), buttonAbout ("MainMenu", + "buttonAbout"), + buttonExit ("MainMenu", "buttonExit"), labelVersion ("MainMenu", + "labelVersion"), + labelGreeting ("MainMenu", "labelGreeting"), mainMessageBox ("MainMenu", + "mainMessageBox"), + errorMessageBox ("MainMenu", "errorMessageBox"), + ftpMessageBox ("MainMenu", "ftpMessageBox"), popupMenu ("MainMenu", + "popupMenu") + { + containerName = "MainMenu"; + + ftpClientThread = NULL; + lastDownloadProgress = 0; + + Lang & lang = Lang::getInstance (); + int yPos = 440; + int buttonWidth = 200; + int buttonXPosition = (1000 - buttonWidth) / 2; - //labelVersion.registerGraphicComponent(containerName,"labelVersion"); - if(EndsWith(glestVersionString, "-dev") == false){ - labelVersion.init(525, yPos); - labelVersion.setText(glestVersionString); - } - else { - labelVersion.init(buttonXPosition, yPos); - //labelVersion.setText(glestVersionString + " [" + getCompileDateTime() + ", " + getGITRevisionString() + "]"); - labelVersion.setText(glestVersionString + " [" + getGITRevisionString() + "]"); - } + //labelVersion.registerGraphicComponent(containerName,"labelVersion"); + if (EndsWith (glestVersionString, "-dev") == false) + { + labelVersion.init (525, yPos); + labelVersion.setText (glestVersionString); + } + else + { + labelVersion.init (buttonXPosition, yPos); + //labelVersion.setText(glestVersionString + " [" + getCompileDateTime() + ", " + getGITRevisionString() + "]"); + labelVersion.setText (glestVersionString + " [" + + getGITRevisionString () + "]"); + } - labelGreeting.init(labelVersion.getX(), labelVersion.getY()-16); - labelGreeting.setText(""); + labelGreeting.init (labelVersion.getX (), labelVersion.getY () - 16); + labelGreeting.setText (""); - Steam *steamInstance = CacheManager::getCachedItem< Steam *>(GameConstants::steamCacheInstanceKey); - if(steamInstance != NULL) { - string steamPlayerName = steamInstance->userName(); - labelGreeting.setText("Welcome Steam Player: " + steamPlayerName); - } + Steam *steamInstance = + CacheManager::getCachedItem < + Steam * >(GameConstants::steamCacheInstanceKey); + if (steamInstance != NULL) + { + string steamPlayerName = steamInstance->userName (); + labelGreeting.setText ("Welcome Steam Player: " + steamPlayerName); + } - yPos-=55; - //buttonNewGame.registerGraphicComponent(containerName,"buttonNewGame"); - buttonNewGame.init(buttonXPosition, yPos, buttonWidth); - yPos-=40; - //buttonLoadGame.registerGraphicComponent(containerName,"buttonLoadGame"); - buttonLoadGame.init(buttonXPosition, yPos, buttonWidth); - yPos-=40; - //buttonMods.registerGraphicComponent(containerName,"buttonMods"); - buttonMods.init(buttonXPosition, yPos, buttonWidth); - yPos-=40; - //buttonOptions.registerGraphicComponent(containerName,"buttonOptions"); - buttonOptions.init(buttonXPosition, yPos, buttonWidth); - yPos-=40; - //buttonAbout.registerGraphicComponent(containerName,"buttonAbout"); - buttonAbout.init(buttonXPosition, yPos , buttonWidth); - yPos-=40; - //buttonExit.registerGraphicComponent(containerName,"buttonExit"); - buttonExit.init(buttonXPosition, yPos, buttonWidth); + yPos -= 55; + //buttonNewGame.registerGraphicComponent(containerName,"buttonNewGame"); + buttonNewGame.init (buttonXPosition, yPos, buttonWidth); + yPos -= 40; + //buttonLoadGame.registerGraphicComponent(containerName,"buttonLoadGame"); + buttonLoadGame.init (buttonXPosition, yPos, buttonWidth); + yPos -= 40; + //buttonMods.registerGraphicComponent(containerName,"buttonMods"); + buttonMods.init (buttonXPosition, yPos, buttonWidth); + yPos -= 40; + //buttonOptions.registerGraphicComponent(containerName,"buttonOptions"); + buttonOptions.init (buttonXPosition, yPos, buttonWidth); + yPos -= 40; + //buttonAbout.registerGraphicComponent(containerName,"buttonAbout"); + buttonAbout.init (buttonXPosition, yPos, buttonWidth); + yPos -= 40; + //buttonExit.registerGraphicComponent(containerName,"buttonExit"); + buttonExit.init (buttonXPosition, yPos, buttonWidth); - buttonNewGame.setText(lang.getString("NewGame")); - buttonLoadGame.setText(lang.getString("LoadGame")); - buttonMods.setText(lang.getString("Mods")); - buttonOptions.setText(lang.getString("Options")); - buttonAbout.setText(lang.getString("About")); - buttonExit.setText(lang.getString("Exit")); - - //mesage box - //mainMessageBox.registerGraphicComponent(containerName,"mainMessageBox"); - mainMessageBox.init(lang.getString("Yes"), lang.getString("No")); - mainMessageBox.setEnabled(false); + buttonNewGame.setText (lang.getString ("NewGame")); + buttonLoadGame.setText (lang.getString ("LoadGame")); + buttonMods.setText (lang.getString ("Mods")); + buttonOptions.setText (lang.getString ("Options")); + buttonAbout.setText (lang.getString ("About")); + buttonExit.setText (lang.getString ("Exit")); - //errorMessageBox.registerGraphicComponent(containerName,"errorMessageBox"); - errorMessageBox.init(lang.getString("Ok")); - errorMessageBox.setEnabled(false); + //mesage box + //mainMessageBox.registerGraphicComponent(containerName,"mainMessageBox"); + mainMessageBox.init (lang.getString ("Yes"), lang.getString ("No")); + mainMessageBox.setEnabled (false); - //ftpMessageBox.registerGraphicComponent(containerName,"ftpMessageBox"); - ftpMessageBox.init(lang.getString("Yes"), lang.getString("No")); - ftpMessageBox.setEnabled(false); + //errorMessageBox.registerGraphicComponent(containerName,"errorMessageBox"); + errorMessageBox.init (lang.getString ("Ok")); + errorMessageBox.setEnabled (false); - //PopupMenu popupMenu; - std::vector menuItems; - menuItems.push_back("1"); - menuItems.push_back("2"); - menuItems.push_back("3"); - //popupMenu.registerGraphicComponentOnlyFontCallbacks(containerName, "popupMenu"); - popupMenu.setW(100); - popupMenu.setH(100); - popupMenu.init("Test Menu",menuItems); - popupMenu.setEnabled(false); - popupMenu.setVisible(false); + //ftpMessageBox.registerGraphicComponent(containerName,"ftpMessageBox"); + ftpMessageBox.init (lang.getString ("Yes"), lang.getString ("No")); + ftpMessageBox.setEnabled (false); - GraphicComponent::applyAllCustomProperties(containerName); -} + //PopupMenu popupMenu; + std::vector < string > menuItems; + menuItems.push_back ("1"); + menuItems.push_back ("2"); + menuItems.push_back ("3"); + //popupMenu.registerGraphicComponentOnlyFontCallbacks(containerName, "popupMenu"); + popupMenu.setW (100); + popupMenu.setH (100); + popupMenu.init ("Test Menu", menuItems); + popupMenu.setEnabled (false); + popupMenu.setVisible (false); -MenuStateRoot::~MenuStateRoot() { - if(updatesHttpServerThread != NULL) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + GraphicComponent::applyAllCustomProperties (containerName); + } - updatesHttpServerThread->setSimpleTaskInterfaceValid(false); - updatesHttpServerThread->signalQuit(); - updatesHttpServerThread->setThreadOwnerValid(false); + MenuStateRoot::~MenuStateRoot () + { + if (updatesHttpServerThread != NULL) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - if( updatesHttpServerThread->canShutdown(true) == true && - updatesHttpServerThread->shutdownAndWait() == true) { - delete updatesHttpServerThread; - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - updatesHttpServerThread = NULL; - } + updatesHttpServerThread->setSimpleTaskInterfaceValid (false); + updatesHttpServerThread->signalQuit (); + updatesHttpServerThread->setThreadOwnerValid (false); - if(ftpClientThread != NULL) { - ftpClientThread->setCallBackObject(NULL); - ftpClientThread->signalQuit(); - sleep(0); - if(ftpClientThread->canShutdown(true) == true && - ftpClientThread->shutdownAndWait() == true) { - delete ftpClientThread; - } - else { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error cannot shutdown ftpClientThread\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__); - //SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("%s",szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); + if (updatesHttpServerThread->canShutdown (true) == true + && updatesHttpServerThread->shutdownAndWait () == true) + { + delete updatesHttpServerThread; + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + updatesHttpServerThread = NULL; + } - //publishToMasterserverThread->cleanup(); - } - ftpClientThread = NULL; + if (ftpClientThread != NULL) + { + ftpClientThread->setCallBackObject (NULL); + ftpClientThread->signalQuit (); + sleep (0); + if (ftpClientThread->canShutdown (true) == true && + ftpClientThread->shutdownAndWait () == true) + { + delete ftpClientThread; + } + else + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s %d] Error cannot shutdown ftpClientThread\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__); + //SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("%s", szBuf); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); -// ftpClientThread->signalQuit(); -// ftpClientThread->setCallBackObject(NULL); -// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); -// if( ftpClientThread->shutdownAndWait() == true) { -// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + //publishToMasterserverThread->cleanup(); + } + ftpClientThread = NULL; + +// ftpClientThread->signalQuit(); +// ftpClientThread->setCallBackObject(NULL); +// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); +// if( ftpClientThread->shutdownAndWait() == true) { +// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); // delete ftpClientThread; -// } -// ftpClientThread = NULL; -// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - } +// } +// ftpClientThread = NULL; +// if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + } -} + } -void MenuStateRoot::reloadUI() { - Lang &lang= Lang::getInstance(); + void MenuStateRoot::reloadUI () + { + Lang & lang = Lang::getInstance (); - console.resetFonts(); + console.resetFonts (); - if(EndsWith(glestVersionString, "-dev") == false){ - labelVersion.setText(glestVersionString); - } - else { - //labelVersion.setText(glestVersionString + " [" + getCompileDateTime() + ", " + getGITRevisionString() + "]"); - labelVersion.setText(glestVersionString + " [" + getGITRevisionString() + "]"); - } + if (EndsWith (glestVersionString, "-dev") == false) + { + labelVersion.setText (glestVersionString); + } + else + { + //labelVersion.setText(glestVersionString + " [" + getCompileDateTime() + ", " + getGITRevisionString() + "]"); + labelVersion.setText (glestVersionString + " [" + + getGITRevisionString () + "]"); + } - buttonNewGame.setText(lang.getString("NewGame")); - buttonLoadGame.setText(lang.getString("LoadGame")); - buttonMods.setText(lang.getString("Mods")); - buttonOptions.setText(lang.getString("Options")); - buttonAbout.setText(lang.getString("About")); - buttonExit.setText(lang.getString("Exit")); + buttonNewGame.setText (lang.getString ("NewGame")); + buttonLoadGame.setText (lang.getString ("LoadGame")); + buttonMods.setText (lang.getString ("Mods")); + buttonOptions.setText (lang.getString ("Options")); + buttonAbout.setText (lang.getString ("About")); + buttonExit.setText (lang.getString ("Exit")); - mainMessageBox.init(lang.getString("Yes"), lang.getString("No")); - errorMessageBox.init(lang.getString("Ok")); - ftpMessageBox.init(lang.getString("Yes"), lang.getString("No")); + mainMessageBox.init (lang.getString ("Yes"), lang.getString ("No")); + errorMessageBox.init (lang.getString ("Ok")); + ftpMessageBox.init (lang.getString ("Yes"), lang.getString ("No")); - console.resetFonts(); + console.resetFonts (); - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} + GraphicComponent:: + reloadFontsForRegisterGraphicComponents (containerName); + } -void MenuStateRoot::mouseClick(int x, int y, MouseButton mouseButton){ - try { - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); + void MenuStateRoot::mouseClick (int x, int y, MouseButton mouseButton) + { + try + { + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); - if(popupMenu.mouseClick(x, y)) { - //std::pair result = popupMenu.mouseClickedMenuItem(x, y); - popupMenu.mouseClickedMenuItem(x, y); + if (popupMenu.mouseClick (x, y)) + { + //std::pair result = popupMenu.mouseClickedMenuItem(x, y); + popupMenu.mouseClickedMenuItem (x, y); - //printf("In popup callback menuItemSelected [%s] menuIndexSelected = %d\n",result.second.c_str(),result.first); - } - //exit message box, has to be the last thing to do in this function - else if(mainMessageBox.getEnabled()){ - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - if(button==0) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - soundRenderer.playFx(coreData.getClickSoundA()); - program->exit(); - } - else { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - //close message box - mainMessageBox.setEnabled(false); - } - } - } - //exit message box, has to be the last thing to do in this function - else if(errorMessageBox.getEnabled()){ - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); - //close message box - errorMessageBox.setEnabled(false); - } - } - - else if(ftpMessageBox.getEnabled()) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - int button= 0; - if(ftpMessageBox.mouseClick(x, y, button)) { - ftpMessageBox.setEnabled(false); - if(button == 0) { - startFTPClientIfRequired(); - - lastDownloadProgress = 0; - printf("Adding ftpFileName [%s] ftpFileURL [%s]\n",ftpFileName.c_str(),ftpFileURL.c_str()); - if(ftpClientThread != NULL) ftpClientThread->addTempFileToRequests(ftpFileName,ftpFileURL); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList[ftpFileName] = pair(0,""); - safeMutexFTPProgress.ReleaseLock(); - } - } - } - else if(mainMessageBox.getEnabled() == false && buttonNewGame.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateNewGame(program, mainMenu)); - } - else if(mainMessageBox.getEnabled() == false && buttonLoadGame.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateLoadGame(program, mainMenu)); - } - else if(mainMessageBox.getEnabled() == false && buttonMods.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateMods(program, mainMenu)); - } - else if(mainMessageBox.getEnabled() == false && buttonOptions.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateOptions(program, mainMenu)); - } - else if(mainMessageBox.getEnabled() == false && buttonAbout.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundB()); - mainMenu->setState(new MenuStateAbout(program, mainMenu)); - } - else if(buttonExit.mouseClick(x, y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - program->exit(); - } - } - catch(exception &e) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s Line: %d]\nError in menu event:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,e.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - showErrorMessageBox(szBuf, "", true); - } -} - -void MenuStateRoot::startFTPClientIfRequired() { - if(ftpClientThread == NULL) { - // Setup File Transfer thread - Config &config = Config::getInstance(); - - vector tilesetFiles; - vector tilesetFilesUserData; - - vector techTreeFiles; - vector techTreeFilesUserData; - - - findDirs(config.getPathListForType(ptTilesets), tilesetFiles); - findDirs(config.getPathListForType(ptTechs), techTreeFiles); - - vector mapPathList = config.getPathListForType(ptMaps); - std::pair mapsPath; - if(mapPathList.empty() == false) { - mapsPath.first = mapPathList[0]; - } - if(mapPathList.size() > 1) { - mapsPath.second = mapPathList[1]; - } - std::pair tilesetsPath; - vector tilesetsList = Config::getInstance().getPathListForType(ptTilesets); - if(tilesetsList.empty() == false) { - tilesetsPath.first = tilesetsList[0]; - if(tilesetsList.size() > 1) { - tilesetsPath.second = tilesetsList[1]; - } - } - - std::pair techtreesPath; - vector techtreesList = Config::getInstance().getPathListForType(ptTechs); - if(techtreesList.empty() == false) { - techtreesPath.first = techtreesList[0]; - if(techtreesList.size() > 1) { - techtreesPath.second = techtreesList[1]; - } - } - - std::pair scenariosPath; - vector scenariosList = Config::getInstance().getPathListForType(ptScenarios); - if(scenariosList.empty() == false) { - scenariosPath.first = scenariosList[0]; - if(scenariosList.size() > 1) { - scenariosPath.second = scenariosList[1]; - } - } - - string fileArchiveExtension = config.getString("FileArchiveExtension",""); - string fileArchiveExtractCommand = config.getString("FileArchiveExtractCommand",""); - string fileArchiveExtractCommandParameters = config.getString("FileArchiveExtractCommandParameters",""); - int32 fileArchiveExtractCommandSuccessResult = config.getInt("FileArchiveExtractCommandSuccessResult","0"); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - console.setOnlyChatMessagesInStoredLines(false); - - // Get path to temp files - string tempFilePath = "temp/"; - if(getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) != "") { - tempFilePath = getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) + tempFilePath; - } - else { - string userData = config.getString("UserData_Root",""); - if(userData != "") { - endPathWithSlash(userData); - } - tempFilePath = userData + tempFilePath; - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Temp files path [%s]\n",tempFilePath.c_str()); - - ftpClientThread = new FTPClientThread(-1,"", - mapsPath,tilesetsPath,techtreesPath,scenariosPath, - this,fileArchiveExtension,fileArchiveExtractCommand, - fileArchiveExtractCommandParameters, - fileArchiveExtractCommandSuccessResult, - tempFilePath); - ftpClientThread->start(); - - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - } -} - -void MenuStateRoot::FTPClient_CallbackEvent(string itemName, - FTP_Client_CallbackType type, pair result,void *userdata) { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - - Lang &lang= Lang::getInstance(); - if(type == ftp_cct_DownloadProgress) { - FTPClientCallbackInterface::FtpProgressStats *stats = (FTPClientCallbackInterface::FtpProgressStats *)userdata; - if(stats != NULL) { - int fileProgress = 0; - if(stats->download_total > 0) { - fileProgress = ((stats->download_now / stats->download_total) * 100.0); + //printf("In popup callback menuItemSelected [%s] menuIndexSelected = %d\n",result.second.c_str(),result.first); + } + //exit message box, has to be the last thing to do in this function + else if (mainMessageBox.getEnabled ()) + { + int button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + if (button == 0) + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + soundRenderer.playFx (coreData.getClickSoundA ()); + program->exit (); } - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] current file [%s] fileProgress = %d [now = %f, total = %f]\n",itemName.c_str(),stats->currentFilename.c_str(), fileProgress,stats->download_now,stats->download_total); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - pair lastProgress = fileFTPProgressList[itemName]; - fileFTPProgressList[itemName] = pair(fileProgress,stats->currentFilename); - safeMutexFTPProgress.ReleaseLock(); - - if(itemName != "" && (lastDownloadProgress < fileProgress && fileProgress % 25 == 0)) { - lastDownloadProgress = fileProgress; - - char szBuf[8096]=""; - snprintf(szBuf,8096,"Downloaded %d%% of file: %s",fileProgress,itemName.c_str()); - console.addLine(szBuf); + else + { + if (SystemFlags:: + getSystemSettingType (SystemFlags::debugSystem).enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + //close message box + mainMessageBox.setEnabled (false); } + } } - } - else if(type == ftp_cct_ExtractProgress) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP extract Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); - printf("Got FTP extract Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); - - if(userdata == NULL) { - char szBuf[8096]=""; - snprintf(szBuf,8096,lang.getString("DataMissingExtractDownloadMod").c_str(),itemName.c_str()); - //printf("%s\n",szBuf); - console.addLine(szBuf,true); - } - else { - char *szBuf = (char *)userdata; - //printf("%s\n",szBuf); - console.addLine(szBuf); - } - } - else if(type == ftp_cct_TempFile) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] result = %d [%s]\n",itemName.c_str(),result.first,result.second.c_str()); - - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexFTPProgress((ftpClientThread != NULL ? ftpClientThread->getProgressMutex() : NULL),mutexOwnerId); - if(ftpClientThread != NULL && ftpClientThread->getProgressMutex() != NULL) ftpClientThread->getProgressMutex()->setOwnerId(mutexOwnerId); - fileFTPProgressList.erase(itemName); - safeMutexFTPProgress.ReleaseLock(); - - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("### downloaded TEMP file [%s] result = %d\n",itemName.c_str(),result.first); - - if(result.first == ftp_crt_SUCCESS) { - // Get path to temp files - string tempFilePath = "temp/"; - if(getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) != "") { - tempFilePath = getGameReadWritePath(GameConstants::path_logs_CacheLookupKey) + tempFilePath; - } - else { - Config &config = Config::getInstance(); - string userData = config.getString("UserData_Root",""); - if(userData != "") { - endPathWithSlash(userData); - } - tempFilePath = userData + tempFilePath; - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Temp files path [%s]\n",tempFilePath.c_str()); - - // Delete the downloaded archive - if(fileExists(tempFilePath + itemName)) { - removeFile(tempFilePath + itemName); - } - - bool result = upgradeFilesInTemp(); - if(result == false) { - string binaryName = Properties::getApplicationPath() + extractFileFromDirectoryPath(PlatformExceptionHandler::application_binary); - string binaryNameOld = Properties::getApplicationPath() + extractFileFromDirectoryPath(PlatformExceptionHandler::application_binary) + "__REMOVE"; - bool resultRename = renameFile(binaryName,binaryNameOld); - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Rename: [%s] to [%s] result = %d\n",binaryName.c_str(),binaryNameOld.c_str(),resultRename); - printf("#1 Rename: [%s] to [%s] result = %d errno = %d\n",binaryName.c_str(),binaryNameOld.c_str(),resultRename, errno); - - //result = upgradeFilesInTemp(); - binaryName = Properties::getApplicationPath() + extractFileFromDirectoryPath(PlatformExceptionHandler::application_binary); - binaryNameOld = tempFilePath + extractFileFromDirectoryPath(PlatformExceptionHandler::application_binary); - resultRename = renameFile(binaryNameOld, binaryName); - - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Rename: [%s] to [%s] result = %d\n",binaryName.c_str(),binaryNameOld.c_str(),resultRename); - printf("#2 Rename: [%s] to [%s] result = %d errno = %d\n",binaryNameOld.c_str(),binaryName.c_str(),resultRename, errno); - } - - console.addLine("Successfully updated, please restart!",true); + //exit message box, has to be the last thing to do in this function + else if (errorMessageBox.getEnabled ()) + { + int button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); + //close message box + errorMessageBox.setEnabled (false); + } } - else { - curl_version_info_data *curlVersion= curl_version_info(CURLVERSION_NOW); - char szBuf[8096]=""; - snprintf(szBuf,8096,"FAILED to download the updates: [%s] using CURL version [%s] [%s]",itemName.c_str(),curlVersion->version,result.second.c_str()); - console.addLine(szBuf,true); - showErrorMessageBox(szBuf, "ERROR", false); + else if (ftpMessageBox.getEnabled ()) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + + int button = 0; + if (ftpMessageBox.mouseClick (x, y, button)) + { + ftpMessageBox.setEnabled (false); + if (button == 0) + { + startFTPClientIfRequired (); + + lastDownloadProgress = 0; + printf ("Adding ftpFileName [%s] ftpFileURL [%s]\n", + ftpFileName.c_str (), ftpFileURL.c_str ()); + if (ftpClientThread != NULL) + ftpClientThread->addTempFileToRequests (ftpFileName, + ftpFileURL); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), + mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()-> + setOwnerId (mutexOwnerId); + fileFTPProgressList[ftpFileName] = pair < int, string > (0, ""); + safeMutexFTPProgress.ReleaseLock (); + } + } } + else if (mainMessageBox.getEnabled () == false + && buttonNewGame.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateNewGame (program, mainMenu)); + } + else if (mainMessageBox.getEnabled () == false + && buttonLoadGame.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateLoadGame (program, mainMenu)); + } + else if (mainMessageBox.getEnabled () == false + && buttonMods.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateMods (program, mainMenu)); + } + else if (mainMessageBox.getEnabled () == false + && buttonOptions.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateOptions (program, mainMenu)); + } + else if (mainMessageBox.getEnabled () == false + && buttonAbout.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundB ()); + mainMenu->setState (new MenuStateAbout (program, mainMenu)); + } + else if (buttonExit.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + program->exit (); + } + } + catch (exception & e) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "In [%s::%s Line: %d]\nError in menu event:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, e.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + showErrorMessageBox (szBuf, "", true); + } } -} + + void MenuStateRoot::startFTPClientIfRequired () + { + if (ftpClientThread == NULL) + { + // Setup File Transfer thread + Config & config = Config::getInstance (); + + vector < string > tilesetFiles; + vector < string > tilesetFilesUserData; + + vector < string > techTreeFiles; + vector < string > techTreeFilesUserData; -void MenuStateRoot::mouseMove(int x, int y, const MouseState *ms){ - popupMenu.mouseMove(x, y); - buttonNewGame.mouseMove(x, y); - buttonLoadGame.mouseMove(x, y); - buttonMods.mouseMove(x, y); - buttonOptions.mouseMove(x, y); - buttonAbout.mouseMove(x, y); - buttonExit.mouseMove(x,y); - if (mainMessageBox.getEnabled()) { - mainMessageBox.mouseMove(x, y); - } - if (errorMessageBox.getEnabled()) { - errorMessageBox.mouseMove(x, y); - } - if (ftpMessageBox.getEnabled()) { - ftpMessageBox.mouseMove(x, y); - } -} + findDirs (config.getPathListForType (ptTilesets), tilesetFiles); + findDirs (config.getPathListForType (ptTechs), techTreeFiles); -bool MenuStateRoot::isMasterserverMode() const { - return GlobalStaticFlags::getIsNonGraphicalModeEnabled(); -} + vector < string > mapPathList = config.getPathListForType (ptMaps); + std::pair < string, string > mapsPath; + if (mapPathList.empty () == false) + { + mapsPath.first = mapPathList[0]; + } + if (mapPathList.size () > 1) + { + mapsPath.second = mapPathList[1]; + } + std::pair < string, string > tilesetsPath; + vector < string > tilesetsList = + Config::getInstance ().getPathListForType (ptTilesets); + if (tilesetsList.empty () == false) + { + tilesetsPath.first = tilesetsList[0]; + if (tilesetsList.size () > 1) + { + tilesetsPath.second = tilesetsList[1]; + } + } -void MenuStateRoot::render() { - if(isMasterserverMode() == true) { - return; - } - Renderer &renderer= Renderer::getInstance(); - CoreData &coreData= CoreData::getInstance(); - const Metrics &metrics= Metrics::getInstance(); + std::pair < string, string > techtreesPath; + vector < string > techtreesList = + Config::getInstance ().getPathListForType (ptTechs); + if (techtreesList.empty () == false) + { + techtreesPath.first = techtreesList[0]; + if (techtreesList.size () > 1) + { + techtreesPath.second = techtreesList[1]; + } + } - int w= 400; - int h= 200; - int yPos= 510; + std::pair < string, string > scenariosPath; + vector < string > scenariosList = + Config::getInstance ().getPathListForType (ptScenarios); + if (scenariosList.empty () == false) + { + scenariosPath.first = scenariosList[0]; + if (scenariosList.size () > 1) + { + scenariosPath.second = scenariosList[1]; + } + } - int logoMainX = (metrics.getVirtualW()-w)/2; - int logoMainY = yPos-h/2; - int logoMainW = w; - int logoMainH = h; - logoMainX = Config::getInstance().getInt(string(containerName) + "_MainLogo_x",intToStr(logoMainX).c_str()); - logoMainY = Config::getInstance().getInt(string(containerName) + "_MainLogo_y",intToStr(logoMainY).c_str()); - logoMainW = Config::getInstance().getInt(string(containerName) + "_MainLogo_w",intToStr(logoMainW).c_str()); - logoMainH = Config::getInstance().getInt(string(containerName) + "_MainLogo_h",intToStr(logoMainH).c_str()); + string fileArchiveExtension = + config.getString ("FileArchiveExtension", ""); + string fileArchiveExtractCommand = + config.getString ("FileArchiveExtractCommand", ""); + string fileArchiveExtractCommandParameters = + config.getString ("FileArchiveExtractCommandParameters", ""); + int32 fileArchiveExtractCommandSuccessResult = + config.getInt ("FileArchiveExtractCommandSuccessResult", "0"); - renderer.renderTextureQuad( - logoMainX, logoMainY, logoMainW, logoMainH, - coreData.getLogoTexture(), GraphicComponent::getFade()); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); - int maxLogoWidth=0; - for(int idx = 0; idx < (int)coreData.getLogoTextureExtraCount(); ++idx) { - Texture2D *extraLogo = coreData.getLogoTextureExtra(idx); - maxLogoWidth += extraLogo->getPixmap()->getW(); - } + console.setOnlyChatMessagesInStoredLines (false); - int currentX = (metrics.getVirtualW()-maxLogoWidth)/2; - int currentY = 50; - for(int idx = 0; idx < (int)coreData.getLogoTextureExtraCount(); ++idx) { - Texture2D *extraLogo = coreData.getLogoTextureExtra(idx); + // Get path to temp files + string tempFilePath = "temp/"; + if (getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) != + "") + { + tempFilePath = + getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) + + tempFilePath; + } + else + { + string userData = config.getString ("UserData_Root", ""); + if (userData != "") + { + endPathWithSlash (userData); + } + tempFilePath = userData + tempFilePath; + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Temp files path [%s]\n", tempFilePath.c_str ()); - logoMainX = currentX; - logoMainY = currentY; - logoMainW = extraLogo->getPixmap()->getW(); - logoMainH = extraLogo->getPixmap()->getH(); + ftpClientThread = new FTPClientThread (-1, "", + mapsPath, tilesetsPath, + techtreesPath, scenariosPath, + this, fileArchiveExtension, + fileArchiveExtractCommand, + fileArchiveExtractCommandParameters, + fileArchiveExtractCommandSuccessResult, + tempFilePath); + ftpClientThread->start (); - string logoTagName = string(containerName) + "_ExtraLogo" + intToStr(idx+1) + "_"; - logoMainX = Config::getInstance().getInt(logoTagName + "x",intToStr(logoMainX).c_str()); - logoMainY = Config::getInstance().getInt(logoTagName + "y",intToStr(logoMainY).c_str()); - logoMainW = Config::getInstance().getInt(logoTagName + "w",intToStr(logoMainW).c_str()); - logoMainH = Config::getInstance().getInt(logoTagName + "h",intToStr(logoMainH).c_str()); - renderer.renderTextureQuad( - logoMainX, logoMainY, - logoMainW, logoMainH, - extraLogo, GraphicComponent::getFade()); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + } + } - currentX += extraLogo->getPixmap()->getW(); - } + void MenuStateRoot::FTPClient_CallbackEvent (string itemName, + FTP_Client_CallbackType type, + pair < FTP_Client_ResultType, + string > result, + void *userdata) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line %d]\n", __FILE__, + __FUNCTION__, __LINE__); - renderer.renderButton(&buttonNewGame); - renderer.renderButton(&buttonLoadGame); - renderer.renderButton(&buttonMods); - renderer.renderButton(&buttonOptions); - renderer.renderButton(&buttonAbout); - renderer.renderButton(&buttonExit); - renderer.renderLabel(&labelVersion); - renderer.renderLabel(&labelGreeting); + Lang & lang = Lang::getInstance (); + if (type == ftp_cct_DownloadProgress) + { + FTPClientCallbackInterface::FtpProgressStats * stats = + (FTPClientCallbackInterface::FtpProgressStats *) userdata; + if (stats != NULL) + { + int fileProgress = 0; + if (stats->download_total > 0) + { + fileProgress = + ((stats->download_now / stats->download_total) * 100.0); + } + //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Got FTP Callback for [%s] current file [%s] fileProgress = %d [now = %f, total = %f]\n",itemName.c_str(),stats->currentFilename.c_str(), fileProgress,stats->download_now,stats->download_total); - renderer.renderConsole(&console); + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + pair < int, string > lastProgress = fileFTPProgressList[itemName]; + fileFTPProgressList[itemName] = + pair < int, string > (fileProgress, stats->currentFilename); + safeMutexFTPProgress.ReleaseLock (); - renderer.renderPopupMenu(&popupMenu); + if (itemName != "" + && (lastDownloadProgress < fileProgress + && fileProgress % 25 == 0)) + { + lastDownloadProgress = fileProgress; - //exit message box - if(mainMessageBox.getEnabled()) { - renderer.renderMessageBox(&mainMessageBox); - } - if(errorMessageBox.getEnabled()) { - renderer.renderMessageBox(&errorMessageBox); - } - if(ftpMessageBox.getEnabled()) { - renderer.renderMessageBox(&ftpMessageBox); - } + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "Downloaded %d%% of file: %s", + fileProgress, itemName.c_str ()); + console.addLine (szBuf); + } + } + } + else if (type == ftp_cct_ExtractProgress) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP extract Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); + printf ("Got FTP extract Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); - if(program != NULL) program->renderProgramMsgBox(); -} + if (userdata == NULL) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + lang.getString ("DataMissingExtractDownloadMod").c_str (), + itemName.c_str ()); + //printf("%s\n",szBuf); + console.addLine (szBuf, true); + } + else + { + char *szBuf = (char *) userdata; + //printf("%s\n",szBuf); + console.addLine (szBuf); + } + } + else if (type == ftp_cct_TempFile) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Got FTP Callback for [%s] result = %d [%s]\n", + itemName.c_str (), result.first, result.second.c_str ()); -void MenuStateRoot::update() { - if(Config::getInstance().getBool("AutoTest")) { - if(AutoTest::getInstance().mustExitGame() == false) { - AutoTest::getInstance().updateRoot(program, mainMenu); - } - else { - program->exit(); - } - return; - } + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper + safeMutexFTPProgress ((ftpClientThread != + NULL ? ftpClientThread-> + getProgressMutex () : NULL), mutexOwnerId); + if (ftpClientThread != NULL + && ftpClientThread->getProgressMutex () != NULL) + ftpClientThread->getProgressMutex ()->setOwnerId (mutexOwnerId); + fileFTPProgressList.erase (itemName); + safeMutexFTPProgress.ReleaseLock (); - if(gameUpdateChecked == false) { - gameUpdateChecked = true; + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("### downloaded TEMP file [%s] result = %d\n", + itemName.c_str (), result.first); - string updateCheckURL = Config::getInstance().getString("UpdateCheckURL",""); - if(updateCheckURL != "") { - static string mutexOwnerId = string(extractFileFromDirectoryPath(__FILE__).c_str()) + string("_") + intToStr(__LINE__); - updatesHttpServerThread = new SimpleTaskThread(this,1,200); - updatesHttpServerThread->setUniqueID(mutexOwnerId); - updatesHttpServerThread->start(); - } - } + if (result.first == ftp_crt_SUCCESS) + { + // Get path to temp files + string tempFilePath = "temp/"; + if (getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) + != "") + { + tempFilePath = + getGameReadWritePath (GameConstants::path_logs_CacheLookupKey) + + tempFilePath; + } + else + { + Config & config = Config::getInstance (); + string userData = config.getString ("UserData_Root", ""); + if (userData != "") + { + endPathWithSlash (userData); + } + tempFilePath = userData + tempFilePath; + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("Temp files path [%s]\n", tempFilePath.c_str ()); - console.update(); -} + // Delete the downloaded archive + if (fileExists (tempFilePath + itemName)) + { + removeFile (tempFilePath + itemName); + } -void MenuStateRoot::simpleTask(BaseThread *callingThread,void *userdata) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + bool result = upgradeFilesInTemp (); + if (result == false) + { + string binaryName = + Properties::getApplicationPath () + + extractFileFromDirectoryPath (PlatformExceptionHandler:: + application_binary); + string binaryNameOld = + Properties::getApplicationPath () + + extractFileFromDirectoryPath (PlatformExceptionHandler:: + application_binary) + "__REMOVE"; + bool resultRename = renameFile (binaryName, binaryNameOld); + //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Rename: [%s] to [%s] result = %d\n",binaryName.c_str(),binaryNameOld.c_str(),resultRename); + printf ("#1 Rename: [%s] to [%s] result = %d errno = %d\n", + binaryName.c_str (), binaryNameOld.c_str (), resultRename, + errno); - static string mutexOwnerId = string(__FILE__) + string("_") + intToStr(__LINE__); - MutexSafeWrapper safeMutexThreadOwner(callingThread->getMutexThreadOwnerValid(),mutexOwnerId); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + //result = upgradeFilesInTemp(); + binaryName = + Properties::getApplicationPath () + + extractFileFromDirectoryPath (PlatformExceptionHandler:: + application_binary); + binaryNameOld = + tempFilePath + + extractFileFromDirectoryPath (PlatformExceptionHandler:: + application_binary); + resultRename = renameFile (binaryNameOld, binaryName); + + //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Rename: [%s] to [%s] result = %d\n",binaryName.c_str(),binaryNameOld.c_str(),resultRename); + printf ("#2 Rename: [%s] to [%s] result = %d errno = %d\n", + binaryNameOld.c_str (), binaryName.c_str (), resultRename, + errno); + } + + console.addLine ("Successfully updated, please restart!", true); + } + else + { + curl_version_info_data *curlVersion = + curl_version_info (CURLVERSION_NOW); + + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "FAILED to download the updates: [%s] using CURL version [%s] [%s]", + itemName.c_str (), curlVersion->version, + result.second.c_str ()); + console.addLine (szBuf, true); + showErrorMessageBox (szBuf, "ERROR", false); + } + } + } + + + void MenuStateRoot::mouseMove (int x, int y, const MouseState * ms) + { + popupMenu.mouseMove (x, y); + buttonNewGame.mouseMove (x, y); + buttonLoadGame.mouseMove (x, y); + buttonMods.mouseMove (x, y); + buttonOptions.mouseMove (x, y); + buttonAbout.mouseMove (x, y); + buttonExit.mouseMove (x, y); + if (mainMessageBox.getEnabled ()) + { + mainMessageBox.mouseMove (x, y); + } + if (errorMessageBox.getEnabled ()) + { + errorMessageBox.mouseMove (x, y); + } + if (ftpMessageBox.getEnabled ()) + { + ftpMessageBox.mouseMove (x, y); + } + } + + bool MenuStateRoot::isMasterserverMode () const + { + return GlobalStaticFlags::getIsNonGraphicalModeEnabled (); + } + + void MenuStateRoot::render () + { + if (isMasterserverMode () == true) + { return; + } + Renderer & renderer = Renderer::getInstance (); + CoreData & coreData = CoreData::getInstance (); + const Metrics & metrics = Metrics::getInstance (); + + int w = 400; + int h = 200; + int yPos = 510; + + int logoMainX = (metrics.getVirtualW () - w) / 2; + int logoMainY = yPos - h / 2; + int logoMainW = w; + int logoMainH = h; + logoMainX = + Config::getInstance ().getInt (string (containerName) + "_MainLogo_x", + intToStr (logoMainX).c_str ()); + logoMainY = + Config::getInstance ().getInt (string (containerName) + "_MainLogo_y", + intToStr (logoMainY).c_str ()); + logoMainW = + Config::getInstance ().getInt (string (containerName) + "_MainLogo_w", + intToStr (logoMainW).c_str ()); + logoMainH = + Config::getInstance ().getInt (string (containerName) + "_MainLogo_h", + intToStr (logoMainH).c_str ()); + + renderer.renderTextureQuad (logoMainX, logoMainY, logoMainW, logoMainH, + coreData.getLogoTexture (), + GraphicComponent::getFade ()); + + int maxLogoWidth = 0; + for (int idx = 0; idx < (int) coreData.getLogoTextureExtraCount (); + ++idx) + { + Texture2D *extraLogo = coreData.getLogoTextureExtra (idx); + maxLogoWidth += extraLogo->getPixmap ()->getW (); + } + + int currentX = (metrics.getVirtualW () - maxLogoWidth) / 2; + int currentY = 50; + for (int idx = 0; idx < (int) coreData.getLogoTextureExtraCount (); + ++idx) + { + Texture2D *extraLogo = coreData.getLogoTextureExtra (idx); + + logoMainX = currentX; + logoMainY = currentY; + logoMainW = extraLogo->getPixmap ()->getW (); + logoMainH = extraLogo->getPixmap ()->getH (); + + string logoTagName = + string (containerName) + "_ExtraLogo" + intToStr (idx + 1) + "_"; + logoMainX = + Config::getInstance ().getInt (logoTagName + "x", + intToStr (logoMainX).c_str ()); + logoMainY = + Config::getInstance ().getInt (logoTagName + "y", + intToStr (logoMainY).c_str ()); + logoMainW = + Config::getInstance ().getInt (logoTagName + "w", + intToStr (logoMainW).c_str ()); + logoMainH = + Config::getInstance ().getInt (logoTagName + "h", + intToStr (logoMainH).c_str ()); + + renderer.renderTextureQuad (logoMainX, logoMainY, + logoMainW, logoMainH, + extraLogo, GraphicComponent::getFade ()); + + currentX += extraLogo->getPixmap ()->getW (); + } + + renderer.renderButton (&buttonNewGame); + renderer.renderButton (&buttonLoadGame); + renderer.renderButton (&buttonMods); + renderer.renderButton (&buttonOptions); + renderer.renderButton (&buttonAbout); + renderer.renderButton (&buttonExit); + renderer.renderLabel (&labelVersion); + renderer.renderLabel (&labelGreeting); + + renderer.renderConsole (&console); + + renderer.renderPopupMenu (&popupMenu); + + //exit message box + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + if (errorMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&errorMessageBox); + } + if (ftpMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&ftpMessageBox); + } + + if (program != NULL) + program->renderProgramMsgBox (); } - callingThread->getMutexThreadOwnerValid()->setOwnerId(mutexOwnerId); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); + void MenuStateRoot::update () + { + if (Config::getInstance ().getBool ("AutoTest")) + { + if (AutoTest::getInstance ().mustExitGame () == false) + { + AutoTest::getInstance ().updateRoot (program, mainMenu); + } + else + { + program->exit (); + } + return; + } + + if (gameUpdateChecked == false) + { + gameUpdateChecked = true; + + string updateCheckURL = + Config::getInstance ().getString ("UpdateCheckURL", ""); + if (updateCheckURL != "") + { + static string mutexOwnerId = + string (extractFileFromDirectoryPath (__FILE__).c_str ()) + + string ("_") + intToStr (__LINE__); + updatesHttpServerThread = new SimpleTaskThread (this, 1, 200); + updatesHttpServerThread->setUniqueID (mutexOwnerId); + updatesHttpServerThread->start (); + } + } + + console.update (); + } + + void MenuStateRoot::simpleTask (BaseThread * callingThread, + void *userdata) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + + static string mutexOwnerId = + string (__FILE__) + string ("_") + intToStr (__LINE__); + MutexSafeWrapper safeMutexThreadOwner (callingThread-> + getMutexThreadOwnerValid (), + mutexOwnerId); + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); + return; + } + + callingThread->getMutexThreadOwnerValid ()->setOwnerId (mutexOwnerId); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, __LINE__); - string updateCheckURL = Config::getInstance().getString("UpdateCheckURL",""); - if(updateCheckURL != "") { + string updateCheckURL = + Config::getInstance ().getString ("UpdateCheckURL", ""); + if (updateCheckURL != "") + { - string baseURL = updateCheckURL; + string baseURL = updateCheckURL; - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] About to call first http url, base [%s]..\n",__FILE__,__FUNCTION__,__LINE__,baseURL.c_str()); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("In [%s::%s Line %d] About to call first http url, base [%s]..\n", + __FILE__, __FUNCTION__, __LINE__, baseURL.c_str ()); - CURL *handle = SystemFlags::initHTTP(); - CURLcode curlResult = CURLE_OK; - string updateMetaData = SystemFlags::getHTTP(baseURL,handle,-1,&curlResult); + CURL *handle = SystemFlags::initHTTP (); + CURLcode curlResult = CURLE_OK; + string updateMetaData = + SystemFlags::getHTTP (baseURL, handle, -1, &curlResult); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("techsMetaData [%s] curlResult = %d\n",updateMetaData.c_str(),curlResult); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("techsMetaData [%s] curlResult = %d\n", + updateMetaData.c_str (), curlResult); - if(callingThread->getQuitStatus() == true || safeMutexThreadOwner.isValidMutex() == false) { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__); - return; - } + if (callingThread->getQuitStatus () == true + || safeMutexThreadOwner.isValidMutex () == false) + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d]\n", __FILE__, __FUNCTION__, + __LINE__); + return; + } - if(curlResult != CURLE_OK) { - string curlError = curl_easy_strerror(curlResult); + if (curlResult != CURLE_OK) + { + string curlError = curl_easy_strerror (curlResult); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line %d] curlError [%s]..\n",__FILE__,__FUNCTION__,__LINE__,curlError.c_str()); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line %d] curlError [%s]..\n", __FILE__, + __FUNCTION__, __LINE__, curlError.c_str ()); - char szMsg[8096]=""; - snprintf(szMsg,8096,"An error was detected while checking for new updates\n%s",curlError.c_str()); - showErrorMessageBox(szMsg, "ERROR", false); - } + char szMsg[8096] = ""; + snprintf (szMsg, 8096, + "An error was detected while checking for new updates\n%s", + curlError.c_str ()); + showErrorMessageBox (szMsg, "ERROR", false); + } - if(curlResult == CURLE_OK || - (curlResult != CURLE_COULDNT_RESOLVE_HOST && - curlResult != CURLE_COULDNT_CONNECT)) { + if (curlResult == CURLE_OK || + (curlResult != CURLE_COULDNT_RESOLVE_HOST && + curlResult != CURLE_COULDNT_CONNECT)) + { - Properties props; - props.loadFromText(updateMetaData); + Properties props; + props.loadFromText (updateMetaData); - int compareResult = compareMajorMinorVersion(glestVersionString, props.getString("LatestGameVersion","")); - if(compareResult==0) { - if(glestVersionString != props.getString("LatestGameVersion","")) { - compareResult = -1; - } - } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("compareResult = %d local [%s] remote [%s]\n",compareResult,glestVersionString.c_str(),props.getString("LatestGameVersion","").c_str()); + int compareResult = + compareMajorMinorVersion (glestVersionString, + props.getString ("LatestGameVersion", + "")); + if (compareResult == 0) + { + if (glestVersionString != + props.getString ("LatestGameVersion", "")) + { + compareResult = -1; + } + } + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("compareResult = %d local [%s] remote [%s]\n", + compareResult, glestVersionString.c_str (), + props.getString ("LatestGameVersion", "").c_str ()); - if(compareResult < 0) { + if (compareResult < 0) + { - string downloadBinaryKey = "LatestGameBinaryUpdateArchiveURL-" + getPlatformTypeNameString() + getPlatformArchTypeNameString(); - if(props.hasString(downloadBinaryKey)) { - ftpFileName = extractFileFromDirectoryPath(props.getString(downloadBinaryKey)); - ftpFileURL = props.getString(downloadBinaryKey); - } + string downloadBinaryKey = + "LatestGameBinaryUpdateArchiveURL-" + + getPlatformTypeNameString () + getPlatformArchTypeNameString (); + if (props.hasString (downloadBinaryKey)) + { + ftpFileName = + extractFileFromDirectoryPath (props. + getString (downloadBinaryKey)); + ftpFileURL = props.getString (downloadBinaryKey); + } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Checking update key downloadBinaryKey [%s] ftpFileURL [%s]\n",downloadBinaryKey.c_str(),ftpFileURL.c_str()); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("Checking update key downloadBinaryKey [%s] ftpFileURL [%s]\n", + downloadBinaryKey.c_str (), ftpFileURL.c_str ()); - if(props.getBool("AllowUpdateDownloads","false") == false || ftpFileURL == "") { - char szMsg[8096]=""; - snprintf(szMsg,8096,"A new update was detected: %s\nUpdate Date: %s\nPlease visit megaglest.org for details!", - props.getString("LatestGameVersion","?").c_str(), - props.getString("LatestGameVersionReleaseDate","?").c_str()); - showFTPMessageBox(szMsg, "Update", false, true); - } - else { - char szMsg[8096]=""; - snprintf(szMsg,8096,"A new update was detected: %s\nUpdate Date: %s\nDownload update now?", - props.getString("LatestGameVersion","?").c_str(), - props.getString("LatestGameVersionReleaseDate","?").c_str()); - showFTPMessageBox(szMsg, "Update", false, false); - } - } - } - SystemFlags::cleanupHTTP(&handle); - } -} + if (props.getBool ("AllowUpdateDownloads", "false") == false + || ftpFileURL == "") + { + char szMsg[8096] = ""; + snprintf (szMsg, 8096, + "A new update was detected: %s\nUpdate Date: %s\nPlease visit megaglest.org for details!", + props.getString ("LatestGameVersion", "?").c_str (), + props.getString ("LatestGameVersionReleaseDate", + "?").c_str ()); + showFTPMessageBox (szMsg, "Update", false, true); + } + else + { + char szMsg[8096] = ""; + snprintf (szMsg, 8096, + "A new update was detected: %s\nUpdate Date: %s\nDownload update now?", + props.getString ("LatestGameVersion", "?").c_str (), + props.getString ("LatestGameVersionReleaseDate", + "?").c_str ()); + showFTPMessageBox (szMsg, "Update", false, false); + } + } + } + SystemFlags::cleanupHTTP (&handle); + } + } -void MenuStateRoot::keyDown(SDL_KeyboardEvent key) { + void MenuStateRoot::keyDown (SDL_KeyboardEvent key) + { - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] key = [%c] [%d]\n",__FILE__,__FUNCTION__,__LINE__,key.keysym.sym,key.keysym.sym); - if(SystemFlags::VERBOSE_MODE_ENABLED) printf ("In [%s::%s Line: %d] key = [%d - %c]\n",__FILE__,__FUNCTION__,__LINE__,key.keysym.sym,key.keysym.sym); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] key = [%c] [%d]\n", + __FILE__, __FUNCTION__, __LINE__, + key.keysym.sym, key.keysym.sym); + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] key = [%d - %c]\n", __FILE__, + __FUNCTION__, __LINE__, key.keysym.sym, key.keysym.sym); - //printf("\n\n\nIN MENU STATE ROOT KEYDOWN!!!\n\n\n"); + //printf("\n\n\nIN MENU STATE ROOT KEYDOWN!!!\n\n\n"); - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - //exit - //if(key == configKeys.getCharKey("ExitKey")) { - //printf("Check Root menu exit key!\n"); - if(isKeyPressed(configKeys.getSDLKey("ExitKey"),key) == true) { - Lang &lang= Lang::getInstance(); - showMessageBox(lang.getString("ExitGameQuestion"), "", true); - } - //else if(mainMessageBox.getEnabled() == true && key == vkReturn) { - else if(mainMessageBox.getEnabled() == true && isKeyPressed(SDLK_RETURN,key) == true) { - //SDL_keysym keystate = Window::getKeystate(); - SDL_keysym keystate = key.keysym; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] keystate.mod [%d]\n",__FILE__,__FUNCTION__,__LINE__,keystate.mod); + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + //exit + //if(key == configKeys.getCharKey("ExitKey")) { + //printf("Check Root menu exit key!\n"); + if (isKeyPressed (configKeys.getSDLKey ("ExitKey"), key) == true) + { + Lang & lang = Lang::getInstance (); + showMessageBox (lang.getString ("ExitGameQuestion"), "", true); + } + //else if(mainMessageBox.getEnabled() == true && key == vkReturn) { + else if (mainMessageBox.getEnabled () == true + && isKeyPressed (SDLK_RETURN, key) == true) + { + //SDL_keysym keystate = Window::getKeystate(); + SDL_keysym keystate = key.keysym; + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] keystate.mod [%d]\n", + __FILE__, __FUNCTION__, __LINE__, + keystate.mod); - //printf("---> keystate.mod [%d]\n",keystate.mod); - if(keystate.mod & (KMOD_LALT | KMOD_RALT)) { - } - else { - //printf("EXITING ---> keystate.mod [%d]\n",keystate.mod); - program->exit(); - } - } - //else if(key == configKeys.getCharKey("SaveGUILayout")) { - else if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - GraphicComponent::saveAllCustomProperties(containerName); - //Lang &lang= Lang::getInstance(); - //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); - } + //printf("---> keystate.mod [%d]\n",keystate.mod); + if (keystate.mod & (KMOD_LALT | KMOD_RALT)) + { + } + else + { + //printf("EXITING ---> keystate.mod [%d]\n",keystate.mod); + program->exit (); + } + } + //else if(key == configKeys.getCharKey("SaveGUILayout")) { + else if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) == + true) + { + GraphicComponent::saveAllCustomProperties (containerName); + //Lang &lang= Lang::getInstance(); + //console.addLine(lang.getString("GUILayoutSaved") + " [" + (saved ? lang.getString("Yes") : lang.getString("No"))+ "]"); + } -} + } -void MenuStateRoot::showMessageBox(const string &text, const string &header, bool toggle) { - if(toggle == false) { - mainMessageBox.setEnabled(false); - } + void MenuStateRoot::showMessageBox (const string & text, + const string & header, bool toggle) + { + if (toggle == false) + { + mainMessageBox.setEnabled (false); + } - if(mainMessageBox.getEnabled() == false) { - mainMessageBox.setText(text); - mainMessageBox.setHeader(header); - mainMessageBox.setEnabled(true); - } - else { - mainMessageBox.setEnabled(false); - } -} + if (mainMessageBox.getEnabled () == false) + { + mainMessageBox.setText (text); + mainMessageBox.setHeader (header); + mainMessageBox.setEnabled (true); + } + else + { + mainMessageBox.setEnabled (false); + } + } -void MenuStateRoot::showErrorMessageBox(const string &text, const string &header, bool toggle) { - if(toggle == false) { - errorMessageBox.setEnabled(false); - } + void MenuStateRoot::showErrorMessageBox (const string & text, + const string & header, + bool toggle) + { + if (toggle == false) + { + errorMessageBox.setEnabled (false); + } - if(errorMessageBox.getEnabled() == false) { - errorMessageBox.setText(text); - errorMessageBox.setHeader(header); - errorMessageBox.setEnabled(true); - } - else { - errorMessageBox.setEnabled(false); - } -} + if (errorMessageBox.getEnabled () == false) + { + errorMessageBox.setText (text); + errorMessageBox.setHeader (header); + errorMessageBox.setEnabled (true); + } + else + { + errorMessageBox.setEnabled (false); + } + } -void MenuStateRoot::showFTPMessageBox(const string &text, const string &header, bool toggle, bool okOnly) { - if(toggle == false) { - ftpMessageBox.setEnabled(false); - } + void MenuStateRoot::showFTPMessageBox (const string & text, + const string & header, bool toggle, + bool okOnly) + { + if (toggle == false) + { + ftpMessageBox.setEnabled (false); + } - Lang &lang= Lang::getInstance(); - if(okOnly) { - ftpMessageBox.init(lang.getString("Ok")); - } - else { - ftpMessageBox.init(lang.getString("Yes"), lang.getString("No")); - } + Lang & lang = Lang::getInstance (); + if (okOnly) + { + ftpMessageBox.init (lang.getString ("Ok")); + } + else + { + ftpMessageBox.init (lang.getString ("Yes"), lang.getString ("No")); + } - if(ftpMessageBox.getEnabled() == false) { - ftpMessageBox.setText(text); - ftpMessageBox.setHeader(header); - ftpMessageBox.setEnabled(true); - } - else { - ftpMessageBox.setEnabled(false); - } -} + if (ftpMessageBox.getEnabled () == false) + { + ftpMessageBox.setText (text); + ftpMessageBox.setHeader (header); + ftpMessageBox.setEnabled (true); + } + else + { + ftpMessageBox.setEnabled (false); + } + } -}}//end namespace + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_root.h b/source/glest_game/menu/menu_state_root.h index 29e5f2f0a..4d810dcce 100644 --- a/source/glest_game/menu/menu_state_root.h +++ b/source/glest_game/menu/menu_state_root.h @@ -1,81 +1,91 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Martiño Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATEROOT_H_ -#define _GLEST_GAME_MENUSTATEROOT_H_ +# define _GLEST_GAME_MENUSTATEROOT_H_ -#include "main_menu.h" -#include "simple_threads.h" -#include "miniftpclient.h" +# include "main_menu.h" +# include "simple_threads.h" +# include "miniftpclient.h" -#include "leak_dumper.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class MenuStateRoot +// class MenuStateRoot // =============================== -class GraphicMessageBox; -class PopupMenu; + class GraphicMessageBox; + class PopupMenu; -class MenuStateRoot: public MenuState, public SimpleTaskCallbackInterface, public FTPClientCallbackInterface { -private: - GraphicButton buttonNewGame; - GraphicButton buttonLoadGame; - GraphicButton buttonMods; - GraphicButton buttonOptions; - GraphicButton buttonAbout; - GraphicButton buttonExit; - GraphicLabel labelVersion; - GraphicLabel labelGreeting; + class MenuStateRoot:public MenuState, public SimpleTaskCallbackInterface, + public FTPClientCallbackInterface + { + private: + GraphicButton buttonNewGame; + GraphicButton buttonLoadGame; + GraphicButton buttonMods; + GraphicButton buttonOptions; + GraphicButton buttonAbout; + GraphicButton buttonExit; + GraphicLabel labelVersion; + GraphicLabel labelGreeting; - GraphicMessageBox mainMessageBox; - GraphicMessageBox errorMessageBox; - GraphicMessageBox ftpMessageBox; + GraphicMessageBox mainMessageBox; + GraphicMessageBox errorMessageBox; + GraphicMessageBox ftpMessageBox; - PopupMenu popupMenu; + PopupMenu popupMenu; - static bool gameUpdateChecked; - SimpleTaskThread *updatesHttpServerThread; - FTPClientThread *ftpClientThread; - std::map > fileFTPProgressList; - string ftpFileName; - string ftpFileURL; - int lastDownloadProgress; + static bool gameUpdateChecked; + SimpleTaskThread *updatesHttpServerThread; + FTPClientThread *ftpClientThread; + std::map < string, pair < int, string > >fileFTPProgressList; + string ftpFileName; + string ftpFileURL; + int lastDownloadProgress; - virtual void simpleTask(BaseThread *callingThread,void *userdata); - void startFTPClientIfRequired(); - virtual void FTPClient_CallbackEvent(string itemName, - FTP_Client_CallbackType type, pair result,void *userdata); + virtual void simpleTask (BaseThread * callingThread, void *userdata); + void startFTPClientIfRequired (); + virtual void FTPClient_CallbackEvent (string itemName, + FTP_Client_CallbackType type, + pair < FTP_Client_ResultType, + string > result, void *userdata); -public: - MenuStateRoot(Program *program, MainMenu *mainMenu); - virtual ~MenuStateRoot(); + public: + MenuStateRoot (Program * program, MainMenu * mainMenu); + virtual ~ MenuStateRoot (); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - void update(); - virtual void keyDown(SDL_KeyboardEvent key); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void render (); + void update (); + virtual void keyDown (SDL_KeyboardEvent key); - void showMessageBox(const string &text, const string &header, bool toggle); - void showErrorMessageBox(const string &text, const string &header, bool toggle); - void showFTPMessageBox(const string &text, const string &header, bool toggle, bool okOnly); + void showMessageBox (const string & text, const string & header, + bool toggle); + void showErrorMessageBox (const string & text, const string & header, + bool toggle); + void showFTPMessageBox (const string & text, const string & header, + bool toggle, bool okOnly); - virtual bool isMasterserverMode() const; - virtual void reloadUI(); -}; + virtual bool isMasterserverMode () const; + virtual void reloadUI (); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/menu_state_scenario.cpp b/source/glest_game/menu/menu_state_scenario.cpp index fd20a609a..4508d94bd 100644 --- a/source/glest_game/menu/menu_state_scenario.cpp +++ b/source/glest_game/menu/menu_state_scenario.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2005 Martio Figueroa +// Copyright (C) 2001-2005 Martio Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #include "menu_state_scenario.h" @@ -23,469 +23,687 @@ #include "leak_dumper.h" -namespace Glest{ namespace Game{ - -using namespace ::Shared::Xml; - -// ===================================================== -// class MenuStateScenario -// ===================================================== - -MenuStateScenario::MenuStateScenario(Program *program, MainMenu *mainMenu, - bool isTutorialMode, const vector &dirList, string autoloadScenarioName) : - MenuState(program, mainMenu, "scenario") +namespace Glest { - containerName = "Scenario"; - this->isTutorialMode = isTutorialMode; + namespace Game + { - enableScenarioTexturePreview = Config::getInstance().getBool("EnableScenarioTexturePreview","true"); - scenarioLogoTexture=NULL; - previewLoadDelayTimer=time(NULL); - needToLoadTextures=true; + using namespace::Shared::Xml; - Lang &lang= Lang::getInstance(); - NetworkManager &networkManager= NetworkManager::getInstance(); - try { - networkManager.init(nrServer); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); +// ===================================================== +// class MenuStateScenario +// ===================================================== - mainMessageBoxState=1; - showMessageBox( "Error: " + string(ex.what()), "Error detected", false); - } + MenuStateScenario::MenuStateScenario (Program * program, + MainMenu * mainMenu, + bool isTutorialMode, + const vector < string > &dirList, + string + autoloadScenarioName):MenuState + (program, mainMenu, "scenario") + { + containerName = "Scenario"; + this->isTutorialMode = isTutorialMode; - mainMessageBox.registerGraphicComponent(containerName,"mainMessageBox"); - mainMessageBox.init(lang.getString("Ok")); - mainMessageBox.setEnabled(false); - mainMessageBoxState=0; + enableScenarioTexturePreview = + Config::getInstance ().getBool ("EnableScenarioTexturePreview", + "true"); + scenarioLogoTexture = NULL; + previewLoadDelayTimer = time (NULL); + needToLoadTextures = true; - this->autoloadScenarioName = autoloadScenarioName; - vector results; + Lang & lang = Lang::getInstance (); + NetworkManager & networkManager = NetworkManager::getInstance (); + try + { + networkManager.init (nrServer); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d] Error detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); - this->dirList = dirList; + mainMessageBoxState = 1; + showMessageBox ("Error: " + string (ex.what ()), "Error detected", + false); + } - int buttonStartY=50; - int buttonStartX=70; + mainMessageBox.registerGraphicComponent (containerName, + "mainMessageBox"); + mainMessageBox.init (lang.getString ("Ok")); + mainMessageBox.setEnabled (false); + mainMessageBoxState = 0; - buttonReturn.registerGraphicComponent(containerName,"buttonReturn"); - buttonReturn.init(buttonStartX, buttonStartY, 125); - buttonReturn.setText(lang.getString("Return")); + this->autoloadScenarioName = autoloadScenarioName; + vector < string > results; - buttonPlayNow.registerGraphicComponent(containerName,"buttonPlayNow"); - buttonPlayNow.init(buttonStartX+150, buttonStartY, 125); - buttonPlayNow.setText(lang.getString("PlayNow")); + this->dirList = dirList; - int startY=700; - int startX=50; + int buttonStartY = 50; + int buttonStartX = 70; - labelScenario.registerGraphicComponent(containerName,"labelScenario"); - labelScenario.init(startX, startY); + buttonReturn.registerGraphicComponent (containerName, "buttonReturn"); + buttonReturn.init (buttonStartX, buttonStartY, 125); + buttonReturn.setText (lang.getString ("Return")); - listBoxScenario.registerGraphicComponent(containerName,"listBoxScenario"); - listBoxScenario.init(startX, startY-30, 290); + buttonPlayNow.registerGraphicComponent (containerName, "buttonPlayNow"); + buttonPlayNow.init (buttonStartX + 150, buttonStartY, 125); + buttonPlayNow.setText (lang.getString ("PlayNow")); - labelScenarioName.registerGraphicComponent(containerName,"labelScenarioName"); - labelScenarioName.init(startX, startY-80); - labelScenarioName.setFont(CoreData::getInstance().getMenuFontBig()); - labelScenarioName.setFont3D(CoreData::getInstance().getMenuFontBig3D()); + int startY = 700; + int startX = 50; - labelInfo.registerGraphicComponent(containerName,"labelInfo"); - labelInfo.init(startX, startY-110); - labelInfo.setFont(CoreData::getInstance().getMenuFontNormal()); - labelInfo.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); + labelScenario.registerGraphicComponent (containerName, "labelScenario"); + labelScenario.init (startX, startY); - if(this->isTutorialMode == true) { - labelScenario.setText(lang.getString("Tutorial")); - } - else { - labelScenario.setText(lang.getString("Scenario")); - } + listBoxScenario.registerGraphicComponent (containerName, + "listBoxScenario"); + listBoxScenario.init (startX, startY - 30, 290); - //scenario listbox - findDirs(dirList, results); - scenarioFiles = results; - //printf("scenarioFiles[0] [%s]\n",scenarioFiles[0].c_str()); + labelScenarioName.registerGraphicComponent (containerName, + "labelScenarioName"); + labelScenarioName.init (startX, startY - 80); + labelScenarioName.setFont (CoreData::getInstance ().getMenuFontBig ()); + labelScenarioName.setFont3D (CoreData::getInstance (). + getMenuFontBig3D ()); - if(results.empty() == true) { + labelInfo.registerGraphicComponent (containerName, "labelInfo"); + labelInfo.init (startX, startY - 110); + labelInfo.setFont (CoreData::getInstance ().getMenuFontNormal ()); + labelInfo.setFont3D (CoreData::getInstance ().getMenuFontNormal3D ()); + + if (this->isTutorialMode == true) + { + labelScenario.setText (lang.getString ("Tutorial")); + } + else + { + labelScenario.setText (lang.getString ("Scenario")); + } + + //scenario listbox + findDirs (dirList, results); + scenarioFiles = results; + //printf("scenarioFiles[0] [%s]\n",scenarioFiles[0].c_str()); + + if (results.empty () == true) + { //throw megaglest_runtime_error("There are no scenarios found to load"); - mainMessageBoxState=1; - if(this->isTutorialMode == true) { - showMessageBox( "Error: There are no tutorials found to load", "Error detected", false); + mainMessageBoxState = 1; + if (this->isTutorialMode == true) + { + showMessageBox ("Error: There are no tutorials found to load", + "Error detected", false); } - else { - showMessageBox( "Error: There are no scenarios found to load", "Error detected", false); + else + { + showMessageBox ("Error: There are no scenarios found to load", + "Error detected", false); } - } + } - std::map scenarioErrors; - for(int i= 0; i < (int)results.size(); ++i){ - results[i] = formatString(results[i]); - } - listBoxScenario.setItems(results); + std::map < string, string > scenarioErrors; + for (int i = 0; i < (int) results.size (); ++i) + { + results[i] = formatString (results[i]); + } + listBoxScenario.setItems (results); - try { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] listBoxScenario.getSelectedItemIndex() = %d scenarioFiles.size() = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,listBoxScenario.getSelectedItemIndex(),(int)scenarioFiles.size()); + try + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("In [%s::%s Line: %d] listBoxScenario.getSelectedItemIndex() = %d scenarioFiles.size() = %d\n", + extractFileFromDirectoryPath (__FILE__).c_str (), __FUNCTION__, + __LINE__, listBoxScenario.getSelectedItemIndex (), + (int) scenarioFiles.size ()); - if(listBoxScenario.getItemCount() > 0 && listBoxScenario.getSelectedItemIndex() >= 0 && listBoxScenario.getSelectedItemIndex() < (int)scenarioFiles.size()) { - string scenarioPath = Scenario::getScenarioPath(dirList, scenarioFiles[listBoxScenario.getSelectedItemIndex()]); - //printf("scenarioPath [%s]\n",scenarioPath.c_str()); + if (listBoxScenario.getItemCount () > 0 + && listBoxScenario.getSelectedItemIndex () >= 0 + && listBoxScenario.getSelectedItemIndex () < + (int) scenarioFiles.size ()) + { + string scenarioPath = + Scenario::getScenarioPath (dirList, + scenarioFiles[listBoxScenario. + getSelectedItemIndex + ()]); + //printf("scenarioPath [%s]\n",scenarioPath.c_str()); - loadScenarioInfo(scenarioPath, &scenarioInfo ); - labelInfo.setText(scenarioInfo.desc); - if(scenarioInfo.namei18n != "") { - labelScenarioName.setText(scenarioInfo.namei18n); - } - else { - labelScenarioName.setText(listBoxScenario.getSelectedItem()); - } - } + loadScenarioInfo (scenarioPath, &scenarioInfo); + labelInfo.setText (scenarioInfo.desc); + if (scenarioInfo.namei18n != "") + { + labelScenarioName.setText (scenarioInfo.namei18n); + } + else + { + labelScenarioName.setText (listBoxScenario.getSelectedItem ()); + } + } - GraphicComponent::applyAllCustomProperties(containerName); - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); + GraphicComponent::applyAllCustomProperties (containerName); + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d] Error detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); - mainMessageBoxState=1; - showMessageBox( "Error: " + string(ex.what()), "Error detected", false); - } + mainMessageBoxState = 1; + showMessageBox ("Error: " + string (ex.what ()), "Error detected", + false); + } - if(scenarioErrors.empty() == false) { - mainMessageBoxState=1; + if (scenarioErrors.empty () == false) + { + mainMessageBoxState = 1; string errorMsg = ""; - for(std::map::iterator iterMap = scenarioErrors.begin(); - iterMap != scenarioErrors.end(); ++iterMap) { - errorMsg += "scenario: " + iterMap->first + " error text: " + iterMap->second.substr(0,400) + "\n"; + for (std::map < string, string >::iterator iterMap = + scenarioErrors.begin (); iterMap != scenarioErrors.end (); + ++iterMap) + { + errorMsg += + "scenario: " + iterMap->first + " error text: " + + iterMap->second.substr (0, 400) + "\n"; } - showMessageBox( "Error loading scenario(s): " + errorMsg, "Error detected", false); - } -} - -void MenuStateScenario::reloadUI() { - Lang &lang= Lang::getInstance(); - - console.resetFonts(); - mainMessageBox.init(lang.getString("Ok")); - labelInfo.setFont(CoreData::getInstance().getMenuFontNormal()); - labelInfo.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); - - labelScenarioName.setFont(CoreData::getInstance().getMenuFontNormal()); - labelScenarioName.setFont3D(CoreData::getInstance().getMenuFontNormal3D()); - - buttonReturn.setText(lang.getString("Return")); - buttonPlayNow.setText(lang.getString("PlayNow")); - - labelScenario.setText(lang.getString("Scenario")); - - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} - -MenuStateScenario::~MenuStateScenario() { - cleanupPreviewTexture(); -} - -void MenuStateScenario::cleanupPreviewTexture() { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] scenarioLogoTexture [%p]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,scenarioLogoTexture); - - if(scenarioLogoTexture != NULL) { - Renderer::getInstance().endTexture(rsGlobal, scenarioLogoTexture, false); - } - scenarioLogoTexture = NULL; -} - -void MenuStateScenario::mouseClick(int x, int y, MouseButton mouseButton) { - CoreData &coreData= CoreData::getInstance(); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - string advanceToItemStartingWith = ""; - - if(mainMessageBox.getEnabled()){ - int button= 0; - if(mainMessageBox.mouseClick(x, y, button)) { - soundRenderer.playFx(coreData.getClickSoundA()); - if(button==0) { - mainMessageBox.setEnabled(false); - - if(scenarioFiles.empty() == true && mainMessageBoxState ==1) { - mainMenu->setState(new MenuStateNewGame(program, mainMenu)); - return; - } - } - } - return; - } - else { - if(::Shared::Platform::Window::isKeyStateModPressed(KMOD_SHIFT) == true) { - const wchar_t lastKey = ::Shared::Platform::Window::extractLastKeyPressed(); -// xxx: -// string hehe=lastKey; -// printf("lastKey = %d [%c] '%s'\n",lastKey,lastKey,hehe); - advanceToItemStartingWith = lastKey; - } + showMessageBox ("Error loading scenario(s): " + errorMsg, + "Error detected", false); + } } - if(buttonReturn.mouseClick(x,y)){ - soundRenderer.playFx(coreData.getClickSoundA()); - mainMenu->setState(new MenuStateNewGame(program, mainMenu)); - return; + void MenuStateScenario::reloadUI () + { + Lang & lang = Lang::getInstance (); + + console.resetFonts (); + mainMessageBox.init (lang.getString ("Ok")); + labelInfo.setFont (CoreData::getInstance ().getMenuFontNormal ()); + labelInfo.setFont3D (CoreData::getInstance ().getMenuFontNormal3D ()); + + labelScenarioName.setFont (CoreData::getInstance (). + getMenuFontNormal ()); + labelScenarioName.setFont3D (CoreData::getInstance (). + getMenuFontNormal3D ()); + + buttonReturn.setText (lang.getString ("Return")); + buttonPlayNow.setText (lang.getString ("PlayNow")); + + labelScenario.setText (lang.getString ("Scenario")); + + GraphicComponent:: + reloadFontsForRegisterGraphicComponents (containerName); } - else if(buttonPlayNow.mouseClick(x,y)){ - soundRenderer.playFx(coreData.getClickSoundC()); - launchGame(); - return; - } - else if(listBoxScenario.mouseClick(x, y,advanceToItemStartingWith)){ - try { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] listBoxScenario.getSelectedItemIndex() = %d scenarioFiles.size() = %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,listBoxScenario.getSelectedItemIndex(),(int)scenarioFiles.size()); - if(listBoxScenario.getItemCount() > 0 && listBoxScenario.getSelectedItemIndex() >= 0 && listBoxScenario.getSelectedItemIndex() < (int)scenarioFiles.size()) { - loadScenarioInfo(Scenario::getScenarioPath(dirList, scenarioFiles[listBoxScenario.getSelectedItemIndex()]), &scenarioInfo); - labelInfo.setText(scenarioInfo.desc); - if(scenarioInfo.namei18n != "") { - labelScenarioName.setText(scenarioInfo.namei18n); - } - else { - labelScenarioName.setText(listBoxScenario.getSelectedItem()); - } - } + MenuStateScenario::~MenuStateScenario () + { + cleanupPreviewTexture (); + } + + void MenuStateScenario::cleanupPreviewTexture () + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] scenarioLogoTexture [%p]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, scenarioLogoTexture); + + if (scenarioLogoTexture != NULL) + { + Renderer::getInstance ().endTexture (rsGlobal, scenarioLogoTexture, + false); + } + scenarioLogoTexture = NULL; + } + + void MenuStateScenario::mouseClick (int x, int y, MouseButton mouseButton) + { + CoreData & coreData = CoreData::getInstance (); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + string advanceToItemStartingWith = ""; + + if (mainMessageBox.getEnabled ()) + { + int button = 0; + if (mainMessageBox.mouseClick (x, y, button)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + if (button == 0) + { + mainMessageBox.setEnabled (false); + + if (scenarioFiles.empty () == true && mainMessageBoxState == 1) + { + mainMenu->setState (new MenuStateNewGame (program, mainMenu)); + return; + } + } } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); - - mainMessageBoxState=1; - showMessageBox( "Error: " + string(ex.what()), "Error detected", false); + return; + } + else + { + if (::Shared::Platform::Window::isKeyStateModPressed (KMOD_SHIFT) == + true) + { + const wchar_t lastKey =::Shared::Platform::Window:: + extractLastKeyPressed (); +// xxx: +// string hehe=lastKey; +// printf("lastKey = %d [%c] '%s'\n",lastKey,lastKey,hehe); + advanceToItemStartingWith = lastKey; } - } -} + } -void MenuStateScenario::mouseMove(int x, int y, const MouseState *ms){ + if (buttonReturn.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundA ()); + mainMenu->setState (new MenuStateNewGame (program, mainMenu)); + return; + } + else if (buttonPlayNow.mouseClick (x, y)) + { + soundRenderer.playFx (coreData.getClickSoundC ()); + launchGame (); + return; + } + else if (listBoxScenario.mouseClick (x, y, advanceToItemStartingWith)) + { + try + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf + ("In [%s::%s Line: %d] listBoxScenario.getSelectedItemIndex() = %d scenarioFiles.size() = %d\n", + extractFileFromDirectoryPath (__FILE__).c_str (), __FUNCTION__, + __LINE__, listBoxScenario.getSelectedItemIndex (), + (int) scenarioFiles.size ()); - if (mainMessageBox.getEnabled()) { - mainMessageBox.mouseMove(x, y); - } + if (listBoxScenario.getItemCount () > 0 + && listBoxScenario.getSelectedItemIndex () >= 0 + && listBoxScenario.getSelectedItemIndex () < + (int) scenarioFiles.size ()) + { + loadScenarioInfo (Scenario:: + getScenarioPath (dirList, + scenarioFiles[listBoxScenario. + getSelectedItemIndex + ()]), + &scenarioInfo); + labelInfo.setText (scenarioInfo.desc); + if (scenarioInfo.namei18n != "") + { + labelScenarioName.setText (scenarioInfo.namei18n); + } + else + { + labelScenarioName.setText (listBoxScenario.getSelectedItem ()); + } + } + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d] Error detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", szBuf); - listBoxScenario.mouseMove(x, y); + mainMessageBoxState = 1; + showMessageBox ("Error: " + string (ex.what ()), "Error detected", + false); + } + } + } - buttonReturn.mouseMove(x, y); - buttonPlayNow.mouseMove(x, y); -} + void MenuStateScenario::mouseMove (int x, int y, const MouseState * ms) + { -void MenuStateScenario::render(){ + if (mainMessageBox.getEnabled ()) + { + mainMessageBox.mouseMove (x, y); + } - Renderer &renderer= Renderer::getInstance(); + listBoxScenario.mouseMove (x, y); - if(scenarioLogoTexture != NULL) { - renderer.renderTextureQuad(450,200,533,400,scenarioLogoTexture,1.0f); - //renderer.renderBackground(scenarioLogoTexture); - } + buttonReturn.mouseMove (x, y); + buttonPlayNow.mouseMove (x, y); + } - if(mainMessageBox.getEnabled()) { - renderer.renderMessageBox(&mainMessageBox); - } - else { - renderer.renderLabel(&labelInfo); - renderer.renderLabel(&labelScenarioName); + void MenuStateScenario::render () + { - renderer.renderLabel(&labelScenario); - renderer.renderListBox(&listBoxScenario); + Renderer & renderer = Renderer::getInstance (); - renderer.renderButton(&buttonReturn); - renderer.renderButton(&buttonPlayNow); - } - renderer.renderConsole(&console); - if(program != NULL) program->renderProgramMsgBox(); -} + if (scenarioLogoTexture != NULL) + { + renderer.renderTextureQuad (450, 200, 533, 400, scenarioLogoTexture, + 1.0f); + //renderer.renderBackground(scenarioLogoTexture); + } -void MenuStateScenario::update() { - if(Config::getInstance().getBool("AutoTest")) { - AutoTest::getInstance().updateScenario(this); - return; - } - if(this->autoloadScenarioName != "") { - string scenarioPath = Scenario::getScenarioPath(dirList, this->autoloadScenarioName); + if (mainMessageBox.getEnabled ()) + { + renderer.renderMessageBox (&mainMessageBox); + } + else + { + renderer.renderLabel (&labelInfo); + renderer.renderLabel (&labelScenarioName); - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("[%s:%s] Line: %d this->autoloadScenarioName [%s] scenarioPath [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,this->autoloadScenarioName.c_str(),scenarioPath.c_str()); - printf("[%s:%s] Line: %d this->autoloadScenarioName [%s] scenarioPath [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,this->autoloadScenarioName.c_str(),scenarioPath.c_str()); + renderer.renderLabel (&labelScenario); + renderer.renderListBox (&listBoxScenario); - loadScenarioInfo(scenarioPath, &scenarioInfo ); - //if(scenarioInfo.namei18n != "") { - // this->autoloadScenarioName = scenarioInfo.namei18n; - //} - //else { - this->autoloadScenarioName = formatString(this->autoloadScenarioName); - //} + renderer.renderButton (&buttonReturn); + renderer.renderButton (&buttonPlayNow); + } + renderer.renderConsole (&console); + if (program != NULL) + program->renderProgramMsgBox (); + } - //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("[%s:%s] Line: %d this->autoloadScenarioName [%s] scenarioPath [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,this->autoloadScenarioName.c_str(),scenarioPath.c_str()); - printf("[%s:%s] Line: %d this->autoloadScenarioName [%s] scenarioPath [%s] file [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,this->autoloadScenarioName.c_str(),scenarioPath.c_str(),scenarioInfo.file.c_str()); + void MenuStateScenario::update () + { + if (Config::getInstance ().getBool ("AutoTest")) + { + AutoTest::getInstance ().updateScenario (this); + return; + } + if (this->autoloadScenarioName != "") + { + string scenarioPath = + Scenario::getScenarioPath (dirList, this->autoloadScenarioName); - listBoxScenario.setSelectedItem(this->autoloadScenarioName,false); + //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("[%s:%s] Line: %d this->autoloadScenarioName [%s] scenarioPath [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,this->autoloadScenarioName.c_str(),scenarioPath.c_str()); + printf + ("[%s:%s] Line: %d this->autoloadScenarioName [%s] scenarioPath [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), __FUNCTION__, + __LINE__, this->autoloadScenarioName.c_str (), + scenarioPath.c_str ()); - if(listBoxScenario.getSelectedItem() != this->autoloadScenarioName) { - mainMessageBoxState=1; - showMessageBox( "Could not find scenario name: " + this->autoloadScenarioName, "Scenario Missing", false); - this->autoloadScenarioName = ""; - } - else { - try { - this->autoloadScenarioName = ""; - if(listBoxScenario.getItemCount() > 0 && listBoxScenario.getSelectedItemIndex() >= 0 && - listBoxScenario.getSelectedItemIndex() < (int)scenarioFiles.size()) { + loadScenarioInfo (scenarioPath, &scenarioInfo); + //if(scenarioInfo.namei18n != "") { + // this->autoloadScenarioName = scenarioInfo.namei18n; + //} + //else { + this->autoloadScenarioName = + formatString (this->autoloadScenarioName); + //} - printf("[%s:%s] Line: %d scenarioFiles[listBoxScenario.getSelectedItemIndex()] [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,scenarioFiles[listBoxScenario.getSelectedItemIndex()].c_str()); + //if(SystemFlags::VERBOSE_MODE_ENABLED) printf("[%s:%s] Line: %d this->autoloadScenarioName [%s] scenarioPath [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,this->autoloadScenarioName.c_str(),scenarioPath.c_str()); + printf + ("[%s:%s] Line: %d this->autoloadScenarioName [%s] scenarioPath [%s] file [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), __FUNCTION__, + __LINE__, this->autoloadScenarioName.c_str (), + scenarioPath.c_str (), scenarioInfo.file.c_str ()); - loadScenarioInfo(Scenario::getScenarioPath(dirList, scenarioFiles[listBoxScenario.getSelectedItemIndex()]), &scenarioInfo); + listBoxScenario.setSelectedItem (this->autoloadScenarioName, false); - printf("[%s:%s] Line: %d scenarioInfo.file [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,scenarioInfo.file.c_str()); + if (listBoxScenario.getSelectedItem () != this->autoloadScenarioName) + { + mainMessageBoxState = 1; + showMessageBox ("Could not find scenario name: " + + this->autoloadScenarioName, "Scenario Missing", + false); + this->autoloadScenarioName = ""; + } + else + { + try + { + this->autoloadScenarioName = ""; + if (listBoxScenario.getItemCount () > 0 + && listBoxScenario.getSelectedItemIndex () >= 0 + && listBoxScenario.getSelectedItemIndex () < + (int) scenarioFiles.size ()) + { - labelInfo.setText(scenarioInfo.desc); - if(scenarioInfo.namei18n != "") { - labelScenarioName.setText(scenarioInfo.namei18n); - } - else { - labelScenarioName.setText(listBoxScenario.getSelectedItem()); - } + printf + ("[%s:%s] Line: %d scenarioFiles[listBoxScenario.getSelectedItemIndex()] [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, + scenarioFiles[listBoxScenario.getSelectedItemIndex ()]. + c_str ()); - SoundRenderer &soundRenderer= SoundRenderer::getInstance(); - CoreData &coreData= CoreData::getInstance(); - soundRenderer.playFx(coreData.getClickSoundC()); - launchGame(); - return; - } - } - catch(const std::exception &ex) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"In [%s::%s %d] Error detected:\n%s\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,ex.what()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s",szBuf); + loadScenarioInfo (Scenario:: + getScenarioPath (dirList, + scenarioFiles + [listBoxScenario. + getSelectedItemIndex ()]), + &scenarioInfo); - mainMessageBoxState=1; - showMessageBox( "Error: " + string(ex.what()), "Error detected", false); - } - } - } + printf ("[%s:%s] Line: %d scenarioInfo.file [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, scenarioInfo.file.c_str ()); - if(needToLoadTextures) { - // this delay is done to make it possible to switch faster - if(difftime(time(NULL), previewLoadDelayTimer) >= 2){ - loadScenarioPreviewTexture(); - needToLoadTextures= false; - } - } - console.update(); -} + labelInfo.setText (scenarioInfo.desc); + if (scenarioInfo.namei18n != "") + { + labelScenarioName.setText (scenarioInfo.namei18n); + } + else + { + labelScenarioName.setText (listBoxScenario. + getSelectedItem ()); + } -void MenuStateScenario::launchGame() { - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] scenarioInfo.file [%s] [%s][%s][%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,scenarioInfo.file.c_str(),scenarioInfo.tilesetName.c_str(),scenarioInfo.mapName.c_str(),scenarioInfo.techTreeName.c_str()); + SoundRenderer & soundRenderer = SoundRenderer::getInstance (); + CoreData & coreData = CoreData::getInstance (); + soundRenderer.playFx (coreData.getClickSoundC ()); + launchGame (); + return; + } + } + catch (const std::exception & ex) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, "In [%s::%s %d] Error detected:\n%s\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, ex.what ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, "%s", + szBuf); - if(scenarioInfo.file != "" && scenarioInfo.tilesetName != "" && scenarioInfo.mapName != "" && scenarioInfo.techTreeName != "") { - GameSettings gameSettings; - loadGameSettings(&scenarioInfo, &gameSettings); + mainMessageBoxState = 1; + showMessageBox ("Error: " + string (ex.what ()), "Error detected", + false); + } + } + } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] gameSettings.getScenarioDir() [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,gameSettings.getScenarioDir().c_str()); + if (needToLoadTextures) + { + // this delay is done to make it possible to switch faster + if (difftime (time (NULL), previewLoadDelayTimer) >= 2) + { + loadScenarioPreviewTexture (); + needToLoadTextures = false; + } + } + console.update (); + } - const vector pathTechList = Config::getInstance().getPathListForType(ptTechs,gameSettings.getScenarioDir()); - if(TechTree::exists(gameSettings.getTech(), pathTechList) == false) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"Line ref: %d Error: cannot find techtree [%s]\n",__LINE__,scenarioInfo.techTreeName.c_str()); - SystemFlags::OutputDebug(SystemFlags::debugError,szBuf); + void MenuStateScenario::launchGame () + { + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] scenarioInfo.file [%s] [%s][%s][%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, scenarioInfo.file.c_str (), + scenarioInfo.tilesetName.c_str (), + scenarioInfo.mapName.c_str (), + scenarioInfo.techTreeName.c_str ()); - mainMessageBoxState=1; - showMessageBox( szBuf, "Error detected", false); + if (scenarioInfo.file != "" && scenarioInfo.tilesetName != "" + && scenarioInfo.mapName != "" && scenarioInfo.techTreeName != "") + { + GameSettings gameSettings; + loadGameSettings (&scenarioInfo, &gameSettings); - return; - } - program->setState(new Game(program, &gameSettings, false)); - return; - } -} + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] gameSettings.getScenarioDir() [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, + gameSettings.getScenarioDir ().c_str ()); -void MenuStateScenario::setScenario(int i) { - listBoxScenario.setSelectedItemIndex(i); - loadScenarioInfo(Scenario::getScenarioPath(dirList, scenarioFiles[listBoxScenario.getSelectedItemIndex()]), &scenarioInfo); -} + const vector < string > pathTechList = + Config::getInstance ().getPathListForType (ptTechs, + gameSettings. + getScenarioDir ()); + if (TechTree::exists (gameSettings.getTech (), pathTechList) == false) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "Line ref: %d Error: cannot find techtree [%s]\n", + __LINE__, scenarioInfo.techTreeName.c_str ()); + SystemFlags::OutputDebug (SystemFlags::debugError, szBuf); -void MenuStateScenario::loadScenarioInfo(string file, ScenarioInfo *scenarioInfo) { - bool isTutorial = Scenario::isGameTutorial(file); + mainMessageBoxState = 1; + showMessageBox (szBuf, "Error detected", false); - //printf("[%s:%s] Line: %d file [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,file.c_str()); + return; + } + program->setState (new Game (program, &gameSettings, false)); + return; + } + } - Scenario::loadScenarioInfo(file, scenarioInfo, isTutorial); + void MenuStateScenario::setScenario (int i) + { + listBoxScenario.setSelectedItemIndex (i); + loadScenarioInfo (Scenario:: + getScenarioPath (dirList, + scenarioFiles[listBoxScenario. + getSelectedItemIndex + ()]), &scenarioInfo); + } - cleanupPreviewTexture(); - previewLoadDelayTimer=time(NULL); - needToLoadTextures=true; -} + void MenuStateScenario::loadScenarioInfo (string file, + ScenarioInfo * scenarioInfo) + { + bool isTutorial = Scenario::isGameTutorial (file); -void MenuStateScenario::loadScenarioPreviewTexture(){ - if(enableScenarioTexturePreview == true) { - //if(listBoxScenario.getSelectedItemIndex() >= 0) { - if(listBoxScenario.getItemCount() > 0 && listBoxScenario.getSelectedItemIndex() >= 0 && listBoxScenario.getSelectedItemIndex() < (int)scenarioFiles.size()) { - GameSettings gameSettings; - loadGameSettings(&scenarioInfo, &gameSettings); + //printf("[%s:%s] Line: %d file [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,file.c_str()); - string scenarioLogo = ""; - bool loadingImageUsed = false; + Scenario::loadScenarioInfo (file, scenarioInfo, isTutorial); - Game::extractScenarioLogoFile(&gameSettings, scenarioLogo, loadingImageUsed); + cleanupPreviewTexture (); + previewLoadDelayTimer = time (NULL); + needToLoadTextures = true; + } - if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] scenarioLogo [%s]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__,scenarioLogo.c_str()); + void MenuStateScenario::loadScenarioPreviewTexture () + { + if (enableScenarioTexturePreview == true) + { + //if(listBoxScenario.getSelectedItemIndex() >= 0) { + if (listBoxScenario.getItemCount () > 0 + && listBoxScenario.getSelectedItemIndex () >= 0 + && listBoxScenario.getSelectedItemIndex () < + (int) scenarioFiles.size ()) + { + GameSettings gameSettings; + loadGameSettings (&scenarioInfo, &gameSettings); - if(scenarioLogo != "") { - cleanupPreviewTexture(); - scenarioLogoTexture = Renderer::findTexture(scenarioLogo); - } - else { - cleanupPreviewTexture(); - scenarioLogoTexture = NULL; - } - } - } -} + string scenarioLogo = ""; + bool loadingImageUsed = false; -void MenuStateScenario::loadGameSettings(const ScenarioInfo *scenarioInfo, GameSettings *gameSettings){ - if(listBoxScenario.getSelectedItemIndex() < 0) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"listBoxScenario.getSelectedItemIndex() < 0, = %d",listBoxScenario.getSelectedItemIndex()); - throw megaglest_runtime_error(szBuf); - } - else if(listBoxScenario.getSelectedItemIndex() >= (int)scenarioFiles.size()) { - char szBuf[8096]=""; - snprintf(szBuf,8096,"listBoxScenario.getSelectedItemIndex() >= scenarioFiles.size(), = [%d][%d]",listBoxScenario.getSelectedItemIndex(),(int)scenarioFiles.size()); - throw megaglest_runtime_error(szBuf); - } + Game::extractScenarioLogoFile (&gameSettings, scenarioLogo, + loadingImageUsed); - Scenario::loadGameSettings(dirList,scenarioInfo, gameSettings, formatString(scenarioFiles[listBoxScenario.getSelectedItemIndex()])); -} + if (SystemFlags::VERBOSE_MODE_ENABLED) + printf ("In [%s::%s Line: %d] scenarioLogo [%s]\n", + extractFileFromDirectoryPath (__FILE__).c_str (), + __FUNCTION__, __LINE__, scenarioLogo.c_str ()); -void MenuStateScenario::showMessageBox(const string &text, const string &header, bool toggle){ - if(!toggle){ - mainMessageBox.setEnabled(false); - } + if (scenarioLogo != "") + { + cleanupPreviewTexture (); + scenarioLogoTexture = Renderer::findTexture (scenarioLogo); + } + else + { + cleanupPreviewTexture (); + scenarioLogoTexture = NULL; + } + } + } + } - if(!mainMessageBox.getEnabled()){ - mainMessageBox.setText(text); - mainMessageBox.setHeader(header); - mainMessageBox.setEnabled(true); - } - else{ - mainMessageBox.setEnabled(false); - } -} + void MenuStateScenario::loadGameSettings (const ScenarioInfo * + scenarioInfo, + GameSettings * gameSettings) + { + if (listBoxScenario.getSelectedItemIndex () < 0) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "listBoxScenario.getSelectedItemIndex() < 0, = %d", + listBoxScenario.getSelectedItemIndex ()); + throw megaglest_runtime_error (szBuf); + } + else if (listBoxScenario.getSelectedItemIndex () >= + (int) scenarioFiles.size ()) + { + char szBuf[8096] = ""; + snprintf (szBuf, 8096, + "listBoxScenario.getSelectedItemIndex() >= scenarioFiles.size(), = [%d][%d]", + listBoxScenario.getSelectedItemIndex (), + (int) scenarioFiles.size ()); + throw megaglest_runtime_error (szBuf); + } -void MenuStateScenario::keyDown(SDL_KeyboardEvent key) { - Config &configKeys = Config::getInstance(std::pair(cfgMainKeys,cfgUserKeys)); - if(isKeyPressed(configKeys.getSDLKey("SaveGUILayout"),key) == true) { - GraphicComponent::saveAllCustomProperties(containerName); - } -} + Scenario::loadGameSettings (dirList, scenarioInfo, gameSettings, + formatString (scenarioFiles + [listBoxScenario. + getSelectedItemIndex ()])); + } -}}//end namespace + void MenuStateScenario::showMessageBox (const string & text, + const string & header, + bool toggle) + { + if (!toggle) + { + mainMessageBox.setEnabled (false); + } + + if (!mainMessageBox.getEnabled ()) + { + mainMessageBox.setText (text); + mainMessageBox.setHeader (header); + mainMessageBox.setEnabled (true); + } + else + { + mainMessageBox.setEnabled (false); + } + } + + void MenuStateScenario::keyDown (SDL_KeyboardEvent key) + { + Config & configKeys = + Config::getInstance (std::pair < ConfigType, + ConfigType > (cfgMainKeys, cfgUserKeys)); + if (isKeyPressed (configKeys.getSDLKey ("SaveGUILayout"), key) == true) + { + GraphicComponent::saveAllCustomProperties (containerName); + } + } + + } +} //end namespace diff --git a/source/glest_game/menu/menu_state_scenario.h b/source/glest_game/menu/menu_state_scenario.h index 7c5c7fd5f..dc6557c13 100644 --- a/source/glest_game/menu/menu_state_scenario.h +++ b/source/glest_game/menu/menu_state_scenario.h @@ -1,85 +1,97 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2005 Martio Figueroa +// Copyright (C) 2001-2005 Martio Figueroa // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_MENUSTATESCENARIO_H_ -#define _GLEST_GAME_MENUSTATESCENARIO_H_ +# define _GLEST_GAME_MENUSTATESCENARIO_H_ -#include "main_menu.h" -#include "leak_dumper.h" +# include "main_menu.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// class MenuStateScenario +// class MenuStateScenario // =============================== -class MenuStateScenario: public MenuState { -private: + class MenuStateScenario:public MenuState + { + private: - GraphicButton buttonReturn; - GraphicButton buttonPlayNow; + GraphicButton buttonReturn; + GraphicButton buttonPlayNow; - GraphicLabel labelInfo; - GraphicLabel labelScenario; - GraphicListBox listBoxScenario; - GraphicLabel labelScenarioName; + GraphicLabel labelInfo; + GraphicLabel labelScenario; + GraphicListBox listBoxScenario; + GraphicLabel labelScenarioName; - vector scenarioFiles; + vector < string > scenarioFiles; - ScenarioInfo scenarioInfo; - vector dirList; + ScenarioInfo scenarioInfo; + vector < string > dirList; - GraphicMessageBox mainMessageBox; - int mainMessageBoxState; + GraphicMessageBox mainMessageBox; + int mainMessageBoxState; - string autoloadScenarioName; + string autoloadScenarioName; - time_t previewLoadDelayTimer; - bool needToLoadTextures; + time_t previewLoadDelayTimer; + bool needToLoadTextures; - bool enableScenarioTexturePreview; - Texture2D *scenarioLogoTexture; + bool enableScenarioTexturePreview; + Texture2D *scenarioLogoTexture; - bool isTutorialMode; + bool isTutorialMode; -public: - MenuStateScenario(Program *program, MainMenu *mainMenu, bool isTutorialMode, const vector &dirList, string autoloadScenarioName=""); - virtual ~MenuStateScenario(); + public: + MenuStateScenario (Program * program, MainMenu * mainMenu, + bool isTutorialMode, + const vector < string > &dirList, + string autoloadScenarioName = ""); + virtual ~ MenuStateScenario (); - void mouseClick(int x, int y, MouseButton mouseButton); - void mouseMove(int x, int y, const MouseState *mouseState); - void render(); - void update(); + void mouseClick (int x, int y, MouseButton mouseButton); + void mouseMove (int x, int y, const MouseState * mouseState); + void render (); + void update (); - void launchGame(); - void setScenario(int i); - int getScenarioCount() const { return listBoxScenario.getItemCount(); } + void launchGame (); + void setScenario (int i); + int getScenarioCount () const + { + return listBoxScenario.getItemCount (); + } - virtual void keyDown(SDL_KeyboardEvent key); + virtual void keyDown (SDL_KeyboardEvent key); - virtual void reloadUI(); + virtual void reloadUI (); -private: + private: - void loadScenarioInfo(string file, ScenarioInfo *scenarioInfo); - void loadGameSettings(const ScenarioInfo *scenarioInfo, GameSettings *gameSettings); - void loadScenarioPreviewTexture(); - Difficulty computeDifficulty(const ScenarioInfo *scenarioInfo); - void showMessageBox(const string &text, const string &header, bool toggle); + void loadScenarioInfo (string file, ScenarioInfo * scenarioInfo); + void loadGameSettings (const ScenarioInfo * scenarioInfo, + GameSettings * gameSettings); + void loadScenarioPreviewTexture (); + Difficulty computeDifficulty (const ScenarioInfo * scenarioInfo); + void showMessageBox (const string & text, const string & header, + bool toggle); - void cleanupPreviewTexture(); -}; + void cleanupPreviewTexture (); + }; -}}//end namespace +}} //end namespace #endif diff --git a/source/glest_game/menu/server_line.cpp b/source/glest_game/menu/server_line.cpp index 554c64f7d..66f4f1689 100644 --- a/source/glest_game/menu/server_line.cpp +++ b/source/glest_game/menu/server_line.cpp @@ -1,12 +1,12 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2010- by Titus Tscharntke +// Copyright (C) 2010- by Titus Tscharntke // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== @@ -21,275 +21,342 @@ #include "leak_dumper.h" -namespace Glest { -namespace Game { +namespace Glest +{ + namespace Game + { // ===================================================== -// class ServerLine +// class ServerLine // ===================================================== -ServerLine::ServerLine(MasterServerInfo *mServerInfo, int lineIndex, int baseY, int lineHeight, - const char * containerName){ - this->containerName= containerName; - this->countryTexture= NULL; - Lang &lang= Lang::getInstance(); + ServerLine::ServerLine (MasterServerInfo * mServerInfo, int lineIndex, + int baseY, int lineHeight, + const char *containerName) + { + this->containerName = containerName; + this->countryTexture = NULL; + Lang & lang = Lang::getInstance (); - this->lineHeight= lineHeight; - int lineOffset= lineHeight * lineIndex; - masterServerInfo= *mServerInfo; - int i= 5; - this->baseY= baseY; - Vec3f color=Vec3f(1.0f,1.0f,1.0f); + this->lineHeight = lineHeight; + int lineOffset = lineHeight * lineIndex; + masterServerInfo = *mServerInfo; + int i = 5; + this->baseY = baseY; + Vec3f color = Vec3f (1.0f, 1.0f, 1.0f); - if(masterServerInfo.getConnectedClients()==0){ - color=Vec3f(0.6f,0.7f,1.0f); - } + if (masterServerInfo.getConnectedClients () == 0) + { + color = Vec3f (0.6f, 0.7f, 1.0f); + } - //general info: - //i+= 10; - glestVersionLabel.init(i, baseY - lineOffset); - glestVersionLabel.setRenderBackground(true); - glestVersionLabel.setMaxEditRenderWidth(970); // use background for whole line - glestVersionLabel.setTextColor(color); - glestVersionLabel.setText(" " + masterServerInfo.getGlestVersion()); - glestVersionLabel.setFont(CoreData::getInstance().getDisplayFontSmall()); - glestVersionLabel.setFont3D(CoreData::getInstance().getDisplayFontSmall3D()); + //general info: + //i+= 10; + glestVersionLabel.init (i, baseY - lineOffset); + glestVersionLabel.setRenderBackground (true); + glestVersionLabel.setMaxEditRenderWidth (970); // use background for whole line + glestVersionLabel.setTextColor (color); + glestVersionLabel.setText (" " + masterServerInfo.getGlestVersion ()); + glestVersionLabel.setFont (CoreData::getInstance (). + getDisplayFontSmall ()); + glestVersionLabel.setFont3D (CoreData::getInstance (). + getDisplayFontSmall3D ()); - i+= 80; - string platform=masterServerInfo.getPlatform(); - size_t revOffset = platform.find("-Rev"); - if(revOffset != platform.npos) { - platform = platform.substr(0,revOffset); - } + i += 80; + string platform = masterServerInfo.getPlatform (); + size_t revOffset = platform.find ("-Rev"); + if (revOffset != platform.npos) + { + platform = platform.substr (0, revOffset); + } - platformLabel.init(i, baseY - lineOffset); - platformLabel.setTextColor(color); - platformLabel.setText(platform); - platformLabel.setFont(CoreData::getInstance().getDisplayFontSmall()); - platformLabel.setFont3D(CoreData::getInstance().getDisplayFontSmall3D()); + platformLabel.init (i, baseY - lineOffset); + platformLabel.setTextColor (color); + platformLabel.setText (platform); + platformLabel.setFont (CoreData::getInstance ().getDisplayFontSmall ()); + platformLabel.setFont3D (CoreData::getInstance (). + getDisplayFontSmall3D ()); - // i+=50; - // registeredObjNameList.push_back("binaryCompileDateLabel" + intToStr(lineIndex)); - // binaryCompileDateLabel.registerGraphicComponent(containerName,"binaryCompileDateLabel" + intToStr(lineIndex)); - // binaryCompileDateLabel.init(i,baseY-lineOffset); - // binaryCompileDateLabel.setText(masterServerInfo.getBinaryCompileDate()); + // i+=50; + // registeredObjNameList.push_back("binaryCompileDateLabel" + intToStr(lineIndex)); + // binaryCompileDateLabel.registerGraphicComponent(containerName,"binaryCompileDateLabel" + intToStr(lineIndex)); + // binaryCompileDateLabel.init(i,baseY-lineOffset); + // binaryCompileDateLabel.setText(masterServerInfo.getBinaryCompileDate()); - //game info: - i+= 120; - serverTitleLabel.init(i, baseY - lineOffset); - serverTitleLabel.setTextColor(color); - serverTitleLabel.setText(masterServerInfo.getServerTitle()); + //game info: + i += 120; + serverTitleLabel.init (i, baseY - lineOffset); + serverTitleLabel.setTextColor (color); + serverTitleLabel.setText (masterServerInfo.getServerTitle ()); - i+= 170; - country.init(i, baseY - lineOffset); - country.setTextColor(color); - country.setText(masterServerInfo.getCountry()); + i += 170; + country.init (i, baseY - lineOffset); + country.setTextColor (color); + country.setText (masterServerInfo.getCountry ()); - string data_path= getGameReadWritePath(GameConstants::path_data_CacheLookupKey); - string countryLogoPath= data_path + "data/core/misc_textures/flags"; + string data_path = + getGameReadWritePath (GameConstants::path_data_CacheLookupKey); + string countryLogoPath = data_path + "data/core/misc_textures/flags"; - Config &config= Config::getInstance(); - if(config.getString("CountryTexturePath", "") != ""){ - countryLogoPath = config.getString("CountryTexturePath", ""); - } - endPathWithSlash(countryLogoPath); + Config & config = Config::getInstance (); + if (config.getString ("CountryTexturePath", "") != "") + { + countryLogoPath = config.getString ("CountryTexturePath", ""); + } + endPathWithSlash (countryLogoPath); - string logoFile= countryLogoPath + toLower(masterServerInfo.getCountry()) + ".png"; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] logoFile [%s]\n",__FILE__,__FUNCTION__,__LINE__,logoFile.c_str()); + string logoFile = + countryLogoPath + toLower (masterServerInfo.getCountry ()) + ".png"; + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] logoFile [%s]\n", + __FILE__, __FUNCTION__, __LINE__, + logoFile.c_str ()); - if(fileExists(logoFile) == true){ - countryTexture= GraphicsInterface::getInstance().getFactory()->newTexture2D(); - //loadingTexture = renderer.newTexture2D(rsGlobal); - countryTexture->setMipmap(true); - //loadingTexture->getPixmap()->load(filepath); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] logoFile [%s]\n",__FILE__,__FUNCTION__,__LINE__,logoFile.c_str()); - countryTexture->load(logoFile); + if (fileExists (logoFile) == true) + { + countryTexture = + GraphicsInterface::getInstance ().getFactory ()->newTexture2D (); + //loadingTexture = renderer.newTexture2D(rsGlobal); + countryTexture->setMipmap (true); + //loadingTexture->getPixmap()->load(filepath); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d] logoFile [%s]\n", + __FILE__, __FUNCTION__, __LINE__, + logoFile.c_str ()); + countryTexture->load (logoFile); - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); - Renderer &renderer= Renderer::getInstance(); - renderer.initTexture(rsGlobal, countryTexture); - } + Renderer & renderer = Renderer::getInstance (); + renderer.initTexture (rsGlobal, countryTexture); + } - i+= 60; - // ipAddressLabel.init(i,baseY-lineOffset); - // ipAddressLabel.setText(masterServerInfo.getIpAddress()); - // i+=100; + i += 60; + // ipAddressLabel.init(i,baseY-lineOffset); + // ipAddressLabel.setText(masterServerInfo.getIpAddress()); + // i+=100; - wrongVersionLabel.init(i, baseY - lineOffset); - wrongVersionLabel.setTextColor(Vec3f(1.0f,0.0f,0.0f)); - wrongVersionLabel.setText(lang.getString("IncompatibleVersion")); + wrongVersionLabel.init (i, baseY - lineOffset); + wrongVersionLabel.setTextColor (Vec3f (1.0f, 0.0f, 0.0f)); + wrongVersionLabel.setText (lang.getString ("IncompatibleVersion")); - //game setup info: - techLabel.init(i, baseY - lineOffset); - techLabel.setTextColor(color); - techLabel.setText(masterServerInfo.getTech()); + //game setup info: + techLabel.init (i, baseY - lineOffset); + techLabel.setTextColor (color); + techLabel.setText (masterServerInfo.getTech ()); - i+= 130; - mapLabel.init(i, baseY - lineOffset); - mapLabel.setTextColor(color); - mapLabel.setText(masterServerInfo.getMap()); - i+= 130; + i += 130; + mapLabel.init (i, baseY - lineOffset); + mapLabel.setTextColor (color); + mapLabel.setText (masterServerInfo.getMap ()); + i += 130; - // tilesetLabel.init(i,baseY-lineOffset); - // tilesetLabel.setText(masterServerInfo.getTileset()); - // i+=100; + // tilesetLabel.init(i,baseY-lineOffset); + // tilesetLabel.setText(masterServerInfo.getTileset()); + // i+=100; - activeSlotsLabel.init(i, baseY - lineOffset); - activeSlotsLabel.setTextColor(color); - activeSlotsLabel.setText(intToStr(masterServerInfo.getActiveSlots()) + "/" + intToStr( - masterServerInfo.getNetworkSlots()) + "/" + intToStr(masterServerInfo.getConnectedClients())); + activeSlotsLabel.init (i, baseY - lineOffset); + activeSlotsLabel.setTextColor (color); + activeSlotsLabel. + setText (intToStr (masterServerInfo.getActiveSlots ()) + "/" + + intToStr (masterServerInfo.getNetworkSlots ()) + "/" + + intToStr (masterServerInfo.getConnectedClients ())); - i+= 50; - //externalConnectPort.init(i, baseY - lineOffset); - //externalConnectPort.setTextColor(color); - //externalConnectPort.setText(intToStr(masterServerInfo.getExternalConnectPort())); + i += 50; + //externalConnectPort.init(i, baseY - lineOffset); + //externalConnectPort.setTextColor(color); + //externalConnectPort.setText(intToStr(masterServerInfo.getExternalConnectPort())); - i+= 30; - status.init(i-10, baseY - lineOffset); - status.setTextColor(color); - status.setText(lang.getString("MGGameStatus" + intToStr(masterServerInfo.getStatus()))); + i += 30; + status.init (i - 10, baseY - lineOffset); + status.setTextColor (color); + status.setText (lang. + getString ("MGGameStatus" + + intToStr (masterServerInfo.getStatus ()))); - i+= 130; - selectButton.init(i+25, baseY - lineOffset, 35, lineHeight - 5); - selectButton.setText(">"); - selectButton.setAlwaysLighted(true); + i += 130; + selectButton.init (i + 25, baseY - lineOffset, 35, lineHeight - 5); + selectButton.setText (">"); + selectButton.setAlwaysLighted (true); - //printf("glestVersionString [%s] masterServerInfo->getGlestVersion() [%s]\n",glestVersionString.c_str(),masterServerInfo->getGlestVersion().c_str()); - compatible= checkVersionComptability(glestVersionString, masterServerInfo.getGlestVersion()); - selectButton.setEnabled(compatible); - selectButton.setEditable(compatible); + //printf("glestVersionString [%s] masterServerInfo->getGlestVersion() [%s]\n",glestVersionString.c_str(),masterServerInfo->getGlestVersion().c_str()); + compatible = + checkVersionComptability (glestVersionString, + masterServerInfo.getGlestVersion ()); + selectButton.setEnabled (compatible); + selectButton.setEditable (compatible); -} + } -void ServerLine::reloadUI() { - Lang &lang= Lang::getInstance(); + void ServerLine::reloadUI () + { + Lang & lang = Lang::getInstance (); - glestVersionLabel.setText(masterServerInfo.getGlestVersion()); + glestVersionLabel.setText (masterServerInfo.getGlestVersion ()); - string platform = masterServerInfo.getPlatform(); - size_t revOffset = platform.find("-Rev"); - if(revOffset != platform.npos) { - platform = platform.substr(0,revOffset); - } + string platform = masterServerInfo.getPlatform (); + size_t revOffset = platform.find ("-Rev"); + if (revOffset != platform.npos) + { + platform = platform.substr (0, revOffset); + } - platformLabel.setText(platform); + platformLabel.setText (platform); - serverTitleLabel.setText(masterServerInfo.getServerTitle()); + serverTitleLabel.setText (masterServerInfo.getServerTitle ()); - country.setText(masterServerInfo.getCountry()); + country.setText (masterServerInfo.getCountry ()); - wrongVersionLabel.setText(lang.getString("IncompatibleVersion")); + wrongVersionLabel.setText (lang.getString ("IncompatibleVersion")); - techLabel.setText(masterServerInfo.getTech()); + techLabel.setText (masterServerInfo.getTech ()); - mapLabel.setText(masterServerInfo.getMap()); - activeSlotsLabel.setText(intToStr(masterServerInfo.getActiveSlots()) + "/" + intToStr( - masterServerInfo.getNetworkSlots()) + "/" + intToStr(masterServerInfo.getConnectedClients())); + mapLabel.setText (masterServerInfo.getMap ()); + activeSlotsLabel. + setText (intToStr (masterServerInfo.getActiveSlots ()) + "/" + + intToStr (masterServerInfo.getNetworkSlots ()) + "/" + + intToStr (masterServerInfo.getConnectedClients ())); - //externalConnectPort.setText(intToStr(masterServerInfo.getExternalConnectPort())); + //externalConnectPort.setText(intToStr(masterServerInfo.getExternalConnectPort())); - status.setText(lang.getString("MGGameStatus" + intToStr(masterServerInfo.getStatus()))); + status.setText (lang. + getString ("MGGameStatus" + + intToStr (masterServerInfo.getStatus ()))); - GraphicComponent::reloadFontsForRegisterGraphicComponents(containerName); -} + GraphicComponent:: + reloadFontsForRegisterGraphicComponents (containerName); + } -ServerLine::~ServerLine(){ - //delete masterServerInfo; + ServerLine::~ServerLine () + { + //delete masterServerInfo; - if(countryTexture != NULL){ - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (countryTexture != NULL) + { + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); - countryTexture->end(); - delete countryTexture; + countryTexture->end (); + delete countryTexture; - if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + if (SystemFlags::getSystemSettingType (SystemFlags::debugSystem). + enabled) + SystemFlags::OutputDebug (SystemFlags::debugSystem, + "In [%s::%s Line: %d]\n", __FILE__, + __FUNCTION__, __LINE__); - //delete loadingTexture; - countryTexture= NULL; - } -} + //delete loadingTexture; + countryTexture = NULL; + } + } -bool ServerLine::buttonMouseClick(int x, int y){ - return selectButton.mouseClick(x, y); -} + bool ServerLine::buttonMouseClick (int x, int y) + { + return selectButton.mouseClick (x, y); + } -bool ServerLine::buttonMouseMove(int x, int y){ - return selectButton.mouseMove(x, y); -} + bool ServerLine::buttonMouseMove (int x, int y) + { + return selectButton.mouseMove (x, y); + } -void ServerLine::render(){ - Renderer &renderer= Renderer::getInstance(); - //general info: - renderer.renderLabel(&glestVersionLabel); - renderer.renderLabel(&platformLabel); - //renderer.renderLabel(&binaryCompileDateLabel); + void ServerLine::render () + { + Renderer & renderer = Renderer::getInstance (); + //general info: + renderer.renderLabel (&glestVersionLabel); + renderer.renderLabel (&platformLabel); + //renderer.renderLabel(&binaryCompileDateLabel); - //game info: - renderer.renderLabel(&serverTitleLabel); - if(countryTexture != NULL){ - renderer.renderTextureQuad(country.getX()+1, country.getY()+4, countryTexture->getTextureWidth(), - countryTexture->getTextureHeight(), countryTexture, 0.7f); - } - else{ - renderer.renderLabel(&country); - } - if(compatible){ - if(selectButton.getEnabled() == true){ - //renderer.renderLabel(&ipAddressLabel); - //game setup info: - renderer.renderLabel(&techLabel); - renderer.renderLabel(&mapLabel); - //renderer.renderLabel(&tilesetLabel); - renderer.renderLabel(&activeSlotsLabel); - //renderer.renderLabel(&externalConnectPort); - renderer.renderLabel(&status); - } - } - else{ - renderer.renderLabel(&wrongVersionLabel); - } - renderer.renderLabel(&status); + //game info: + renderer.renderLabel (&serverTitleLabel); + if (countryTexture != NULL) + { + renderer.renderTextureQuad (country.getX () + 1, country.getY () + 4, + countryTexture->getTextureWidth (), + countryTexture->getTextureHeight (), + countryTexture, 0.7f); + } + else + { + renderer.renderLabel (&country); + } + if (compatible) + { + if (selectButton.getEnabled () == true) + { + //renderer.renderLabel(&ipAddressLabel); + //game setup info: + renderer.renderLabel (&techLabel); + renderer.renderLabel (&mapLabel); + //renderer.renderLabel(&tilesetLabel); + renderer.renderLabel (&activeSlotsLabel); + //renderer.renderLabel(&externalConnectPort); + renderer.renderLabel (&status); + } + } + else + { + renderer.renderLabel (&wrongVersionLabel); + } + renderer.renderLabel (&status); - bool joinEnabled= (masterServerInfo.getNetworkSlots() > masterServerInfo.getConnectedClients()); - if(joinEnabled == true){ - if(compatible){ - selectButton.setEnabled(true); - selectButton.setVisible(true); - renderer.renderButton(&selectButton); - } - } - else{ - selectButton.setEnabled(false); - selectButton.setVisible(false); - } -} + bool joinEnabled = + (masterServerInfo.getNetworkSlots () > + masterServerInfo.getConnectedClients ()); + if (joinEnabled == true) + { + if (compatible) + { + selectButton.setEnabled (true); + selectButton.setVisible (true); + renderer.renderButton (&selectButton); + } + } + else + { + selectButton.setEnabled (false); + selectButton.setVisible (false); + } + } -void ServerLine::setY(int y){ - selectButton.setY(y); + void ServerLine::setY (int y) + { + selectButton.setY (y); - //general info: - glestVersionLabel.setY(y); - platformLabel.setY(y); - //binaryCompileDateLabel.setY(y); + //general info: + glestVersionLabel.setY (y); + platformLabel.setY (y); + //binaryCompileDateLabel.setY(y); - //game info: - serverTitleLabel.setY(y); - country.setY(y); - status.setY(y); - //ipAddressLabel.setY(y); + //game info: + serverTitleLabel.setY (y); + country.setY (y); + status.setY (y); + //ipAddressLabel.setY(y); - //game setup info: - techLabel.setY(y); - mapLabel.setY(y); - //tilesetLabel.setY(y); - activeSlotsLabel.setY(y); + //game setup info: + techLabel.setY (y); + mapLabel.setY (y); + //tilesetLabel.setY(y); + activeSlotsLabel.setY (y); - //externalConnectPort.setY(y); + //externalConnectPort.setY(y); -} + } -} -}//end namespace + } +} //end namespace diff --git a/source/glest_game/menu/server_line.h b/source/glest_game/menu/server_line.h index 841b1b637..9750c08c4 100644 --- a/source/glest_game/menu/server_line.h +++ b/source/glest_game/menu/server_line.h @@ -1,83 +1,94 @@ // ============================================================== -// This file is part of Glest (www.glest.org) +// This file is part of Glest (www.glest.org) // -// Copyright (C) 2010- by Titus Tscharntke +// Copyright (C) 2010- by Titus Tscharntke // -// You can redistribute this code 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 +// You can redistribute this code 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 // ============================================================== #ifndef _GLEST_GAME_SERVERLINE_H_ -#define _GLEST_GAME_SERVERLINE_H_ +# define _GLEST_GAME_SERVERLINE_H_ -#ifdef WIN32 - #include - #include -#endif +# ifdef WIN32 +# include +# include +# endif -#include "masterserver_info.h" -#include "components.h" -#include "lang.h" -#include "world.h" +# include "masterserver_info.h" +# include "components.h" +# include "lang.h" +# include "world.h" -#include "leak_dumper.h" +# include "leak_dumper.h" -namespace Glest{ namespace Game{ +namespace Glest +{ + namespace Game + { // =============================== -// ServerLine +// ServerLine // =============================== -class ServerLine { -private: + class ServerLine + { + private: - MasterServerInfo masterServerInfo; - int lineHeight; - int baseY; - bool compatible; - GraphicButton selectButton; - GraphicLabel wrongVersionLabel; + MasterServerInfo masterServerInfo; + int lineHeight; + int baseY; + bool compatible; + GraphicButton selectButton; + GraphicLabel wrongVersionLabel; - //general info: - GraphicLabel glestVersionLabel; - GraphicLabel platformLabel; - //GraphicLabel binaryCompileDateLabel; + //general info: + GraphicLabel glestVersionLabel; + GraphicLabel platformLabel; + //GraphicLabel binaryCompileDateLabel; - //game info: - GraphicLabel serverTitleLabel; - GraphicLabel ipAddressLabel; + //game info: + GraphicLabel serverTitleLabel; + GraphicLabel ipAddressLabel; - //game setup info: - GraphicLabel techLabel; - GraphicLabel mapLabel; - GraphicLabel tilesetLabel; - GraphicLabel activeSlotsLabel; + //game setup info: + GraphicLabel techLabel; + GraphicLabel mapLabel; + GraphicLabel tilesetLabel; + GraphicLabel activeSlotsLabel; - GraphicLabel externalConnectPort; + GraphicLabel externalConnectPort; - GraphicLabel country; - GraphicLabel status; + GraphicLabel country; + GraphicLabel status; - Texture2D *countryTexture; + Texture2D *countryTexture; - const char * containerName; + const char *containerName; -public: - ServerLine( MasterServerInfo *mServerInfo, int lineIndex, int baseY, int lineHeight, const char *containerName); - virtual ~ServerLine(); - MasterServerInfo *getMasterServerInfo() {return &masterServerInfo;} - const int getLineHeight() const {return lineHeight;} - bool buttonMouseClick(int x, int y); - bool buttonMouseMove(int x, int y); - void setY(int y); - //void setIndex(int value); - void render(); + public: + ServerLine (MasterServerInfo * mServerInfo, int lineIndex, int baseY, + int lineHeight, const char *containerName); + virtual ~ ServerLine (); + MasterServerInfo *getMasterServerInfo () + { + return &masterServerInfo; + } + const int getLineHeight () const + { + return lineHeight; + } + bool buttonMouseClick (int x, int y); + bool buttonMouseMove (int x, int y); + void setY (int y); + //void setIndex(int value); + void render (); - virtual void reloadUI(); -}; + virtual void reloadUI (); + }; -}}//end namespace +}} //end namespace #endif