-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlien.java
173 lines (152 loc) · 4.22 KB
/
Alien.java
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
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Point;
import java.awt.Rectangle;
import javax.swing.ImageIcon;
/**
* エイリアンクラス
*
* @author mori
*
*/
public class Alien {
// エイリアンの移動範囲
private static final int MOVE_WIDTH = 200;
// エイリアンの墓(画面に表示されない場所)
private static final Point TOMB = new Point(-50, -50);
// 移動スピード
private int speed;
// エイリアンの位置(x座標)
private int x;
// エイリアンの位置(y座標)
private int y;
// エイリアンの幅
private int width;
// エイリアンの高さ
private int height;
// エイリアンの画像
private Image image;
// エイリアンの移動範囲
private int left;
private int right;
// エイリアンが生きてるかどうか
private boolean isAlive;
// メインパネルへの参照
private MainPanel panel;
// コンストラクタ
public Alien(int x, int y, int speed, MainPanel panel) {
this.x = x;
this.y = y;
this.speed = speed;
this.panel = panel;
// エイリアンの初期位置から移動範囲を求める
left = x;
right = x + MOVE_WIDTH;
isAlive = true;
// イメージをロード
loadImage();
}
/**
* エイリアンを移動する
*
*/
public void move() {
x += speed;
// 移動範囲を超えていたら反転移動
if (x < left) {
speed = -speed;
}
if (x > right) {
speed = -speed;
}
}
/**
* エイリアンと弾の衝突を判定する
*
* @param shot 衝突しているか調べる弾オブジェクト
* @return 衝突していたらtrueを返す
*/
public boolean collideWith(Shot shot) {
// エイリアンの矩形を求める
Rectangle rectAlien = new Rectangle(x, y, width, height);
// 弾の矩形を求める
Point pos = shot.getPos();
Rectangle rectShot = new Rectangle(pos.x, pos.y,
shot.getWidth(), shot.getHeight());
// 矩形同士が重なっているか調べる
// 重なっていたら衝突している
return rectAlien.intersects(rectShot);
}
/**
* エイリアンが死ぬ、墓へ移動
*
*/
public void die() {
setPos(TOMB.x, TOMB.y);
isAlive = false;
}
/**
* エイリアンの幅を返す
*
* @param width エイリアンの幅
*/
public int getWidth() {
return width;
}
/**
* エイリアンの高さを返す
*
* @return height エイリアンの高さ
*/
public int getHeight() {
return height;
}
/**
* エイリアンの位置を返す
*
* @return エイリアンの位置座標
*/
public Point getPos() {
return new Point(x, y);
}
/**
* エイリアンの位置を(x,y)にセットする
*
* @param x 移動先のx座標
* @param y 移動先のy座標
*/
public void setPos(int x, int y) {
this.x = x;
this.y = y;
}
/**
* エイリアンが生きているか
*
* @return 生きていたらtrueを返す
*/
public boolean isAlive() {
return isAlive;
}
/**
* エイリアンを描画する
*
* @param g 描画オブジェクト
*/
public void draw(Graphics g) {
g.drawImage(image, x, y, null);
}
/**
* イメージをロードする
*
*/
private void loadImage() {
// エイリアンのイメージを読み込む
// ImageIconを使うとMediaTrackerを使わなくてすむ
ImageIcon icon = new ImageIcon(getClass()
.getResource("image/alien.gif"));
image = icon.getImage();
// 幅と高さをセット
width = image.getWidth(panel);
height = image.getHeight(panel);
}
}