aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--azalea-protocol/src/packets/game/clientbound_custom_chat_completions_packet.rs15
-rw-r--r--azalea-protocol/src/packets/game/clientbound_system_chat_packet.rs3
-rwxr-xr-xazalea-protocol/src/packets/game/mod.rs140
-rw-r--r--azalea-protocol/src/packets/mod.rs2
5 files changed, 64 insertions, 98 deletions
diff --git a/README.md b/README.md
index b228d4ec..0f3c6849 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ A collection of Rust crates primarily for creating Minecraft bots.
</p>
<!-- The line below is automatically read and updated by the migrate script, so don't change it manually. -->
-*Currently supported Minecraft version: `1.19.1-rc1`.*
+*Currently supported Minecraft version: `1.19.1-pre3`.*
I named this Azalea because it sounds like a cool word and this is a cool library. This project was heavily inspired by PrismarineJS.
diff --git a/azalea-protocol/src/packets/game/clientbound_custom_chat_completions_packet.rs b/azalea-protocol/src/packets/game/clientbound_custom_chat_completions_packet.rs
new file mode 100644
index 00000000..94c90039
--- /dev/null
+++ b/azalea-protocol/src/packets/game/clientbound_custom_chat_completions_packet.rs
@@ -0,0 +1,15 @@
+use azalea_buf::McBuf;
+use packet_macros::GamePacket;
+
+#[derive(Clone, Debug, McBuf, GamePacket)]
+pub struct ClientboundCustomChatCompletionsPacket {
+ pub action: Action,
+ pub entries: Vec<String>,
+}
+
+#[derive(Clone, Debug, McBuf)]
+pub enum Action {
+ Add = 0,
+ Remove = 1,
+ Set = 2,
+}
diff --git a/azalea-protocol/src/packets/game/clientbound_system_chat_packet.rs b/azalea-protocol/src/packets/game/clientbound_system_chat_packet.rs
index c531fa1e..8318b7d4 100644
--- a/azalea-protocol/src/packets/game/clientbound_system_chat_packet.rs
+++ b/azalea-protocol/src/packets/game/clientbound_system_chat_packet.rs
@@ -5,6 +5,5 @@ use packet_macros::GamePacket;
#[derive(Clone, Debug, McBuf, GamePacket)]
pub struct ClientboundSystemChatPacket {
pub content: Component,
- #[var]
- pub type_id: i32,
+ pub overlay: bool,
}
diff --git a/azalea-protocol/src/packets/game/mod.rs b/azalea-protocol/src/packets/game/mod.rs
index f407a697..d8c5c3ec 100755
--- a/azalea-protocol/src/packets/game/mod.rs
+++ b/azalea-protocol/src/packets/game/mod.rs
@@ -1,55 +1,5 @@
-pub mod clientbound_add_entity_packet;
-pub mod clientbound_add_player_packet;
-pub mod clientbound_animate_packet;
-pub mod clientbound_block_changed_ack_packet;
-pub mod clientbound_block_update_packet;
-pub mod clientbound_change_difficulty_packet;
-pub mod clientbound_chat_preview_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_game_event_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_level_particles_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_chat_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_section_blocks_update_packet;
-pub mod clientbound_server_data_packet;
-pub mod clientbound_set_carried_item_packet;
-pub mod clientbound_set_chunk_cache_center_packet;
-pub mod clientbound_set_default_spawn_position_packet;
-pub mod clientbound_set_display_chat_preview_packet;
-pub mod clientbound_set_entity_data_packet;
-pub mod clientbound_set_entity_link_packet;
-pub mod clientbound_set_equipment_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_custom_chat_completions_packet;
pub mod clientbound_system_chat_packet;
-pub mod clientbound_teleport_entity_packet;
-pub mod clientbound_update_advancements_packet;
-pub mod clientbound_update_attributes_packet;
-pub mod clientbound_update_mob_effect_packet;
-pub mod clientbound_update_recipes_packet;
-pub mod clientbound_update_tags_packet;
-pub mod clientbound_update_view_distance_packet;
pub mod serverbound_accept_teleportation_packet;
pub mod serverbound_chat_command_packet;
pub mod serverbound_chat_preview_packet;
@@ -85,48 +35,50 @@ declare_state_packets!(
0x0c: clientbound_chat_preview_packet::ClientboundChatPreviewPacket,
0x0f: clientbound_declare_commands_packet::ClientboundDeclareCommandsPacket,
0x11: clientbound_container_set_content_packet::ClientboundContainerSetContentPacket,
- 0x15: clientbound_custom_payload_packet::ClientboundCustomPayloadPacket,
- 0x17: clientbound_disconnect_packet::ClientboundDisconnectPacket,
- 0x18: clientbound_entity_event_packet::ClientboundEntityEventPacket,
- 0x1b: clientbound_game_event_packet::ClientboundGameEventPacket,
- 0x1d: clientbound_initialize_border_packet::ClientboundInitializeBorderPacket,
- 0x1e: clientbound_keep_alive_packet::ClientboundKeepAlivePacket,
- 0x1f: clientbound_level_chunk_with_light_packet::ClientboundLevelChunkWithLightPacket,
- 0x20: clientbound_level_event_packet::ClientboundLevelEventPacket,
- 0x21: clientbound_level_particles_packet::ClientboundLevelParticlesPacket,
- 0x22: clientbound_light_update_packet::ClientboundLightUpdatePacket,
- 0x23: clientbound_login_packet::ClientboundLoginPacket,
- 0x26: clientbound_move_entity_pos_packet::ClientboundMoveEntityPosPacket,
- 0x27: clientbound_move_entity_posrot_packet::ClientboundMoveEntityPosRotPacket,
- 0x28: clientbound_move_entity_rot_packet::ClientboundMoveEntityRotPacket,
- 0x2f: clientbound_player_abilities_packet::ClientboundPlayerAbilitiesPacket,
- 0x30: clientbound_player_chat_packet::ClientboundPlayerChatPacket,
- 0x34: clientbound_player_info_packet::ClientboundPlayerInfoPacket,
- 0x36: clientbound_player_position_packet::ClientboundPlayerPositionPacket,
- 0x37: clientbound_recipe_packet::ClientboundRecipePacket,
- 0x38: clientbound_remove_entities_packet::ClientboundRemoveEntitiesPacket,
- 0x3c: clientbound_rotate_head_packet::ClientboundRotateHeadPacket,
- 0x3d: clientbound_section_blocks_update_packet::ClientboundSectionBlocksUpdatePacket,
- 0x3f: clientbound_server_data_packet::ClientboundServerDataPacket,
- 0x47: clientbound_set_carried_item_packet::ClientboundSetCarriedItemPacket,
- 0x48: clientbound_set_chunk_cache_center_packet::ClientboundSetChunkCacheCenterPacket,
- 0x49: clientbound_update_view_distance_packet::ClientboundUpdateViewDistancePacket,
- 0x4a: clientbound_set_default_spawn_position_packet::ClientboundSetDefaultSpawnPositionPacket,
- 0x4b: clientbound_set_display_chat_preview_packet::ClientboundSetDisplayChatPreviewPacket,
- 0x4d: clientbound_set_entity_data_packet::ClientboundSetEntityDataPacket,
- 0x4e: clientbound_set_entity_link_packet::ClientboundSetEntityLinkPacket,
- 0x4f: clientbound_entity_velocity_packet::ClientboundEntityVelocityPacket,
- 0x50: clientbound_set_equipment_packet::ClientboundSetEquipmentPacket,
- 0x51: clientbound_set_experience_packet::ClientboundSetExperiencePacket,
- 0x52: clientbound_set_health_packet::ClientboundSetHealthPacket,
- 0x59: clientbound_set_time_packet::ClientboundSetTimePacket,
- 0x5d: clientbound_sound_packet::ClientboundSoundPacket,
- 0x5f: clientbound_system_chat_packet::ClientboundSystemChatPacket,
- 0x63: clientbound_teleport_entity_packet::ClientboundTeleportEntityPacket,
- 0x64: clientbound_update_advancements_packet::ClientboundUpdateAdvancementsPacket,
- 0x65: clientbound_update_attributes_packet::ClientboundUpdateAttributesPacket,
- 0x66: clientbound_update_mob_effect_packet::ClientboundUpdateMobEffectPacket,
- 0x67: clientbound_update_recipes_packet::ClientboundUpdateRecipesPacket,
- 0x68: clientbound_update_tags_packet::ClientboundUpdateTagsPacket,
+ 0x15: clientbound_custom_chat_completions_packet::ClientboundCustomChatCompletionsPacket,
+ 0x16: clientbound_custom_payload_packet::ClientboundCustomPayloadPacket,
+ 0x18: clientbound_disconnect_packet::ClientboundDisconnectPacket,
+ 0x19: clientbound_entity_event_packet::ClientboundEntityEventPacket,
+ 0x1c: clientbound_game_event_packet::ClientboundGameEventPacket,
+ 0x1e: clientbound_initialize_border_packet::ClientboundInitializeBorderPacket,
+ 0x1f: clientbound_keep_alive_packet::ClientboundKeepAlivePacket,
+ 0x20: clientbound_level_chunk_with_light_packet::ClientboundLevelChunkWithLightPacket,
+ 0x21: clientbound_level_event_packet::ClientboundLevelEventPacket,
+ 0x22: clientbound_level_particles_packet::ClientboundLevelParticlesPacket,
+ 0x23: clientbound_light_update_packet::ClientboundLightUpdatePacket,
+ 0x24: clientbound_login_packet::ClientboundLoginPacket,
+ 0x27: clientbound_move_entity_pos_packet::ClientboundMoveEntityPosPacket,
+ 0x28: clientbound_move_entity_posrot_packet::ClientboundMoveEntityPosrotPacket,
+ 0x29: clientbound_move_entity_rot_packet::ClientboundMoveEntityRotPacket,
+ 0x30: clientbound_player_abilities_packet::ClientboundPlayerAbilitiesPacket,
+ 0x31: clientbound_player_chat_packet::ClientboundPlayerChatPacket,
+ 0x35: clientbound_player_info_packet::ClientboundPlayerInfoPacket,
+ 0x37: clientbound_player_position_packet::ClientboundPlayerPositionPacket,
+ 0x38: clientbound_recipe_packet::ClientboundRecipePacket,
+ 0x39: clientbound_remove_entities_packet::ClientboundRemoveEntitiesPacket,
+ 0x3d: clientbound_rotate_head_packet::ClientboundRotateHeadPacket,
+ 0x3e: clientbound_section_blocks_update_packet::ClientboundSectionBlocksUpdatePacket,
+ 0x40: clientbound_server_data_packet::ClientboundServerDataPacket,
+ 0x48: clientbound_set_carried_item_packet::ClientboundSetCarriedItemPacket,
+ 0x49: clientbound_set_chunk_cache_center_packet::ClientboundSetChunkCacheCenterPacket,
+ 0x4a: clientbound_update_view_distance_packet::ClientboundUpdateViewDistancePacket,
+ 0x4b: clientbound_set_default_spawn_position_packet::ClientboundSetDefaultSpawnPositionPacket,
+ 0x4c: clientbound_set_display_chat_preview_packet::ClientboundSetDisplayChatPreviewPacket,
+ 0x4e: clientbound_set_entity_data_packet::ClientboundSetEntityDataPacket,
+ 0x4f: clientbound_set_entity_link_packet::ClientboundSetEntityLinkPacket,
+ 0x50: clientbound_entity_velocity_packet::ClientboundEntityVelocityPacket,
+ 0x51: clientbound_set_equipment_packet::ClientboundSetEquipmentPacket,
+ 0x52: clientbound_set_experience_packet::ClientboundSetExperiencePacket,
+ 0x53: clientbound_set_health_packet::ClientboundSetHealthPacket,
+ 0x5a: clientbound_set_time_packet::ClientboundSetTimePacket,
+ 0x5e: clientbound_sound_packet::ClientboundSoundPacket,
+ 0x60: clientbound_system_chat_packet::ClientboundSystemChatPacket,
+ 0x60: clientbound_system_chat_packet::ClientboundSystemChatPacket,
+ 0x64: clientbound_teleport_entity_packet::ClientboundTeleportEntityPacket,
+ 0x65: clientbound_update_advancements_packet::ClientboundUpdateAdvancementsPacket,
+ 0x66: clientbound_update_attributes_packet::ClientboundUpdateAttributesPacket,
+ 0x67: clientbound_update_mob_effect_packet::ClientboundUpdateMobEffectPacket,
+ 0x68: clientbound_update_recipes_packet::ClientboundUpdateRecipesPacket,
+ 0x69: clientbound_update_tags_packet::ClientboundUpdateTagsPacket,
}
);
diff --git a/azalea-protocol/src/packets/mod.rs b/azalea-protocol/src/packets/mod.rs
index 499b0062..2233b39d 100644
--- a/azalea-protocol/src/packets/mod.rs
+++ b/azalea-protocol/src/packets/mod.rs
@@ -7,7 +7,7 @@ use crate::connect::PacketFlow;
use azalea_buf::{McBufWritable, Readable, Writable};
use std::io::{Read, Write};
-pub const PROTOCOL_VERSION: u32 = 1073741918;
+pub const PROTOCOL_VERSION: u32 = 1073741920;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ConnectionProtocol {