mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-23 22:37:55 +02:00
exchange window move single stacks buttons
This commit is contained in:
committed by
Andrii Danylchenko
parent
0fd13d2f3b
commit
84948820b2
@@ -118,8 +118,6 @@ AttackPossibility AttackPossibility::evaluate(const BattleAttackInfo & attackInf
|
|||||||
if(!ap.attackerState->alive())
|
if(!ap.attackerState->alive())
|
||||||
break;
|
break;
|
||||||
|
|
||||||
assert(u->unitId() != attacker->unitId());
|
|
||||||
|
|
||||||
auto defenderState = u->acquireState();
|
auto defenderState = u->acquireState();
|
||||||
ap.affectedUnits.push_back(defenderState);
|
ap.affectedUnits.push_back(defenderState);
|
||||||
|
|
||||||
|
|||||||
@@ -51,6 +51,7 @@ public:
|
|||||||
virtual void hover (bool on) override; //call-in
|
virtual void hover (bool on) override; //call-in
|
||||||
const CArmedInstance * getObj() const;
|
const CArmedInstance * getObj() const;
|
||||||
bool our() const;
|
bool our() const;
|
||||||
|
SlotID getSlot() const { return ID; }
|
||||||
bool ally() const;
|
bool ally() const;
|
||||||
void clickRight(tribool down, bool previousState) override;
|
void clickRight(tribool down, bool previousState) override;
|
||||||
void clickLeft(tribool down, bool previousState) override;
|
void clickLeft(tribool down, bool previousState) override;
|
||||||
|
|||||||
@@ -787,12 +787,12 @@ void CTavernWindow::HeroPortrait::hover(bool on)
|
|||||||
GH.statusbar->clear();
|
GH.statusbar->clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
static const std::string HD_MOD_PREFIX = "HDMOD";
|
static const std::string QUICK_EXCHANGE_MOD_PREFIX = "quick-exchange";
|
||||||
static const std::string HD_EXCHANGE_BG = HD_MOD_PREFIX + "/TRADEHD";
|
static const std::string QUICK_EXCHANGE_BG = QUICK_EXCHANGE_MOD_PREFIX + "/TRADEQE";
|
||||||
|
|
||||||
static bool isHdLayoutAvailable()
|
static bool isQuickExchangeLayoutAvailable()
|
||||||
{
|
{
|
||||||
return CResourceHandler::get()->existsResource(ResourceID(std::string("SPRITES/") + HD_EXCHANGE_BG, EResType::IMAGE));
|
return CResourceHandler::get()->existsResource(ResourceID(std::string("SPRITES/") + QUICK_EXCHANGE_BG, EResType::IMAGE));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Runs a task asynchronously with gamestate locking and waitTillRealize set to true
|
// Runs a task asynchronously with gamestate locking and waitTillRealize set to true
|
||||||
@@ -1015,6 +1015,12 @@ std::function<void()> CExchangeController::onSwapArmy()
|
|||||||
{
|
{
|
||||||
GsThread::run([=]
|
GsThread::run([=]
|
||||||
{
|
{
|
||||||
|
if(right->tempOwner != cb->getMyColor()
|
||||||
|
|| right->tempOwner != cb->getMyColor())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
auto leftSlots = getStacks(left);
|
auto leftSlots = getStacks(left);
|
||||||
auto rightSlots = getStacks(right);
|
auto rightSlots = getStacks(right);
|
||||||
|
|
||||||
@@ -1043,6 +1049,32 @@ std::function<void()> CExchangeController::onSwapArmy()
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::function<void()> CExchangeController::onMoveStackToLeft(SlotID slotID)
|
||||||
|
{
|
||||||
|
return [=]()
|
||||||
|
{
|
||||||
|
if(right->tempOwner != cb->getMyColor())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
moveStack(right, left, slotID);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
std::function<void()> CExchangeController::onMoveStackToRight(SlotID slotID)
|
||||||
|
{
|
||||||
|
return [=]()
|
||||||
|
{
|
||||||
|
if(left->tempOwner != cb->getMyColor())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
moveStack(left, right, slotID);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
void CExchangeController::moveStack(
|
void CExchangeController::moveStack(
|
||||||
const CGHeroInstance * source,
|
const CGHeroInstance * source,
|
||||||
const CGHeroInstance * target,
|
const CGHeroInstance * target,
|
||||||
@@ -1073,21 +1105,31 @@ void CExchangeController::moveArmy(bool leftToRight)
|
|||||||
{
|
{
|
||||||
const CGHeroInstance * source = leftToRight ? left : right;
|
const CGHeroInstance * source = leftToRight ? left : right;
|
||||||
const CGHeroInstance * target = leftToRight ? right : left;
|
const CGHeroInstance * target = leftToRight ? right : left;
|
||||||
|
const CGarrisonSlot * selection = this->view->getSelectedSlotID();
|
||||||
|
SlotID slot;
|
||||||
|
|
||||||
GsThread::run([=]
|
if(source->tempOwner != cb->getMyColor())
|
||||||
{
|
{
|
||||||
auto stacks = getStacks(source);
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
std::sort(stacks.begin(), stacks.end(), [](const std::pair<SlotID, CStackInstance *> & a, const std::pair<SlotID, CStackInstance *> & b)
|
if(selection && selection->our() && selection->getObj() == source)
|
||||||
{
|
{
|
||||||
return a.second->type->level > b.second->type->level;
|
slot = selection->getSlot();
|
||||||
});
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
auto weakestSlot = vstd::minElementByFun(
|
||||||
|
source->Slots(),
|
||||||
|
[](const std::pair<SlotID, CStackInstance *> & s) -> int
|
||||||
|
{
|
||||||
|
return s.second->getCreatureID().toCreature()->AIValue;
|
||||||
|
});
|
||||||
|
|
||||||
for(auto pair : stacks)
|
slot = weakestSlot->first;
|
||||||
{
|
}
|
||||||
moveStack(source, target, pair.first);
|
|
||||||
}
|
cb->bulkMoveArmy(source->id, target->id, slot);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CExchangeController::moveArtifacts(bool leftToRight)
|
void CExchangeController::moveArtifacts(bool leftToRight)
|
||||||
@@ -1095,6 +1137,11 @@ void CExchangeController::moveArtifacts(bool leftToRight)
|
|||||||
const CGHeroInstance * source = leftToRight ? left : right;
|
const CGHeroInstance * source = leftToRight ? left : right;
|
||||||
const CGHeroInstance * target = leftToRight ? right : left;
|
const CGHeroInstance * target = leftToRight ? right : left;
|
||||||
|
|
||||||
|
if(source->tempOwner != cb->getMyColor())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
GsThread::run([=]
|
GsThread::run([=]
|
||||||
{
|
{
|
||||||
while(vstd::contains_if(source->artifactsWorn, isArtRemovable))
|
while(vstd::contains_if(source->artifactsWorn, isArtRemovable))
|
||||||
@@ -1142,10 +1189,12 @@ void CExchangeController::moveArtifact(
|
|||||||
}
|
}
|
||||||
|
|
||||||
CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2, QueryID queryID)
|
CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2, QueryID queryID)
|
||||||
: CStatusbarWindow(PLAYER_COLORED | BORDERED, isHdLayoutAvailable() ? HD_EXCHANGE_BG : "TRADE2"),
|
: CStatusbarWindow(PLAYER_COLORED | BORDERED, isQuickExchangeLayoutAvailable() ? QUICK_EXCHANGE_BG : "TRADE2"),
|
||||||
controller(this, hero1, hero2)
|
controller(this, hero1, hero2),
|
||||||
|
moveStackLeftButtons(),
|
||||||
|
moveStackRightButtons()
|
||||||
{
|
{
|
||||||
const bool hdLayout = isHdLayoutAvailable();
|
const bool qeLayout = isQuickExchangeLayoutAvailable();
|
||||||
|
|
||||||
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
|
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
|
||||||
|
|
||||||
@@ -1169,7 +1218,7 @@ CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2,
|
|||||||
|
|
||||||
for(int g = 0; g < 4; ++g)
|
for(int g = 0; g < 4; ++g)
|
||||||
{
|
{
|
||||||
if (hdLayout)
|
if (qeLayout)
|
||||||
primSkillImages.push_back(std::make_shared<CAnimImage>(PSKIL32, g, Rect(389, 12 + 26 * g, 22, 22)));
|
primSkillImages.push_back(std::make_shared<CAnimImage>(PSKIL32, g, Rect(389, 12 + 26 * g, 22, 22)));
|
||||||
else
|
else
|
||||||
primSkillImages.push_back(std::make_shared<CAnimImage>(PSKIL32, g, 0, 385, 19 + 36 * g));
|
primSkillImages.push_back(std::make_shared<CAnimImage>(PSKIL32, g, 0, 385, 19 + 36 * g));
|
||||||
@@ -1182,19 +1231,19 @@ CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2,
|
|||||||
herosWArt[leftRight] = std::make_shared<CHeroWithMaybePickedArtifact>(this, hero);
|
herosWArt[leftRight] = std::make_shared<CHeroWithMaybePickedArtifact>(this, hero);
|
||||||
|
|
||||||
for(int m=0; m<GameConstants::PRIMARY_SKILLS; ++m)
|
for(int m=0; m<GameConstants::PRIMARY_SKILLS; ++m)
|
||||||
primSkillValues[leftRight].push_back(std::make_shared<CLabel>(352 + (hdLayout ? 96 : 93) * leftRight, (hdLayout ? 22 : 35) + (hdLayout ? 26 : 36) * m, FONT_SMALL, CENTER, Colors::WHITE));
|
primSkillValues[leftRight].push_back(std::make_shared<CLabel>(352 + (qeLayout ? 96 : 93) * leftRight, (qeLayout ? 22 : 35) + (qeLayout ? 26 : 36) * m, FONT_SMALL, CENTER, Colors::WHITE));
|
||||||
|
|
||||||
|
|
||||||
for(int m=0; m < hero->secSkills.size(); ++m)
|
for(int m=0; m < hero->secSkills.size(); ++m)
|
||||||
secSkillIcons[leftRight].push_back(std::make_shared<CAnimImage>(SECSK32, 0, 0, 32 + 36 * m + 454 * leftRight, hdLayout ? 83 : 88));
|
secSkillIcons[leftRight].push_back(std::make_shared<CAnimImage>(SECSK32, 0, 0, 32 + 36 * m + 454 * leftRight, qeLayout ? 83 : 88));
|
||||||
|
|
||||||
specImages[leftRight] = std::make_shared<CAnimImage>("UN32", hero->type->imageIndex, 0, 67 + 490 * leftRight, hdLayout ? 41 : 45);
|
specImages[leftRight] = std::make_shared<CAnimImage>("UN32", hero->type->imageIndex, 0, 67 + 490 * leftRight, qeLayout ? 41 : 45);
|
||||||
|
|
||||||
expImages[leftRight] = std::make_shared<CAnimImage>(PSKIL32, 4, 0, 103 + 490 * leftRight, hdLayout ? 41 : 45);
|
expImages[leftRight] = std::make_shared<CAnimImage>(PSKIL32, 4, 0, 103 + 490 * leftRight, qeLayout ? 41 : 45);
|
||||||
expValues[leftRight] = std::make_shared<CLabel>(119 + 490 * leftRight, hdLayout ? 66 : 71, FONT_SMALL, CENTER, Colors::WHITE);
|
expValues[leftRight] = std::make_shared<CLabel>(119 + 490 * leftRight, qeLayout ? 66 : 71, FONT_SMALL, CENTER, Colors::WHITE);
|
||||||
|
|
||||||
manaImages[leftRight] = std::make_shared<CAnimImage>(PSKIL32, 5, 0, 139 + 490 * leftRight, hdLayout ? 41 : 45);
|
manaImages[leftRight] = std::make_shared<CAnimImage>(PSKIL32, 5, 0, 139 + 490 * leftRight, qeLayout ? 41 : 45);
|
||||||
manaValues[leftRight] = std::make_shared<CLabel>(155 + 490 * leftRight, hdLayout ? 66 : 71, FONT_SMALL, CENTER, Colors::WHITE);
|
manaValues[leftRight] = std::make_shared<CLabel>(155 + 490 * leftRight, qeLayout ? 66 : 71, FONT_SMALL, CENTER, Colors::WHITE);
|
||||||
}
|
}
|
||||||
|
|
||||||
portraits[0] = std::make_shared<CAnimImage>("PortraitsLarge", heroInst[0]->portrait, 0, 257, 13);
|
portraits[0] = std::make_shared<CAnimImage>("PortraitsLarge", heroInst[0]->portrait, 0, 257, 13);
|
||||||
@@ -1215,7 +1264,7 @@ CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2,
|
|||||||
for(int g=0; g<4; ++g)
|
for(int g=0; g<4; ++g)
|
||||||
{
|
{
|
||||||
primSkillAreas.push_back(std::make_shared<LRClickableAreaWTextComp>());
|
primSkillAreas.push_back(std::make_shared<LRClickableAreaWTextComp>());
|
||||||
if (hdLayout)
|
if (qeLayout)
|
||||||
primSkillAreas[g]->pos = genRect(22, 152, pos.x + 324, pos.y + 12 + 26 * g);
|
primSkillAreas[g]->pos = genRect(22, 152, pos.x + 324, pos.y + 12 + 26 * g);
|
||||||
else
|
else
|
||||||
primSkillAreas[g]->pos = genRect(32, 140, pos.x + 329, pos.y + 19 + 36 * g);
|
primSkillAreas[g]->pos = genRect(32, 140, pos.x + 329, pos.y + 19 + 36 * g);
|
||||||
@@ -1238,7 +1287,7 @@ CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2,
|
|||||||
int skill = hero->secSkills[g].first,
|
int skill = hero->secSkills[g].first,
|
||||||
level = hero->secSkills[g].second; // <1, 3>
|
level = hero->secSkills[g].second; // <1, 3>
|
||||||
secSkillAreas[b].push_back(std::make_shared<LRClickableAreaWTextComp>());
|
secSkillAreas[b].push_back(std::make_shared<LRClickableAreaWTextComp>());
|
||||||
secSkillAreas[b][g]->pos = genRect(32, 32, pos.x + 32 + g*36 + b*454 , pos.y + hdLayout ? 83 : 88);
|
secSkillAreas[b][g]->pos = genRect(32, 32, pos.x + 32 + g*36 + b*454 , pos.y + qeLayout ? 83 : 88);
|
||||||
secSkillAreas[b][g]->baseType = 1;
|
secSkillAreas[b][g]->baseType = 1;
|
||||||
|
|
||||||
secSkillAreas[b][g]->type = skill;
|
secSkillAreas[b][g]->type = skill;
|
||||||
@@ -1253,12 +1302,12 @@ CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2,
|
|||||||
heroAreas[b] = std::make_shared<CHeroArea>(257 + 228*b, 13, hero);
|
heroAreas[b] = std::make_shared<CHeroArea>(257 + 228*b, 13, hero);
|
||||||
|
|
||||||
specialtyAreas[b] = std::make_shared<LRClickableAreaWText>();
|
specialtyAreas[b] = std::make_shared<LRClickableAreaWText>();
|
||||||
specialtyAreas[b]->pos = genRect(32, 32, pos.x + 69 + 490*b, pos.y + hdLayout ? 41 : 45);
|
specialtyAreas[b]->pos = genRect(32, 32, pos.x + 69 + 490*b, pos.y + qeLayout ? 41 : 45);
|
||||||
specialtyAreas[b]->hoverText = CGI->generaltexth->heroscrn[27];
|
specialtyAreas[b]->hoverText = CGI->generaltexth->heroscrn[27];
|
||||||
specialtyAreas[b]->text = hero->type->specDescr;
|
specialtyAreas[b]->text = hero->type->specDescr;
|
||||||
|
|
||||||
experienceAreas[b] = std::make_shared<LRClickableAreaWText>();
|
experienceAreas[b] = std::make_shared<LRClickableAreaWText>();
|
||||||
experienceAreas[b]->pos = genRect(32, 32, pos.x + 105 + 490*b, pos.y + hdLayout ? 41 : 45);
|
experienceAreas[b]->pos = genRect(32, 32, pos.x + 105 + 490*b, pos.y + qeLayout ? 41 : 45);
|
||||||
experienceAreas[b]->hoverText = CGI->generaltexth->heroscrn[9];
|
experienceAreas[b]->hoverText = CGI->generaltexth->heroscrn[9];
|
||||||
experienceAreas[b]->text = CGI->generaltexth->allTexts[2];
|
experienceAreas[b]->text = CGI->generaltexth->allTexts[2];
|
||||||
boost::algorithm::replace_first(experienceAreas[b]->text, "%d", boost::lexical_cast<std::string>(hero->level));
|
boost::algorithm::replace_first(experienceAreas[b]->text, "%d", boost::lexical_cast<std::string>(hero->level));
|
||||||
@@ -1266,7 +1315,7 @@ CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2,
|
|||||||
boost::algorithm::replace_first(experienceAreas[b]->text, "%d", boost::lexical_cast<std::string>(hero->exp));
|
boost::algorithm::replace_first(experienceAreas[b]->text, "%d", boost::lexical_cast<std::string>(hero->exp));
|
||||||
|
|
||||||
spellPointsAreas[b] = std::make_shared<LRClickableAreaWText>();
|
spellPointsAreas[b] = std::make_shared<LRClickableAreaWText>();
|
||||||
spellPointsAreas[b]->pos = genRect(32, 32, pos.x + 141 + 490*b, pos.y + hdLayout ? 41 : 45);
|
spellPointsAreas[b]->pos = genRect(32, 32, pos.x + 141 + 490*b, pos.y + qeLayout ? 41 : 45);
|
||||||
spellPointsAreas[b]->hoverText = CGI->generaltexth->heroscrn[22];
|
spellPointsAreas[b]->hoverText = CGI->generaltexth->heroscrn[22];
|
||||||
spellPointsAreas[b]->text = CGI->generaltexth->allTexts[205];
|
spellPointsAreas[b]->text = CGI->generaltexth->allTexts[205];
|
||||||
boost::algorithm::replace_first(spellPointsAreas[b]->text, "%s", hero->name);
|
boost::algorithm::replace_first(spellPointsAreas[b]->text, "%s", hero->name);
|
||||||
@@ -1281,27 +1330,44 @@ CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2,
|
|||||||
if(queryID.getNum() > 0)
|
if(queryID.getNum() > 0)
|
||||||
quit->addCallback([=](){ LOCPLINT->cb->selectionMade(0, queryID); });
|
quit->addCallback([=](){ LOCPLINT->cb->selectionMade(0, queryID); });
|
||||||
|
|
||||||
questlogButton[0] = std::make_shared<CButton>(Point( 10, hdLayout ? 39 : 44), "hsbtns4.def", CButton::tooltip(CGI->generaltexth->heroscrn[0]), std::bind(&CExchangeWindow::questlog, this, 0));
|
questlogButton[0] = std::make_shared<CButton>(Point( 10, qeLayout ? 39 : 44), "hsbtns4.def", CButton::tooltip(CGI->generaltexth->heroscrn[0]), std::bind(&CExchangeWindow::questlog, this, 0));
|
||||||
questlogButton[1] = std::make_shared<CButton>(Point(740, hdLayout ? 39 : 44), "hsbtns4.def", CButton::tooltip(CGI->generaltexth->heroscrn[0]), std::bind(&CExchangeWindow::questlog, this, 1));
|
questlogButton[1] = std::make_shared<CButton>(Point(740, qeLayout ? 39 : 44), "hsbtns4.def", CButton::tooltip(CGI->generaltexth->heroscrn[0]), std::bind(&CExchangeWindow::questlog, this, 1));
|
||||||
|
|
||||||
Rect barRect(5, 578, 725, 18);
|
Rect barRect(5, 578, 725, 18);
|
||||||
statusbar = CGStatusBar::create(std::make_shared<CPicture>(*background, barRect, 5, 578, false));
|
statusbar = CGStatusBar::create(std::make_shared<CPicture>(*background, barRect, 5, 578, false));
|
||||||
|
|
||||||
//garrison interface
|
//garrison interface
|
||||||
|
|
||||||
garr = std::make_shared<CGarrisonInt>(69, hdLayout ? 122 : 131, 4, Point(418,0), heroInst[0], heroInst[1], true, true);
|
garr = std::make_shared<CGarrisonInt>(69, qeLayout ? 122 : 131, 4, Point(418,0), heroInst[0], heroInst[1], true, true);
|
||||||
auto splitButtonCallback = [&](){ garr->splitClick(); };
|
auto splitButtonCallback = [&](){ garr->splitClick(); };
|
||||||
garr->addSplitBtn(std::make_shared<CButton>( Point( 10, hdLayout ? 122 : 132), "TSBTNS.DEF", CButton::tooltip(CGI->generaltexth->tcommands[3]), splitButtonCallback));
|
garr->addSplitBtn(std::make_shared<CButton>( Point( 10, qeLayout ? 122 : 132), "TSBTNS.DEF", CButton::tooltip(CGI->generaltexth->tcommands[3]), splitButtonCallback));
|
||||||
garr->addSplitBtn(std::make_shared<CButton>( Point(744, hdLayout ? 122 : 132), "TSBTNS.DEF", CButton::tooltip(CGI->generaltexth->tcommands[3]), splitButtonCallback));
|
garr->addSplitBtn(std::make_shared<CButton>( Point(744, qeLayout ? 122 : 132), "TSBTNS.DEF", CButton::tooltip(CGI->generaltexth->tcommands[3]), splitButtonCallback));
|
||||||
|
|
||||||
if (hdLayout && (CGI->generaltexth->hdModCommands.size() >= 5))
|
if (qeLayout && (CGI->generaltexth->qeModCommands.size() >= 5))
|
||||||
{
|
{
|
||||||
moveAllGarrButtonLeft = std::make_shared<CButton>(Point(325, 118), HD_MOD_PREFIX + "/armRight.DEF", CButton::tooltip(CGI->generaltexth->hdModCommands[1]), controller.onMoveArmyToRight());
|
moveAllGarrButtonLeft = std::make_shared<CButton>(Point(325, 118), QUICK_EXCHANGE_MOD_PREFIX + "/armRight.DEF", CButton::tooltip(CGI->generaltexth->qeModCommands[1]), controller.onMoveArmyToRight());
|
||||||
echangeGarrButton = std::make_shared<CButton>(Point(377, 118), HD_MOD_PREFIX + "/swapAll.DEF", CButton::tooltip(CGI->generaltexth->hdModCommands[2]), controller.onSwapArmy());
|
echangeGarrButton = std::make_shared<CButton>(Point(377, 118), QUICK_EXCHANGE_MOD_PREFIX + "/swapAll.DEF", CButton::tooltip(CGI->generaltexth->qeModCommands[2]), controller.onSwapArmy());
|
||||||
moveAllGarrButtonRight = std::make_shared<CButton>(Point(425, 118), HD_MOD_PREFIX + "/armLeft.DEF", CButton::tooltip(CGI->generaltexth->hdModCommands[1]), controller.onMoveArmyToLeft());
|
moveAllGarrButtonRight = std::make_shared<CButton>(Point(425, 118), QUICK_EXCHANGE_MOD_PREFIX + "/armLeft.DEF", CButton::tooltip(CGI->generaltexth->qeModCommands[1]), controller.onMoveArmyToLeft());
|
||||||
moveArtifactsButtonLeft = std::make_shared<CButton>(Point(325, 154), HD_MOD_PREFIX + "/artRight.DEF", CButton::tooltip(CGI->generaltexth->hdModCommands[3]), controller.onMoveArtifactsToRight());
|
moveArtifactsButtonLeft = std::make_shared<CButton>(Point(325, 154), QUICK_EXCHANGE_MOD_PREFIX + "/artRight.DEF", CButton::tooltip(CGI->generaltexth->qeModCommands[3]), controller.onMoveArtifactsToRight());
|
||||||
echangeArtifactsButton = std::make_shared<CButton>(Point(377, 154), HD_MOD_PREFIX + "/swapAll.DEF", CButton::tooltip(CGI->generaltexth->hdModCommands[4]), controller.onSwapArtifacts());
|
echangeArtifactsButton = std::make_shared<CButton>(Point(377, 154), QUICK_EXCHANGE_MOD_PREFIX + "/swapAll.DEF", CButton::tooltip(CGI->generaltexth->qeModCommands[4]), controller.onSwapArtifacts());
|
||||||
moveArtifactsButtonRight = std::make_shared<CButton>(Point(425, 154), HD_MOD_PREFIX + "/artLeft.DEF", CButton::tooltip(CGI->generaltexth->hdModCommands[3]), controller.onMoveArtifactsToLeft());
|
moveArtifactsButtonRight = std::make_shared<CButton>(Point(425, 154), QUICK_EXCHANGE_MOD_PREFIX + "/artLeft.DEF", CButton::tooltip(CGI->generaltexth->qeModCommands[3]), controller.onMoveArtifactsToLeft());
|
||||||
|
|
||||||
|
for(int i = 0; i < GameConstants::ARMY_SIZE; i++)
|
||||||
|
{
|
||||||
|
moveStackLeftButtons.push_back(
|
||||||
|
std::make_shared<CButton>(
|
||||||
|
Point(484 + 35 * i, 154),
|
||||||
|
QUICK_EXCHANGE_MOD_PREFIX + "/unitLeft.DEF",
|
||||||
|
CButton::tooltip(CGI->generaltexth->qeModCommands[1]),
|
||||||
|
controller.onMoveStackToLeft(SlotID(i))));
|
||||||
|
|
||||||
|
moveStackRightButtons.push_back(
|
||||||
|
std::make_shared<CButton>(
|
||||||
|
Point(66 + 35 * i, 154),
|
||||||
|
QUICK_EXCHANGE_MOD_PREFIX + "/unitRight.DEF",
|
||||||
|
CButton::tooltip(CGI->generaltexth->qeModCommands[1]),
|
||||||
|
controller.onMoveStackToRight(SlotID(i))));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
updateWidgets();
|
updateWidgets();
|
||||||
@@ -1313,6 +1379,11 @@ CExchangeWindow::~CExchangeWindow()
|
|||||||
artifs[1]->commonInfo = nullptr;
|
artifs[1]->commonInfo = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const CGarrisonSlot * CExchangeWindow::getSelectedSlotID() const
|
||||||
|
{
|
||||||
|
return garr->getSelection();
|
||||||
|
}
|
||||||
|
|
||||||
void CExchangeWindow::updateGarrisons()
|
void CExchangeWindow::updateGarrisons()
|
||||||
{
|
{
|
||||||
garr->recreateSlots();
|
garr->recreateSlots();
|
||||||
|
|||||||
@@ -311,6 +311,8 @@ public:
|
|||||||
std::function<void()> onSwapArtifacts();
|
std::function<void()> onSwapArtifacts();
|
||||||
std::function<void()> onMoveArtifactsToLeft();
|
std::function<void()> onMoveArtifactsToLeft();
|
||||||
std::function<void()> onMoveArtifactsToRight();
|
std::function<void()> onMoveArtifactsToRight();
|
||||||
|
std::function<void()> onMoveStackToLeft(SlotID slotID);
|
||||||
|
std::function<void()> onMoveStackToRight(SlotID slotID);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void moveArmy(bool leftToRight);
|
void moveArmy(bool leftToRight);
|
||||||
@@ -358,6 +360,8 @@ class CExchangeWindow : public CStatusbarWindow, public CGarrisonHolder, public
|
|||||||
std::shared_ptr<CButton> moveArtifactsButtonLeft;
|
std::shared_ptr<CButton> moveArtifactsButtonLeft;
|
||||||
std::shared_ptr<CButton> echangeArtifactsButton;
|
std::shared_ptr<CButton> echangeArtifactsButton;
|
||||||
std::shared_ptr<CButton> moveArtifactsButtonRight;
|
std::shared_ptr<CButton> moveArtifactsButtonRight;
|
||||||
|
std::vector<std::shared_ptr<CButton>> moveStackLeftButtons;
|
||||||
|
std::vector<std::shared_ptr<CButton>> moveStackRightButtons;
|
||||||
CExchangeController controller;
|
CExchangeController controller;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@@ -370,6 +374,8 @@ public:
|
|||||||
|
|
||||||
void updateWidgets();
|
void updateWidgets();
|
||||||
|
|
||||||
|
const CGarrisonSlot * getSelectedSlotID() const;
|
||||||
|
|
||||||
CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2, QueryID queryID);
|
CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2, QueryID queryID);
|
||||||
~CExchangeWindow();
|
~CExchangeWindow();
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -332,9 +332,9 @@ CGeneralTextHandler::CGeneralTextHandler()
|
|||||||
readToVector("DATA/TENTCOLR.TXT", tentColors);
|
readToVector("DATA/TENTCOLR.TXT", tentColors);
|
||||||
readToVector("DATA/SKILLLEV.TXT", levels);
|
readToVector("DATA/SKILLLEV.TXT", levels);
|
||||||
|
|
||||||
static const char * HD_MOD_COMMANDS = "DATA/HDCOMMANDS.TXT";
|
static const char * QE_MOD_COMMANDS = "DATA/QECOMMANDS.TXT";
|
||||||
if (CResourceHandler::get()->existsResource(ResourceID(HD_MOD_COMMANDS, EResType::TEXT)))
|
if (CResourceHandler::get()->existsResource(ResourceID(QE_MOD_COMMANDS, EResType::TEXT)))
|
||||||
readToVector(HD_MOD_COMMANDS, hdModCommands);
|
readToVector(QE_MOD_COMMANDS, qeModCommands);
|
||||||
|
|
||||||
localizedTexts = JsonNode(ResourceID("config/translate.json", EResType::TEXT));
|
localizedTexts = JsonNode(ResourceID("config/translate.json", EResType::TEXT));
|
||||||
|
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ public:
|
|||||||
std::vector<std::string> tavernInfo;
|
std::vector<std::string> tavernInfo;
|
||||||
std::vector<std::string> tavernRumors;
|
std::vector<std::string> tavernRumors;
|
||||||
|
|
||||||
std::vector<std::string> hdModCommands;
|
std::vector<std::string> qeModCommands;
|
||||||
|
|
||||||
std::vector<std::pair<std::string,std::string>> zelp;
|
std::vector<std::pair<std::string,std::string>> zelp;
|
||||||
std::vector<std::string> lossCondtions;
|
std::vector<std::string> lossCondtions;
|
||||||
|
|||||||
Reference in New Issue
Block a user