DEADSOFTWARE

One GameProc object for everything
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / objects / Drop.java
index d92b846250571521dfd33f3f85cd826a35f3f312..f541daa2090b2855ec4fc102262f5944a6d9a16c 100644 (file)
@@ -1,21 +1,62 @@
 package ru.deadsoftware.cavecraft.game.objects;
 
+import com.badlogic.gdx.math.Intersector;
 import com.badlogic.gdx.math.Rectangle;
 import com.badlogic.gdx.math.Vector2;
+import ru.deadsoftware.cavecraft.game.GameProc;
 
 import java.io.Serializable;
 
+import static ru.deadsoftware.cavecraft.GameScreen.GP;
+
 public class Drop implements Serializable {
+
     private int id;
     public boolean pickedUp = false;
-    public Vector2 move, position;
+    public Vector2 move, pos;
 
     public Drop(float x, float y, int id) {
         this.id = id;
-        position = new Vector2(x, y);
+        pos = new Vector2(x, y);
         move = new Vector2(0, -1);
     }
 
+    public int closeToPlayer() {
+        boolean c1 = Intersector.overlaps(new Rectangle(GP.player.pos.x - 16, GP.player.pos.y - 16, GP.player.getWidth() + 32, GP.player.getHeight() + 32), getRect());
+        boolean c2 = Intersector.overlaps(new Rectangle((GP.player.pos.x + GP.world.getWidthPx()) - 16, GP.player.pos.y - 16, GP.player.getWidth() + 32, GP.player.getHeight() + 32), getRect());
+        boolean c3 = Intersector.overlaps(new Rectangle((GP.player.pos.x - GP.world.getWidthPx()) - 16, GP.player.pos.y - 16, GP.player.getWidth() + 32, GP.player.getHeight() + 32), getRect());
+        if (c1) return 1;
+        if (c2) return 2;
+        if (c3) return 3;
+        return 0;
+    }
+
+    public void moveToPlayer() {
+        int ctp = closeToPlayer();
+        if (ctp > 0) {
+            float px = GP.player.pos.x;
+            float py = GP.player.pos.y;
+            switch (ctp) {
+                case 2:
+                    px += GP.world.getWidthPx();
+                    break;
+                case 3:
+                    px -= GP.world.getWidthPx();
+                    break;
+            }
+            float dx = 0, dy = 0;
+            if (px + GP.player.getWidth() < pos.x + 4) dx = -.5f;
+            else if (px > pos.x + 4) dx = .5f;
+            if (py + GP.player.getHeight() < pos.y + 4) dy = -.5f;
+            else if (py > pos.y + 4) dy = .5f;
+            move.add(dx, dy);
+            if (move.x > 2) move.x = 1;
+            if (move.x < -2) move.x = -1;
+            if (move.y > 2) move.y = 1;
+            if (move.y < -2) move.y = -1;
+        }
+    }
+
     public void pickUpDrop(Player pl) {
         for (int i = 0; i < pl.inv.length; i++) {
             if (pl.inv[i] == 0 || pl.inv[i] == id) {
@@ -31,7 +72,7 @@ public class Drop implements Serializable {
     }
 
     public Rectangle getRect() {
-        return new Rectangle(position.x, position.y, 8, 8);
+        return new Rectangle(pos.x, pos.y, 8, 8);
     }
 
 }