summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/Packet.java
blob: faf80557681e95720f759b6400ca533fbe70dfbf (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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package net.minecraft.server;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.EOFException;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;

// Craftbukkit start
import java.net.SocketException;
import java.net.SocketTimeoutException;
// Craftbukkit end

public abstract class Packet {

    private static Map a = new HashMap();
    private static Map b = new HashMap();
    public final long timestamp = System.currentTimeMillis();
    public boolean k = false;
    private static HashMap c;
    private static int d;

    public Packet() {}

    static void a(int i, Class oclass) {
        if (a.containsKey(Integer.valueOf(i))) {
            throw new IllegalArgumentException("Duplicate packet id:" + i);
        } else if (b.containsKey(oclass)) {
            throw new IllegalArgumentException("Duplicate packet class:" + oclass);
        } else {
            a.put(Integer.valueOf(i), oclass);
            b.put(oclass, Integer.valueOf(i));
        }
    }

    // CraftBukkit start
    private static Map<Integer,Class<?>> e = new HashMap<Integer,Class<?>>();
    private static Map<Class<?>,Integer> f = new HashMap<Class<?>,Integer>();

    static void b(int i, Class<?> oclass) {
        if (e.containsKey(Integer.valueOf(i))) {
            throw new IllegalArgumentException("Duplicate packet id:" + i);
        } else if (f.containsKey(oclass)) {
            throw new IllegalArgumentException("Duplicate packet class:" + oclass);
        } else {
            e.put(Integer.valueOf(i), oclass);
            f.put(oclass, Integer.valueOf(i));
        }
    }
    // CraftBukkit end

    public static Packet a(int i) {
        try {
            Class oclass = (Class) a.get(Integer.valueOf(i));

            return oclass == null ? null : (Packet) oclass.newInstance();
        } catch (Exception exception) {
            exception.printStackTrace();
            System.out.println("Skipping packet with id " + i);
            return null;
        }
    }

    public final int b() {
        // CraftBukkit b->f
        return ((Integer) f.get(this.getClass())).intValue();
    }

    // CraftBukkit
    public static Packet b(DataInputStream datainputstream) throws IOException {
        boolean flag = false;
        Packet packet = null;

        int i;

        try {
            i = datainputstream.read();
            if (i == -1) {
                return null;
            }

            packet = a(i);
            if (packet == null) {
                throw new IOException("Bad packet id " + i);
            }

            packet.a(datainputstream);
        } catch (EOFException eofexception) {
            System.out.println("Reached end of stream");
            return null;
        }

        // Craftbukkit start
        catch (SocketTimeoutException exception) {
            System.out.println("Read timed out");
            return null;
        } catch (SocketException exception) {
            System.out.println("Connection reset");
            return null;
        }
        // Craftbukkit end

        PacketCounter packetcounter = (PacketCounter) c.get(Integer.valueOf(i));

        if (packetcounter == null) {
            packetcounter = new PacketCounter((EmptyClass1) null);
            c.put(Integer.valueOf(i), packetcounter);
        }

        packetcounter.a(packet.a());
        ++d;
        if (d % 1000 == 0) {
            ;
        }

        return packet;
    }

    // CraftBukkit
    public static void a(Packet packet, DataOutputStream dataoutputstream) throws IOException {
        dataoutputstream.write(packet.b());
        packet.a(dataoutputstream);
    }

    public abstract void a(DataInputStream datainputstream);

    public abstract void a(DataOutputStream dataoutputstream);

    public abstract void a(NetHandler nethandler);

    public abstract int a();

    static {
        // CraftBukkit start -- accepted packets from CLIENT
        a(0, Packet0KeepAlive.class);
        a(1, Packet1Login.class);
        a(2, Packet2Handshake.class);
        a(3, Packet3Chat.class);
        //a(4, Packet4UpdateTime.class);
        //a(5, Packet5EntityEquipment.class);
        //a(6, Packet6SpawnPosition.class);
        a(7, Packet7UseEntity.class);
        //a(8, Packet8UpdateHealth.class);
        a(9, Packet9Respawn.class);
        a(10, Packet10Flying.class);
        a(11, Packet11PlayerPosition.class);
        a(12, Packet12PlayerLook.class);
        a(13, Packet13PlayerLookMove.class);
        a(14, Packet14BlockDig.class);
        a(15, Packet15Place.class);
        a(16, Packet16BlockItemSwitch.class);
        //a(17, Packet17.class);
        a(18, Packet18ArmAnimation.class);
        a(19, Packet19EntityAction.class);
        //a(20, Packet20NamedEntitySpawn.class);
        //a(21, Packet21PickupSpawn.class);
        //a(22, Packet22Collect.class);
        //a(23, Packet23VehicleSpawn.class);
        //a(24, Packet24MobSpawn.class);
        //a(25, Packet25EntityPainting.class);
        a(27, Packet27.class);
        //a(28, Packet28EntityVelocity.class);
        //a(29, Packet29DestroyEntity.class);
        //a(30, Packet30Entity.class);
        //a(31, Packet31RelEntityMove.class);
        //a(32, Packet32EntityLook.class);
        //a(33, Packet33RelEntityMoveLook.class);
        //a(34, Packet34EntityTeleport.class);
        //a(38, Packet38EntityStatus.class);
        //a(39, Packet39AttachEntity.class);
        //a(40, Packet40EntityMetadata.class);
        //a(50, Packet50PreChunk.class);
        //a(51, Packet51MapChunk.class);
        //a(52, Packet52MultiBlockChange.class);
        //a(53, Packet53BlockChange.class);
        //a(54, Packet54PlayNoteBlock.class);
        //a(60, Packet60Explosion.class);
        //a(100, Packet100OpenWindow.class);
        a(101, Packet101CloseWindow.class);
        a(102, Packet102WindowClick.class);
        //a(103, Packet103SetSlot.class);
        //a(104, Packet104WindowItems.class);
        //a(105, Packet105CraftProgressBar.class);
        a(106, Packet106Transaction.class);
        a(130, Packet130UpdateSign.class);
        a(255, Packet255KickDisconnect.class);

        // CraftBukkit packets send from SERVER
        b(0, Packet0KeepAlive.class);
        b(1, Packet1Login.class);
        b(2, Packet2Handshake.class);
        b(3, Packet3Chat.class);
        b(4, Packet4UpdateTime.class);
        b(5, Packet5EntityEquipment.class);
        b(6, Packet6SpawnPosition.class);
        //b(7, Packet7UseEntity.class);
        b(8, Packet8UpdateHealth.class);
        b(9, Packet9Respawn.class);
        //b(10, Packet10Flying.class);
        //b(11, Packet11PlayerPosition.class);
        //b(12, Packet12PlayerLook.class);
        b(13, Packet13PlayerLookMove.class);
        //b(14, Packet14BlockDig.class);
        //b(15, Packet15Place.class);
        //b(16, Packet16BlockItemSwitch.class);
        b(17, Packet17.class);
        b(18, Packet18ArmAnimation.class);
        //b(19, Packet19EntityAction.class);
        b(20, Packet20NamedEntitySpawn.class);
        b(21, Packet21PickupSpawn.class);
        b(22, Packet22Collect.class);
        b(23, Packet23VehicleSpawn.class);
        b(24, Packet24MobSpawn.class);
        b(25, Packet25EntityPainting.class);
        //b(27, Packet27.class);
        b(28, Packet28EntityVelocity.class);
        b(29, Packet29DestroyEntity.class);
        //b(30, Packet30Entity.class);
        b(31, Packet31RelEntityMove.class);
        b(32, Packet32EntityLook.class);
        b(33, Packet33RelEntityMoveLook.class);
        b(34, Packet34EntityTeleport.class);
        b(38, Packet38EntityStatus.class);
        b(39, Packet39AttachEntity.class);
        b(40, Packet40EntityMetadata.class);
        b(50, Packet50PreChunk.class);
        b(51, Packet51MapChunk.class);
        b(52, Packet52MultiBlockChange.class);
        b(53, Packet53BlockChange.class);
        b(54, Packet54PlayNoteBlock.class);
        b(60, Packet60Explosion.class);
        b(70, Packet70Bed.class);
        b(100, Packet100OpenWindow.class);
        b(101, Packet101CloseWindow.class);
        //b(102, Packet102WindowClick.class);
        b(103, Packet103SetSlot.class);
        b(104, Packet104WindowItems.class);
        b(105, Packet105CraftProgressBar.class);
        b(106, Packet106Transaction.class);
        b(130, Packet130UpdateSign.class);
        b(255, Packet255KickDisconnect.class);
        // CraftBukkit end

        c = new HashMap();
        d = 0;
    }
}