-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sprite.java
46 lines (42 loc) · 1.52 KB
/
Sprite.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
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Rectangle;
abstract class Sprite {
/*
* @_img - ����������� �������
* @_pf - ������� ����
* @_pos - ������� � ������� �������
* @_isDead - ��������� - "�����", "���"
* ������� ������ ��������� � �������� ����
*/
protected Image _img;
protected PlayField _pf;
protected Rectangle _pos;
protected boolean _isDead;
public Sprite(PlayField pf, Image img, Rectangle pos) {
_pos = pos;
_img = img;
_pf = pf;
}
public void draw(Graphics g) {
g.drawImage(_img, _pos.x, _pos.y, _pf);
}
/* �������� �� ������� ��������. */
public boolean testCollision(Sprite s) {
if (s != this)
return _pos.intersects(s.getBounds());
return false;
}
/* ����� �������������� ������������� �������. */
public Rectangle getBounds() {
return _pos;
}
/* ����� ��� ���. */
public boolean isDead() {
return _isDead;
}
/* �������� ��������� �������. */
abstract public void update();
/* ��������� ���������� � ������. */
abstract public void hitBy(Puck p);
}