1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-06 20:57:45 +00:00
kawari/src/ipc/zone/social_list.rs
Joshua Goins 5111a38424 Re-organize IPC segments into the ipc module
These were kind of scattered everywhere, instead we should move them
into their own module. Kawari's custom IPC is moved here too.
2025-05-02 00:47:11 -04:00

59 lines
1.3 KiB
Rust

use binrw::binrw;
use crate::common::{CHAR_NAME_MAX_LENGTH, read_string, write_string};
#[binrw]
#[brw(repr = u8)]
#[derive(Debug, Clone, Copy)]
pub enum SocialListRequestType {
Party = 0x1,
Friends = 0x2,
}
#[binrw]
#[derive(Debug, Clone)]
pub struct SocialListRequest {
#[brw(pad_before = 10)] // empty
pub request_type: SocialListRequestType,
#[brw(pad_after = 4)] // empty
pub count: u8,
}
#[binrw]
#[derive(Debug, Clone, Default)]
pub struct PlayerEntry {
pub content_id: u64,
pub unk: [u8; 12],
pub zone_id: u16,
pub zone_id1: u16,
pub unk2: [u8; 8],
pub online_status_mask: u64,
pub class_job: u8,
pub padding: u8,
pub level: u8,
pub padding1: u8,
pub padding2: u16,
pub one: u32,
#[br(count = CHAR_NAME_MAX_LENGTH)]
#[bw(pad_size_to = CHAR_NAME_MAX_LENGTH)]
#[br(map = read_string)]
#[bw(map = write_string)]
pub name: String,
#[br(count = 6)]
#[bw(pad_size_to = 6)]
#[br(map = read_string)]
#[bw(map = write_string)]
pub fc_tag: String,
}
#[binrw]
#[derive(Debug, Clone)]
pub struct SocialList {
#[brw(pad_before = 12)] // empty
pub request_type: SocialListRequestType,
pub sequence: u8,
#[brw(pad_before = 2)] // empty
#[br(count = 10)]
#[bw(pad_size_to = 112 * 10)]
pub entries: Vec<PlayerEntry>,
}