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

public class ItemSkull extends Item {

    private static final String[] b = new String[] { "skeleton", "wither", "zombie", "char", "creeper"};
    public static final String[] a = new String[] { "skeleton", "wither", "zombie", "steve", "creeper"};

    public ItemSkull() {
        this.a(CreativeModeTab.c);
        this.setMaxDurability(0);
        this.a(true);
    }

    public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l, float f, float f1, float f2) {
        final int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
        if (l == 0) {
            return false;
        } else if (!world.getType(i, j, k).getMaterial().isBuildable()) {
            return false;
        } else {
            if (l == 1) {
                ++j;
            }

            if (l == 2) {
                --k;
            }

            if (l == 3) {
                ++k;
            }

            if (l == 4) {
                --i;
            }

            if (l == 5) {
                ++i;
            }

            if (!entityhuman.a(i, j, k, l, itemstack)) {
                return false;
            } else if (!Blocks.SKULL.canPlace(world, i, j, k)) {
                return false;
            } else {
                // CraftBukkit start - Handle in ItemBlock
                // world.setTypeAndData(i, j, k, Blocks.SKULL, l, 2);
                if (!ItemBlock.processBlockPlace(world, entityhuman, null, i, j, k, Blocks.SKULL, l, clickedX, clickedY, clickedZ)) {
                    return false;
                }
                l = world.getData(i, j, k);
                // CraftBukkit end
                int i1 = 0;

                if (l == 1) {
                    i1 = MathHelper.floor((double) (entityhuman.yaw * 16.0F / 360.0F) + 0.5D) & 15;
                }

                TileEntity tileentity = world.getTileEntity(i, j, k);

                if (tileentity != null && tileentity instanceof TileEntitySkull) {
                    String s = "";

                    if (itemstack.hasTag() && itemstack.getTag().hasKeyOfType("SkullOwner", 8)) {
                        s = itemstack.getTag().getString("SkullOwner");
                    }

                    ((TileEntitySkull) tileentity).setSkullType(itemstack.getData(), s);
                    ((TileEntitySkull) tileentity).setRotation(i1);
                    ((BlockSkull) Blocks.SKULL).a(world, i, j, k, (TileEntitySkull) tileentity);
                }

                --itemstack.count;
                return true;
            }
        }
    }

    public int filterData(int i) {
        return i;
    }

    public String a(ItemStack itemstack) {
        int i = itemstack.getData();

        if (i < 0 || i >= b.length) {
            i = 0;
        }

        return super.getName() + "." + b[i];
    }

    public String n(ItemStack itemstack) {
        return itemstack.getData() == 3 && itemstack.hasTag() && itemstack.getTag().hasKeyOfType("SkullOwner", 8) ? LocaleI18n.get("item.skull.player.name", new Object[] { itemstack.getTag().getString("SkullOwner")}) : super.n(itemstack);
    }
}