-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPointer.java
More file actions
82 lines (65 loc) · 1.7 KB
/
Pointer.java
File metadata and controls
82 lines (65 loc) · 1.7 KB
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
import java.awt.*;
class Pointer {
protected double xPos, yPos;
protected double speed = 20;
/**
* Objekt was sich bewegen kann
*/
private Camera camera;
private int mapSizeX, mapSizeY;
private GamePanel gamePanel;
public Pointer() {
}
/**
* Bestimmte Position
*/
public Pointer(GamePanel gp, int pXpos, int pYpos) {
gamePanel = gp;
xPos = pXpos;
yPos = pYpos;
}
public Pointer(GamePanel gp, Point cords) {
new Pointer(gp, (int) cords.getX(), (int) cords.getY());
}
public void setMove(int xMove, int yMove) {
xPos += xMove * speed;
yPos += yMove * speed;
}
public Point getLocation() {
return new Point((int) xPos, (int) yPos);
}
public int getxPos() {
return (int) xPos;
}
public int getyPos() {
return (int) yPos;
}
public void setLocation(int xPos, int yPos) {
this.xPos = xPos;
this.yPos = yPos;
if (camera != null) {
camera.centerOnObject(this);
}
}
public void setLocation(double xPos, double yPos) {
setLocation(Math.round(xPos), Math.round(yPos));
}
public Camera getCamera() {
return camera;
}
public void setCamera(Camera camera) {
mapSizeX = camera.getxSize();
mapSizeY = camera.getySize();
setLocation(mapSizeX * Tile.TILEWIDTH / 2, mapSizeY * Tile.TILEHEIGHT / 2);
this.camera = camera;
}
public void setSpeed(double speed) {
this.speed = speed;
}
public void setXPos(double xPos) {
this.xPos = xPos;
}
public void setYPos(double yPos) {
this.yPos = yPos;
}
}