summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/BlockRedstoneOre.java
blob: 0cd2e04efcf16bcfc6ae6e36a6e267a377e3c358 (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package net.minecraft.server;

import java.util.Random;

// CraftBukkit start
import org.bukkit.craftbukkit.event.CraftEventFactory;
import org.bukkit.event.entity.EntityInteractEvent;
// CraftBukkit end

public class BlockRedstoneOre extends Block {

    private boolean a;

    public BlockRedstoneOre(boolean flag) {
        super(Material.STONE);
        if (flag) {
            this.a(true);
        }

        this.a = flag;
    }

    public int a(World world) {
        return 30;
    }

    public void attack(World world, int i, int j, int k, EntityHuman entityhuman) {
        this.e(world, i, j, k, entityhuman); // CraftBukkit - add entityhuman
        super.attack(world, i, j, k, entityhuman);
    }

    public void b(World world, int i, int j, int k, Entity entity) {
        // CraftBukkit start
        if (entity instanceof EntityHuman) {
            org.bukkit.event.player.PlayerInteractEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerInteractEvent((EntityHuman) entity, org.bukkit.event.block.Action.PHYSICAL, i, j, k, -1, null);
            if (!event.isCancelled()) {
                this.e(world, i, j, k, entity); // add entity
                super.b(world, i, j, k, entity);
            }
        } else {
            EntityInteractEvent event = new EntityInteractEvent(entity.getBukkitEntity(), world.getWorld().getBlockAt(i, j, k));
            world.getServer().getPluginManager().callEvent(event);
            if (!event.isCancelled()) {
                this.e(world, i, j, k, entity); // add entity
                super.b(world, i, j, k, entity);
            }
        }
        // CraftBukkit end
    }

    public boolean interact(World world, int i, int j, int k, EntityHuman entityhuman, int l, float f, float f1, float f2) {
        this.e(world, i, j, k, entityhuman); // CraftBukkit - add entityhuman
        return super.interact(world, i, j, k, entityhuman, l, f, f1, f2);
    }

    private void e(World world, int i, int j, int k, Entity entity) { // CraftBukkit - add Entity
        this.m(world, i, j, k);
        if (this == Blocks.REDSTONE_ORE) {
            // CraftBukkit start
            if (CraftEventFactory.callEntityChangeBlockEvent(entity, i, j, k, Blocks.GLOWING_REDSTONE_ORE, 0).isCancelled()) {
                return;
            }
            // CraftBukkit end
            world.setTypeUpdate(i, j, k, Blocks.GLOWING_REDSTONE_ORE);
        }
    }

    public void a(World world, int i, int j, int k, Random random) {
        if (this == Blocks.GLOWING_REDSTONE_ORE) {
            // CraftBukkit start
            if (CraftEventFactory.callBlockFadeEvent(world.getWorld().getBlockAt(i, j, k), Blocks.REDSTONE_ORE).isCancelled()) {
                return;
            }
            // CraftBukkit end
            world.setTypeUpdate(i, j, k, Blocks.REDSTONE_ORE);
        }
    }

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

    public int getDropCount(int i, Random random) {
        return this.a(random) + random.nextInt(i + 1);
    }

    public int a(Random random) {
        return 4 + random.nextInt(2);
    }

    public void dropNaturally(World world, int i, int j, int k, int l, float f, int i1) {
        super.dropNaturally(world, i, j, k, l, f, i1);
        /* CraftBukkit start - Delegated to getExpDrop
        if (this.getDropType(l, world.random, i1) != Item.getItemOf(this)) {
            int j1 = 1 + world.random.nextInt(5);

            this.dropExperience(world, i, j, k, j1);
        }
        // */
    }

    public int getExpDrop(World world, int l, int i1) {
        if (this.getDropType(l, world.random, i1) != Item.getItemOf(this)) {
            int j1 = 1 + world.random.nextInt(5);

            return j1;
        }

        return 0;
        // CraftBukkit end
    }

    private void m(World world, int i, int j, int k) {
        Random random = world.random;
        double d0 = 0.0625D;

        for (int l = 0; l < 6; ++l) {
            double d1 = (double) ((float) i + random.nextFloat());
            double d2 = (double) ((float) j + random.nextFloat());
            double d3 = (double) ((float) k + random.nextFloat());

            if (l == 0 && !world.getType(i, j + 1, k).c()) {
                d2 = (double) (j + 1) + d0;
            }

            if (l == 1 && !world.getType(i, j - 1, k).c()) {
                d2 = (double) (j + 0) - d0;
            }

            if (l == 2 && !world.getType(i, j, k + 1).c()) {
                d3 = (double) (k + 1) + d0;
            }

            if (l == 3 && !world.getType(i, j, k - 1).c()) {
                d3 = (double) (k + 0) - d0;
            }

            if (l == 4 && !world.getType(i + 1, j, k).c()) {
                d1 = (double) (i + 1) + d0;
            }

            if (l == 5 && !world.getType(i - 1, j, k).c()) {
                d1 = (double) (i + 0) - d0;
            }

            if (d1 < (double) i || d1 > (double) (i + 1) || d2 < 0.0D || d2 > (double) (j + 1) || d3 < (double) k || d3 > (double) (k + 1)) {
                world.addParticle("reddust", d1, d2, d3, 0.0D, 0.0D, 0.0D);
            }
        }
    }

    protected ItemStack j(int i) {
        return new ItemStack(Blocks.REDSTONE_ORE);
    }
}