|
@@ -3,11 +3,16 @@ package me.hammerle.snuviengine.game;
|
|
|
import java.util.List;
|
|
|
import me.hammerle.snuviengine.api.Shader;
|
|
|
import me.hammerle.snuviengine.game.BoxList.Node;
|
|
|
+import me.hammerle.snuviengine.util.Face;
|
|
|
|
|
|
public class Entity
|
|
|
{
|
|
|
+ private static final double STEP = 0.0625;
|
|
|
+
|
|
|
public Game game;
|
|
|
|
|
|
+ public double lastXPos;
|
|
|
+ public double lastYPos;
|
|
|
public double xPos;
|
|
|
public double yPos;
|
|
|
public double width;
|
|
@@ -28,8 +33,8 @@ public class Entity
|
|
|
this.width = width;
|
|
|
this.height = height;
|
|
|
|
|
|
- vx = Math.random() * 4 - 2;
|
|
|
- vy = Math.random() * 4 - 2;
|
|
|
+ vx = Math.random() * 8 + 5;
|
|
|
+ vy = Math.random() * 8 + 5;
|
|
|
}
|
|
|
|
|
|
private boolean isColliding(Entity ent)
|
|
@@ -46,41 +51,46 @@ public class Entity
|
|
|
|
|
|
public void tick()
|
|
|
{
|
|
|
- counter++;
|
|
|
- if(counter == 200)
|
|
|
+ if(!(this instanceof Hero))
|
|
|
{
|
|
|
- counter = 0;
|
|
|
- vx = Math.random() * 4 - 2;
|
|
|
- vy = Math.random() * 4 - 2;
|
|
|
+ if(xPos < STEP)
|
|
|
+ {
|
|
|
+ vx = Math.abs(vx);
|
|
|
+ }
|
|
|
+ if(xPos + width > 400 - STEP)
|
|
|
+ {
|
|
|
+ vx = -Math.abs(vx);
|
|
|
+ }
|
|
|
+ if(yPos < STEP)
|
|
|
+ {
|
|
|
+ vy = Math.abs(vx);
|
|
|
+ }
|
|
|
+ if(yPos + height > 300 - STEP)
|
|
|
+ {
|
|
|
+ vy = -Math.abs(vx);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
+ lastXPos = xPos;
|
|
|
+ lastYPos = yPos;
|
|
|
+
|
|
|
if(vx == 0.0 && vy == 0.0)
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- double step = 0.0625;
|
|
|
double lvx = vx;
|
|
|
double lvy = vy;
|
|
|
|
|
|
List<Entity> list = game.entities.getAllEntitiesAt(this,
|
|
|
- xPos + ((vx < 0) ? vx : 0),
|
|
|
- yPos + ((vy < 0) ? vy : 0),
|
|
|
- xPos + width + ((vx > 0) ? vx : 0),
|
|
|
- yPos + height + ((vy > 0) ? vy : 0));
|
|
|
+ xPos - STEP + ((vx < 0) ? vx : 0),
|
|
|
+ yPos - STEP + ((vy < 0) ? vy : 0),
|
|
|
+ xPos + STEP + width + ((vx > 0) ? vx : 0),
|
|
|
+ yPos + STEP + height + ((vy > 0) ? vy : 0));
|
|
|
if(list.isEmpty())
|
|
|
{
|
|
|
- xPos += vx;
|
|
|
- if(xPos < 0 || xPos > 400)
|
|
|
- {
|
|
|
- xPos -= vx;
|
|
|
- }
|
|
|
-
|
|
|
- yPos += vy;
|
|
|
- if(yPos < 0 || yPos > 300)
|
|
|
- {
|
|
|
- yPos -= vy;
|
|
|
- }
|
|
|
+ xPos = Math.max(Math.min(vx + xPos, 400), 0);
|
|
|
+ yPos = Math.max(Math.min(vy + yPos, 300), 0);
|
|
|
|
|
|
game.entities.update(this);
|
|
|
return;
|
|
@@ -93,28 +103,28 @@ public class Entity
|
|
|
|
|
|
if(lvx < 0.0)
|
|
|
{
|
|
|
- if(lvx > -step)
|
|
|
+ if(lvx > -STEP)
|
|
|
{
|
|
|
xPos += lvx;
|
|
|
lvx = 0.0;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- xPos -= step;
|
|
|
- lvx += step;
|
|
|
+ xPos -= STEP;
|
|
|
+ lvx += STEP;
|
|
|
}
|
|
|
}
|
|
|
else if(lvx > 0.0)
|
|
|
{
|
|
|
- if(lvx < step)
|
|
|
+ if(lvx < STEP)
|
|
|
{
|
|
|
xPos += lvx;
|
|
|
lvx = 0.0;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- xPos += step;
|
|
|
- lvx -= step;
|
|
|
+ xPos += STEP;
|
|
|
+ lvx -= STEP;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -138,28 +148,28 @@ public class Entity
|
|
|
|
|
|
if(lvy < 0.0)
|
|
|
{
|
|
|
- if(lvy > -step)
|
|
|
+ if(lvy > -STEP)
|
|
|
{
|
|
|
yPos += lvy;
|
|
|
lvy = 0.0;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- yPos -= step;
|
|
|
- lvy += step;
|
|
|
+ yPos -= STEP;
|
|
|
+ lvy += STEP;
|
|
|
}
|
|
|
}
|
|
|
else if(lvy > 0.0)
|
|
|
{
|
|
|
- if(lvy < step)
|
|
|
+ if(lvy < STEP)
|
|
|
{
|
|
|
yPos += lvy;
|
|
|
lvy = 0.0;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- yPos += step;
|
|
|
- lvy -= step;
|
|
|
+ yPos += STEP;
|
|
|
+ lvy -= STEP;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -183,17 +193,43 @@ public class Entity
|
|
|
}
|
|
|
|
|
|
game.entities.update(this);
|
|
|
+
|
|
|
+ for(Face f : Face.values())
|
|
|
+ {
|
|
|
+ double minX = xPos + STEP * f.getOffsetX();
|
|
|
+ double minY = yPos + STEP * f.getOffsetY();
|
|
|
+ double maxX = minX + width;
|
|
|
+ double maxY = minY + height;
|
|
|
+ list.stream().filter(ent -> ent.isColliding(minX, minY, maxX, maxY))
|
|
|
+ .forEach(ent -> onCollide(f, ent));
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- public void renderTick()
|
|
|
+ public void onCollide(Face f, Entity ent)
|
|
|
+ {
|
|
|
+ switch(f)
|
|
|
+ {
|
|
|
+ case UP:
|
|
|
+ vy = Math.abs(vy);
|
|
|
+ break;
|
|
|
+ case DOWN:
|
|
|
+ vy = -Math.abs(vy);
|
|
|
+ break;
|
|
|
+ case LEFT:
|
|
|
+ vx = Math.abs(vx);
|
|
|
+ break;
|
|
|
+ case RIGHT:
|
|
|
+ vx = -Math.abs(vx);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void renderTick(float lag)
|
|
|
{
|
|
|
Shader.getColorRenderer().setDepth((float) yPos);
|
|
|
- Shader.getColorRenderer().drawRectangle(
|
|
|
- (float) xPos,
|
|
|
- (float) yPos,
|
|
|
- (float) (xPos + width),
|
|
|
- (float) (yPos + height),
|
|
|
- 0x770000FF);
|
|
|
+ float x = (float) (lastXPos + (xPos - lastXPos) * lag);
|
|
|
+ float y = (float) (lastYPos + (yPos - lastYPos) * lag);
|
|
|
+ Shader.getColorRenderer().drawRectangle(x, y, (float) (x + width), (float) (y + height), 0x770000FF);
|
|
|
}
|
|
|
|
|
|
public double getX()
|
|
@@ -211,10 +247,4 @@ public class Entity
|
|
|
xPos = x;
|
|
|
yPos = y;
|
|
|
}
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString()
|
|
|
- {
|
|
|
- return Integer.toHexString(hashCode());
|
|
|
- }
|
|
|
}
|