aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/mod.rs
blob: 0391ee10062d323096f1a80ecaf4bda84d52bd39 (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
pub mod clientbound_add_entity_packet;
pub mod clientbound_add_mob_packet;
pub mod clientbound_add_player_packet;
pub mod clientbound_animate_packet;
pub mod clientbound_block_update_packet;
pub mod clientbound_change_difficulty_packet;
pub mod clientbound_chat_packet;
pub mod clientbound_container_set_content_packet;
pub mod clientbound_custom_payload_packet;
pub mod clientbound_declare_commands_packet;
pub mod clientbound_disconnect_packet;
pub mod clientbound_entity_event_packet;
pub mod clientbound_entity_velocity_packet;
pub mod clientbound_initialize_border_packet;
pub mod clientbound_keep_alive_packet;
pub mod clientbound_level_chunk_with_light_packet;
pub mod clientbound_level_event_packet;
pub mod clientbound_light_update_packet;
pub mod clientbound_login_packet;
pub mod clientbound_move_entity_pos_packet;
pub mod clientbound_move_entity_posrot_packet;
pub mod clientbound_move_entity_rot_packet;
pub mod clientbound_player_abilities_packet;
pub mod clientbound_player_info_packet;
pub mod clientbound_player_position_packet;
pub mod clientbound_recipe_packet;
pub mod clientbound_remove_entities_packet;
pub mod clientbound_rotate_head_packet;
pub mod clientbound_set_carried_item_packet;
pub mod clientbound_set_chunk_cache_center;
pub mod clientbound_set_default_spawn_position_packet;
pub mod clientbound_set_entity_data_packet;
pub mod clientbound_set_entity_link_packet;
pub mod clientbound_set_experience_packet;
pub mod clientbound_set_health_packet;
pub mod clientbound_set_time_packet;
pub mod clientbound_sound_packet;
pub mod clientbound_teleport_entity_packet;
pub mod clientbound_update_advancements_packet;
pub mod clientbound_update_attributes_packet;
pub mod clientbound_update_recipes_packet;
pub mod clientbound_update_tags_packet;
pub mod clientbound_update_view_distance_packet;
pub mod serverbound_custom_payload_packet;
pub mod serverbound_keep_alive_packet;

use packet_macros::declare_state_packets;

declare_state_packets!(
    GamePacket,
    Serverbound => {
        0x0a: serverbound_custom_payload_packet::ServerboundCustomPayloadPacket,
        0x0f: serverbound_keep_alive_packet::ServerboundKeepAlivePacket,
    },
    Clientbound => {
        0x00: clientbound_add_entity_packet::ClientboundAddEntityPacket,
        0x02: clientbound_add_mob_packet::ClientboundAddMobPacket,
        0x04: clientbound_add_player_packet::ClientboundAddPlayerPacket,
        0x6: clientbound_animate_packet::ClientboundAnimatePacket,
        0xc: clientbound_block_update_packet::ClientboundBlockUpdatePacket,
        0x0e: clientbound_change_difficulty_packet::ClientboundChangeDifficultyPacket,
        0xf: clientbound_chat_packet::ClientboundChatPacket,
        0x12: clientbound_declare_commands_packet::ClientboundDeclareCommandsPacket,
        0x14: clientbound_container_set_content_packet::ClientboundContainerSetContentPacket,
        0x1a: clientbound_disconnect_packet::ClientboundDisconnectPacket,
        0x1b: clientbound_entity_event_packet::ClientboundEntityEventPacket,
        0x18: clientbound_custom_payload_packet::ClientboundCustomPayloadPacket,
        0x20: clientbound_initialize_border_packet::ClientboundInitializeBorderPacket,
        0x21: clientbound_keep_alive_packet::ClientboundKeepAlivePacket,
        0x22: clientbound_level_chunk_with_light_packet::ClientboundLevelChunkWithLightPacket,
        0x23: clientbound_level_event_packet::ClientboundLevelEventPacket,
        0x25: clientbound_light_update_packet::ClientboundLightUpdatePacket,
        0x26: clientbound_login_packet::ClientboundLoginPacket,
        0x29: clientbound_move_entity_pos_packet::ClientboundMoveEntityPosPacket,
        0x2a: clientbound_move_entity_posrot_packet::ClientboundMoveEntityPosRotPacket,
        0x2b: clientbound_move_entity_rot_packet::ClientboundMoveEntityRotPacket,
        0x32: clientbound_player_abilities_packet::ClientboundPlayerAbilitiesPacket,
        0x36: clientbound_player_info_packet::ClientboundPlayerInfoPacket,
        0x38: clientbound_player_position_packet::ClientboundPlayerPositionPacket,
        0x39: clientbound_recipe_packet::ClientboundRecipePacket,
        0x3a: clientbound_remove_entities_packet::ClientboundRemoveEntitiesPacket,
        0x3e: clientbound_rotate_head_packet::ClientboundRotateHeadPacket,
        0x48: clientbound_set_carried_item_packet::ClientboundSetCarriedItemPacket,
        0x49: clientbound_set_chunk_cache_center::ClientboundSetChunkCacheCenterPacket,
        0x4a: clientbound_update_view_distance_packet::ClientboundUpdateViewDistancePacket,
        0x4b: clientbound_set_default_spawn_position_packet::ClientboundSetDefaultSpawnPositionPacket,
        0x4d: clientbound_set_entity_data_packet::ClientboundSetEntityDataPacket,
        0x45: clientbound_set_entity_link_packet::ClientboundSetEntityLinkPacket,
        0x4f: clientbound_entity_velocity_packet::ClientboundEntityVelocityPacket,
        0x51: clientbound_set_experience_packet::ClientboundSetExperiencePacket,
        0x52: clientbound_set_health_packet::ClientboundSetHealthPacket,
        0x59: clientbound_set_time_packet::ClientboundSetTimePacket,
        0x5d: clientbound_sound_packet::ClientboundSoundPacket,
        0x62: clientbound_teleport_entity_packet::ClientboundTeleportEntityPacket,
        0x63: clientbound_update_advancements_packet::ClientboundUpdateAdvancementsPacket,
        0x64: clientbound_update_attributes_packet::ClientboundUpdateAttributesPacket,
        0x66: clientbound_update_recipes_packet::ClientboundUpdateRecipesPacket,
        0x67: clientbound_update_tags_packet::ClientboundUpdateTagsPacket,
    }
);