1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
package CannonField;
use strict;
use warnings;
use QtCore4;
use QtGui4;
use QtCore4::isa qw(Qt::Widget);
use QtCore4::slots setAngle => ['int'],
setForce => ['int'],
shoot => [],
newTarget => [],
moveShot => [];
use QtCore4::signals hit => [],
missed => [],
angleChanged => ['int'],
forceChanged => ['int'];
sub NEW {
shift->SUPER::NEW(@_);
this->{currentAngle} = 45;
this->{currentForce} = 0;
this->{timerCount} = 0;
my $autoShootTimer = Qt::Timer(this);
this->{autoShootTimer} = $autoShootTimer;
this->connect( $autoShootTimer, SIGNAL 'timeout()', this, SLOT 'moveShot()' );
this->{shootAngle} = 0;
this->{shootForce} = 0;
this->{target} = Qt::Point(0, 0);
this->setPalette(Qt::Palette(Qt::Color(250,250,200)));
this->setAutoFillBackground(1);
this->{firstTime} = 1;
newTarget();
}
sub setAngle {
my ( $angle ) = @_;
if ($angle < 5) {
$angle = 5;
}
if ($angle > 70) {
$angle = 70;
}
if (this->{currentAngle} == $angle) {
return;
}
this->{currentAngle} = $angle;
this->update(this->cannonRect());
emit angleChanged( this->{currentAngle} );
}
sub setForce {
my ( $force ) = @_;
if ($force < 0) {
$force = 0;
}
if (this->{currentForce} == $force) {
return;
}
this->{currentForce} = $force;
emit forceChanged( this->{currentForce} );
}
sub shoot {
my $autoShootTimer = this->{autoShootTimer};
if ($autoShootTimer->isActive()) {
return;
}
this->{timerCount} = 0;
this->{shootAngle} = this->{currentAngle};
this->{shootForce} = this->{currentForce};
$autoShootTimer->start(5);
}
sub newTarget {
if (this->{firstTime}) {
this->{firstTime} = 0;
srand (time ^ $$ ^ unpack "%L*", `ps axww | gzip -f`);
}
# 2147483647 is the value of RAND_MAX, defined in stdlib.h, at least on my machine.
# See the Qt4 4.2 documentation on qrand() for more details.
this->{target} = Qt::Point( 150 + rand(2147483647) % 190, 10 + rand(2147483647) % 255);
this->update();
}
sub moveShot {
my $region = shotRect();
this->{timerCount}++;
my $shotR = shotRect();
if ($shotR->intersects(targetRect())) {
this->{autoShootTimer}->stop();
emit hit();
}
elsif ($shotR->x() > this->width() || $shotR->y() > this->height()) {
this->{autoShootTimer}->stop();
emit missed();
}
else {
$region = $region->unite($shotR);
}
this->update($region);
}
my $barrelRect = Qt::Rect(30, -5, 20, 10);
sub paintEvent {
my $painter = Qt::Painter(this);
if (this->{autoShootTimer}->isActive()){
paintShot($painter);
}
paintTarget($painter);
paintCannon($painter);
$painter->end();
}
sub paintShot {
my( $painter ) = @_;
$painter->setPen(Qt::NoPen());
$painter->setBrush(Qt::Brush(Qt::black()));
$painter->drawRect(shotRect());
}
sub paintTarget {
my( $painter ) = @_;
$painter->setPen(Qt::Color(0, 0, 0));
$painter->setBrush(Qt::Brush(Qt::red()));
$painter->drawRect(targetRect());
}
sub paintCannon {
my( $painter ) = @_;
$painter->setPen(Qt::NoPen());
$painter->setBrush(Qt::Brush(Qt::blue()));
$painter->translate(0, this->rect()->height());
$painter->drawPie(Qt::Rect(-35, -35, 70, 70), 0, 90 * 16);
$painter->rotate(-(this->{currentAngle}));
$painter->drawRect($barrelRect);
}
sub cannonRect {
my $result = Qt::Rect(0, 0, 50, 50);
$result->moveBottomLeft(this->rect()->bottomLeft());
return $result;
}
sub shotRect {
my $gravity = 4;
my $time = this->{timerCount} / 20.0;
my $velocity = this->{shootForce};
my $radians = this->{shootAngle} * 3.14159265 / 180;
my $velx = $velocity * cos($radians);
my $vely = $velocity * sin($radians);
my $x0 = ($barrelRect->right() + 5) * cos($radians);
my $y0 = ($barrelRect->right() + 5) * sin($radians);
my $x = $x0 + $velx * $time;
my $y = $y0 + $vely * $time - 0.5 * $gravity * $time * $time;
$x = int($x + .5);
$y = int($y + .5);
my $result = Qt::Rect(0, 0, 6, 6);
$result->moveCenter(Qt::Point( $x, this->height() - 1 - $y ));
return $result;
}
sub targetRect {
my $result = Qt::Rect(0, 0, 20, 10);
my $target = this->{target};
$result->moveCenter(Qt::Point($target->x(), this->height() - 1 - $target->y()));
return $result;
}
1;
|