summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/BlockFire.java
blob: 96eb7983f5ae7a528473e4f75495b41411ae72a3 (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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
package net.minecraft.server;

// CraftBukkit start
import org.bukkit.Server;
import org.bukkit.entity.Player;
import org.bukkit.event.block.BlockIgniteEvent;
import org.bukkit.event.block.BlockIgniteEvent.IgniteCause;
import org.bukkit.craftbukkit.CraftWorld;
import java.util.Random;
import org.bukkit.event.block.BlockBurnEvent;
// CraftBukkit end

public class BlockFire extends Block {

    private int a[];
    private int b[];

    protected BlockFire(int i, int j) {
        super(i, j, Material.l);
        a = new int[256];
        b = new int[256];
        a(Block.x.bi, 5, 20);
        a(Block.J.bi, 5, 5);
        a(Block.K.bi, 30, 60);
        a(Block.an.bi, 30, 20);
        a(Block.am.bi, 15, 100);
        a(Block.ab.bi, 30, 60);
        a(true);
    }

    private void a(int i, int j, int k) {
        a[i] = j;
        b[i] = k;
    }

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

    public boolean a() {
        return false;
    }

    public int a(Random random) {
        return 0;
    }

    public int b() {
        return 10;
    }

    public void a(World world, int i, int j, int k, Random random) {
        boolean flag = world.a(i, j - 1, k) == Block.bb.bi;
        int l = world.b(i, j, k);

        if (l < 15) {
            world.c(i, j, k, l + 1);
            world.i(i, j, k, bi);
        }
        if (!flag && !g(world, i, j, k)) {
            if (!world.d(i, j - 1, k) || l > 3) {
                world.e(i, j, k, 0);
            }
            return;
        }
        if (!flag && !b(((IBlockAccess) (world)), i, j - 1, k) && l == 15 && random.nextInt(4) == 0) {
            world.e(i, j, k, 0);
            return;
        }
        if (l % 2 == 0 && l > 2) {
            a(world, i + 1, j, k, 300, random);
            a(world, i - 1, j, k, 300, random);
            a(world, i, j - 1, k, 250, random);
            a(world, i, j + 1, k, 250, random);
            a(world, i, j, k - 1, 300, random);
            a(world, i, j, k + 1, 300, random);
            for (int i1 = i - 1; i1 <= i + 1; i1++) {
                for (int j1 = k - 1; j1 <= k + 1; j1++) {
                    for (int k1 = j - 1; k1 <= j + 4; k1++) {
                        if (i1 == i && k1 == j && j1 == k) {
                            continue;
                        }
                        int l1 = 100;

                        if (k1 > j + 1) {
                            l1 += (k1 - (j + 1)) * 100;
                        }
                        int i2 = h(world, i1, k1, j1);

                        // CraftBukkit start: Call to stop spread of fire.
                        Server server = ((WorldServer)world).getServer();
                        CraftWorld cworld = ((WorldServer)world).getWorld();
                        
                        org.bukkit.block.Block theBlock = (cworld.getBlockAt(i1, k1, j1));
                        IgniteCause igniteCause = BlockIgniteEvent.IgniteCause.SPREAD;
                        Player thePlayer = null;
                        
                        if (theBlock.getTypeId() != Block.ar.bi){
                            BlockIgniteEvent event = new BlockIgniteEvent(theBlock, igniteCause, thePlayer);
                            server.getPluginManager().callEvent(event);
                            if (event.isCancelled()) {
                                continue;
                            }
                        }
                        // CraftBukkit end
                        if (i2 > 0 && random.nextInt(l1) <= i2) {
                            world.e(i1, k1, j1, bi);
                        }
                    }
                }
            }
        }
    }

    private void a(World world, int i, int j, int k, int l, Random random) {
        int i1 = b[world.a(i, j, k)];

        if (random.nextInt(l) < i1) {
            boolean flag = world.a(i, j, k) == Block.am.bi;
            // CraftBukkit start: BlockBurnEvent
            Server server = ((WorldServer)world).getServer();
            CraftWorld cworld = ((WorldServer)world).getWorld();
            org.bukkit.block.Block theBlock = (cworld.getBlockAt(i, j, k));
            BlockBurnEvent burnEvent = new BlockBurnEvent(theBlock);
            server.getPluginManager().callEvent(burnEvent);
            if(!burnEvent.isCancelled()) {
                if (random.nextInt(2) == 0) {
                    // CraftBukkit start: Call to stop very slow spread of fire.

                    IgniteCause igniteCause = BlockIgniteEvent.IgniteCause.SLOW_SPREAD;
                    Player thePlayer = null;

                    if (theBlock.getTypeId() != Block.ar.bi){
                        BlockIgniteEvent event = new BlockIgniteEvent(theBlock, igniteCause, thePlayer);
                        server.getPluginManager().callEvent(event);
                        if (event.isCancelled()) {
                            return;
                        }
                    }
                    // CraftBukkit end
                    world.e(i, j, k, bi);
                } else {
                    world.e(i, j, k, 0);
                }
                if (flag) {
                    Block.am.a(world, i, j, k, 0);
                }
            }
            // CraftBukkit end: BlockBurnEvent
        }
    }

    private boolean g(World world, int i, int j, int k) {
        if (b(((IBlockAccess) (world)), i + 1, j, k)) {
            return true;
        }
        if (b(((IBlockAccess) (world)), i - 1, j, k)) {
            return true;
        }
        if (b(((IBlockAccess) (world)), i, j - 1, k)) {
            return true;
        }
        if (b(((IBlockAccess) (world)), i, j + 1, k)) {
            return true;
        }
        if (b(((IBlockAccess) (world)), i, j, k - 1)) {
            return true;
        }
        return b(((IBlockAccess) (world)), i, j, k + 1);
    }

    private int h(World world, int i, int j, int k) {
        int l = 0;

        if (!world.e(i, j, k)) {
            return 0;
        } else {
            l = f(world, i + 1, j, k, l);
            l = f(world, i - 1, j, k, l);
            l = f(world, i, j - 1, k, l);
            l = f(world, i, j + 1, k, l);
            l = f(world, i, j, k - 1, l);
            l = f(world, i, j, k + 1, l);
            return l;
        }
    }

    public boolean d() {
        return false;
    }

    public boolean b(IBlockAccess iblockaccess, int i, int j, int k) {
        return a[iblockaccess.a(i, j, k)] > 0;
    }

    public int f(World world, int i, int j, int k, int l) {
        int i1 = a[world.a(i, j, k)];

        if (i1 > l) {
            return i1;
        } else {
            return l;
        }
    }

    public boolean a(World world, int i, int j, int k) {
        return world.d(i, j - 1, k) || g(world, i, j, k);
    }

    public void b(World world, int i, int j, int k, int l) {
        if (!world.d(i, j - 1, k) && !g(world, i, j, k)) {
            world.e(i, j, k, 0);
            return;
        } else {
            return;
        }
    }

    public void e(World world, int i, int j, int k) {
        //TODO this section deals with lighting a block on fire too
        if (world.a(i, j - 1, k) == Block.ap.bi && Block.be.b_(world, i, j, k)) {
            return;
        }
        if (!world.d(i, j - 1, k) && !g(world, i, j, k)) {
            world.e(i, j, k, 0);
            return;
        } else {
            world.i(i, j, k, bi);
            return;
        }
    }
}