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
|
pub mod common;
pub mod configuration;
pub mod game;
pub mod handshaking;
pub mod login;
pub mod status;
use crate::read::ReadPacketError;
use azalea_buf::{BufReadError, McBufVarReadable, McBufVarWritable, McBufWritable};
use std::io::{Cursor, Write};
// TODO: rename the packet files to just like clientbound_add_entity instead of
// clientbound_add_entity_packet
pub const PROTOCOL_VERSION: i32 = 768;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ConnectionProtocol {
Handshake = -1,
Game = 0,
Status = 1,
Login = 2,
Configuration = 3,
}
impl ConnectionProtocol {
#[must_use]
pub fn from_i32(i: i32) -> Option<Self> {
match i {
-1 => Some(ConnectionProtocol::Handshake),
0 => Some(ConnectionProtocol::Game),
1 => Some(ConnectionProtocol::Status),
2 => Some(ConnectionProtocol::Login),
3 => Some(ConnectionProtocol::Configuration),
_ => None,
}
}
}
/// An enum of packets for a certain protocol
pub trait ProtocolPacket
where
Self: Sized,
{
fn id(&self) -> u32;
/// Read a packet by its id, `ConnectionProtocol`, and flow
fn read(id: u32, buf: &mut Cursor<&[u8]>) -> Result<Self, Box<ReadPacketError>>;
fn write(&self, buf: &mut impl Write) -> Result<(), std::io::Error>;
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ClientIntention {
Status = 1,
Login = 2,
Transfer = 3,
}
impl TryFrom<i32> for ClientIntention {
type Error = ();
fn try_from(value: i32) -> Result<Self, Self::Error> {
match value {
1 => Ok(ClientIntention::Status),
2 => Ok(ClientIntention::Login),
3 => Ok(ClientIntention::Transfer),
_ => Err(()),
}
}
}
impl From<ClientIntention> for ConnectionProtocol {
fn from(intention: ClientIntention) -> Self {
match intention {
ClientIntention::Status => ConnectionProtocol::Status,
ClientIntention::Login | ClientIntention::Transfer => ConnectionProtocol::Login,
}
}
}
impl azalea_buf::McBufReadable for ClientIntention {
fn read_from(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError> {
let id = i32::var_read_from(buf)?;
id.try_into()
.map_err(|_| BufReadError::UnexpectedEnumVariant { id })
}
}
impl McBufWritable for ClientIntention {
fn write_into(&self, buf: &mut impl Write) -> Result<(), std::io::Error> {
(*self as i32).var_write_into(buf)
}
}
|