summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/BlockSign.java
blob: 2d57b776e47f709ed3919b940228df990a0434cd (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
package net.minecraft.server;

import java.util.Random;

import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit

public class BlockSign extends BlockContainer {

    private Class a;
    private boolean b;

    protected BlockSign(int i, Class oclass, boolean flag) {
        super(i, Material.WOOD);
        this.b = flag;
        this.textureId = 4;
        this.a = oclass;
        float f = 0.25F;
        float f1 = 1.0F;

        this.a(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f1, 0.5F + f);
    }

    public AxisAlignedBB e(World world, int i, int j, int k) {
        return null;
    }

    public void updateShape(IBlockAccess iblockaccess, int i, int j, int k) {
        if (!this.b) {
            int l = iblockaccess.getData(i, j, k);
            float f = 0.28125F;
            float f1 = 0.78125F;
            float f2 = 0.0F;
            float f3 = 1.0F;
            float f4 = 0.125F;

            this.a(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
            if (l == 2) {
                this.a(f2, f, 1.0F - f4, f3, f1, 1.0F);
            }

            if (l == 3) {
                this.a(f2, f, 0.0F, f3, f1, f4);
            }

            if (l == 4) {
                this.a(1.0F - f4, f, f2, 1.0F, f1, f3);
            }

            if (l == 5) {
                this.a(0.0F, f, f2, f4, f1, f3);
            }
        }
    }

    public int c() {
        return -1;
    }

    public boolean b() {
        return false;
    }

    public boolean b(IBlockAccess iblockaccess, int i, int j, int k) {
        return true;
    }

    public boolean a() {
        return false;
    }

    public TileEntity a_() {
        try {
            return (TileEntity) this.a.newInstance();
        } catch (Exception exception) {
            throw new RuntimeException(exception);
        }
    }

    public int getDropType(int i, Random random, int j) {
        return Item.SIGN.id;
    }

    public void doPhysics(World world, int i, int j, int k, int l) {
        boolean flag = false;

        if (this.b) {
            if (!world.getMaterial(i, j - 1, k).isBuildable()) {
                flag = true;
            }
        } else {
            int i1 = world.getData(i, j, k);

            flag = true;
            if (i1 == 2 && world.getMaterial(i, j, k + 1).isBuildable()) {
                flag = false;
            }

            if (i1 == 3 && world.getMaterial(i, j, k - 1).isBuildable()) {
                flag = false;
            }

            if (i1 == 4 && world.getMaterial(i + 1, j, k).isBuildable()) {
                flag = false;
            }

            if (i1 == 5 && world.getMaterial(i - 1, j, k).isBuildable()) {
                flag = false;
            }
        }

        if (flag) {
            this.b(world, i, j, k, world.getData(i, j, k), 0);
            world.setTypeId(i, j, k, 0);
        }

        super.doPhysics(world, i, j, k, l);

        // CraftBukkit start
        if (net.minecraft.server.Block.byId[l] != null && net.minecraft.server.Block.byId[l].isPowerSource()) {
            org.bukkit.block.Block block = world.getWorld().getBlockAt(i, j, k);
            int power = block.getBlockPower();

            BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, power, power);
            world.getServer().getPluginManager().callEvent(eventRedstone);
        }
        // CraftBukkit end
    }
}