summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/TileEntityPiston.java
blob: b0e0465b7b89d67344cabf8b831a97a8ff36978e (plain)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package net.minecraft.server;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

public class TileEntityPiston extends TileEntity {

    private int a;
    private int b;
    private int c;
    private boolean d;
    private boolean e;
    private float f;
    private float g;
    private static List h = new ArrayList();

    public TileEntityPiston() {}

    public TileEntityPiston(int i, int j, int k, boolean flag, boolean flag1) {
        this.a = i;
        this.b = j;
        this.c = k;
        this.d = flag;
        this.e = flag1;
    }

    public int c() {
        return this.a;
    }

    public int k() {
        return this.b;
    }

    public boolean e() {
        return this.d;
    }

    public int f() {
        return this.c;
    }

    public float a(float f) {
        if (f > 1.0F) {
            f = 1.0F;
        }

        return this.g + (this.f - this.g) * f;
    }

    private void a(float f, float f1) {
        if (!this.d) {
            --f;
        } else {
            f = 1.0F - f;
        }

        AxisAlignedBB axisalignedbb = Block.PISTON_MOVING.b(this.world, this.x, this.y, this.z, this.a, f, this.c);

        if (axisalignedbb != null) {
            List list = this.world.getEntities((Entity) null, axisalignedbb);

            if (!list.isEmpty()) {
                h.addAll(list);
                Iterator iterator = h.iterator();

                while (iterator.hasNext()) {
                    Entity entity = (Entity) iterator.next();

                    entity.move((double) (f1 * (float) Facing.b[this.c]), (double) (f1 * (float) Facing.c[this.c]), (double) (f1 * (float) Facing.d[this.c]));
                }

                h.clear();
            }
        }
    }

    public void g() {
        if (this.g < 1.0F && this.world != null) {
            this.g = this.f = 1.0F;
            this.world.q(this.x, this.y, this.z);
            this.j();
            if (this.world.getTypeId(this.x, this.y, this.z) == Block.PISTON_MOVING.id) {
                this.world.setTypeIdAndData(this.x, this.y, this.z, this.a, this.b);
            }
        }
    }

    public void q_() {
        if (this.world == null) return; // CraftBukkit

        this.g = this.f;
        if (this.g >= 1.0F) {
            this.a(1.0F, 0.25F);
            this.world.q(this.x, this.y, this.z);
            this.j();
            if (this.world.getTypeId(this.x, this.y, this.z) == Block.PISTON_MOVING.id) {
                this.world.setTypeIdAndData(this.x, this.y, this.z, this.a, this.b);
            }
        } else {
            this.f += 0.5F;
            if (this.f >= 1.0F) {
                this.f = 1.0F;
            }

            if (this.d) {
                this.a(this.f, this.f - this.g + 0.0625F);
            }
        }
    }

    public void a(NBTTagCompound nbttagcompound) {
        super.a(nbttagcompound);
        this.a = nbttagcompound.getInt("blockId");
        this.b = nbttagcompound.getInt("blockData");
        this.c = nbttagcompound.getInt("facing");
        this.g = this.f = nbttagcompound.getFloat("progress");
        this.d = nbttagcompound.getBoolean("extending");
    }

    public void b(NBTTagCompound nbttagcompound) {
        super.b(nbttagcompound);
        nbttagcompound.setInt("blockId", this.a);
        nbttagcompound.setInt("blockData", this.b);
        nbttagcompound.setInt("facing", this.c);
        nbttagcompound.setFloat("progress", this.g);
        nbttagcompound.setBoolean("extending", this.d);
    }
}