QTfrontend/hedgehogerWidget.cpp
author unc0rr
Thu, 05 Oct 2006 16:33:18 +0000
changeset 183 57c2ef19f719
parent 153 dc10da2a73f9
child 184 f97a7a3dc8f6
permissions -rw-r--r--
Relicense to GPL
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
153
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     1
/*
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     2
 * Hedgewars, a worms-like game
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     3
 * Copyright (c) 2006 Ulyanov Igor <iulyanov@gmail.com>
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 153
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 153
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 153
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
153
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 153
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 153
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 153
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 153
diff changeset
    12
 * GNU General Public License for more details.
153
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 153
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 153
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 153
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
153
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
    17
 */
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
    18
133
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    19
#include "hedgehogerWidget.h"
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    20
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    21
#include <QMouseEvent>
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    22
#include <QPainter>
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    23
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    24
#include "frameTeam.h"
147
52a3c431db8a maximum number of teams and hedgehogs
displacer
parents: 140
diff changeset
    25
133
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    26
CHedgehogerWidget::CHedgehogerWidget(QWidget * parent) :
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    27
  QWidget(parent)
133
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    28
{
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    29
  if(parent) {
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    30
    pOurFrameTeams=dynamic_cast<FrameTeams*>(parent->parentWidget());
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    31
  }
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    32
  if(pOurFrameTeams->overallHedgehogs+4>pOurFrameTeams->maxHedgehogsPerGame) {
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    33
    numHedgehogs=pOurFrameTeams->maxHedgehogsPerGame-pOurFrameTeams->overallHedgehogs;
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    34
  } else numHedgehogs=4;
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    35
  pOurFrameTeams->overallHedgehogs+=numHedgehogs;
147
52a3c431db8a maximum number of teams and hedgehogs
displacer
parents: 140
diff changeset
    36
}
52a3c431db8a maximum number of teams and hedgehogs
displacer
parents: 140
diff changeset
    37
52a3c431db8a maximum number of teams and hedgehogs
displacer
parents: 140
diff changeset
    38
CHedgehogerWidget::~CHedgehogerWidget()
52a3c431db8a maximum number of teams and hedgehogs
displacer
parents: 140
diff changeset
    39
{
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    40
  pOurFrameTeams->overallHedgehogs-=numHedgehogs;
133
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    41
}
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    42
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    43
void CHedgehogerWidget::mousePressEvent ( QMouseEvent * event )
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    44
{
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    45
  if(event->button()==Qt::LeftButton) {
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    46
    event->accept();
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    47
    if(numHedgehogs < 8 && pOurFrameTeams->overallHedgehogs<18) {
147
52a3c431db8a maximum number of teams and hedgehogs
displacer
parents: 140
diff changeset
    48
      numHedgehogs++;
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    49
      pOurFrameTeams->overallHedgehogs++;
147
52a3c431db8a maximum number of teams and hedgehogs
displacer
parents: 140
diff changeset
    50
    }
133
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    51
  } else if (event->button()==Qt::RightButton) {
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    52
    event->accept();
147
52a3c431db8a maximum number of teams and hedgehogs
displacer
parents: 140
diff changeset
    53
    if(numHedgehogs > 3) {
52a3c431db8a maximum number of teams and hedgehogs
displacer
parents: 140
diff changeset
    54
      numHedgehogs--;
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 147
diff changeset
    55
      pOurFrameTeams->overallHedgehogs--;
147
52a3c431db8a maximum number of teams and hedgehogs
displacer
parents: 140
diff changeset
    56
    }
133
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    57
  } else {
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    58
    event->ignore();
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    59
    return;
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    60
  }
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    61
  repaint();
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    62
}
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    63
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    64
void CHedgehogerWidget::paintEvent(QPaintEvent* event)
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    65
{
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    66
  QImage image(":/res/hh25x25.png");
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    67
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    68
  QPainter painter(this);
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    69
140
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 134
diff changeset
    70
  for(int i=0; i<numHedgehogs; i++) {
133
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    71
    QRect target(11 * i, i % 2, 25, 25);
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    72
    painter.drawImage(target, image);
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    73
  }
c79cb5e5b24a - Multiplayer game start button
unc0rr
parents: 132
diff changeset
    74
}
140
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 134
diff changeset
    75
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 134
diff changeset
    76
unsigned char CHedgehogerWidget::getHedgehogsNum()
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 134
diff changeset
    77
{
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 134
diff changeset
    78
  return numHedgehogs;
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 134
diff changeset
    79
}