Commit Graph

477 Commits

Author SHA1 Message Date
Andrew So
3db741ad52 got all basic requires for it work for 1.17 2021-06-13 00:22:34 -07:00
Andrew So
0169e0aa75 updated all other packets that needed updating 2021-06-12 10:38:15 -07:00
Andrew So
dd5c77545b fixed compression typo 2021-06-12 09:08:56 -07:00
Andrew So
6400602625 initial 1.17 update changes 2021-06-11 10:34:27 -07:00
joo
2813d02ae7 Fix: Connection.file_object is not closed on disconnection 2020-12-07 23:59:10 +01:00
joo
73728957e7 Allow reconnection from within exception handlers
This implements the changes suggested in
<https://github.com/ammaraskar/pyCraft/issues/146#issuecomment-738914064>,
i.e.:

1. `minecraft.networking.Connection.disconnect' now correctly terminates the
   new networking thread if it is still waiting to replace the old one, and

2. `minecraft.networking.Connectoin._handle_exception' no longer calls
   `disconnect' if any exception handler has initiated a new connection.
2020-12-07 23:47:48 +01:00
joo
93db454cb5 Add test case reproducing #146 (fixed to behave consistently) 2020-12-04 17:06:39 +01:00
joo
7693961fb9 Let fake server tests override the default client exception handler
This can by done by adding an exception handler with `early=True'
in the `_start_client' method of a subclass of
`fake_server._FakeServerTest'.
2020-12-04 15:37:49 +01:00
joo
252e60a6e2 Add support for Minecraft 20w45a to 20w48a (protocol 2^30+5 to 2^30+7). 2020-12-02 16:27:28 +01:00
joo
969419da3f Fix: non-monotonic protocol versions are not correctly handled
After 1.16.3, Mojang started publishing snapshot, pre-release and release
candidate versions of Minecraft with protocol version numbers of the form
`(1 << 30) | n' where 'n' is a small non-negative integer increasing with each
such version; the release versions continued to use the old format. For
example, these are the last 8 published Minecraft versions as of this commit:

release           1.16.3      uses protocol version 753
pre-release       1.16.4-pre1 uses protocol version 1073741825 == (1 << 30) | 1
pre-release       1.16.4-pre2 uses protocol version 1073741826 == (1 << 30) | 2
release candidate 1.16.4-rc1  uses protocol version 1073741827 == (1 << 30) | 3
release           1.16.4      uses protocol version 754
snapshot          20w45a      uses protocol version 1073741829 == (1 << 30) | 5
snapshot          20w46a      uses protocol version 1073741830 == (1 << 30) | 6
snapshot          20w48a      uses protocol version 1073741831 == (1 << 30) | 7

This means that protocol versions no longer increase monotonically with respect
to publication history, a property that was assumed to hold in much of
pyCraft's code relating to support of multiple protocol versions. This commit
rectifies the issue by replacing any comparison of protocol versions by their
numerical value with a comparison based on their publication time.

Newly defined is the dictionary `minecraft.PROTOCOL_VERSION_INDICES', which
maps each known protocol version to its index in the protocol chronology. As
such, the bound method `minecraft.PROTOCOL_VERSION_INDICES.get` can be used as
a key function for the built-in `sorted`, `min` and `max` functions to collate
protocol versions chronologically.

Two utility functions are provided for direct comparison of protocol versions:
    `minecraft.utility.protocol_earlier` and
    `minecraft.utility.protocol_earlier_eq`.

Additionally, four methods are added to the `ConnectionContext` type to ease
the most common cases where the protocol of a given context must be compared to
a given version number:
    `minecraft.connection.ConnectionContext.protocol_earlier`,
    `minecraft.connection.ConnectionContext.protocol_earlier_eq`,
    `minecraft.connection.ConnectionContext.protocol_later` and
    `minecraft.connection.ConnectionContext.protocol_later_eq`.
