2017-07-13 10:26:03 +02:00
|
|
|
/*
|
2023-02-01 16:42:03 +02:00
|
|
|
* CAdvMapInt.cpp, part of VCMI engine
|
2017-07-13 10:26:03 +02:00
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
2011-12-14 00:23:17 +03:00
|
|
|
#include "StdInc.h"
|
2023-04-12 15:04:38 +02:00
|
|
|
#include "CAdventureMapInterface.h"
|
2023-02-01 20:42:06 +02:00
|
|
|
|
|
|
|
#include "CAdvMapPanel.h"
|
|
|
|
#include "CAdventureOptions.h"
|
|
|
|
#include "CInGameConsole.h"
|
2023-02-10 16:26:32 +02:00
|
|
|
#include "CMinimap.h"
|
|
|
|
#include "CResDataBar.h"
|
|
|
|
#include "CList.h"
|
|
|
|
#include "CInfoBar.h"
|
2023-03-01 17:20:05 +02:00
|
|
|
#include "MapAudioPlayer.h"
|
2023-02-01 20:42:06 +02:00
|
|
|
|
2023-03-01 12:31:23 +02:00
|
|
|
#include "../mapView/mapHandler.h"
|
|
|
|
#include "../mapView/MapView.h"
|
2023-02-01 20:42:06 +02:00
|
|
|
#include "../windows/CKingdomInterface.h"
|
|
|
|
#include "../windows/CSpellWindow.h"
|
|
|
|
#include "../windows/CTradeWindow.h"
|
|
|
|
#include "../windows/GUIClasses.h"
|
|
|
|
#include "../windows/InfoWindows.h"
|
2014-07-13 20:53:37 +03:00
|
|
|
#include "../CGameInfo.h"
|
|
|
|
#include "../CPlayerInterface.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
#include "../lobby/CSavingScreen.h"
|
2023-02-01 20:42:06 +02:00
|
|
|
#include "../render/CAnimation.h"
|
2023-01-05 19:34:37 +02:00
|
|
|
#include "../gui/CursorHandler.h"
|
2023-02-01 20:42:06 +02:00
|
|
|
#include "../render/IImage.h"
|
2014-07-13 20:53:37 +03:00
|
|
|
#include "../gui/CGuiHandler.h"
|
2023-02-01 20:42:06 +02:00
|
|
|
#include "../widgets/TextControls.h"
|
|
|
|
#include "../widgets/Buttons.h"
|
2023-02-18 18:58:22 +02:00
|
|
|
#include "../windows/settings/SettingsMainWindow.h"
|
2023-02-02 21:15:13 +02:00
|
|
|
#include "../CMT.h"
|
2023-04-17 01:02:31 +02:00
|
|
|
#include "../PlayerLocalState.h"
|
2014-07-13 20:53:37 +03:00
|
|
|
|
|
|
|
#include "../../CCallback.h"
|
|
|
|
#include "../../lib/CConfigHandler.h"
|
|
|
|
#include "../../lib/CGeneralTextHandler.h"
|
2015-02-02 10:25:26 +02:00
|
|
|
#include "../../lib/spells/CSpellHandler.h"
|
2014-07-13 20:53:37 +03:00
|
|
|
#include "../../lib/mapObjects/CGHeroInstance.h"
|
2023-02-01 20:42:06 +02:00
|
|
|
#include "../../lib/mapObjects/CGTownInstance.h"
|
|
|
|
#include "../../lib/CPathfinder.h"
|
2014-07-13 20:53:37 +03:00
|
|
|
#include "../../lib/mapping/CMap.h"
|
2008-12-21 21:17:35 +02:00
|
|
|
|
2008-11-12 20:26:23 +02:00
|
|
|
#define ADVOPT (conf.go()->ac)
|
2009-07-30 15:49:45 +03:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
std::shared_ptr<CAdventureMapInterface> adventureInt;
|
2010-02-20 15:24:38 +02:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
CAdventureMapInterface::CAdventureMapInterface():
|
2023-02-10 16:26:32 +02:00
|
|
|
minimap(new CMinimap(Rect(ADVOPT.minimapX, ADVOPT.minimapY, ADVOPT.minimapW, ADVOPT.minimapH))),
|
2018-08-26 18:09:56 +02:00
|
|
|
statusbar(CGStatusBar::create(ADVOPT.statusbarX,ADVOPT.statusbarY,ADVOPT.statusbarG)),
|
2023-02-10 16:26:32 +02:00
|
|
|
heroList(new CHeroList(ADVOPT.hlistSize, Point(ADVOPT.hlistX, ADVOPT.hlistY), ADVOPT.hlistAU, ADVOPT.hlistAD)),
|
|
|
|
townList(new CTownList(ADVOPT.tlistSize, Point(ADVOPT.tlistX, ADVOPT.tlistY), ADVOPT.tlistAU, ADVOPT.tlistAD)),
|
2023-03-07 02:28:25 +02:00
|
|
|
infoBar(new CInfoBar(Point(ADVOPT.infoboxX, ADVOPT.infoboxY))),
|
2023-02-10 16:26:32 +02:00
|
|
|
resdatabar(new CResDataBar),
|
2023-03-01 17:20:05 +02:00
|
|
|
mapAudio(new MapAudioPlayer()),
|
2023-02-23 19:46:41 +02:00
|
|
|
terrain(new MapView(Point(ADVOPT.advmapX, ADVOPT.advmapY), Point(ADVOPT.advmapW, ADVOPT.advmapH))),
|
2023-04-17 00:09:25 +02:00
|
|
|
state(EGameState::NOT_INITIALIZED),
|
2023-02-22 21:25:05 +02:00
|
|
|
spellBeingCasted(nullptr),
|
|
|
|
activeMapPanel(nullptr),
|
2023-04-17 00:09:25 +02:00
|
|
|
scrollingCursorSet(false)
|
2007-08-06 07:03:34 +03:00
|
|
|
{
|
2009-08-18 11:22:56 +03:00
|
|
|
pos.x = pos.y = 0;
|
2023-02-03 18:23:53 +02:00
|
|
|
pos.w = GH.screenDimensions().x;
|
|
|
|
pos.h = GH.screenDimensions().y;
|
2019-12-26 20:10:39 +02:00
|
|
|
strongInterest = true; // handle all mouse move events to prevent dead mouse move space in fullscreen mode
|
2023-04-17 14:17:15 +02:00
|
|
|
|
2023-01-30 18:25:47 +02:00
|
|
|
bg = IImage::createFromFile(ADVOPT.mainGraphic);
|
2022-11-15 02:20:55 +02:00
|
|
|
if(!ADVOPT.worldViewGraphic.empty())
|
2016-10-02 22:05:53 +02:00
|
|
|
{
|
2023-01-30 18:25:47 +02:00
|
|
|
bgWorldView = IImage::createFromFile(ADVOPT.worldViewGraphic);
|
2016-10-02 22:05:53 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bgWorldView = nullptr;
|
2016-10-03 20:32:01 +02:00
|
|
|
logGlobal->warn("ADVOPT.worldViewGraphic is empty => bitmap not loaded");
|
2016-10-02 22:05:53 +02:00
|
|
|
}
|
2015-01-13 21:57:41 +02:00
|
|
|
if (!bgWorldView)
|
|
|
|
{
|
|
|
|
logGlobal->warn("bgWorldView not defined in resolution config; fallback to VWorld.bmp");
|
2023-01-30 18:25:47 +02:00
|
|
|
bgWorldView = IImage::createFromFile("VWorld.bmp");
|
2015-01-13 21:57:41 +02:00
|
|
|
}
|
|
|
|
|
2016-10-18 04:46:07 +02:00
|
|
|
worldViewIcons = std::make_shared<CAnimation>("VwSymbol");//todo: customize with ADVOPT
|
2018-04-07 13:34:11 +02:00
|
|
|
worldViewIcons->preload();
|
2016-10-18 04:46:07 +02:00
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
for(int g = 0; g < ADVOPT.gemG.size(); ++g)
|
2010-08-04 14:18:13 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
gems.push_back(std::make_shared<CAnimImage>(ADVOPT.gemG[g], 0, 0, ADVOPT.gemX[g], ADVOPT.gemY[g]));
|
2010-08-04 14:18:13 +03:00
|
|
|
}
|
2010-07-29 01:24:16 +03:00
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
auto makeButton = [&](int textID, std::function<void()> callback, config::ButtonInfo info, int key) -> std::shared_ptr<CButton>
|
2014-08-03 14:16:19 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
auto button = std::make_shared<CButton>(Point(info.x, info.y), info.defName, CGI->generaltexth->zelp[textID], callback, key, info.playerColoured);
|
|
|
|
for(auto image : info.additionalDefs)
|
2014-08-03 14:16:19 +03:00
|
|
|
button->addImage(image);
|
|
|
|
return button;
|
|
|
|
};
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
kingOverview = makeButton(293, std::bind(&CAdventureMapInterface::fshowOverview,this), ADVOPT.kingOverview, SDLK_k);
|
|
|
|
underground = makeButton(294, std::bind(&CAdventureMapInterface::fswitchLevel,this), ADVOPT.underground, SDLK_u);
|
|
|
|
questlog = makeButton(295, std::bind(&CAdventureMapInterface::fshowQuestlog,this), ADVOPT.questlog, SDLK_q);
|
|
|
|
sleepWake = makeButton(296, std::bind(&CAdventureMapInterface::fsleepWake,this), ADVOPT.sleepWake, SDLK_w);
|
|
|
|
moveHero = makeButton(297, std::bind(&CAdventureMapInterface::fmoveHero,this), ADVOPT.moveHero, SDLK_m);
|
|
|
|
spellbook = makeButton(298, std::bind(&CAdventureMapInterface::fshowSpellbok,this), ADVOPT.spellbook, SDLK_c);
|
|
|
|
advOptions = makeButton(299, std::bind(&CAdventureMapInterface::fadventureOPtions,this), ADVOPT.advOptions, SDLK_a);
|
|
|
|
sysOptions = makeButton(300, std::bind(&CAdventureMapInterface::fsystemOptions,this), ADVOPT.sysOptions, SDLK_o);
|
|
|
|
nextHero = makeButton(301, std::bind(&CAdventureMapInterface::fnextHero,this), ADVOPT.nextHero, SDLK_h);
|
|
|
|
endTurn = makeButton(302, std::bind(&CAdventureMapInterface::fendTurn,this), ADVOPT.endTurn, SDLK_e);
|
2010-07-29 01:24:16 +03:00
|
|
|
|
2023-02-10 16:26:32 +02:00
|
|
|
int panelSpaceBottom = GH.screenDimensions().y - resdatabar->pos.h - 4;
|
2015-10-31 19:23:13 +02:00
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
panelMain = std::make_shared<CAdvMapPanel>(nullptr, Point(0, 0));
|
2015-01-29 19:39:46 +02:00
|
|
|
// TODO correct drawing position
|
2023-02-10 16:26:32 +02:00
|
|
|
panelWorldView = std::make_shared<CAdvMapWorldViewPanel>(worldViewIcons, bgWorldView, Point(heroList->pos.x - 2, 195), panelSpaceBottom, LOCPLINT->playerID);
|
2015-01-15 01:22:20 +02:00
|
|
|
|
|
|
|
panelMain->addChildColorableButton(kingOverview);
|
|
|
|
panelMain->addChildColorableButton(underground);
|
|
|
|
panelMain->addChildColorableButton(questlog);
|
|
|
|
panelMain->addChildColorableButton(sleepWake);
|
|
|
|
panelMain->addChildColorableButton(moveHero);
|
|
|
|
panelMain->addChildColorableButton(spellbook);
|
|
|
|
panelMain->addChildColorableButton(advOptions);
|
|
|
|
panelMain->addChildColorableButton(sysOptions);
|
|
|
|
panelMain->addChildColorableButton(nextHero);
|
|
|
|
panelMain->addChildColorableButton(endTurn);
|
|
|
|
|
|
|
|
|
2015-01-13 21:57:41 +02:00
|
|
|
// TODO move configs to resolutions.json, similarly to previous buttons
|
|
|
|
config::ButtonInfo worldViewBackConfig = config::ButtonInfo();
|
|
|
|
worldViewBackConfig.defName = "IOK6432.DEF";
|
2023-02-03 18:23:53 +02:00
|
|
|
worldViewBackConfig.x = GH.screenDimensions().x - 73;
|
2015-01-13 21:57:41 +02:00
|
|
|
worldViewBackConfig.y = 343 + 195;
|
|
|
|
worldViewBackConfig.playerColoured = false;
|
2015-01-15 01:22:20 +02:00
|
|
|
panelWorldView->addChildToPanel(
|
2023-04-12 15:04:38 +02:00
|
|
|
makeButton(288, std::bind(&CAdventureMapInterface::fworldViewBack,this), worldViewBackConfig, SDLK_ESCAPE), ACTIVATE | DEACTIVATE);
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2015-01-19 21:46:03 +02:00
|
|
|
config::ButtonInfo worldViewPuzzleConfig = config::ButtonInfo();
|
|
|
|
worldViewPuzzleConfig.defName = "VWPUZ.DEF";
|
2023-02-03 18:23:53 +02:00
|
|
|
worldViewPuzzleConfig.x = GH.screenDimensions().x - 188;
|
2015-01-19 21:46:03 +02:00
|
|
|
worldViewPuzzleConfig.y = 343 + 195;
|
|
|
|
worldViewPuzzleConfig.playerColoured = false;
|
|
|
|
panelWorldView->addChildToPanel( // no help text for this one
|
2018-04-07 13:34:11 +02:00
|
|
|
std::make_shared<CButton>(Point(worldViewPuzzleConfig.x, worldViewPuzzleConfig.y), worldViewPuzzleConfig.defName, std::pair<std::string, std::string>(),
|
2015-01-19 21:46:03 +02:00
|
|
|
std::bind(&CPlayerInterface::showPuzzleMap,LOCPLINT), SDLK_p, worldViewPuzzleConfig.playerColoured), ACTIVATE | DEACTIVATE);
|
|
|
|
|
2015-01-13 21:57:41 +02:00
|
|
|
config::ButtonInfo worldViewScale1xConfig = config::ButtonInfo();
|
|
|
|
worldViewScale1xConfig.defName = "VWMAG1.DEF";
|
2023-02-03 18:23:53 +02:00
|
|
|
worldViewScale1xConfig.x = GH.screenDimensions().x - 191;
|
2015-01-13 21:57:41 +02:00
|
|
|
worldViewScale1xConfig.y = 23 + 195;
|
|
|
|
worldViewScale1xConfig.playerColoured = false;
|
2015-01-19 21:46:03 +02:00
|
|
|
panelWorldView->addChildToPanel( // help text is wrong for this button
|
2023-04-12 15:04:38 +02:00
|
|
|
makeButton(291, std::bind(&CAdventureMapInterface::fworldViewScale1x,this), worldViewScale1xConfig, SDLK_1), ACTIVATE | DEACTIVATE);
|
2015-01-13 21:57:41 +02:00
|
|
|
|
|
|
|
config::ButtonInfo worldViewScale2xConfig = config::ButtonInfo();
|
|
|
|
worldViewScale2xConfig.defName = "VWMAG2.DEF";
|
2023-02-03 18:23:53 +02:00
|
|
|
worldViewScale2xConfig.x = GH.screenDimensions().x- 191 + 63;
|
2015-01-13 21:57:41 +02:00
|
|
|
worldViewScale2xConfig.y = 23 + 195;
|
|
|
|
worldViewScale2xConfig.playerColoured = false;
|
2015-01-19 21:46:03 +02:00
|
|
|
panelWorldView->addChildToPanel( // help text is wrong for this button
|
2023-04-12 15:04:38 +02:00
|
|
|
makeButton(291, std::bind(&CAdventureMapInterface::fworldViewScale2x,this), worldViewScale2xConfig, SDLK_2), ACTIVATE | DEACTIVATE);
|
2015-01-13 21:57:41 +02:00
|
|
|
|
|
|
|
config::ButtonInfo worldViewScale4xConfig = config::ButtonInfo();
|
|
|
|
worldViewScale4xConfig.defName = "VWMAG4.DEF";
|
2023-02-03 18:23:53 +02:00
|
|
|
worldViewScale4xConfig.x = GH.screenDimensions().x- 191 + 126;
|
2015-01-13 21:57:41 +02:00
|
|
|
worldViewScale4xConfig.y = 23 + 195;
|
|
|
|
worldViewScale4xConfig.playerColoured = false;
|
2015-01-19 21:46:03 +02:00
|
|
|
panelWorldView->addChildToPanel( // help text is wrong for this button
|
2023-04-12 15:04:38 +02:00
|
|
|
makeButton(291, std::bind(&CAdventureMapInterface::fworldViewScale4x,this), worldViewScale4xConfig, SDLK_4), ACTIVATE | DEACTIVATE);
|
2015-01-13 21:57:41 +02:00
|
|
|
|
|
|
|
config::ButtonInfo worldViewUndergroundConfig = config::ButtonInfo();
|
|
|
|
worldViewUndergroundConfig.defName = "IAM010.DEF";
|
|
|
|
worldViewUndergroundConfig.additionalDefs.push_back("IAM003.DEF");
|
2023-02-03 18:23:53 +02:00
|
|
|
worldViewUndergroundConfig.x = GH.screenDimensions().x - 115;
|
2015-01-13 21:57:41 +02:00
|
|
|
worldViewUndergroundConfig.y = 343 + 195;
|
|
|
|
worldViewUndergroundConfig.playerColoured = true;
|
2023-04-12 15:04:38 +02:00
|
|
|
worldViewUnderground = makeButton(294, std::bind(&CAdventureMapInterface::fswitchLevel,this), worldViewUndergroundConfig, SDLK_u);
|
2015-01-15 01:22:20 +02:00
|
|
|
panelWorldView->addChildColorableButton(worldViewUnderground);
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2023-04-20 21:03:28 +02:00
|
|
|
onCurrentPlayerChanged(LOCPLINT->playerID);
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
int iconColorMultiplier = currentPlayerID.getNum() * 19;
|
2023-02-10 16:26:32 +02:00
|
|
|
int wvLeft = heroList->pos.x - 2; // TODO correct drawing position
|
2016-10-18 04:46:07 +02:00
|
|
|
//int wvTop = 195;
|
2015-01-13 21:57:41 +02:00
|
|
|
for (int i = 0; i < 5; ++i)
|
|
|
|
{
|
2016-10-18 04:46:07 +02:00
|
|
|
panelWorldView->addChildIcon(std::pair<int, Point>(i, Point(5, 58 + i * 20)), iconColorMultiplier);
|
2022-11-26 23:12:20 +02:00
|
|
|
panelWorldView->addChildToPanel(std::make_shared<CLabel>(wvLeft + 45, 263 + i * 20, EFonts::FONT_SMALL, ETextAlignment::TOPLEFT,
|
2015-01-13 21:57:41 +02:00
|
|
|
Colors::WHITE, CGI->generaltexth->allTexts[612 + i]));
|
|
|
|
}
|
|
|
|
for (int i = 0; i < 7; ++i)
|
|
|
|
{
|
2016-10-18 04:46:07 +02:00
|
|
|
panelWorldView->addChildIcon(std::pair<int, Point>(i + 5, Point(5, 182 + i * 20)), iconColorMultiplier);
|
|
|
|
panelWorldView->addChildIcon(std::pair<int, Point>(i + 12, Point(160, 182 + i * 20)), iconColorMultiplier);
|
2022-11-26 23:12:20 +02:00
|
|
|
panelWorldView->addChildToPanel(std::make_shared<CLabel>(wvLeft + 45, 387 + i * 20, EFonts::FONT_SMALL, ETextAlignment::TOPLEFT,
|
2015-01-13 21:57:41 +02:00
|
|
|
Colors::WHITE, CGI->generaltexth->allTexts[619 + i]));
|
|
|
|
}
|
2022-11-26 23:12:20 +02:00
|
|
|
panelWorldView->addChildToPanel(std::make_shared<CLabel>(wvLeft + 5, 367, EFonts::FONT_SMALL, ETextAlignment::TOPLEFT,
|
2015-01-13 21:57:41 +02:00
|
|
|
Colors::WHITE, CGI->generaltexth->allTexts[617]));
|
2022-11-26 23:12:20 +02:00
|
|
|
panelWorldView->addChildToPanel(std::make_shared<CLabel>(wvLeft + 45, 367, EFonts::FONT_SMALL, ETextAlignment::TOPLEFT,
|
2015-01-13 21:57:41 +02:00
|
|
|
Colors::WHITE, CGI->generaltexth->allTexts[618]));
|
|
|
|
|
2015-01-15 01:22:20 +02:00
|
|
|
activeMapPanel = panelMain;
|
2015-10-31 19:23:13 +02:00
|
|
|
|
2023-02-21 14:38:08 +02:00
|
|
|
exitWorldView();
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2023-02-16 21:35:15 +02:00
|
|
|
underground->block(!CGI->mh->getMap()->twoLevel);
|
|
|
|
questlog->block(!CGI->mh->getMap()->quests.size());
|
|
|
|
worldViewUnderground->block(!CGI->mh->getMap()->twoLevel);
|
2007-08-06 07:03:34 +03:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fshowOverview()
|
2007-08-06 07:03:34 +03:00
|
|
|
{
|
2018-07-25 00:36:48 +02:00
|
|
|
GH.pushIntT<CKingdomInterface>();
|
2007-08-06 07:03:34 +03:00
|
|
|
}
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fworldViewBack()
|
2015-01-13 21:57:41 +02:00
|
|
|
{
|
2023-02-21 14:38:08 +02:00
|
|
|
exitWorldView();
|
2015-01-17 14:41:59 +02:00
|
|
|
|
2023-04-17 12:06:58 +02:00
|
|
|
auto hero = LOCPLINT->localState->getCurrentHero();
|
2015-01-17 14:41:59 +02:00
|
|
|
if (hero)
|
2023-02-23 19:46:41 +02:00
|
|
|
centerOnObject(hero);
|
2015-01-13 21:57:41 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fworldViewScale1x()
|
2015-01-13 21:57:41 +02:00
|
|
|
{
|
|
|
|
// TODO set corresponding scale button to "selected" mode
|
2023-02-21 14:38:08 +02:00
|
|
|
openWorldView(7);
|
2015-01-13 21:57:41 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fworldViewScale2x()
|
2015-01-13 21:57:41 +02:00
|
|
|
{
|
2023-02-21 14:38:08 +02:00
|
|
|
openWorldView(11);
|
2015-01-13 21:57:41 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fworldViewScale4x()
|
2015-01-13 21:57:41 +02:00
|
|
|
{
|
2023-02-21 14:38:08 +02:00
|
|
|
openWorldView(16);
|
2015-01-13 21:57:41 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fswitchLevel()
|
2015-01-13 21:57:41 +02:00
|
|
|
{
|
2015-01-17 12:56:12 +02:00
|
|
|
// with support for future multi-level maps :)
|
2023-02-16 21:35:15 +02:00
|
|
|
int maxLevels = CGI->mh->getMap()->levels();
|
2015-01-17 12:56:12 +02:00
|
|
|
if (maxLevels < 2)
|
2015-01-13 21:57:41 +02:00
|
|
|
return;
|
|
|
|
|
2023-02-23 19:46:41 +02:00
|
|
|
terrain->onMapLevelSwitched();
|
|
|
|
}
|
2015-01-17 12:56:12 +02:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::onMapViewMoved(const Rect & visibleArea, int mapLevel)
|
2023-02-23 19:46:41 +02:00
|
|
|
{
|
|
|
|
underground->setIndex(mapLevel, true);
|
2015-01-17 12:56:12 +02:00
|
|
|
underground->redraw();
|
|
|
|
|
2023-02-23 19:46:41 +02:00
|
|
|
worldViewUnderground->setIndex(mapLevel, true);
|
2015-01-17 12:56:12 +02:00
|
|
|
worldViewUnderground->redraw();
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2023-02-23 19:46:41 +02:00
|
|
|
minimap->onMapViewMoved(visibleArea, mapLevel);
|
2007-08-06 07:03:34 +03:00
|
|
|
}
|
2023-02-15 23:13:25 +02:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::onAudioResumed()
|
2023-03-01 17:20:05 +02:00
|
|
|
{
|
|
|
|
mapAudio->onAudioResumed();
|
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::onAudioPaused()
|
2023-03-01 17:20:05 +02:00
|
|
|
{
|
|
|
|
mapAudio->onAudioPaused();
|
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fshowQuestlog()
|
2007-08-06 07:03:34 +03:00
|
|
|
{
|
2012-07-06 22:12:04 +03:00
|
|
|
LOCPLINT->showQuestLog();
|
2007-08-06 07:03:34 +03:00
|
|
|
}
|
2023-02-15 23:13:25 +02:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fsleepWake()
|
2007-08-06 07:03:34 +03:00
|
|
|
{
|
2023-04-17 12:06:58 +02:00
|
|
|
const CGHeroInstance *h = LOCPLINT->localState->getCurrentHero();
|
2011-09-24 19:46:23 +03:00
|
|
|
if (!h)
|
|
|
|
return;
|
2023-04-17 12:26:28 +02:00
|
|
|
bool newSleep = !LOCPLINT->localState->isHeroSleeping(h);
|
2023-04-17 22:16:45 +02:00
|
|
|
|
2023-04-18 22:08:27 +02:00
|
|
|
if (newSleep)
|
|
|
|
LOCPLINT->localState->setHeroAsleep(h);
|
|
|
|
else
|
|
|
|
LOCPLINT->localState->setHeroAwaken(h);
|
|
|
|
|
|
|
|
onHeroChanged(h);
|
|
|
|
|
2011-09-24 19:46:23 +03:00
|
|
|
if (newSleep)
|
|
|
|
fnextHero();
|
2011-10-04 22:43:49 +03:00
|
|
|
|
2023-03-07 14:51:05 +02:00
|
|
|
// redraw to update the image of sleep/wake button
|
|
|
|
panelMain->redraw();
|
2007-08-06 07:03:34 +03:00
|
|
|
}
|
2011-09-24 19:46:23 +03:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fmoveHero()
|
2012-01-12 18:23:00 +03:00
|
|
|
{
|
2023-04-17 12:06:58 +02:00
|
|
|
const CGHeroInstance *h = LOCPLINT->localState->getCurrentHero();
|
2023-04-17 01:02:31 +02:00
|
|
|
if (!h || !LOCPLINT->localState->hasPath(h) || CGI->mh->hasOngoingAnimations())
|
2007-10-14 00:27:03 +03:00
|
|
|
return;
|
2009-04-21 01:57:07 +03:00
|
|
|
|
2023-04-17 01:02:31 +02:00
|
|
|
LOCPLINT->moveHero(h, LOCPLINT->localState->getPath(h));
|
2007-08-06 07:03:34 +03:00
|
|
|
}
|
2009-06-11 20:21:06 +03:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fshowSpellbok()
|
2007-08-06 07:03:34 +03:00
|
|
|
{
|
2023-04-17 12:06:58 +02:00
|
|
|
if (!LOCPLINT->localState->getCurrentHero()) //checking necessary values
|
2008-09-10 15:19:48 +03:00
|
|
|
return;
|
|
|
|
|
2023-04-17 14:17:15 +02:00
|
|
|
centerOnObject(LOCPLINT->localState->getCurrentHero());
|
2012-01-12 18:23:00 +03:00
|
|
|
|
2023-04-17 12:06:58 +02:00
|
|
|
GH.pushIntT<CSpellWindow>(LOCPLINT->localState->getCurrentHero(), LOCPLINT, false);
|
2007-08-06 07:03:34 +03:00
|
|
|
}
|
2009-06-11 20:21:06 +03:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fadventureOPtions()
|
2007-08-06 07:03:34 +03:00
|
|
|
{
|
2018-07-25 00:36:48 +02:00
|
|
|
GH.pushIntT<CAdventureOptions>();
|
2007-08-06 07:03:34 +03:00
|
|
|
}
|
2009-06-11 20:21:06 +03:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fsystemOptions()
|
2007-08-06 07:03:34 +03:00
|
|
|
{
|
2023-02-18 18:58:22 +02:00
|
|
|
GH.pushIntT<SettingsMainWindow>();
|
2007-08-06 07:03:34 +03:00
|
|
|
}
|
2009-06-11 20:21:06 +03:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fnextHero()
|
2007-08-06 07:03:34 +03:00
|
|
|
{
|
2023-04-18 22:08:27 +02:00
|
|
|
const auto * currHero = LOCPLINT->localState->getCurrentHero();
|
|
|
|
const auto * nextHero = LOCPLINT->localState->getNextWanderingHero(currHero);
|
2023-04-17 14:17:15 +02:00
|
|
|
|
|
|
|
if (nextHero)
|
2023-04-18 22:08:27 +02:00
|
|
|
{
|
|
|
|
LOCPLINT->localState->setSelection(nextHero);
|
|
|
|
centerOnObject(nextHero);
|
|
|
|
}
|
2007-08-06 07:03:34 +03:00
|
|
|
}
|
2009-06-11 20:21:06 +03:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::fendTurn()
|
2007-08-06 07:03:34 +03:00
|
|
|
{
|
2011-05-30 02:49:25 +03:00
|
|
|
if(!LOCPLINT->makingTurn)
|
|
|
|
return;
|
2011-09-24 19:46:23 +03:00
|
|
|
|
2018-02-24 15:49:42 +02:00
|
|
|
if(settings["adventure"]["heroReminder"].Bool())
|
2012-01-12 18:23:00 +03:00
|
|
|
{
|
2023-04-17 14:17:15 +02:00
|
|
|
for(auto hero : LOCPLINT->localState->getWanderingHeroes())
|
2018-02-24 15:49:42 +02:00
|
|
|
{
|
2023-04-17 12:26:28 +02:00
|
|
|
if(!LOCPLINT->localState->isHeroSleeping(hero) && hero->movement > 0)
|
2012-01-12 18:23:00 +03:00
|
|
|
{
|
2018-02-24 15:49:42 +02:00
|
|
|
// Only show hero reminder if conditions met:
|
|
|
|
// - There still movement points
|
|
|
|
// - Hero don't have a path or there not points for first step on path
|
2023-04-17 01:02:31 +02:00
|
|
|
LOCPLINT->localState->verifyPath(hero);
|
2023-02-15 12:08:32 +02:00
|
|
|
|
2023-04-17 01:02:31 +02:00
|
|
|
if(!LOCPLINT->localState->hasPath(hero))
|
2018-02-24 15:49:42 +02:00
|
|
|
{
|
2023-04-12 15:04:38 +02:00
|
|
|
LOCPLINT->showYesNoDialog( CGI->generaltexth->allTexts[55], std::bind(&CAdventureMapInterface::endingTurn, this), nullptr );
|
2023-02-15 12:08:32 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-17 01:02:31 +02:00
|
|
|
auto path = LOCPLINT->localState->getPath(hero);
|
2023-02-15 12:08:32 +02:00
|
|
|
if (path.nodes.size() < 2 || path.nodes[path.nodes.size() - 2].turns)
|
|
|
|
{
|
2023-04-12 15:04:38 +02:00
|
|
|
LOCPLINT->showYesNoDialog( CGI->generaltexth->allTexts[55], std::bind(&CAdventureMapInterface::endingTurn, this), nullptr );
|
2018-02-24 15:49:42 +02:00
|
|
|
return;
|
|
|
|
}
|
2012-01-12 18:23:00 +03:00
|
|
|
}
|
2018-02-24 15:49:42 +02:00
|
|
|
}
|
2012-01-12 18:23:00 +03:00
|
|
|
}
|
2011-09-24 19:46:23 +03:00
|
|
|
endingTurn();
|
|
|
|
}
|
|
|
|
|
2023-04-17 22:16:45 +02:00
|
|
|
void CAdventureMapInterface::updateButtons()
|
2011-09-24 19:46:23 +03:00
|
|
|
{
|
2023-04-17 22:16:45 +02:00
|
|
|
const auto * hero = LOCPLINT->localState->getCurrentHero();
|
2007-08-06 07:03:34 +03:00
|
|
|
|
2023-04-17 22:16:45 +02:00
|
|
|
sleepWake->block(!hero);
|
|
|
|
spellbook->block(!hero);
|
|
|
|
moveHero->block(!hero || !LOCPLINT->localState->hasPath(hero) || hero->movement == 0);
|
|
|
|
|
2023-04-18 22:08:27 +02:00
|
|
|
const auto * nextSuitableHero = LOCPLINT->localState->getNextWanderingHero(hero);
|
2023-04-17 22:16:45 +02:00
|
|
|
nextHero->block(nextSuitableHero == nullptr);
|
|
|
|
|
|
|
|
if(hero)
|
|
|
|
{
|
|
|
|
bool state = LOCPLINT->localState->isHeroSleeping(hero);
|
|
|
|
sleepWake->setIndex(state ? 1 : 0, true);
|
|
|
|
sleepWake->assignedKeys = {state ? SDLK_w : SDLK_z};
|
|
|
|
sleepWake->redraw();
|
|
|
|
}
|
2015-12-06 02:12:39 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::onHeroChanged(const CGHeroInstance *h)
|
2011-10-04 22:43:49 +03:00
|
|
|
{
|
2023-04-20 21:03:28 +02:00
|
|
|
heroList->update(h);
|
|
|
|
|
2023-04-17 12:06:58 +02:00
|
|
|
if (h == LOCPLINT->localState->getCurrentHero())
|
2023-04-17 00:09:25 +02:00
|
|
|
infoBar->showSelection();
|
2023-04-20 21:03:28 +02:00
|
|
|
|
2023-04-17 22:16:45 +02:00
|
|
|
updateButtons();
|
2023-04-20 21:03:28 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::onTownChanged(const CGTownInstance * town)
|
2023-04-20 21:03:28 +02:00
|
|
|
{
|
|
|
|
townList->update(town);
|
2023-04-17 00:09:25 +02:00
|
|
|
infoBar->showSelection();
|
2023-04-20 21:03:28 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::showInfoBoxMessage(const std::vector<Component> & components, std::string message, int timer)
|
2023-04-20 21:03:28 +02:00
|
|
|
{
|
|
|
|
infoBar->pushComponents(components, message, timer);
|
2011-10-04 22:43:49 +03:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::activate()
|
2008-01-20 14:34:39 +02:00
|
|
|
{
|
2012-06-02 18:16:54 +03:00
|
|
|
CIntObject::activate();
|
2012-06-17 01:40:28 +03:00
|
|
|
if (!(active & KEYBOARD))
|
2012-10-06 23:35:04 +03:00
|
|
|
CIntObject::activate(KEYBOARD);
|
2012-02-22 16:41:27 +03:00
|
|
|
|
2009-05-25 02:21:55 +03:00
|
|
|
screenBuf = screen;
|
2018-08-26 18:09:56 +02:00
|
|
|
GH.statusbar = statusbar;
|
2022-10-05 17:04:51 +02:00
|
|
|
|
|
|
|
if(LOCPLINT)
|
2022-12-21 17:02:53 +02:00
|
|
|
{
|
2022-10-05 17:04:51 +02:00
|
|
|
LOCPLINT->cingconsole->activate();
|
2022-12-21 17:02:53 +02:00
|
|
|
LOCPLINT->cingconsole->pos = this->pos;
|
|
|
|
}
|
2022-10-05 17:04:51 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
if(state != EGameState::ENEMY_TURN)
|
2012-02-22 16:41:27 +03:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
assert(state == EGameState::MAKING_TURN);
|
|
|
|
|
2015-01-15 01:22:20 +02:00
|
|
|
activeMapPanel->activate();
|
2023-04-17 00:09:25 +02:00
|
|
|
if (state == EGameState::MAKING_TURN)
|
2015-01-13 21:57:41 +02:00
|
|
|
{
|
2023-02-10 16:26:32 +02:00
|
|
|
heroList->activate();
|
|
|
|
townList->activate();
|
|
|
|
infoBar->activate();
|
2015-01-13 21:57:41 +02:00
|
|
|
}
|
2023-02-10 16:26:32 +02:00
|
|
|
minimap->activate();
|
|
|
|
terrain->activate();
|
2022-11-20 11:53:46 +02:00
|
|
|
statusbar->activate();
|
2012-02-22 16:41:27 +03:00
|
|
|
|
|
|
|
GH.fakeMouseMove(); //to restore the cursor
|
|
|
|
}
|
2008-01-20 14:34:39 +02:00
|
|
|
}
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::deactivate()
|
2008-01-20 14:34:39 +02:00
|
|
|
{
|
2012-06-02 18:16:54 +03:00
|
|
|
CIntObject::deactivate();
|
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
if(state != EGameState::ENEMY_TURN)
|
2012-02-22 16:41:27 +03:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
assert(state == EGameState::MAKING_TURN);
|
2010-02-24 15:03:36 +02:00
|
|
|
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::POINTER);
|
2015-01-15 01:22:20 +02:00
|
|
|
activeMapPanel->deactivate();
|
2023-04-17 00:09:25 +02:00
|
|
|
if (state == EGameState::MAKING_TURN)
|
2015-01-13 21:57:41 +02:00
|
|
|
{
|
2023-02-10 16:26:32 +02:00
|
|
|
heroList->deactivate();
|
|
|
|
townList->deactivate();
|
|
|
|
infoBar->deactivate();
|
2015-01-13 21:57:41 +02:00
|
|
|
}
|
2023-02-10 16:26:32 +02:00
|
|
|
minimap->deactivate();
|
|
|
|
terrain->deactivate();
|
2022-12-03 21:32:36 +02:00
|
|
|
statusbar->deactivate();
|
2012-02-22 16:41:27 +03:00
|
|
|
}
|
2008-01-20 14:34:39 +02:00
|
|
|
}
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::showAll(SDL_Surface * to)
|
2007-08-04 22:01:22 +03:00
|
|
|
{
|
2023-01-30 18:25:47 +02:00
|
|
|
bg->draw(to, 0, 0);
|
2009-04-14 15:47:09 +03:00
|
|
|
|
2023-04-17 22:16:45 +02:00
|
|
|
// if(state != EGameState::MAKING_TURN)
|
|
|
|
// return;
|
2010-02-20 15:24:38 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
heroList->showAll(to);
|
|
|
|
townList->showAll(to);
|
|
|
|
infoBar->showAll(to);
|
|
|
|
|
2015-01-15 01:22:20 +02:00
|
|
|
activeMapPanel->showAll(to);
|
2009-04-14 15:47:09 +03:00
|
|
|
|
2023-02-10 16:26:32 +02:00
|
|
|
minimap->showAll(to);
|
2023-02-21 22:28:48 +02:00
|
|
|
terrain->showAll(to);
|
2009-04-14 15:47:09 +03:00
|
|
|
show(to);
|
2007-08-20 00:12:55 +03:00
|
|
|
|
2023-02-10 16:26:32 +02:00
|
|
|
resdatabar->showAll(to);
|
2018-08-26 18:09:56 +02:00
|
|
|
statusbar->show(to);
|
2015-11-08 21:16:58 +02:00
|
|
|
LOCPLINT->cingconsole->show(to);
|
2007-08-04 22:01:22 +03:00
|
|
|
}
|
2011-09-24 19:46:23 +03:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::show(SDL_Surface * to)
|
2007-08-04 22:01:22 +03:00
|
|
|
{
|
2023-04-17 22:16:45 +02:00
|
|
|
// if(state != EGameState::MAKING_TURN)
|
|
|
|
// return;
|
2010-02-20 15:24:38 +02:00
|
|
|
|
2023-02-22 21:25:05 +02:00
|
|
|
handleMapScrollingUpdate();
|
2017-05-25 19:57:20 +02:00
|
|
|
|
2016-10-18 03:09:52 +02:00
|
|
|
for(int i = 0; i < 4; i++)
|
2017-06-03 07:25:10 +02:00
|
|
|
{
|
|
|
|
if(settings["session"]["spectate"].Bool())
|
|
|
|
gems[i]->setFrame(PlayerColor(1).getNum());
|
|
|
|
else
|
|
|
|
gems[i]->setFrame(LOCPLINT->playerID.getNum());
|
|
|
|
}
|
2023-02-14 23:49:12 +02:00
|
|
|
|
2023-02-23 19:46:41 +02:00
|
|
|
minimap->show(to);
|
2023-02-14 23:49:12 +02:00
|
|
|
terrain->show(to);
|
2023-02-16 21:35:15 +02:00
|
|
|
|
2023-02-14 23:49:12 +02:00
|
|
|
for(int i = 0; i < 4; i++)
|
|
|
|
gems[i]->showAll(to);
|
2015-10-31 19:23:13 +02:00
|
|
|
|
2023-02-16 21:35:15 +02:00
|
|
|
LOCPLINT->cingconsole->show(to);
|
|
|
|
|
2023-02-10 16:26:32 +02:00
|
|
|
infoBar->show(to);
|
2018-08-26 18:09:56 +02:00
|
|
|
statusbar->showAll(to);
|
2007-09-14 16:11:10 +03:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::handleMapScrollingUpdate()
|
2017-05-25 19:57:20 +02:00
|
|
|
{
|
2023-02-19 00:36:40 +02:00
|
|
|
uint32_t timePassed = GH.mainFPSmng->getElapsedMilliseconds();
|
2023-04-17 00:09:25 +02:00
|
|
|
uint32_t scrollSpeedPixels = settings["adventure"]["scrollSpeedPixels"].Float();
|
|
|
|
uint32_t scrollDistance = scrollSpeedPixels * timePassed / 1000;
|
|
|
|
|
|
|
|
bool scrollingActive = !GH.isKeyboardCtrlDown() && isActive() && state == EGameState::MAKING_TURN;
|
|
|
|
|
|
|
|
Point cursorPosition = GH.getCursorPosition();
|
|
|
|
Point scrollDirection;
|
2017-05-25 19:57:20 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
if (cursorPosition.x < 15)
|
|
|
|
scrollDirection.x = -1;
|
2017-05-25 19:57:20 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
if (cursorPosition.x > GH.screenDimensions().x - 15)
|
|
|
|
scrollDirection.x = +1;
|
2017-05-25 19:57:20 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
if (cursorPosition.y < 15)
|
|
|
|
scrollDirection.y = -1;
|
2017-05-25 19:57:20 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
if (cursorPosition.y > GH.screenDimensions().y - 15)
|
|
|
|
scrollDirection.y = +1;
|
2023-02-16 21:35:15 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
Point scrollDelta = scrollDirection * scrollDistance;
|
|
|
|
|
|
|
|
if (scrollingActive && scrollDelta != Point(0,0))
|
|
|
|
terrain->onMapScrolled(scrollDelta);
|
|
|
|
|
|
|
|
if (scrollDelta == Point(0,0) && !scrollingCursorSet)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(scrollDelta.x > 0)
|
2023-02-16 21:35:15 +02:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
if(scrollDelta.y < 0)
|
|
|
|
CCS->curh->set(Cursor::Map::SCROLL_NORTHEAST);
|
|
|
|
if(scrollDelta.y > 0)
|
|
|
|
CCS->curh->set(Cursor::Map::SCROLL_SOUTHEAST);
|
|
|
|
if(scrollDelta.y == 0)
|
|
|
|
CCS->curh->set(Cursor::Map::SCROLL_EAST);
|
2023-02-16 21:35:15 +02:00
|
|
|
}
|
2023-04-17 00:09:25 +02:00
|
|
|
if(scrollDelta.x < 0)
|
2023-02-16 21:35:15 +02:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
if(scrollDelta.y < 0)
|
|
|
|
CCS->curh->set(Cursor::Map::SCROLL_NORTHWEST);
|
|
|
|
if(scrollDelta.y > 0)
|
|
|
|
CCS->curh->set(Cursor::Map::SCROLL_SOUTHWEST);
|
|
|
|
if(scrollDelta.y == 0)
|
|
|
|
CCS->curh->set(Cursor::Map::SCROLL_WEST);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scrollDelta.x == 0)
|
|
|
|
{
|
|
|
|
if(scrollDelta.y < 0)
|
|
|
|
CCS->curh->set(Cursor::Map::SCROLL_NORTH);
|
|
|
|
if(scrollDelta.y > 0)
|
|
|
|
CCS->curh->set(Cursor::Map::SCROLL_SOUTH);
|
|
|
|
if(scrollDelta.y == 0)
|
|
|
|
CCS->curh->set(Cursor::Map::POINTER);
|
2017-05-25 19:57:20 +02:00
|
|
|
}
|
2023-04-17 22:16:45 +02:00
|
|
|
|
|
|
|
scrollingCursorSet = scrollDelta != Point(0,0);
|
2017-05-25 19:57:20 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::centerOnTile(int3 on)
|
2007-09-14 16:11:10 +03:00
|
|
|
{
|
2023-02-23 19:46:41 +02:00
|
|
|
terrain->onCenteredTile(on);
|
2007-09-14 16:11:10 +03:00
|
|
|
}
|
2010-03-21 00:17:19 +02:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::centerOnObject(const CGObjectInstance * obj)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2023-02-23 19:46:41 +02:00
|
|
|
terrain->onCenteredObject(obj);
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::keyPressed(const SDL_Keycode & key)
|
2023-02-02 18:02:25 +02:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
if (state != EGameState::MAKING_TURN)
|
2015-01-17 14:41:59 +02:00
|
|
|
return;
|
|
|
|
|
2023-04-17 12:06:58 +02:00
|
|
|
const CGHeroInstance *h = LOCPLINT->localState->getCurrentHero(); //selected hero
|
|
|
|
const CGTownInstance *t = LOCPLINT->localState->getCurrentTown(); //selected town
|
2010-03-21 00:17:19 +02:00
|
|
|
|
2023-02-02 18:02:25 +02:00
|
|
|
switch(key)
|
2008-10-19 16:17:32 +03:00
|
|
|
{
|
2012-04-08 04:15:18 +03:00
|
|
|
case SDLK_g:
|
2023-02-02 18:02:25 +02:00
|
|
|
if(GH.topInt()->type & BLOCK_ADV_HOTKEYS)
|
2012-04-08 04:15:18 +03:00
|
|
|
return;
|
|
|
|
|
|
|
|
{
|
|
|
|
//find first town with tavern
|
2023-04-17 14:32:18 +02:00
|
|
|
auto itr = range::find_if(LOCPLINT->localState->getOwnedTowns(), [](const CGTownInstance * town)
|
2013-06-26 14:18:27 +03:00
|
|
|
{
|
|
|
|
return town->hasBuilt(BuildingID::TAVERN);
|
|
|
|
});
|
|
|
|
|
2023-04-17 14:32:18 +02:00
|
|
|
if(itr != LOCPLINT->localState->getOwnedTowns().end())
|
2012-04-08 04:15:18 +03:00
|
|
|
LOCPLINT->showThievesGuildWindow(*itr);
|
|
|
|
else
|
2022-12-27 22:19:05 +02:00
|
|
|
LOCPLINT->showInfoDialog(CGI->generaltexth->translate("vcmi.adventureMap.noTownWithTavern"));
|
2012-04-08 04:15:18 +03:00
|
|
|
}
|
|
|
|
return;
|
2012-01-12 18:23:00 +03:00
|
|
|
case SDLK_i:
|
2009-12-28 06:08:24 +02:00
|
|
|
if(isActive())
|
2009-08-27 11:04:32 +03:00
|
|
|
CAdventureOptions::showScenarioInfo();
|
|
|
|
return;
|
2023-04-17 00:09:25 +02:00
|
|
|
case SDLK_s:
|
|
|
|
if(isActive())
|
|
|
|
GH.pushIntT<CSavingScreen>();
|
|
|
|
return;
|
2012-04-09 05:53:50 +03:00
|
|
|
case SDLK_l:
|
|
|
|
if(isActive())
|
|
|
|
LOCPLINT->proposeLoadingGame();
|
|
|
|
return;
|
2012-01-12 18:23:00 +03:00
|
|
|
case SDLK_d:
|
2010-03-01 21:04:07 +02:00
|
|
|
{
|
2023-02-02 18:02:25 +02:00
|
|
|
if(h && isActive() && LOCPLINT->makingTurn)
|
2010-03-01 21:04:07 +02:00
|
|
|
LOCPLINT->tryDiggging(h);
|
|
|
|
return;
|
|
|
|
}
|
2012-01-12 18:23:00 +03:00
|
|
|
case SDLK_p:
|
2010-03-01 21:04:07 +02:00
|
|
|
if(isActive())
|
|
|
|
LOCPLINT->showPuzzleMap();
|
|
|
|
return;
|
2015-01-31 11:57:13 +02:00
|
|
|
case SDLK_v:
|
|
|
|
if(isActive())
|
|
|
|
LOCPLINT->viewWorldMap();
|
|
|
|
return;
|
2012-04-08 06:06:27 +03:00
|
|
|
case SDLK_r:
|
2023-02-02 16:15:39 +02:00
|
|
|
if(isActive() && GH.isKeyboardCtrlDown())
|
2012-04-08 06:06:27 +03:00
|
|
|
{
|
2022-12-27 22:19:05 +02:00
|
|
|
LOCPLINT->showYesNoDialog(CGI->generaltexth->translate("vcmi.adventureMap.confirmRestartGame"),
|
2023-02-02 18:15:05 +02:00
|
|
|
[](){ GH.pushUserEvent(EUserEvent::RESTART_GAME); }, nullptr);
|
2012-04-08 06:06:27 +03:00
|
|
|
}
|
|
|
|
return;
|
2009-03-27 01:05:40 +02:00
|
|
|
case SDLK_SPACE: //space - try to revisit current object with selected hero
|
|
|
|
{
|
2012-01-12 18:23:00 +03:00
|
|
|
if(!isActive())
|
2009-05-22 22:20:30 +03:00
|
|
|
return;
|
2023-02-02 18:02:25 +02:00
|
|
|
if(h)
|
2009-03-27 01:05:40 +02:00
|
|
|
{
|
|
|
|
LOCPLINT->cb->moveHero(h,h->pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
2009-05-30 19:00:26 +03:00
|
|
|
case SDLK_RETURN:
|
|
|
|
{
|
2023-04-17 14:17:15 +02:00
|
|
|
if(!isActive() || !LOCPLINT->localState->getCurrentArmy())
|
2009-05-30 19:00:26 +03:00
|
|
|
return;
|
2010-03-21 00:17:19 +02:00
|
|
|
if(h)
|
|
|
|
LOCPLINT->openHeroWindow(h);
|
|
|
|
else if(t)
|
|
|
|
LOCPLINT->openTownWindow(t);
|
2009-05-30 19:00:26 +03:00
|
|
|
return;
|
|
|
|
}
|
2010-06-01 00:14:15 +03:00
|
|
|
case SDLK_ESCAPE:
|
|
|
|
{
|
2023-02-28 22:43:19 +02:00
|
|
|
//FIXME: this case is never executed since AdvMapInt is disabled while in spellcasting mode
|
|
|
|
if(!isActive() || GH.topInt().get() != this || !spellBeingCasted)
|
2010-06-01 00:14:15 +03:00
|
|
|
return;
|
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
abortCastingMode();
|
2010-06-01 00:14:15 +03:00
|
|
|
return;
|
|
|
|
}
|
2009-07-01 10:04:21 +03:00
|
|
|
case SDLK_t:
|
|
|
|
{
|
|
|
|
//act on key down if marketplace windows is not already opened
|
2023-02-02 18:02:25 +02:00
|
|
|
if(GH.topInt()->type & BLOCK_ADV_HOTKEYS)
|
2012-04-08 04:15:18 +03:00
|
|
|
return;
|
2009-07-01 10:04:21 +03:00
|
|
|
|
2023-02-02 16:15:39 +02:00
|
|
|
if(GH.isKeyboardCtrlDown()) //CTRL + T => open marketplace
|
2010-05-18 10:01:54 +03:00
|
|
|
{
|
2012-04-08 04:15:18 +03:00
|
|
|
//check if we have any marketplace
|
2013-06-26 14:18:27 +03:00
|
|
|
const CGTownInstance *townWithMarket = nullptr;
|
2013-06-29 16:05:48 +03:00
|
|
|
for(const CGTownInstance *t : LOCPLINT->cb->getTownsInfo())
|
2010-05-18 10:01:54 +03:00
|
|
|
{
|
2013-02-11 02:24:57 +03:00
|
|
|
if(t->hasBuilt(BuildingID::MARKETPLACE))
|
2012-04-08 04:15:18 +03:00
|
|
|
{
|
|
|
|
townWithMarket = t;
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 10:01:54 +03:00
|
|
|
}
|
2009-07-01 10:04:21 +03:00
|
|
|
|
2012-04-08 04:15:18 +03:00
|
|
|
if(townWithMarket) //if any town has marketplace, open window
|
2018-07-25 00:36:48 +02:00
|
|
|
GH.pushIntT<CMarketplaceWindow>(townWithMarket);
|
2012-04-08 04:15:18 +03:00
|
|
|
else //if not - complain
|
2022-12-27 22:19:05 +02:00
|
|
|
LOCPLINT->showInfoDialog(CGI->generaltexth->translate("vcmi.adventureMap.noTownWithMarket"));
|
2012-04-08 04:15:18 +03:00
|
|
|
}
|
|
|
|
else if(isActive()) //no ctrl, advmapint is on the top => switch to town
|
|
|
|
{
|
2023-02-10 16:26:32 +02:00
|
|
|
townList->selectNext();
|
2012-04-08 04:15:18 +03:00
|
|
|
}
|
2009-07-01 10:04:21 +03:00
|
|
|
return;
|
|
|
|
}
|
2023-03-31 17:48:31 +02:00
|
|
|
case SDLK_LALT:
|
2023-03-31 23:20:51 +02:00
|
|
|
case SDLK_RALT:
|
2023-03-31 17:48:31 +02:00
|
|
|
{
|
|
|
|
//fake mouse use to trigger onTileHovered()
|
|
|
|
GH.fakeMouseMove();
|
|
|
|
return;
|
|
|
|
}
|
2012-01-12 18:23:00 +03:00
|
|
|
default:
|
2009-09-07 05:29:44 +03:00
|
|
|
{
|
2023-02-02 18:02:25 +02:00
|
|
|
auto direction = keyToMoveDirection(key);
|
2009-09-07 05:29:44 +03:00
|
|
|
|
2023-02-02 18:02:25 +02:00
|
|
|
if (!direction)
|
|
|
|
return;
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2023-02-02 18:02:25 +02:00
|
|
|
if(!h || !isActive())
|
|
|
|
return;
|
2012-05-15 11:47:11 +03:00
|
|
|
|
2023-02-18 17:37:09 +02:00
|
|
|
if (CGI->mh->hasOngoingAnimations())
|
2023-02-02 18:02:25 +02:00
|
|
|
return;
|
2009-09-07 05:29:44 +03:00
|
|
|
|
2023-02-02 18:02:25 +02:00
|
|
|
if(*direction == Point(0,0))
|
2009-09-07 05:29:44 +03:00
|
|
|
{
|
2023-02-23 19:46:41 +02:00
|
|
|
centerOnObject(h);
|
2009-09-07 05:29:44 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-02-02 18:02:25 +02:00
|
|
|
int3 dst = h->visitablePos() + int3(direction->x, direction->y, 0);
|
2023-02-15 12:08:32 +02:00
|
|
|
|
2023-02-16 21:35:15 +02:00
|
|
|
if (!CGI->mh->isInMap((dst)))
|
2009-09-07 05:29:44 +03:00
|
|
|
return;
|
2023-02-15 12:08:32 +02:00
|
|
|
|
2023-04-17 01:02:31 +02:00
|
|
|
if ( !LOCPLINT->localState->setPath(h, dst))
|
2023-02-15 12:08:32 +02:00
|
|
|
return;
|
|
|
|
|
2023-04-17 01:02:31 +02:00
|
|
|
const CGPath & path = LOCPLINT->localState->getPath(h);
|
2009-09-07 05:29:44 +03:00
|
|
|
|
2012-05-15 11:47:11 +03:00
|
|
|
if (path.nodes.size() > 2)
|
2023-04-20 21:03:28 +02:00
|
|
|
onHeroChanged(h);
|
2012-05-15 11:47:11 +03:00
|
|
|
else
|
2009-09-07 05:29:44 +03:00
|
|
|
if(!path.nodes[0].turns)
|
|
|
|
LOCPLINT->moveHero(h, path);
|
|
|
|
}
|
2008-10-19 16:17:32 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2023-02-02 18:02:25 +02:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
std::optional<Point> CAdventureMapInterface::keyToMoveDirection(const SDL_Keycode & key)
|
2023-02-02 18:02:25 +02:00
|
|
|
{
|
|
|
|
switch (key) {
|
|
|
|
case SDLK_DOWN: return Point( 0, +1);
|
|
|
|
case SDLK_LEFT: return Point(-1, 0);
|
|
|
|
case SDLK_RIGHT: return Point(+1, 0);
|
|
|
|
case SDLK_UP: return Point( 0, -1);
|
|
|
|
|
|
|
|
case SDLK_KP_1: return Point(-1, +1);
|
|
|
|
case SDLK_KP_2: return Point( 0, +1);
|
|
|
|
case SDLK_KP_3: return Point(+1, +1);
|
|
|
|
case SDLK_KP_4: return Point(-1, 0);
|
|
|
|
case SDLK_KP_5: return Point( 0, 0);
|
|
|
|
case SDLK_KP_6: return Point(+1, 0);
|
|
|
|
case SDLK_KP_7: return Point(-1, -1);
|
|
|
|
case SDLK_KP_8: return Point( 0, -1);
|
|
|
|
case SDLK_KP_9: return Point(+1, -1);
|
|
|
|
}
|
2023-04-16 19:42:56 +02:00
|
|
|
return std::nullopt;
|
2023-02-02 18:02:25 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 22:08:27 +02:00
|
|
|
void CAdventureMapInterface::onSelectionChanged(const CArmedInstance *sel)
|
2008-08-28 20:36:34 +03:00
|
|
|
{
|
2010-05-08 21:56:38 +03:00
|
|
|
assert(sel);
|
2023-04-17 14:17:15 +02:00
|
|
|
|
|
|
|
infoBar->popAll();
|
2023-03-01 17:20:05 +02:00
|
|
|
mapAudio->onSelectionChanged(sel);
|
2023-04-18 22:08:27 +02:00
|
|
|
bool centerView = !settings["session"]["autoSkip"].Bool();
|
|
|
|
|
|
|
|
if (centerView)
|
2023-02-23 19:46:41 +02:00
|
|
|
centerOnObject(sel);
|
2009-06-11 20:21:06 +03:00
|
|
|
|
2012-09-23 21:01:04 +03:00
|
|
|
if(sel->ID==Obj::TOWN)
|
2008-08-28 20:36:34 +03:00
|
|
|
{
|
2012-06-13 16:04:06 +03:00
|
|
|
auto town = dynamic_cast<const CGTownInstance*>(sel);
|
|
|
|
|
2023-02-10 16:26:32 +02:00
|
|
|
infoBar->showTownSelection(town);
|
|
|
|
townList->select(town);
|
|
|
|
heroList->select(nullptr);
|
2023-04-20 21:03:28 +02:00
|
|
|
onHeroChanged(nullptr);
|
2008-08-28 20:36:34 +03:00
|
|
|
}
|
2009-06-11 20:21:06 +03:00
|
|
|
else //hero selected
|
2009-04-14 17:26:58 +03:00
|
|
|
{
|
2012-06-13 16:04:06 +03:00
|
|
|
auto hero = dynamic_cast<const CGHeroInstance*>(sel);
|
|
|
|
|
2023-02-10 16:26:32 +02:00
|
|
|
infoBar->showHeroSelection(hero);
|
|
|
|
heroList->select(hero);
|
|
|
|
townList->select(nullptr);
|
2009-06-11 20:21:06 +03:00
|
|
|
|
2023-04-17 01:02:31 +02:00
|
|
|
LOCPLINT->localState->verifyPath(hero);
|
2023-04-20 21:03:28 +02:00
|
|
|
onHeroChanged(hero);
|
2009-04-14 17:26:58 +03:00
|
|
|
}
|
2023-04-17 22:16:45 +02:00
|
|
|
updateButtons();
|
2023-02-10 16:26:32 +02:00
|
|
|
townList->redraw();
|
|
|
|
heroList->redraw();
|
2009-06-07 01:47:23 +03:00
|
|
|
}
|
2009-08-07 01:36:51 +03:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
bool CAdventureMapInterface::isActive()
|
2009-12-28 06:08:24 +02:00
|
|
|
{
|
2009-12-29 03:07:17 +02:00
|
|
|
return active & ~CIntObject::KEYBOARD;
|
2009-12-28 06:08:24 +02:00
|
|
|
}
|
|
|
|
|
2023-04-16 00:48:49 +02:00
|
|
|
void CAdventureMapInterface::onMapTilesChanged(boost::optional<std::unordered_set<int3>> positions)
|
2023-04-20 21:03:28 +02:00
|
|
|
{
|
2023-04-16 00:48:49 +02:00
|
|
|
if (positions)
|
|
|
|
minimap->updateTiles(*positions);
|
|
|
|
else
|
|
|
|
minimap->update();
|
2023-04-20 21:03:28 +02:00
|
|
|
}
|
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
void CAdventureMapInterface::onHotseatWaitStarted(PlayerColor playerID)
|
2023-04-16 01:15:12 +02:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
onCurrentPlayerChanged(playerID);
|
|
|
|
state = EGameState::HOTSEAT_WAIT;
|
2023-04-16 01:15:12 +02:00
|
|
|
}
|
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
void CAdventureMapInterface::onEnemyTurnStarted(PlayerColor playerID)
|
2023-04-16 01:15:12 +02:00
|
|
|
{
|
|
|
|
if(settings["session"]["spectate"].Bool())
|
|
|
|
return;
|
|
|
|
|
|
|
|
adjustActiveness(true);
|
|
|
|
mapAudio->onEnemyTurnStarted();
|
2023-04-17 00:09:25 +02:00
|
|
|
minimap->setAIRadar(true);
|
|
|
|
infoBar->startEnemyTurn(LOCPLINT->cb->getCurrentPlayer());
|
|
|
|
minimap->showAll(screen);//force refresh on inactive object
|
|
|
|
infoBar->showAll(screen);//force refresh on inactive object
|
2023-04-16 01:15:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CAdventureMapInterface::adjustActiveness(bool aiTurnStart)
|
|
|
|
{
|
|
|
|
bool wasActive = isActive();
|
|
|
|
|
|
|
|
if(wasActive)
|
|
|
|
deactivate();
|
2023-04-17 00:09:25 +02:00
|
|
|
|
|
|
|
if (aiTurnStart)
|
|
|
|
state = EGameState::ENEMY_TURN;
|
|
|
|
else
|
|
|
|
state = EGameState::MAKING_TURN;
|
|
|
|
|
2023-04-16 01:15:12 +02:00
|
|
|
if(wasActive)
|
|
|
|
activate();
|
|
|
|
}
|
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
void CAdventureMapInterface::onCurrentPlayerChanged(PlayerColor playerID)
|
2023-04-20 21:03:28 +02:00
|
|
|
{
|
2023-04-17 14:17:15 +02:00
|
|
|
LOCPLINT->localState->setSelection(nullptr);
|
2023-04-20 21:03:28 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
if (playerID == currentPlayerID)
|
2023-02-10 23:29:13 +02:00
|
|
|
return;
|
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
currentPlayerID = playerID;
|
|
|
|
bg->playerColored(currentPlayerID);
|
2010-02-20 15:24:38 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
panelMain->setPlayerColor(currentPlayerID);
|
|
|
|
panelWorldView->setPlayerColor(currentPlayerID);
|
|
|
|
panelWorldView->recolorIcons(currentPlayerID, currentPlayerID.getNum() * 19);
|
|
|
|
resdatabar->colorize(currentPlayerID);
|
2010-02-20 15:24:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
void CAdventureMapInterface::onPlayerTurnStarted(PlayerColor playerID)
|
2010-02-20 15:24:38 +02:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
onCurrentPlayerChanged(playerID);
|
|
|
|
|
|
|
|
state = EGameState::MAKING_TURN;
|
2017-06-03 07:25:10 +02:00
|
|
|
if(LOCPLINT->cb->getCurrentPlayer() == LOCPLINT->playerID
|
|
|
|
|| settings["session"]["spectate"].Bool())
|
2012-02-22 16:41:27 +03:00
|
|
|
{
|
|
|
|
adjustActiveness(false);
|
2023-02-10 16:26:32 +02:00
|
|
|
minimap->setAIRadar(false);
|
2023-04-20 21:03:28 +02:00
|
|
|
infoBar->showSelection();
|
2012-02-22 16:41:27 +03:00
|
|
|
}
|
2010-01-02 03:48:44 +02:00
|
|
|
|
2023-02-10 23:29:13 +02:00
|
|
|
heroList->update();
|
|
|
|
townList->update();
|
|
|
|
|
|
|
|
const CGHeroInstance * heroToSelect = nullptr;
|
|
|
|
|
|
|
|
// find first non-sleeping hero
|
2023-04-17 14:17:15 +02:00
|
|
|
for (auto hero : LOCPLINT->localState->getWanderingHeroes())
|
2023-02-10 23:29:13 +02:00
|
|
|
{
|
2023-04-17 12:26:28 +02:00
|
|
|
if (!LOCPLINT->localState->isHeroSleeping(hero))
|
2023-02-10 23:29:13 +02:00
|
|
|
{
|
|
|
|
heroToSelect = hero;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//select first hero if available.
|
|
|
|
if (heroToSelect != nullptr)
|
|
|
|
{
|
2023-04-18 22:08:27 +02:00
|
|
|
LOCPLINT->localState->setSelection(heroToSelect);
|
2023-02-10 23:29:13 +02:00
|
|
|
}
|
2023-04-17 14:32:18 +02:00
|
|
|
else if (LOCPLINT->localState->getOwnedTowns().size())
|
2023-04-17 14:17:15 +02:00
|
|
|
{
|
2023-04-18 22:08:27 +02:00
|
|
|
LOCPLINT->localState->setSelection(LOCPLINT->localState->getOwnedTown(0));
|
2023-04-17 14:17:15 +02:00
|
|
|
}
|
2023-02-10 23:29:13 +02:00
|
|
|
else
|
2023-04-17 14:17:15 +02:00
|
|
|
{
|
2023-04-18 22:08:27 +02:00
|
|
|
LOCPLINT->localState->setSelection(LOCPLINT->localState->getWanderingHero(0));
|
2023-04-17 14:17:15 +02:00
|
|
|
}
|
2023-02-10 23:29:13 +02:00
|
|
|
|
|
|
|
//show new day animation and sound on infobar
|
|
|
|
infoBar->showDate();
|
|
|
|
|
2023-04-20 21:03:28 +02:00
|
|
|
onHeroChanged(nullptr);
|
2023-02-10 23:29:13 +02:00
|
|
|
showAll(screen);
|
2023-03-21 19:06:38 +02:00
|
|
|
mapAudio->onPlayerTurnStarted();
|
2023-02-10 23:29:13 +02:00
|
|
|
|
|
|
|
if(settings["session"]["autoSkip"].Bool() && !GH.isKeyboardShiftDown())
|
|
|
|
{
|
|
|
|
if(CInfoWindow *iw = dynamic_cast<CInfoWindow *>(GH.topInt().get()))
|
|
|
|
iw->close();
|
|
|
|
|
|
|
|
endingTurn();
|
2012-02-22 16:41:27 +03:00
|
|
|
}
|
2010-01-02 03:48:44 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::endingTurn()
|
2011-09-24 19:46:23 +03:00
|
|
|
{
|
2017-06-03 07:25:10 +02:00
|
|
|
if(settings["session"]["spectate"].Bool())
|
|
|
|
return;
|
|
|
|
|
2011-09-24 19:46:23 +03:00
|
|
|
LOCPLINT->makingTurn = false;
|
|
|
|
LOCPLINT->cb->endTurn();
|
2023-03-01 17:20:05 +02:00
|
|
|
mapAudio->onPlayerTurnEnded();
|
2011-09-24 19:46:23 +03:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
const CGObjectInstance* CAdventureMapInterface::getActiveObject(const int3 &mapPos)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2012-05-14 19:29:06 +03:00
|
|
|
std::vector < const CGObjectInstance * > bobjs = LOCPLINT->cb->getBlockingObjs(mapPos); //blocking objects at tile
|
|
|
|
|
|
|
|
if (bobjs.empty())
|
|
|
|
return nullptr;
|
2011-05-03 06:14:18 +03:00
|
|
|
|
2014-07-01 17:19:08 +03:00
|
|
|
return *boost::range::max_element(bobjs, &CMapHandler::compareObjectBlitOrder);
|
|
|
|
/*
|
2012-09-23 21:01:04 +03:00
|
|
|
if (bobjs.back()->ID == Obj::HERO)
|
2012-05-14 19:29:06 +03:00
|
|
|
return bobjs.back();
|
|
|
|
else
|
2014-07-01 17:19:08 +03:00
|
|
|
return bobjs.front();*/
|
2012-05-14 19:29:06 +03:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::onTileLeftClicked(const int3 &mapPos)
|
2012-05-14 19:29:06 +03:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
if(state != EGameState::MAKING_TURN)
|
2015-01-13 21:57:41 +02:00
|
|
|
return;
|
2023-02-28 22:43:19 +02:00
|
|
|
|
|
|
|
//FIXME: this line breaks H3 behavior for Dimension Door
|
|
|
|
if(!LOCPLINT->cb->isVisible(mapPos))
|
|
|
|
return;
|
|
|
|
if(!LOCPLINT->makingTurn)
|
2012-05-14 19:29:06 +03:00
|
|
|
return;
|
2011-08-18 00:48:12 +03:00
|
|
|
|
2012-05-14 19:29:06 +03:00
|
|
|
const TerrainTile *tile = LOCPLINT->cb->getTile(mapPos);
|
2010-03-21 00:17:19 +02:00
|
|
|
|
2014-07-01 17:19:08 +03:00
|
|
|
const CGObjectInstance *topBlocking = getActiveObject(mapPos);
|
2010-03-21 00:17:19 +02:00
|
|
|
|
2023-04-17 14:17:15 +02:00
|
|
|
int3 selPos = LOCPLINT->localState->getCurrentArmy()->getSightCenter();
|
2012-05-14 19:29:06 +03:00
|
|
|
if(spellBeingCasted && isInScreenRange(selPos, mapPos))
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2011-05-10 01:20:47 +03:00
|
|
|
const TerrainTile *heroTile = LOCPLINT->cb->getTile(selPos);
|
2010-03-21 00:17:19 +02:00
|
|
|
|
|
|
|
switch(spellBeingCasted->id)
|
|
|
|
{
|
2013-02-11 02:24:57 +03:00
|
|
|
case SpellID::SCUTTLE_BOAT: //Scuttle Boat
|
2013-01-31 23:11:25 +03:00
|
|
|
if(topBlocking && topBlocking->ID == Obj::BOAT)
|
2023-04-17 00:09:25 +02:00
|
|
|
leaveCastingMode(mapPos);
|
2010-03-21 00:17:19 +02:00
|
|
|
break;
|
2013-02-11 02:24:57 +03:00
|
|
|
case SpellID::DIMENSION_DOOR:
|
2010-03-21 00:17:19 +02:00
|
|
|
if(!tile || tile->isClear(heroTile))
|
2023-04-17 00:09:25 +02:00
|
|
|
leaveCastingMode(mapPos);
|
2010-03-21 00:17:19 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2010-08-13 13:46:08 +03:00
|
|
|
//check if we can select this object
|
2012-09-23 21:01:04 +03:00
|
|
|
bool canSelect = topBlocking && topBlocking->ID == Obj::HERO && topBlocking->tempOwner == LOCPLINT->playerID;
|
|
|
|
canSelect |= topBlocking && topBlocking->ID == Obj::TOWN && LOCPLINT->cb->getPlayerRelations(LOCPLINT->playerID, topBlocking->tempOwner);
|
2010-03-21 00:17:19 +02:00
|
|
|
|
2023-01-25 19:47:33 +02:00
|
|
|
bool isHero = false;
|
2023-04-17 14:17:15 +02:00
|
|
|
if(LOCPLINT->localState->getCurrentArmy()->ID != Obj::HERO) //hero is not selected (presumably town)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2023-04-17 14:17:15 +02:00
|
|
|
if(LOCPLINT->localState->getCurrentArmy() == topBlocking) //selected town clicked
|
2010-03-21 00:17:19 +02:00
|
|
|
LOCPLINT->openTownWindow(static_cast<const CGTownInstance*>(topBlocking));
|
2016-01-17 06:48:21 +02:00
|
|
|
else if(canSelect)
|
2023-04-18 22:08:27 +02:00
|
|
|
LOCPLINT->localState->setSelection(static_cast<const CArmedInstance*>(topBlocking));
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
2023-04-17 12:06:58 +02:00
|
|
|
else if(const CGHeroInstance * currentHero = LOCPLINT->localState->getCurrentHero()) //hero is selected
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2023-01-25 19:47:33 +02:00
|
|
|
isHero = true;
|
|
|
|
|
2014-09-21 16:42:08 +03:00
|
|
|
const CGPathNode *pn = LOCPLINT->cb->getPathsInfo(currentHero)->getPathInfo(mapPos);
|
2010-03-21 00:17:19 +02:00
|
|
|
if(currentHero == topBlocking) //clicked selected hero
|
|
|
|
{
|
|
|
|
LOCPLINT->openHeroWindow(currentHero);
|
2010-07-13 08:25:40 +03:00
|
|
|
return;
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
2010-08-13 13:46:08 +03:00
|
|
|
else if(canSelect && pn->turns == 255 ) //selectable object at inaccessible tile
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2023-04-18 22:08:27 +02:00
|
|
|
LOCPLINT->localState->setSelection(static_cast<const CArmedInstance*>(topBlocking));
|
2010-07-13 08:25:40 +03:00
|
|
|
return;
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
else //still here? we need to move hero if we clicked end of already selected path or calculate a new path otherwise
|
|
|
|
{
|
2023-04-17 01:02:31 +02:00
|
|
|
if(LOCPLINT->localState->hasPath(currentHero) &&
|
|
|
|
LOCPLINT->localState->getPath(currentHero).endPos() == mapPos)//we'll be moving
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2023-02-18 17:37:09 +02:00
|
|
|
if(!CGI->mh->hasOngoingAnimations())
|
2023-04-17 01:02:31 +02:00
|
|
|
LOCPLINT->moveHero(currentHero, LOCPLINT->localState->getPath(currentHero));
|
2010-07-13 08:25:40 +03:00
|
|
|
return;
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
2016-01-17 06:48:21 +02:00
|
|
|
else //remove old path and find a new one if we clicked on accessible tile
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2023-04-17 01:02:31 +02:00
|
|
|
LOCPLINT->localState->setPath(currentHero, mapPos);
|
2023-04-20 21:03:28 +02:00
|
|
|
onHeroChanged(currentHero);
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} //end of hero is selected "case"
|
|
|
|
else
|
|
|
|
{
|
2012-04-22 10:32:45 +03:00
|
|
|
throw std::runtime_error("Nothing is selected...");
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
2010-07-13 08:25:40 +03:00
|
|
|
|
2023-01-25 19:47:33 +02:00
|
|
|
const auto shipyard = ourInaccessibleShipyard(topBlocking);
|
|
|
|
if(isHero && shipyard != nullptr)
|
2010-07-13 08:25:40 +03:00
|
|
|
{
|
|
|
|
LOCPLINT->showShipyardDialogOrProblemPopup(shipyard);
|
|
|
|
}
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::onTileHovered(const int3 &mapPos)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2023-04-17 22:16:45 +02:00
|
|
|
if(state != EGameState::MAKING_TURN)
|
2023-04-17 00:09:25 +02:00
|
|
|
return;
|
|
|
|
|
2023-04-17 22:16:45 +02:00
|
|
|
//may occur just at the start of game (fake move before full intiialization)
|
|
|
|
if(!LOCPLINT->localState->getCurrentArmy())
|
2015-01-13 21:57:41 +02:00
|
|
|
return;
|
2023-04-17 00:09:25 +02:00
|
|
|
|
2012-05-14 19:29:06 +03:00
|
|
|
if(!LOCPLINT->cb->isVisible(mapPos))
|
2011-05-03 06:14:18 +03:00
|
|
|
{
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::POINTER);
|
2018-08-26 18:09:56 +02:00
|
|
|
statusbar->clear();
|
2011-05-03 06:14:18 +03:00
|
|
|
return;
|
|
|
|
}
|
2015-11-08 02:10:48 +02:00
|
|
|
auto objRelations = PlayerRelations::ALLIES;
|
2015-11-08 02:33:01 +02:00
|
|
|
const CGObjectInstance *objAtTile = getActiveObject(mapPos);
|
2015-11-08 02:10:48 +02:00
|
|
|
if(objAtTile)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2015-11-08 02:10:48 +02:00
|
|
|
objRelations = LOCPLINT->cb->getPlayerRelations(LOCPLINT->playerID, objAtTile->tempOwner);
|
2023-04-17 12:06:58 +02:00
|
|
|
std::string text = LOCPLINT->localState->getCurrentHero() ? objAtTile->getHoverText(LOCPLINT->localState->getCurrentHero()) : objAtTile->getHoverText(LOCPLINT->playerID);
|
2012-05-14 19:29:06 +03:00
|
|
|
boost::replace_all(text,"\n"," ");
|
2022-12-19 22:04:50 +02:00
|
|
|
statusbar->write(text);
|
2023-02-28 22:43:19 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string hlp = CGI->mh->getTerrainDescr(mapPos, false);
|
|
|
|
statusbar->write(hlp);
|
|
|
|
}
|
|
|
|
|
2010-03-21 00:17:19 +02:00
|
|
|
if(spellBeingCasted)
|
|
|
|
{
|
|
|
|
switch(spellBeingCasted->id)
|
|
|
|
{
|
2013-02-11 02:24:57 +03:00
|
|
|
case SpellID::SCUTTLE_BOAT:
|
2012-09-23 21:01:04 +03:00
|
|
|
if(objAtTile && objAtTile->ID == Obj::BOAT)
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::SCUTTLE_BOAT);
|
2010-03-21 00:17:19 +02:00
|
|
|
else
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::POINTER);
|
2010-03-21 00:17:19 +02:00
|
|
|
return;
|
2013-02-11 02:24:57 +03:00
|
|
|
case SpellID::DIMENSION_DOOR:
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2015-11-08 02:33:01 +02:00
|
|
|
const TerrainTile * t = LOCPLINT->cb->getTile(mapPos, false);
|
2023-04-17 14:17:15 +02:00
|
|
|
int3 hpos = LOCPLINT->localState->getCurrentArmy()->getSightCenter();
|
2015-11-08 02:33:01 +02:00
|
|
|
if((!t || t->isClear(LOCPLINT->cb->getTile(hpos))) && isInScreenRange(hpos, mapPos))
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::TELEPORT);
|
2010-03-21 00:17:19 +02:00
|
|
|
else
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::POINTER);
|
2010-03-21 00:17:19 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-17 14:17:15 +02:00
|
|
|
if(LOCPLINT->localState->getCurrentArmy()->ID == Obj::TOWN)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2010-08-13 13:46:08 +03:00
|
|
|
if(objAtTile)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2015-11-08 02:33:01 +02:00
|
|
|
if(objAtTile->ID == Obj::TOWN && objRelations != PlayerRelations::ENEMIES)
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::TOWN);
|
2015-11-08 02:33:01 +02:00
|
|
|
else if(objAtTile->ID == Obj::HERO && objRelations == PlayerRelations::SAME_PLAYER)
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::HERO);
|
2012-02-28 14:26:08 +03:00
|
|
|
else
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::POINTER);
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
else
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::POINTER);
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
2023-04-17 12:06:58 +02:00
|
|
|
else if(const CGHeroInstance * hero = LOCPLINT->localState->getCurrentHero())
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2022-12-18 22:32:07 +02:00
|
|
|
std::array<Cursor::Map, 4> cursorMove = { Cursor::Map::T1_MOVE, Cursor::Map::T2_MOVE, Cursor::Map::T3_MOVE, Cursor::Map::T4_MOVE, };
|
|
|
|
std::array<Cursor::Map, 4> cursorAttack = { Cursor::Map::T1_ATTACK, Cursor::Map::T2_ATTACK, Cursor::Map::T3_ATTACK, Cursor::Map::T4_ATTACK, };
|
|
|
|
std::array<Cursor::Map, 4> cursorSail = { Cursor::Map::T1_SAIL, Cursor::Map::T2_SAIL, Cursor::Map::T3_SAIL, Cursor::Map::T4_SAIL, };
|
|
|
|
std::array<Cursor::Map, 4> cursorDisembark = { Cursor::Map::T1_DISEMBARK, Cursor::Map::T2_DISEMBARK, Cursor::Map::T3_DISEMBARK, Cursor::Map::T4_DISEMBARK, };
|
|
|
|
std::array<Cursor::Map, 4> cursorExchange = { Cursor::Map::T1_EXCHANGE, Cursor::Map::T2_EXCHANGE, Cursor::Map::T3_EXCHANGE, Cursor::Map::T4_EXCHANGE, };
|
|
|
|
std::array<Cursor::Map, 4> cursorVisit = { Cursor::Map::T1_VISIT, Cursor::Map::T2_VISIT, Cursor::Map::T3_VISIT, Cursor::Map::T4_VISIT, };
|
|
|
|
std::array<Cursor::Map, 4> cursorSailVisit = { Cursor::Map::T1_SAIL_VISIT, Cursor::Map::T2_SAIL_VISIT, Cursor::Map::T3_SAIL_VISIT, Cursor::Map::T4_SAIL_VISIT, };
|
|
|
|
|
2023-01-21 16:30:32 +02:00
|
|
|
const CGPathNode * pathNode = LOCPLINT->cb->getPathsInfo(hero)->getPathInfo(mapPos);
|
|
|
|
assert(pathNode);
|
2014-09-21 16:42:08 +03:00
|
|
|
|
2023-02-15 00:45:45 +02:00
|
|
|
if((GH.isKeyboardAltDown() || settings["gameTweaks"]["forceMovementInfo"].Bool()) && pathNode->reachable()) //overwrite status bar text with movement info
|
2023-01-16 18:29:33 +02:00
|
|
|
{
|
2023-02-10 15:50:46 +02:00
|
|
|
showMoveDetailsInStatusbar(*hero, *pathNode);
|
2023-01-16 18:29:33 +02:00
|
|
|
}
|
|
|
|
|
2023-01-21 16:30:32 +02:00
|
|
|
int turns = pathNode->turns;
|
2014-09-21 16:42:08 +03:00
|
|
|
vstd::amin(turns, 3);
|
2023-01-21 16:30:32 +02:00
|
|
|
switch(pathNode->action)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2015-11-08 02:10:48 +02:00
|
|
|
case CGPathNode::NORMAL:
|
2015-12-11 08:42:30 +02:00
|
|
|
case CGPathNode::TELEPORT_NORMAL:
|
2023-01-21 16:30:32 +02:00
|
|
|
if(pathNode->layer == EPathfindingLayer::LAND)
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(cursorMove[turns]);
|
2015-11-08 02:10:48 +02:00
|
|
|
else
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(cursorSailVisit[turns]);
|
2015-11-08 02:10:48 +02:00
|
|
|
break;
|
2010-03-21 00:17:19 +02:00
|
|
|
|
2015-11-08 02:10:48 +02:00
|
|
|
case CGPathNode::VISIT:
|
|
|
|
case CGPathNode::BLOCKING_VISIT:
|
2015-12-11 08:42:30 +02:00
|
|
|
case CGPathNode::TELEPORT_BLOCKING_VISIT:
|
2015-11-17 06:09:01 +02:00
|
|
|
if(objAtTile && objAtTile->ID == Obj::HERO)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2023-04-17 14:17:15 +02:00
|
|
|
if(LOCPLINT->localState->getCurrentArmy() == objAtTile)
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::HERO);
|
2012-01-12 18:23:00 +03:00
|
|
|
else
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(cursorExchange[turns]);
|
2010-05-06 15:13:31 +03:00
|
|
|
}
|
2023-01-21 16:30:32 +02:00
|
|
|
else if(pathNode->layer == EPathfindingLayer::LAND)
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(cursorVisit[turns]);
|
2010-03-21 00:17:19 +02:00
|
|
|
else
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(cursorSailVisit[turns]);
|
2015-11-08 02:10:48 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CGPathNode::BATTLE:
|
2015-12-11 08:42:30 +02:00
|
|
|
case CGPathNode::TELEPORT_BATTLE:
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(cursorAttack[turns]);
|
2015-11-08 02:10:48 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CGPathNode::EMBARK:
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(cursorSail[turns]);
|
2015-11-08 02:10:48 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CGPathNode::DISEMBARK:
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(cursorDisembark[turns]);
|
2015-11-08 02:10:48 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if(objAtTile && objRelations != PlayerRelations::ENEMIES)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2015-11-08 02:10:48 +02:00
|
|
|
if(objAtTile->ID == Obj::TOWN)
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::TOWN);
|
2015-11-08 02:10:48 +02:00
|
|
|
else if(objAtTile->ID == Obj::HERO && objRelations == PlayerRelations::SAME_PLAYER)
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::HERO);
|
2019-05-03 07:20:32 +02:00
|
|
|
else
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::POINTER);
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
else
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::POINTER);
|
2015-11-08 02:10:48 +02:00
|
|
|
break;
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
}
|
2010-07-13 08:25:40 +03:00
|
|
|
|
2011-02-20 11:24:53 +02:00
|
|
|
if(ourInaccessibleShipyard(objAtTile))
|
2010-07-13 08:25:40 +03:00
|
|
|
{
|
2022-12-18 22:32:07 +02:00
|
|
|
CCS->curh->set(Cursor::Map::T1_SAIL);
|
2010-07-13 08:25:40 +03:00
|
|
|
}
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::showMoveDetailsInStatusbar(const CGHeroInstance & hero, const CGPathNode & pathNode)
|
2023-01-21 16:30:32 +02:00
|
|
|
{
|
|
|
|
const int maxMovementPointsAtStartOfLastTurn = pathNode.turns > 0 ? hero.maxMovePoints(pathNode.layer == EPathfindingLayer::LAND) : hero.movement;
|
|
|
|
const int movementPointsLastTurnCost = maxMovementPointsAtStartOfLastTurn - pathNode.moveRemains;
|
|
|
|
const int remainingPointsAfterMove = pathNode.turns == 0 ? pathNode.moveRemains : 0;
|
|
|
|
|
|
|
|
std::string result = VLC->generaltexth->translate("vcmi.adventureMap", pathNode.turns > 0 ? "moveCostDetails" : "moveCostDetailsNoTurns");
|
|
|
|
|
|
|
|
boost::replace_first(result, "%TURNS", std::to_string(pathNode.turns));
|
|
|
|
boost::replace_first(result, "%POINTS", std::to_string(movementPointsLastTurnCost));
|
|
|
|
boost::replace_first(result, "%REMAINING", std::to_string(remainingPointsAfterMove));
|
|
|
|
|
|
|
|
statusbar->write(result);
|
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::onTileRightClicked(const int3 &mapPos)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
if(state != EGameState::MAKING_TURN)
|
2015-01-13 21:57:41 +02:00
|
|
|
return;
|
2023-04-17 00:09:25 +02:00
|
|
|
|
2010-03-21 00:17:19 +02:00
|
|
|
if(spellBeingCasted)
|
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
abortCastingMode();
|
2010-03-21 00:17:19 +02:00
|
|
|
return;
|
|
|
|
}
|
2023-04-17 00:09:25 +02:00
|
|
|
|
2012-05-14 19:29:06 +03:00
|
|
|
if(!LOCPLINT->cb->isVisible(mapPos))
|
2011-05-03 06:14:18 +03:00
|
|
|
{
|
|
|
|
CRClickPopup::createAndPush(VLC->generaltexth->allTexts[61]); //Uncharted Territory
|
|
|
|
return;
|
|
|
|
}
|
2010-03-21 00:17:19 +02:00
|
|
|
|
2014-07-01 17:19:08 +03:00
|
|
|
const CGObjectInstance * obj = getActiveObject(mapPos);
|
2012-05-14 19:29:06 +03:00
|
|
|
if(!obj)
|
2023-02-28 22:43:19 +02:00
|
|
|
{
|
|
|
|
// Bare or undiscovered terrain
|
|
|
|
const TerrainTile * tile = LOCPLINT->cb->getTile(mapPos);
|
|
|
|
if(tile)
|
|
|
|
{
|
|
|
|
std::string hlp = CGI->mh->getTerrainDescr(mapPos, true);
|
|
|
|
CRClickPopup::createAndPush(hlp);
|
|
|
|
}
|
|
|
|
return;
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
|
2023-01-27 00:27:06 +02:00
|
|
|
CRClickPopup::createAndPush(obj, GH.getCursorPosition(), ETextAlignment::CENTER);
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::enterCastingMode(const CSpell * sp)
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
2013-02-11 02:24:57 +03:00
|
|
|
assert(sp->id == SpellID::SCUTTLE_BOAT || sp->id == SpellID::DIMENSION_DOOR);
|
2010-03-21 00:17:19 +02:00
|
|
|
spellBeingCasted = sp;
|
|
|
|
|
|
|
|
deactivate();
|
2023-02-10 16:26:32 +02:00
|
|
|
terrain->activate();
|
2010-03-21 00:17:19 +02:00
|
|
|
GH.fakeMouseMove();
|
|
|
|
}
|
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
void CAdventureMapInterface::abortCastingMode()
|
2010-03-21 00:17:19 +02:00
|
|
|
{
|
|
|
|
assert(spellBeingCasted);
|
2013-06-26 14:18:27 +03:00
|
|
|
spellBeingCasted = nullptr;
|
2023-02-10 16:26:32 +02:00
|
|
|
terrain->deactivate();
|
2010-03-21 00:17:19 +02:00
|
|
|
activate();
|
2023-04-17 00:09:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CAdventureMapInterface::leaveCastingMode(const int3 & dest)
|
|
|
|
{
|
|
|
|
SpellID id = spellBeingCasted->id;
|
2010-03-21 00:17:19 +02:00
|
|
|
|
2023-04-17 00:09:25 +02:00
|
|
|
abortCastingMode();
|
|
|
|
// if(cast)
|
2023-04-17 12:06:58 +02:00
|
|
|
LOCPLINT->cb->castSpell(LOCPLINT->localState->getCurrentHero(), id, dest);
|
2023-04-17 00:09:25 +02:00
|
|
|
// else
|
|
|
|
// LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[731]); //Spell cancelled
|
2010-03-21 00:17:19 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
Rect CAdventureMapInterface::terrainAreaPixels() const
|
2023-02-10 23:29:13 +02:00
|
|
|
{
|
|
|
|
return terrain->pos;
|
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
const IShipyard * CAdventureMapInterface::ourInaccessibleShipyard(const CGObjectInstance *obj) const
|
2010-07-13 08:25:40 +03:00
|
|
|
{
|
|
|
|
const IShipyard *ret = IShipyard::castFrom(obj);
|
|
|
|
|
2022-12-18 22:32:07 +02:00
|
|
|
if(!ret ||
|
2023-04-17 00:09:25 +02:00
|
|
|
obj->tempOwner != currentPlayerID ||
|
2022-12-18 22:32:07 +02:00
|
|
|
(CCS->curh->get<Cursor::Map>() != Cursor::Map::T1_SAIL && CCS->curh->get<Cursor::Map>() != Cursor::Map::POINTER))
|
2013-06-26 14:18:27 +03:00
|
|
|
return nullptr;
|
2010-07-13 08:25:40 +03:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::exitWorldView()
|
2023-02-15 23:13:25 +02:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
state = EGameState::MAKING_TURN;
|
2015-01-15 01:22:20 +02:00
|
|
|
|
2023-02-21 14:38:08 +02:00
|
|
|
panelMain->activate();
|
|
|
|
panelWorldView->deactivate();
|
|
|
|
activeMapPanel = panelMain;
|
2015-10-31 19:23:13 +02:00
|
|
|
|
2023-02-21 14:38:08 +02:00
|
|
|
townList->activate();
|
|
|
|
heroList->activate();
|
|
|
|
infoBar->activate();
|
2015-10-31 19:23:13 +02:00
|
|
|
|
2023-02-21 14:38:08 +02:00
|
|
|
redraw();
|
2023-02-23 19:46:41 +02:00
|
|
|
terrain->onViewMapActivated();
|
2023-02-21 14:38:08 +02:00
|
|
|
}
|
2015-01-15 01:22:20 +02:00
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::openWorldView(int tileSize)
|
2023-02-21 14:38:08 +02:00
|
|
|
{
|
2023-04-17 00:09:25 +02:00
|
|
|
state = EGameState::WORLD_VIEW;
|
2023-02-21 14:38:08 +02:00
|
|
|
panelMain->deactivate();
|
|
|
|
panelWorldView->activate();
|
2023-02-20 16:31:14 +02:00
|
|
|
|
2023-02-21 14:38:08 +02:00
|
|
|
activeMapPanel = panelWorldView;
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2023-02-21 14:38:08 +02:00
|
|
|
townList->deactivate();
|
|
|
|
heroList->deactivate();
|
|
|
|
infoBar->showSelection(); // to prevent new day animation interfering world view mode
|
|
|
|
infoBar->deactivate();
|
2023-02-20 16:31:14 +02:00
|
|
|
|
2023-02-21 14:38:08 +02:00
|
|
|
redraw();
|
2023-02-23 19:46:41 +02:00
|
|
|
terrain->onViewWorldActivated(tileSize);
|
2015-01-13 21:57:41 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::openWorldView()
|
2015-02-02 14:02:27 +02:00
|
|
|
{
|
2023-02-21 14:38:08 +02:00
|
|
|
openWorldView(11);
|
2015-02-02 14:02:27 +02:00
|
|
|
}
|
|
|
|
|
2023-04-12 15:04:38 +02:00
|
|
|
void CAdventureMapInterface::openWorldView(const std::vector<ObjectPosInfo>& objectPositions, bool showTerrain)
|
2015-02-02 14:02:27 +02:00
|
|
|
{
|
2023-02-21 14:38:08 +02:00
|
|
|
openWorldView(11);
|
2023-02-23 19:46:41 +02:00
|
|
|
terrain->onViewSpellActivated(11, objectPositions, showTerrain);
|
2015-02-02 14:02:27 +02:00
|
|
|
}
|