mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 09:05:10 -07:00
Some checks are pending
CodeQL / Analyze (cpp) (push) Waiting to run
CodeQL / Analyze (actions) (push) Waiting to run
Build Desktop / Configure (push) Waiting to run
Build Desktop / Debian 13 (push) Blocked by required conditions
Build Desktop / Debian 12 (push) Blocked by required conditions
Build Desktop / Fedora 44 (push) Blocked by required conditions
Build Desktop / Fedora 43 (push) Blocked by required conditions
Build Desktop / Servatrice_Debian 12 (push) Blocked by required conditions
Build Desktop / Ubuntu 26.04 (push) Blocked by required conditions
Build Desktop / Ubuntu 24.04 (push) Blocked by required conditions
Build Desktop / Arch (push) Blocked by required conditions
Build Desktop / macOS 13 Intel (push) Blocked by required conditions
Build Desktop / macOS 14 (push) Blocked by required conditions
Build Desktop / macOS 15 (push) Blocked by required conditions
Build Desktop / macOS 26 Debug (push) Blocked by required conditions
Build Desktop / Windows 10 (push) Blocked by required conditions
Build Docker / Servatrice (arm) (push) Waiting to run
Build Docker / Servatrice (x86) (push) Waiting to run
Build Docker / Publish multi-platform Servatrice image (push) Blocked by required conditions
109 lines
3.4 KiB
C++
109 lines
3.4 KiB
C++
#include "stack_zone.h"
|
|
|
|
#include "../../game/player/player_actions.h"
|
|
#include "../../game/player/player_logic.h"
|
|
#include "../../game/zones/stack_zone_logic.h"
|
|
#include "../../interface/theme_manager.h"
|
|
#include "../board/card_drag_item.h"
|
|
#include "../board/card_item.h"
|
|
#include "../card_dimensions.h"
|
|
|
|
#include <QPainter>
|
|
#include <libcockatrice/protocol/pb/command_move_card.pb.h>
|
|
|
|
StackZone::StackZone(StackZoneLogic *_logic, int _zoneHeight, QGraphicsItem *parent)
|
|
: SelectZone(_logic, parent), zoneHeight(_zoneHeight)
|
|
{
|
|
connect(themeManager, &ThemeManager::themeChanged, this, &StackZone::updateBg);
|
|
updateBg();
|
|
setCacheMode(DeviceCoordinateCache);
|
|
}
|
|
|
|
void StackZone::updateBg()
|
|
{
|
|
update();
|
|
}
|
|
|
|
QRectF StackZone::boundingRect() const
|
|
{
|
|
return {0, 0, CardDimensions::WIDTH_F * 1.5, zoneHeight};
|
|
}
|
|
|
|
void StackZone::paint(QPainter *painter, const QStyleOptionGraphicsItem * /*option*/, QWidget * /*widget*/)
|
|
{
|
|
if (playmatActive) {
|
|
// Subtle overlay to distinguish stack zone from table zone (slightly darker)
|
|
painter->fillRect(boundingRect(), QColor(0, 0, 0, 80));
|
|
} else {
|
|
QBrush brush = themeManager->getExtraBgBrush(ThemeManager::Stack, getLogic()->getPlayer()->getZoneId());
|
|
painter->fillRect(boundingRect(), brush);
|
|
}
|
|
}
|
|
|
|
void StackZone::onPlaymatChanged(bool active)
|
|
{
|
|
playmatActive = active;
|
|
// See TableZone::onPlaymatChanged for the rationale. Translucent overlay
|
|
// over a dynamic playmat should not be held in the device cache.
|
|
setCacheMode(active ? QGraphicsItem::NoCache : QGraphicsItem::DeviceCoordinateCache);
|
|
update();
|
|
}
|
|
|
|
void StackZone::handleDropEvent(const QList<CardDragItem *> &dragItems,
|
|
CardZoneLogic *startZone,
|
|
const QPoint &dropPoint)
|
|
{
|
|
if (startZone == nullptr || startZone->getPlayer() == nullptr || dragItems.isEmpty()) {
|
|
return;
|
|
}
|
|
|
|
bool sameZone = startZone == getLogic();
|
|
int index = calcDropIndexFromY(dropPoint.y(), !sameZone, MIN_CARD_VISIBLE);
|
|
if (sameZone) {
|
|
// Same-zone no-op: don't move a card onto itself
|
|
const auto &cards = getLogic()->getCards();
|
|
if (!cards.isEmpty() && cards.at(index)->getId() == dragItems.at(0)->getId()) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
Command_MoveCard cmd;
|
|
cmd.set_start_player_id(startZone->getPlayer()->getPlayerInfo()->getId());
|
|
cmd.set_start_zone(startZone->getName().toStdString());
|
|
cmd.set_target_player_id(getLogic()->getPlayer()->getPlayerInfo()->getId());
|
|
cmd.set_target_zone(getLogic()->getName().toStdString());
|
|
cmd.set_x(index);
|
|
cmd.set_y(0);
|
|
|
|
for (const CardDragItem *item : dragItems) {
|
|
if (item) {
|
|
auto *cardToMove = cmd.mutable_cards_to_move()->add_card();
|
|
cardToMove->set_card_id(item->getId());
|
|
if (item->isForceFaceDown()) {
|
|
cardToMove->set_face_down(true);
|
|
}
|
|
}
|
|
}
|
|
|
|
getLogic()->getPlayer()->getPlayerActions()->sendGameCommand(cmd);
|
|
}
|
|
|
|
void StackZone::setHeight(qreal newHeight)
|
|
{
|
|
if (qFuzzyCompare(1.0 + zoneHeight, 1.0 + newHeight)) {
|
|
return;
|
|
}
|
|
prepareGeometryChange();
|
|
zoneHeight = newHeight;
|
|
reorganizeCards();
|
|
update();
|
|
}
|
|
|
|
void StackZone::reorganizeCards()
|
|
{
|
|
if (!getLogic()->getCards().isEmpty()) {
|
|
const auto params = buildStackParams(MIN_CARD_VISIBLE);
|
|
layoutCardsVertically(params);
|
|
}
|
|
update();
|
|
}
|