aboutsummaryrefslogtreecommitdiffstats
path: root/src/ru/olamedia/player/Player.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ru/olamedia/player/Player.java')
-rw-r--r--src/ru/olamedia/player/Player.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/ru/olamedia/player/Player.java b/src/ru/olamedia/player/Player.java
new file mode 100644
index 0000000..08811b5
--- /dev/null
+++ b/src/ru/olamedia/player/Player.java
@@ -0,0 +1,31 @@
+package ru.olamedia.player;
+
+import ru.olamedia.liveEntity.LiveEntity;
+import ru.olamedia.olacraft.game.Game;
+import ru.olamedia.olacraft.network.packet.LiveEntityLocationUpdatePacket;
+import ru.olamedia.olacraft.weapon.Bullet;
+
+public class Player extends LiveEntity {
+
+ @Override
+ public void notifyLocationUpdate() {
+ LiveEntityLocationUpdatePacket p = new LiveEntityLocationUpdatePacket();
+ p.x = getX();
+ p.y = getY();
+ p.z = getZ();
+ Game.client.send(p);
+ }
+
+ public Player() {
+
+ }
+
+ public void onMouseClick() {
+ Bullet b = new Bullet();
+ b.velocity.set(Game.instance.camera.getLook());
+ b.velocity.negate();
+ b.velocity.scale(100);
+ b.location.set(getX(), getCameraY(), getZ());
+ Game.client.getScene().addBullet(b);
+ }
+}