1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-14 02:33:51 +02:00

adjustable queue size for embedded queue

This commit is contained in:
Laserlicht 2024-02-01 20:38:38 +01:00 committed by GitHub
parent dabb719c5f
commit aa2fc4b88a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 13 additions and 4 deletions

View File

@ -852,9 +852,14 @@ StackQueue::StackQueue(bool Embedded, BattleInterface & owner)
owner(owner)
{
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
uint32_t queueSize = QUEUE_SIZE_BIG;
if(embedded)
{
pos.w = QUEUE_SIZE * 41;
queueSize = std::clamp(static_cast<int>(settings["battle"]["queueSizeEmbeddedSlots"].Float()), 1, 19);
pos.w = queueSize * 41;
pos.h = 49;
pos.x += parent->pos.w/2 - pos.w/2;
pos.y += 10;
@ -878,7 +883,7 @@ StackQueue::StackQueue(bool Embedded, BattleInterface & owner)
}
stateIcons->preload();
stackBoxes.resize(QUEUE_SIZE);
stackBoxes.resize(queueSize);
for (int i = 0; i < stackBoxes.size(); i++)
{
stackBoxes[i] = std::make_shared<StackBox>(this);

View File

@ -239,7 +239,7 @@ class StackQueue : public CIntObject
std::optional<uint32_t> getBoundUnitID() const;
};
static const int QUEUE_SIZE = 10;
static const int QUEUE_SIZE_BIG = 10;
std::shared_ptr<CFilledTexture> background;
std::vector<std::shared_ptr<StackBox>> stackBoxes;
BattleInterface & owner;

View File

@ -304,7 +304,7 @@
"type" : "object",
"additionalProperties" : false,
"default" : {},
"required" : [ "speedFactor", "mouseShadow", "cellBorders", "stackRange", "movementHighlightOnHover", "rangeLimitHighlightOnHover", "showQueue", "swipeAttackDistance", "queueSize", "stickyHeroInfoWindows", "enableAutocombatSpells", "endWithAutocombat" ],
"required" : [ "speedFactor", "mouseShadow", "cellBorders", "stackRange", "movementHighlightOnHover", "rangeLimitHighlightOnHover", "showQueue", "swipeAttackDistance", "queueSize", "stickyHeroInfoWindows", "enableAutocombatSpells", "endWithAutocombat", "queueSizeEmbeddedSlots" ],
"properties" : {
"speedFactor" : {
"type" : "number",
@ -354,6 +354,10 @@
"endWithAutocombat" : {
"type": "boolean",
"default": false
},
"queueSizeEmbeddedSlots" : {
"type": "number",
"default": 10
}
}
},