QTfrontend/ui/page/pagecampaign.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 26 Jul 2018 18:01:32 +0200 (2018-07-26)
changeset 13563 af92481415ef
parent 12245 88b31fdc760b
child 13637 4c49a4944884
permissions -rw-r--r--
TechRacer: Fix gears not spawning on turn start when player pressed control right at start The activationStage was horribly programmed and heavily relied on timer. There was a sweet spot at turn start that if you managed to push a key right at the start of turn, you skip the Ready phase and the activationStage would advance, causing the gear spawning code to be skipped. This fix greatly simplies the spawning phase.
/*
 * Hedgewars, a free turn based strategy game
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <QGridLayout>
#include <QPushButton>
#include <QComboBox>
#include <QLabel>

#include "pagecampaign.h"

QLayout * PageCampaign::bodyLayoutDefinition()
{
    QGridLayout * pageLayout = new QGridLayout();
    pageLayout->setColumnStretch(0, 5);
    pageLayout->setColumnStretch(1, 1);
    pageLayout->setColumnStretch(2, 9);
    pageLayout->setColumnStretch(3, 5);
    pageLayout->setRowStretch(0, 1);
    pageLayout->setRowStretch(3, 1);

    QGridLayout * infoLayout = new QGridLayout();
    infoLayout->setColumnStretch(0, 1);
    infoLayout->setColumnStretch(1, 1);
    infoLayout->setColumnStretch(2, 1);
    infoLayout->setColumnStretch(3, 1);
    infoLayout->setColumnStretch(4, 1);
    infoLayout->setRowStretch(0, 1);
    infoLayout->setRowStretch(1, 1);

    // set this as default image first time page is created, this will change in hwform.cpp
    btnPreview = formattedButton(":/res/campaign/A_Classic_Fairytale/first_blood.png", true);
    btnPreview->setWhatsThis(tr("Start fighting"));
    infoLayout->setAlignment(btnPreview, Qt::AlignHCenter | Qt::AlignVCenter);

    lbldescription = new QLabel(this);
    lbldescription->setAlignment(Qt::AlignHCenter| Qt::AlignTop);
    lbldescription->setWordWrap(true);

    lbltitle = new QLabel();
    lbltitle->setAlignment(Qt::AlignHCenter | Qt::AlignBottom);

    QLabel* lblteam = new QLabel(tr("Team"));
    QLabel* lblcampaign = new QLabel(tr("Campaign"));
    QLabel* lblmission = new QLabel(tr("Mission"));

    CBTeam = new QComboBox(this);
    CBMission = new QComboBox(this);
    CBCampaign = new QComboBox(this);
    CBTeam->setMaxVisibleItems(30);
    CBMission->setMaxVisibleItems(30);
    CBCampaign->setMaxVisibleItems(30);

    infoLayout->addWidget(btnPreview,0,1,2,1);
    infoLayout->addWidget(lbltitle,0,2,1,2);
    infoLayout->addWidget(lbldescription,1,2,1,2);

    pageLayout->addLayout(infoLayout, 0, 0, 2, 4);
    pageLayout->addWidget(lblteam, 2, 1);
    pageLayout->addWidget(lblcampaign, 3, 1);
    pageLayout->addWidget(lblmission, 4, 1);
    pageLayout->addWidget(CBTeam, 2, 2);
    pageLayout->addWidget(CBCampaign, 3, 2);
    pageLayout->addWidget(CBMission, 4, 2);


    return pageLayout;
}

QLayout * PageCampaign::footerLayoutDefinition()
{
    QHBoxLayout * footerLayout = new QHBoxLayout();

    const QIcon& lp = QIcon(":/res/Start.png");
    QSize sz = lp.actualSize(QSize(65535, 65535));
    BtnStartCampaign = new QPushButton();
    BtnStartCampaign->setWhatsThis(tr("Start fighting"));
    BtnStartCampaign->setStyleSheet("padding: 5px 10px");
    BtnStartCampaign->setText(QPushButton::tr("Start"));
    BtnStartCampaign->setMinimumWidth(sz.width() + 60);
    BtnStartCampaign->setIcon(lp);
    BtnStartCampaign->setFixedHeight(50);
    BtnStartCampaign->setIconSize(sz);
    BtnStartCampaign->setFlat(true);
    BtnStartCampaign->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);

    footerLayout->addStretch();
    footerLayout->addWidget(BtnStartCampaign);

    return footerLayout;
}

PageCampaign::PageCampaign(QWidget* parent) : AbstractPage(parent)
{
    initPage();
}