2020-12-02 15:11:39 +01:00
joo
4052136d30 List support for Minecraft 1.16.4 in README.rst 2020-12-02 14:28:59 +01:00
Vesek
4a4b699b85 Add support for Minecraft 1.16.4-pre1, 1.16.4-pre2, 1.16.4-rc1 and 1.16.4 (protocols 1073741825, 1073741826, 1073741827 and 754) 2020-12-01 05:20:30 +01:00
BD103
2e77cf5f77
Update README.rst (#198)
Added 1.16.3 to the list of supported versions
2020-12-01 02:46:53 +01:00
Tristan
4e01fdd310
Update travis distro to focal (#203)
Fixes OpenSSL version no longer being supported
2020-11-11 20:59:28 -05:00
joo
903c20f9e2 Add support for Minecraft 1.16.3-pre1 and 1.16.3 (protocols 752 and 753) 2020-09-12 07:02:22 +02:00
joo
f37feeca18 Fix: MultiBlockChangePacket.ChunkSectionPos reads/writes incorrectly 2020-09-10 16:35:53 +02:00
joo
cf93923acc Fix: EntityPositionDeltaPacket.delta_{x,y,z} use wrong format 2020-09-01 00:49:35 +02:00
joo
eae6e5c9cd Fix EntityPositionDeltaPacket format for 1.8.9; closes #190 2020-09-01 00:39:49 +02:00
joo
e434497dc7 Add type for general fixed-point numbers 2020-09-01 00:37:48 +02:00
joo
3c84c2a429 Merge branch 'v1.16' into master 2020-08-19 20:27:11 +02:00
Radon Rosborough
095191a77c
Change package name from 'minecraft' to 'pyCraft'
* Use setuptools instead of distutils
* Fix package name
2020-08-17 18:32:16 +02:00
joo
51fa0bd2d1 Change setup.py to use setuptools instead of distutils 2020-08-17 18:25:50 +02:00
Amund Eggen Svandal
d01dfd4812 Requirements moved to setup.py 2020-08-17 18:25:50 +02:00
Amund Eggen Svandal
1f42f61620 Install minecraft in editable mode 2020-08-17 18:25:50 +02:00
Amund Eggen Svandal
4a8fab1138 Add requirements to setup.py 2020-08-17 18:25:50 +02:00
laundmo
2947aa6619
Added listener decorator documentation (#161)
* added decorator example to connection.rst

since decorators are more pythonic, it was put in front of the register method.

* Expanded listener decorator docstring

* changed autofunction to autodecorator

* removed whitespace in empty line

* remvoed trailing whitespace

i didn't even edit there WTF
2020-08-17 17:49:25 +02:00
joo
2d9479cc12 Change Travis config to use pypy3 instead of pypy 2020-08-17 12:01:26 +02:00
joo
fcacb8abf8 Remove trailing space from join_game_and_respawn_packets.py 2020-08-17 12:01:03 +02:00
joo
3f4a5d46a6 Update README with supported versions; increment package version 2020-08-17 11:31:02 +02:00
joo
4c35517157 Fix support for Minecraft 20w06a to 1.16.2 (protocols 701 to 751) 2020-08-17 11:25:30 +02:00
joo
b79f8b30eb Remove support for Python 2.7 2020-08-17 07:10:10 +02:00
joo
3723655fa3 Add .vscode to gitignore 2020-08-17 05:40:40 +02:00
joo
84df884ca4 Remove 'Packet.packet_id' attribute, replacing with 'id' 2020-08-17 05:39:48 +02:00
joo
c6afe25429 Remove 'UUIDIntegerArray' type, as 'UUID' already exists 2020-08-16 05:40:13 +02:00
Sillyfrog
8a098b399b Support for v1.16.2 2020-08-13 22:19:04 +10:00
Sillyfrog
3dcefae645 v1.16.1 support 2020-06-26 17:46:33 +10:00
Sillyfrog
0d28271c96 v1.16 release support 2020-06-24 13:50:29 +10:00
Sillyfrog
b582029099 Support for 1.16-rc1 2020-06-19 09:18:29 +10:00
Tristan Gosselin-Hane
7d9ffb8836 Fix line length 2020-05-22 14:05:45 -04:00
Tristan Gosselin-Hane
e61cfffab1 Attempt to fix test? 2020-05-22 13:28:02 -04:00
Tristan Gosselin-Hane
1b714e6449 Update tests to use new join game packet definiton 2020-05-22 12:49:12 -04:00
Tristan Gosselin-Hane
0343df918c Fixed packet types 2020-05-22 12:49:02 -04:00
Tristan Gosselin-Hane
9c08c6c9f5 Added support for snapshots 20w20a and 20w20b 2020-05-14 21:37:25 -04:00
Tristan Gosselin-Hane
d26aacec28 Added support for snapshot 20w19a 2020-05-07 11:58:08 -04:00
Tristan Gosselin-Hane
8cb02e7f7f Added support for snapshot 20w18a 2020-05-04 12:04:04 -04:00
Tristan Gosselin-Hane
180c698ce1 Added support for snapshot 20w17a 2020-04-22 16:36:19 -04:00
Tristan Gosselin-Hane
7380bc2c61 Added support for snapshots 20w13b, 20w14a, 20w15a, 20w16a 2020-04-17 00:07:41 -04:00
Tristan Gosselin-Hane
428a599f40 Added support for snapshot 20w13a 2020-04-16 20:54:51 -04:00
Tristan Gosselin-Hane
76f7b4bdc9 Added support for snapshot 20w12a 2020-03-20 15:00:31 -04:00
Tristan Gosselin-Hane
5c6edf5e44 Added support for snapshot versions up to 20w11a 2020-03-17 00:23:35 -04:00