mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-12-03 23:53:35 +01:00
7b1567c352
Improvements to the test suite: * List release version names and numbers in minecraft/__init__.py. * Make some tests, which previously ran for *all* protocol versions, run only for release protocol versions (to improve test performance). * Make some tests, which previously ran only for the latest protocol version, run for all release protocol versions (to improve coverage). * Print each protocol version being tested to the debug log, to help identify sources of errors. * Use the `nose-timer' plugin to show the run time of each test. Fix errors revealed by increased test coverage: * Fix: SoundEffectPacket.Pitch is not serialised correctly for early protocol versions. * Fix: handleExceptionTest finishes later than necessary because the test overrode an exception handler used internally by `_FakeServerTest', causing the server thread to time out after 4s. * Add support for multiple exception handlers in `Connection' (required for the above). Improvements to data descriptors: * Make syntax of property declarations more consistent/Pythonic. * Factor the definition of several aliasing properties into the utility methods `attribute_alias' and `multi_attribute_alias', which construct suitable data descriptors. * Define and use the named tuple `Direction' for (pitch, yaw) values.
84 lines
2.8 KiB
Python
84 lines
2.8 KiB
Python
from minecraft.networking.packets import Packet
|
|
from minecraft.networking.types import (
|
|
VarInt, String, Float, Byte, Type, Integer, Vector, Enum,
|
|
)
|
|
|
|
__all__ = 'SoundEffectPacket',
|
|
|
|
|
|
class SoundEffectPacket(Packet):
|
|
@staticmethod
|
|
def get_id(context):
|
|
return 0x51 if context.protocol_version >= 471 else \
|
|
0x4D if context.protocol_version >= 461 else \
|
|
0x4E if context.protocol_version >= 451 else \
|
|
0x4E if context.protocol_version >= 451 else \
|
|
0x4D if context.protocol_version >= 389 else \
|
|
0x4C if context.protocol_version >= 352 else \
|
|
0x4B if context.protocol_version >= 345 else \
|
|
0x4A if context.protocol_version >= 343 else \
|
|
0x49 if context.protocol_version >= 336 else \
|
|
0x48 if context.protocol_version >= 318 else \
|
|
0x46 if context.protocol_version >= 110 else \
|
|
0x47
|
|
|
|
packet_name = 'sound effect'
|
|
|
|
@staticmethod
|
|
def get_definition(context):
|
|
return [
|
|
({'sound_category': VarInt}
|
|
if 326 > context.protocol_version >= 321 else {}),
|
|
{'sound_id': VarInt},
|
|
({'sound_category': VarInt}
|
|
if 95 <= context.protocol_version < 321
|
|
or context.protocol_version >= 326 else {}),
|
|
({'parroted_entity_type': String}
|
|
if 326 > context.protocol_version >= 321 else {}),
|
|
{'effect_position': SoundEffectPacket.EffectPosition},
|
|
{'volume': Float},
|
|
{'pitch': SoundEffectPacket.Pitch},
|
|
]
|
|
|
|
class SoundCategory(Enum):
|
|
MASTER = 0
|
|
MUSIC = 1
|
|
RECORDS = 2
|
|
WEATHER = 3
|
|
BLOCKS = 4
|
|
HOSTILE = 5
|
|
NEUTRAL = 6
|
|
PLAYERS = 7
|
|
AMBIENT = 8
|
|
VOICE = 9
|
|
|
|
class EffectPosition(Type):
|
|
@classmethod
|
|
def read(cls, file_object):
|
|
return Vector(*(Integer.read(file_object) / 8.0 for i in range(3)))
|
|
|
|
@classmethod
|
|
def send(cls, value, socket):
|
|
for coordinate in value:
|
|
Integer.send(int(coordinate * 8), socket)
|
|
|
|
class Pitch(Type):
|
|
@staticmethod
|
|
def read_with_context(file_object, context):
|
|
if context.protocol_version >= 201:
|
|
value = Float.read(file_object)
|
|
else:
|
|
value = Byte.read(file_object)
|
|
if context.protocol_version < 204:
|
|
value /= 63.5
|
|
return value
|
|
|
|
@staticmethod
|
|
def send_with_context(value, socket, context):
|
|
if context.protocol_version < 204:
|
|
value *= 63.5
|
|
if context.protocol_version >= 201:
|
|
Float.send(value, socket)
|
|
else:
|
|
Byte.send(int(value), socket)
|