3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-18 14:00:05 +01:00
Paper/src/main/java/net/minecraft/server/EntityFallingBlock.java

91 Zeilen
2.8 KiB
Java

2011-09-26 09:07:06 +02:00
package net.minecraft.server;
public class EntityFallingBlock extends Entity {
2011-09-26 09:07:06 +02:00
public int a;
public int data; // CraftBukkit
public int b = 0;
public EntityFallingBlock(World world) {
2011-09-26 09:07:06 +02:00
super(world);
}
2012-01-12 12:02:39 +01:00
// CraftBukkit - changed method signature
public EntityFallingBlock(World world, double d0, double d1, double d2, int i, int data) {
2011-09-26 09:07:06 +02:00
super(world);
this.a = i;
2011-11-20 09:01:14 +01:00
this.bc = true;
this.data = data; // CraftBukkit
2011-09-26 09:07:06 +02:00
this.b(0.98F, 0.98F);
this.height = this.length / 2.0F;
2011-09-26 09:07:06 +02:00
this.setPosition(d0, d1, d2);
this.motX = 0.0D;
this.motY = 0.0D;
this.motZ = 0.0D;
this.lastX = d0;
this.lastY = d1;
this.lastZ = d2;
}
2011-11-20 09:01:14 +01:00
protected boolean g_() {
2011-09-26 09:07:06 +02:00
return false;
}
protected void b() {}
2011-11-20 09:01:14 +01:00
public boolean e_() {
2011-09-26 09:07:06 +02:00
return !this.dead;
}
2011-11-20 09:01:14 +01:00
public void w_() {
2011-09-26 09:07:06 +02:00
if (this.a == 0) {
this.die();
} else {
this.lastX = this.locX;
this.lastY = this.locY;
this.lastZ = this.locZ;
++this.b;
this.motY -= 0.03999999910593033D;
this.move(this.motX, this.motY, this.motZ);
this.motX *= 0.9800000190734863D;
this.motY *= 0.9800000190734863D;
this.motZ *= 0.9800000190734863D;
int i = MathHelper.floor(this.locX);
int j = MathHelper.floor(this.locY);
int k = MathHelper.floor(this.locZ);
2011-11-20 09:01:14 +01:00
if (this.b == 1 && this.world.getTypeId(i, j, k) == this.a) {
2011-09-26 09:07:06 +02:00
this.world.setTypeId(i, j, k, 0);
2011-11-20 09:01:14 +01:00
} else if (!this.world.isStatic && this.b == 1) {
this.die();
2011-09-26 09:07:06 +02:00
}
if (this.onGround) {
this.motX *= 0.699999988079071D;
this.motZ *= 0.699999988079071D;
this.motY *= -0.5D;
2011-11-20 09:01:14 +01:00
if (this.world.getTypeId(i, j, k) != Block.PISTON_MOVING.id) {
this.die();
2012-01-12 12:02:39 +01:00
// CraftBukkit - setTypeId => setTypeIdAndData
2011-11-20 09:01:14 +01:00
if ((!this.world.a(this.a, i, j, k, true, 1) || BlockSand.g(this.world, i, j - 1, k) || !this.world.setTypeIdAndData(i, j, k, this.a, this.data)) && !this.world.isStatic) {
this.b(this.a, 1);
}
2011-09-26 09:07:06 +02:00
}
} else if (this.b > 100 && !this.world.isStatic) {
this.b(this.a, 1);
this.die();
}
}
}
protected void b(NBTTagCompound nbttagcompound) {
nbttagcompound.setByte("Tile", (byte) this.a);
nbttagcompound.setByte("Data", (byte) this.data); // CraftBukkit
2011-09-26 09:07:06 +02:00
}
protected void a(NBTTagCompound nbttagcompound) {
this.a = nbttagcompound.getByte("Tile") & 255;
this.data = nbttagcompound.getByte("Data") & 15; // CraftBukkit
2011-09-26 09:07:06 +02:00
}
}