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

import java.util.Random;

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

public class BlockDragonEgg extends Block {

    public BlockDragonEgg(int i, int j) {
        super(i, j, Material.DRAGON_EGG);
    }

    public void onPlace(World world, int i, int j, int k) {
        world.a(i, j, k, this.id, this.r_());
    }

    public void doPhysics(World world, int i, int j, int k, int l) {
        world.a(i, j, k, this.id, this.r_());
    }

    public void b(World world, int i, int j, int k, Random random) {
        this.l(world, i, j, k);
    }

    private void l(World world, int i, int j, int k) {
        if (BlockSand.canFall(world, i, j - 1, k) && j >= 0) {
            byte b0 = 32;

            if (!BlockSand.instaFall && world.d(i - b0, j - b0, k - b0, i + b0, j + b0, k + b0)) {
                // CraftBukkit - added data
                EntityFallingBlock entityfallingblock = new EntityFallingBlock(world, (double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), this.id, world.getData(i, j, k));

                world.addEntity(entityfallingblock);
            } else {
                world.setTypeId(i, j, k, 0);

                while (BlockSand.canFall(world, i, j - 1, k) && j > 0) {
                    --j;
                }

                if (j > 0) {
                    world.setTypeId(i, j, k, this.id);
                }
            }
        }
    }

    public boolean interact(World world, int i, int j, int k, EntityHuman entityhuman, int l, float f, float f1, float f2) {
        this.n(world, i, j, k);
        return true;
    }

    public void attack(World world, int i, int j, int k, EntityHuman entityhuman) {
        this.n(world, i, j, k);
    }

    private void n(World world, int i, int j, int k) {
        if (world.getTypeId(i, j, k) == this.id) {
            if (!world.isStatic) {
                for (int l = 0; l < 1000; ++l) {
                    int i1 = i + world.random.nextInt(16) - world.random.nextInt(16);
                    int j1 = j + world.random.nextInt(8) - world.random.nextInt(8);
                    int k1 = k + world.random.nextInt(16) - world.random.nextInt(16);

                    if (world.getTypeId(i1, j1, k1) == 0) {
                        // CraftBukkit start
                        org.bukkit.block.Block from = world.getWorld().getBlockAt(i, j, k);
                        org.bukkit.block.Block to = world.getWorld().getBlockAt(i1, j1, k1);
                        BlockFromToEvent event = new BlockFromToEvent(from, to);
                        org.bukkit.Bukkit.getPluginManager().callEvent(event);

                        if (event.isCancelled()) {
                            return;
                        }

                        i1 = event.getToBlock().getX();
                        j1 = event.getToBlock().getY();
                        k1 = event.getToBlock().getZ();
                        // CraftBukkit end

                        world.setTypeIdAndData(i1, j1, k1, this.id, world.getData(i, j, k));
                        world.setTypeId(i, j, k, 0);
                        short short1 = 128;

                        for (int l1 = 0; l1 < short1; ++l1) {
                            double d0 = world.random.nextDouble();
                            float f = (world.random.nextFloat() - 0.5F) * 0.2F;
                            float f1 = (world.random.nextFloat() - 0.5F) * 0.2F;
                            float f2 = (world.random.nextFloat() - 0.5F) * 0.2F;
                            double d1 = (double) i1 + (double) (i - i1) * d0 + (world.random.nextDouble() - 0.5D) * 1.0D + 0.5D;
                            double d2 = (double) j1 + (double) (j - j1) * d0 + world.random.nextDouble() * 1.0D - 0.5D;
                            double d3 = (double) k1 + (double) (k - k1) * d0 + (world.random.nextDouble() - 0.5D) * 1.0D + 0.5D;

                            world.addParticle("portal", d1, d2, d3, (double) f, (double) f1, (double) f2);
                        }

                        return;
                    }
                }
            }
        }
    }

    public int r_() {
        return 3;
    }

    public boolean c() {
        return false;
    }

    public boolean b() {
        return false;
    }

    public int d() {
        return 27;
    }
}