7ae84944ca
protocol: add some missing interfaces for new packets
2019-05-02 17:35:54 +01:00
af07ffb292
Merge branch 'next-minor'
2019-05-02 16:44:50 +01:00
67e75d6c0a
Moved DataPropertyManager to network namespace
...
this is _extremely_ network-focused code.
2019-04-26 18:57:44 +01:00
854a2f5135
Move a giant heap of network garbage out of Entity
2019-04-26 18:52:38 +01:00
00644dd529
Fixed an edge-case in AvailableCommandsPacket decoding
2019-04-26 12:32:42 +01:00
b6b3dcc1aa
Improve documentation of SourceInterface and AdvancedSourceInterface
2019-04-26 11:59:10 +01:00
7d712d68c4
Merge branch 'stable'
2019-04-25 18:31:22 +01:00
3c941dd992
Move more stuff to BedrockData submodule
2019-04-25 18:23:31 +01:00
2bdbb9794c
New, more efficient blockstate table format
...
this reduces the file size by ~90%.
2019-04-25 17:28:22 +01:00
898009a91b
Sync crafting data changes
...
this seems to fix #2881 , at least the reproducing case that was given.
2019-04-25 16:22:12 +01:00
c5ca623124
Merge branch 'stable'
2019-04-25 15:27:13 +01:00
a3dea09e2a
sync with latest codegen changes
2019-04-25 15:19:15 +01:00
793f93afdb
NetworkSession: sync with latest code generation changes
2019-04-25 14:49:20 +01:00
64506ea3ae
PacketPool: add @throws
2019-04-25 14:48:55 +01:00
4a35516441
Reduce BatchPacket hacks
...
we can't get rid of these hacks entirely because BAcKWARdS ComPaTIbilitY, but this at least ensures that things over PID 127 won't burn the house down when 1.12 gets here. This also reduces conflicts with 4.0 line.
2019-04-25 14:48:36 +01:00
fa70127241
1.11.0 protocol changes
2019-04-24 19:54:16 +01:00
fc76d04dcb
StartGamePacket: allow specifying a custom runtimeID table
...
this is not the intended goal, but it's a happy side effect of making it easier to extract structured information from the client.
2019-04-24 18:40:29 +01:00
0dac982f16
Merge branch 'stable'
2019-04-21 16:56:53 +01:00
db896b9faf
ok i'm done
...
i am obviously not in any fit state to be doing this today...
2019-04-21 14:22:54 +01:00
76c234e4e6
add some limits on batches
2019-04-21 14:16:38 +01:00
86cc151e60
Revert "Network: Each interface now keeps its own statistics"
...
This reverts commit 7720a0534e
.
2019-04-18 15:45:03 -04:00
7720a0534e
Network: Each interface now keeps its own statistics
...
this allows more detailed analysis.
2019-04-18 19:57:40 +01:00
752e398970
AsyncTask: TLS now supports storing multiple values (now requires a key/value pair)
2019-04-18 18:58:31 +01:00
a4c7ec077b
Fixed possible crash in ChunkRequestTask
2019-04-18 17:45:14 +01:00
939dfd9269
First look at separating chunk sending from Level
2019-04-17 19:33:37 +01:00
3468f006a2
Use AsyncTask->onError() for chunk task crash tracking
2019-04-17 16:00:17 +01:00
209ae51a67
Merge branch 'stable'
2019-04-15 16:11:49 +01:00
cfd4580388
sync NBT network string length cap
2019-04-14 17:14:44 +01:00
0e3e984db9
Player: Disconnects no longer nuke player internals, (mostly) fixes #1239
...
there are some problems that haven't been accounted for yet, but this fixes all the direct crashes.
2019-04-03 17:44:34 +01:00
f332550e52
Player: move toggle* rollback handling to network session
...
this allows network sessions to react to it how they want, or (in the case of things like Specter) perhaps ignore it.
2019-04-02 19:49:53 +01:00
e5756dbf0b
Move a whole bunch of packet crap to NetworkSession
2019-04-02 18:31:16 +01:00
42a263a9df
GameMode is now an enum
2019-03-31 16:19:36 +01:00
aff2e0c86c
Merge branch '3.7'
2019-03-30 19:19:02 +00:00
8fcb44de7d
Merge branch '3.6' into 3.7
2019-03-29 19:55:36 +00:00
f4480c07ee
Updated NBT dependency
2019-03-29 19:47:15 +00:00
f638845ef6
Merge branch '3.7'
2019-03-29 15:16:27 +00:00
c09e2301c8
Merge branch '3.6' into 3.7
2019-03-29 14:35:35 +00:00
8e9f787d33
Implement runtimeID table randomization, closes #2841
2019-03-29 14:35:06 +00:00
0aebb3f4fb
Clean up LevelSoundEvent handling
2019-03-26 19:53:40 +00:00
e1504c668e
LevelSoundEventPacket: more helpers
2019-03-26 18:23:02 +00:00
1bf0802275
LevelEventPacket: added create() to reduce boilerplate code
2019-03-26 16:49:00 +00:00
c98801402b
Network: silence unhandled packet message on bad raw packet
2019-03-26 15:13:36 +00:00
a9c76c2424
NetworkInterface: remove unused function
2019-03-26 15:09:43 +00:00
161d5bd6b8
Merge branch '3.7'
2019-03-26 15:02:17 +00:00
89833b3b68
Merge branch '3.6' into 3.7
2019-03-26 15:01:59 +00:00
a10a656a5d
Network: add a README to mcpe namespace
2019-03-26 15:01:00 +00:00
0811ce81e5
Query: remove useless noise
...
why do we need 3 log messages for something that does ... basically nothing?
2019-03-24 19:53:20 +00:00
97ccc6e880
Network: Don't ignore retval of raw handlers
2019-03-24 18:31:32 +00:00
d0940e4be2
Fixed raw packets in the buffer pre-ban still getting processed post-ban
2019-03-24 18:26:52 +00:00
6990d6239e
Network: Added RawPacketHandler interface, query handler is now a component
2019-03-24 18:02:19 +00:00