redo active item stuff
This commit is contained in:
parent
a0e82c644c
commit
359120de07
@ -36,18 +36,17 @@ pub enum ItemLocation {
|
|||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq)]
|
|
||||||
pub struct Tool {
|
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
|
||||||
pub tool: tool::ToolType,
|
pub enum ItemType {
|
||||||
|
Weapon(weapon::WeaponType),
|
||||||
|
Armor(armor::ArmorType),
|
||||||
|
Shield(shield::ShieldType),
|
||||||
|
Unit(unit::UnitType),
|
||||||
|
Tool(tool::ToolType),
|
||||||
|
TechniqueDisk(tech::Technique)
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Tool {
|
|
||||||
pub fn as_bytes(&self) -> [u8; 16] {
|
|
||||||
let mut result = [0; 16];
|
|
||||||
result[0..3].copy_from_slice(&self.tool.value());
|
|
||||||
result
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq)]
|
#[derive(Clone, Debug, PartialEq)]
|
||||||
pub enum ItemDetail {
|
pub enum ItemDetail {
|
||||||
@ -55,7 +54,7 @@ pub enum ItemDetail {
|
|||||||
Armor(armor::Armor),
|
Armor(armor::Armor),
|
||||||
Shield(shield::Shield),
|
Shield(shield::Shield),
|
||||||
Unit(unit::Unit),
|
Unit(unit::Unit),
|
||||||
Tool(Tool),
|
Tool(tool::Tool),
|
||||||
TechniqueDisk(tech::TechniqueDisk)
|
TechniqueDisk(tech::TechniqueDisk)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,14 +66,14 @@ impl ItemDetail {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn as_bytes(&self) -> [u8; 16] {
|
pub fn item_type(&self) -> ItemType {
|
||||||
match self {
|
match self {
|
||||||
ItemDetail::Weapon(weapon) => weapon.as_bytes(),
|
ItemDetail::Weapon(w) => ItemType::Weapon(w.weapon),
|
||||||
ItemDetail::Armor(armor) => armor.as_bytes(),
|
ItemDetail::Armor(a) => ItemType::Armor(a.armor),
|
||||||
ItemDetail::Shield(shield) => shield.as_bytes(),
|
ItemDetail::Shield(s) => ItemType::Shield(s.shield),
|
||||||
ItemDetail::Unit(unit) => unit.as_bytes(),
|
ItemDetail::Unit(u) => ItemType::Unit(u.unit),
|
||||||
ItemDetail::Tool(tool) => tool.as_bytes(),
|
ItemDetail::Tool(t) => ItemType::Tool(t.tool),
|
||||||
ItemDetail::TechniqueDisk(tech) => tech.as_bytes(),
|
ItemDetail::TechniqueDisk(d) => ItemType::TechniqueDisk(d.tech),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
use serde::{Serialize, Deserialize};
|
use serde::{Serialize, Deserialize};
|
||||||
|
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
||||||
pub enum Technique {
|
pub enum Technique {
|
||||||
Foie,
|
Foie,
|
||||||
Gifoie,
|
Gifoie,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use serde::{Serialize, Deserialize};
|
use serde::{Serialize, Deserialize};
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone, PartialEq, Serialize, Deserialize, enum_utils::FromStr, derive_more::Display)]
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Serialize, Deserialize, enum_utils::FromStr, derive_more::Display)]
|
||||||
pub enum ToolType {
|
pub enum ToolType {
|
||||||
Monomate,
|
Monomate,
|
||||||
Dimate,
|
Dimate,
|
||||||
@ -394,25 +394,21 @@ impl ToolType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone, PartialEq)]
|
#[derive(Clone, Debug, PartialEq)]
|
||||||
pub struct StackedTool {
|
pub struct Tool {
|
||||||
pub tool: ToolType,
|
pub tool: ToolType,
|
||||||
pub count: usize,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl StackedTool {
|
impl Tool {
|
||||||
pub fn new(tool: ToolType, count: usize) -> StackedTool {
|
pub fn as_individual_bytes(&self) -> [u8; 16] {
|
||||||
StackedTool {
|
|
||||||
tool: tool,
|
|
||||||
count: count,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn as_bytes(&self) -> [u8; 16] {
|
|
||||||
let mut result = [0; 16];
|
let mut result = [0; 16];
|
||||||
result[0..3].copy_from_slice(&self.tool.value());
|
result[0..3].copy_from_slice(&self.tool.value());
|
||||||
result[5] = self.count as u8;
|
result
|
||||||
|
}
|
||||||
|
pub fn as_stacked_bytes(&self, len: usize) -> [u8; 16] {
|
||||||
|
let mut result = [0; 16];
|
||||||
|
result[0..3].copy_from_slice(&self.tool.value());
|
||||||
|
result[5] = len as u8;
|
||||||
result
|
result
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,7 +61,7 @@ pub enum WeaponSpecial {
|
|||||||
Demons,
|
Demons,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone, PartialEq, Serialize, Deserialize, enum_utils::FromStr, derive_more::Display)]
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, Serialize, Deserialize, enum_utils::FromStr, derive_more::Display)]
|
||||||
pub enum WeaponType {
|
pub enum WeaponType {
|
||||||
Saber,
|
Saber,
|
||||||
Brand,
|
Brand,
|
||||||
|
@ -17,10 +17,11 @@ use libpso::{utf8_to_array, utf8_to_utf16_array};
|
|||||||
|
|
||||||
use crate::entity::gateway::EntityGateway;
|
use crate::entity::gateway::EntityGateway;
|
||||||
use crate::entity::account::{UserAccount, USERFLAG_NEWCHAR, USERFLAG_DRESSINGROOM};
|
use crate::entity::account::{UserAccount, USERFLAG_NEWCHAR, USERFLAG_DRESSINGROOM};
|
||||||
use crate::entity::item::{ItemDetail, ItemLocation, Tool};
|
use crate::entity::item::{ItemDetail, ItemLocation};
|
||||||
use crate::entity::item::weapon::Weapon;
|
use crate::entity::item::weapon::Weapon;
|
||||||
use crate::entity::item::armor::Armor;
|
use crate::entity::item::armor::Armor;
|
||||||
use crate::entity::item::tech::Technique;
|
use crate::entity::item::tech::Technique;
|
||||||
|
use crate::entity::item::tool::Tool;
|
||||||
use crate::entity::character::{Character, CharacterClass, TechLevel};
|
use crate::entity::character::{Character, CharacterClass, TechLevel};
|
||||||
|
|
||||||
use crate::login::login::get_login_status;
|
use crate::login::login::get_login_status;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
use libpso::character::character;
|
use libpso::character::character;
|
||||||
use crate::common::leveltable::CharacterStats;
|
use crate::common::leveltable::CharacterStats;
|
||||||
use crate::entity::character::Character;
|
use crate::entity::character::Character;
|
||||||
use crate::ship::items::Inventory;
|
use crate::ship::items::ActiveInventory;
|
||||||
|
|
||||||
// TODO: exp
|
// TODO: exp
|
||||||
pub struct CharacterBytesBuilder<'a> {
|
pub struct CharacterBytesBuilder<'a> {
|
||||||
@ -79,7 +79,7 @@ pub struct FullCharacterBytesBuilder<'a> {
|
|||||||
character: Option<&'a Character>,
|
character: Option<&'a Character>,
|
||||||
stats: Option<&'a CharacterStats>,
|
stats: Option<&'a CharacterStats>,
|
||||||
level: Option<u32>,
|
level: Option<u32>,
|
||||||
inventory: Option<&'a Inventory>,
|
inventory: Option<&'a ActiveInventory>,
|
||||||
key_config: Option<&'a [u8; 0x16C]>,
|
key_config: Option<&'a [u8; 0x16C]>,
|
||||||
joystick_config: Option<&'a [u8; 0x38]>,
|
joystick_config: Option<&'a [u8; 0x38]>,
|
||||||
}
|
}
|
||||||
@ -118,7 +118,7 @@ impl<'a> FullCharacterBytesBuilder<'a> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn inventory(self, inventory: &'a Inventory) -> FullCharacterBytesBuilder<'a> {
|
pub fn inventory(self, inventory: &'a ActiveInventory) -> FullCharacterBytesBuilder<'a> {
|
||||||
FullCharacterBytesBuilder {
|
FullCharacterBytesBuilder {
|
||||||
inventory: Some(inventory),
|
inventory: Some(inventory),
|
||||||
..self
|
..self
|
||||||
|
@ -4,8 +4,8 @@ use serde::{Serialize, Deserialize};
|
|||||||
use rand::{Rng, SeedableRng};
|
use rand::{Rng, SeedableRng};
|
||||||
use rand::distributions::{WeightedIndex, Distribution};
|
use rand::distributions::{WeightedIndex, Distribution};
|
||||||
|
|
||||||
use crate::entity::item::{ItemDetail, Tool as ToolDetail};
|
use crate::entity::item::ItemDetail;
|
||||||
use crate::entity::item::tool::{StackedTool, ToolType};
|
use crate::entity::item::tool::{Tool, ToolType};
|
||||||
use crate::ship::room::{Difficulty, Episode};
|
use crate::ship::room::{Difficulty, Episode};
|
||||||
use crate::ship::map::MapVariantType;
|
use crate::ship::map::MapVariantType;
|
||||||
use crate::entity::character::SectionID;
|
use crate::entity::character::SectionID;
|
||||||
@ -132,7 +132,7 @@ impl ToolTable {
|
|||||||
pub fn get_drop<R: Rng>(&self, map_area: &MapVariantType, rng: &mut R) -> Option<ItemDetail> {
|
pub fn get_drop<R: Rng>(&self, map_area: &MapVariantType, rng: &mut R) -> Option<ItemDetail> {
|
||||||
let tool_type = self.tool_type(map_area, rng);
|
let tool_type = self.tool_type(map_area, rng);
|
||||||
|
|
||||||
Some(ItemDetail::Tool(ToolDetail {
|
Some(ItemDetail::Tool(Tool {
|
||||||
tool: tool_type
|
tool: tool_type
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
@ -1,244 +1,186 @@
|
|||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::hash::{Hash, Hasher};
|
|
||||||
|
|
||||||
use libpso::character::character::InventoryItem;
|
use libpso::character::character::InventoryItem;
|
||||||
|
|
||||||
use crate::entity::item::{Item, ItemDetail, ItemLocation};
|
use crate::entity::gateway::EntityGateway;
|
||||||
|
use crate::entity::character::Character;
|
||||||
|
use crate::entity::item::{Item, ItemId, ItemDetail, ItemLocation};
|
||||||
use crate::entity::item::weapon::Weapon;
|
use crate::entity::item::weapon::Weapon;
|
||||||
use crate::entity::item::armor::Armor;
|
use crate::entity::item::armor::Armor;
|
||||||
use crate::entity::item::shield::Shield;
|
use crate::entity::item::shield::Shield;
|
||||||
use crate::entity::item::unit::Unit;
|
use crate::entity::item::unit::Unit;
|
||||||
use crate::entity::item::tool::StackedTool;
|
use crate::entity::item::tool::Tool;
|
||||||
|
|
||||||
|
|
||||||
fn are_items_same_type(itema: &Item, itemb: &Item) -> bool {
|
|
||||||
match (&itema.item, &itemb.item) {
|
|
||||||
(ItemDetail::Weapon(a), ItemDetail::Weapon(b)) => a.weapon == b.weapon,
|
|
||||||
(ItemDetail::Armor(a), ItemDetail::Armor(b)) => a.armor == b.armor,
|
|
||||||
(ItemDetail::Shield(a), ItemDetail::Shield(b)) => a.shield == b.shield,
|
|
||||||
(ItemDetail::Unit(a), ItemDetail::Unit(b)) => a.unit == b.unit,
|
|
||||||
(ItemDetail::Tool(a), ItemDetail::Tool(b)) => a.tool == b.tool,
|
|
||||||
_ => false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub struct ActiveItemId(u32);
|
|
||||||
|
|
||||||
// TODO: Stacked(count, itemtype Vec<ItemId>)?
|
|
||||||
#[derive(Debug, PartialEq)]
|
#[derive(Debug, PartialEq)]
|
||||||
pub enum StackedItem {
|
pub enum StackedItem {
|
||||||
Individual(Item),
|
Individual(Item),
|
||||||
Stacked(Vec<Item>),
|
Stacked(Vec<Item>),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl StackedItem {
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
||||||
fn is_same_item_type(&self, item: &Item) -> bool {
|
pub struct ActiveItemId(u32);
|
||||||
match self {
|
|
||||||
StackedItem::Individual(i) => are_items_same_type(i, item),
|
|
||||||
StackedItem::Stacked(i) => i.iter().all(|k| are_items_same_type(k, item))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn index(&self) -> usize {
|
|
||||||
match self {
|
|
||||||
StackedItem::Individual(Item {location: ItemLocation::Inventory {index, ..}, ..}) => *index,
|
|
||||||
StackedItem::Stacked(items) => {
|
|
||||||
match items[0].location {
|
|
||||||
ItemLocation::Inventory {index, ..} => index,
|
|
||||||
_ => panic!()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => panic!()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn as_bytes(&self) -> [u8; 16] {
|
|
||||||
match self {
|
|
||||||
StackedItem::Individual(item) => {
|
|
||||||
item.item.as_bytes()
|
|
||||||
}
|
|
||||||
StackedItem::Stacked(items) => {
|
|
||||||
let count = items.len();
|
|
||||||
match &items[0].item {
|
|
||||||
ItemDetail::Tool(tool) => {
|
|
||||||
StackedTool {
|
|
||||||
tool: tool.tool,
|
|
||||||
count: count
|
|
||||||
}.as_bytes()
|
|
||||||
},
|
|
||||||
_ => panic!()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct ActiveItem {
|
||||||
|
id: ActiveItemId,
|
||||||
|
item: StackedItem,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl ActiveItem {
|
||||||
|
pub fn as_client_bytes(&self) -> [u8; 16] {
|
||||||
|
match &self.item {
|
||||||
|
StackedItem::Individual(i) => {
|
||||||
|
match &i.item {
|
||||||
|
ItemDetail::Weapon(w) => w.as_bytes(),
|
||||||
|
ItemDetail::Armor(a) => a.as_bytes(),
|
||||||
|
ItemDetail::Shield(s) => s.as_bytes(),
|
||||||
|
ItemDetail::Unit(u) => u.as_bytes(),
|
||||||
|
ItemDetail::Tool(t) => t.as_individual_bytes(),
|
||||||
|
ItemDetail::TechniqueDisk(d) => d.as_bytes(),
|
||||||
|
}
|
||||||
|
},
|
||||||
|
StackedItem::Stacked(i) => {
|
||||||
|
let len = i.len();
|
||||||
|
match &i[0].item {
|
||||||
|
ItemDetail::Tool(t) => t.as_stacked_bytes(len),
|
||||||
|
_ => panic!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub struct ItemActivator {
|
pub struct ActiveInventory(Vec<ActiveItem>);
|
||||||
|
|
||||||
|
impl ActiveInventory {
|
||||||
|
pub fn as_client_inventory_items(&self) -> [InventoryItem; 30] {
|
||||||
|
self.0.iter()
|
||||||
|
.enumerate()
|
||||||
|
.fold([InventoryItem::default(); 30], |mut inventory, (index, item)| {
|
||||||
|
let bytes = item.as_client_bytes();
|
||||||
|
inventory[index].data1.copy_from_slice(&bytes[0..12]);
|
||||||
|
inventory[index].item_id = item.id.0;
|
||||||
|
|
||||||
|
// does this do anything?
|
||||||
|
inventory[index].equipped = match item.item {
|
||||||
|
StackedItem::Individual(Item {item: ItemDetail::Weapon(Weapon {equipped: true, ..}), ..}) => 1,
|
||||||
|
StackedItem::Individual(Item {item: ItemDetail::Armor(Armor {equipped: true, ..}), ..}) => 1,
|
||||||
|
StackedItem::Individual(Item {item: ItemDetail::Shield(Shield {equipped: true, ..}), ..}) => 1,
|
||||||
|
StackedItem::Individual(Item {item: ItemDetail::Unit(Unit{equipped: true, ..}), ..}) => 1,
|
||||||
|
//StackedItem::Individual(Item {item: ItemDetail::Mag(Mag{equipped: true, ..}), ..}) => 1,
|
||||||
|
_ => 0,
|
||||||
|
};
|
||||||
|
// because this actually equips the item
|
||||||
|
inventory[index].flags |= match item.item {
|
||||||
|
StackedItem::Individual(Item {item: ItemDetail::Weapon(Weapon {equipped: true, ..}), ..}) => 8,
|
||||||
|
StackedItem::Individual(Item {item: ItemDetail::Armor(Armor {equipped: true, ..}), ..}) => 8,
|
||||||
|
StackedItem::Individual(Item {item: ItemDetail::Shield(Shield {equipped: true, ..}), ..}) => 8,
|
||||||
|
StackedItem::Individual(Item {item: ItemDetail::Unit(Unit {equipped: true, ..}), ..}) => 8,
|
||||||
|
//StackedItem::Individual(Item {item: ItemDetail::Mag(Mag{equipped: true, ..}), ..}) => 8,
|
||||||
|
_ => 0,
|
||||||
|
};
|
||||||
|
inventory
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn count(&self) -> usize {
|
||||||
|
self.0.len()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn inventory_item_index(item: &StackedItem) -> usize {
|
||||||
|
match item {
|
||||||
|
StackedItem::Individual(i) => {
|
||||||
|
match i.location {
|
||||||
|
ItemLocation::Inventory{index: index, ..} => index,
|
||||||
|
_ => panic!()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
StackedItem::Stacked(i) => {
|
||||||
|
match i[0].location {
|
||||||
|
ItemLocation::Inventory{index: index, ..} => index,
|
||||||
|
_ => panic!()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn stack_items(items: Vec<Item>) -> Vec<StackedItem> {
|
||||||
|
let mut stacks = HashMap::new();
|
||||||
|
|
||||||
|
for item in items {
|
||||||
|
stacks.entry(item.item.item_type()).or_insert(Vec::new()).push(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
stacks.into_iter()
|
||||||
|
.map(|(itype, items)| {
|
||||||
|
match items[0].item.is_stackable() {
|
||||||
|
true => {
|
||||||
|
vec![StackedItem::Stacked(items)]
|
||||||
|
},
|
||||||
|
false => {
|
||||||
|
items.into_iter().map(|i| {
|
||||||
|
StackedItem::Individual(i)
|
||||||
|
}).collect()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.flatten()
|
||||||
|
.collect()
|
||||||
|
}
|
||||||
|
|
||||||
|
struct ActiveBank([Option<ActiveItemId>; 200]);
|
||||||
|
|
||||||
|
pub struct ActiveItemDatabase {
|
||||||
id: u32,
|
id: u32,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ItemActivator {
|
|
||||||
pub fn new() -> ItemActivator {
|
|
||||||
ItemActivator {
|
impl ActiveItemDatabase {
|
||||||
id: 0
|
pub fn new() -> ActiveItemDatabase {
|
||||||
|
ActiveItemDatabase {
|
||||||
|
id: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn activate_item(&mut self, item: StackedItem) -> ActiveItem {
|
fn activate_item(&mut self, item: StackedItem) -> ActiveItem {
|
||||||
self.id += 1;
|
self.id += 1;
|
||||||
ActiveItem {
|
ActiveItem {
|
||||||
id: ActiveItemId(self.id),
|
id: ActiveItemId(self.id),
|
||||||
item: item,
|
item: item,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
// deactivate item
|
||||||
|
|
||||||
#[derive(Debug)]
|
pub fn get_character_inventory<EG: EntityGateway>(&mut self, entity_gateway: &mut EG, character: &Character) -> ActiveInventory {
|
||||||
pub struct ActiveItem {
|
let items = entity_gateway.get_items_by_character(&character);
|
||||||
pub id: ActiveItemId,
|
let inventory_items = items.into_iter()
|
||||||
pub item: StackedItem,
|
.filter(|item| {
|
||||||
}
|
match item.location {
|
||||||
|
ItemLocation::Inventory{..} => true,
|
||||||
|
_ => false,
|
||||||
struct StackedItemKey(Item);
|
|
||||||
|
|
||||||
impl Hash for StackedItemKey {
|
|
||||||
fn hash<H: Hasher>(&self, hasher: &mut H) {
|
|
||||||
match &self.0.item {
|
|
||||||
ItemDetail::Weapon(w) => w.weapon.value().hash(hasher),
|
|
||||||
ItemDetail::Armor(a) => a.armor.value().hash(hasher),
|
|
||||||
ItemDetail::Shield(s) => s.shield.value().hash(hasher),
|
|
||||||
ItemDetail::Unit(u) => u.unit.value().hash(hasher),
|
|
||||||
ItemDetail::Tool(t) => t.tool.value().hash(hasher),
|
|
||||||
ItemDetail::TechniqueDisk(t) => t.tech.hash(hasher),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl std::cmp::PartialEq for StackedItemKey {
|
|
||||||
fn eq(&self, other: &StackedItemKey) -> bool {
|
|
||||||
are_items_same_type(&self.0, &other.0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Eq for StackedItemKey {}
|
|
||||||
|
|
||||||
pub fn stack_items(items: Vec<Item>) -> Vec<StackedItem> {
|
|
||||||
items.into_iter()
|
|
||||||
.fold(HashMap::new(), |mut stacked: HashMap<StackedItemKey, Vec<Item>>, item| {
|
|
||||||
stacked.entry(StackedItemKey(item.clone()))
|
|
||||||
.and_modify(|stack| stack.push(item.clone()))
|
|
||||||
.or_insert_with(|| {
|
|
||||||
vec![item]
|
|
||||||
});
|
|
||||||
|
|
||||||
stacked
|
|
||||||
})
|
|
||||||
.into_iter()
|
|
||||||
.map(|(_k, v)| {
|
|
||||||
v
|
|
||||||
})
|
|
||||||
.fold(Vec::new(), |mut stacked, item| {
|
|
||||||
if item[0].item.is_stackable() {
|
|
||||||
stacked.push(StackedItem::Stacked(item))
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stacked.append(&mut item.into_iter().map(|k| StackedItem::Individual(k)).collect())
|
|
||||||
}
|
|
||||||
|
|
||||||
stacked
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
pub enum InventoryAddError {
|
|
||||||
InventoryFull,
|
|
||||||
FullToolStack,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub enum InventoryRemoveError {
|
|
||||||
NoItemInInventory,
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
pub struct Inventory([Option<ActiveItem>; 30]);
|
|
||||||
|
|
||||||
impl Inventory {
|
|
||||||
pub fn new(items: Vec<ActiveItem>) -> Inventory {
|
|
||||||
items.into_iter()
|
|
||||||
.fold(Inventory([None; 30]), |mut inventory, item| {
|
|
||||||
let index = item.item.index();
|
|
||||||
inventory.0[index] = Some(item);
|
|
||||||
inventory
|
|
||||||
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn count(&self) -> usize {
|
|
||||||
self.0.iter()
|
|
||||||
.filter(|k| k.is_some())
|
|
||||||
.count()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn as_client_inventory_items(&self) -> [InventoryItem; 30] {
|
|
||||||
self.0.iter()
|
|
||||||
.enumerate()
|
|
||||||
.fold([InventoryItem::default(); 30], |mut inventory, (index, item)| {
|
|
||||||
if let Some(i) = item {
|
|
||||||
let bytes = i.item.as_bytes();
|
|
||||||
inventory[index].data1.copy_from_slice(&bytes[0..12]);
|
|
||||||
inventory[index].item_id = i.id.0;
|
|
||||||
|
|
||||||
// does this do anything?
|
|
||||||
inventory[index].equipped = match i.item {
|
|
||||||
StackedItem::Individual(Item {item: ItemDetail::Weapon(Weapon {equipped: true, ..}), ..}) => 1,
|
|
||||||
StackedItem::Individual(Item {item: ItemDetail::Armor(Armor {equipped: true, ..}), ..}) => 1,
|
|
||||||
StackedItem::Individual(Item {item: ItemDetail::Shield(Shield {equipped: true, ..}), ..}) => 1,
|
|
||||||
StackedItem::Individual(Item {item: ItemDetail::Unit(Unit{equipped: true, ..}), ..}) => 1,
|
|
||||||
_ => 0,
|
|
||||||
};
|
|
||||||
// because this actually equips the item
|
|
||||||
inventory[index].flags |= match i.item {
|
|
||||||
StackedItem::Individual(Item {item: ItemDetail::Weapon(Weapon {equipped: true, ..}), ..}) => 8,
|
|
||||||
StackedItem::Individual(Item {item: ItemDetail::Armor(Armor {equipped: true, ..}), ..}) => 8,
|
|
||||||
StackedItem::Individual(Item {item: ItemDetail::Shield(Shield {equipped: true, ..}), ..}) => 8,
|
|
||||||
StackedItem::Individual(Item {item: ItemDetail::Unit(Unit {equipped: true, ..}), ..}) => 8,
|
|
||||||
_ => 0,
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
inventory
|
}).collect();
|
||||||
})
|
let mut stacked = stack_items(inventory_items);
|
||||||
|
stacked.sort_by(|a, b| {
|
||||||
|
inventory_item_index(a).partial_cmp(&inventory_item_index(b)).unwrap()
|
||||||
|
});
|
||||||
|
let activated = stacked.into_iter().map(|i| self.activate_item(i));
|
||||||
|
ActiveInventory(activated.take(30).collect())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
pub struct Bank {}
|
|
||||||
|
|
||||||
|
|
||||||
pub fn split_items_into_inventory_and_bank(items: Vec<Item>) -> (Vec<Item>, Vec<Item>) {
|
|
||||||
items.into_iter().partition(|item| {
|
|
||||||
match item.location {
|
|
||||||
ItemLocation::Inventory{..} => true,
|
|
||||||
ItemLocation::Bank{..} => false,
|
|
||||||
ItemLocation::Floor{..} => panic!("oh god what happened"),
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
mod test {
|
mod test {
|
||||||
use super::*;
|
use super::*;
|
||||||
use crate::entity::item;
|
use crate::entity::item;
|
||||||
use crate::entity::item::{Item, ItemDetail, ItemEntityId, ItemLocation, Tool};
|
use crate::entity::item::{Item, ItemDetail, ItemEntityId, ItemLocation};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_stacked_items() {
|
fn test_stack_items() {
|
||||||
let item1 = Item {
|
let item1 = Item {
|
||||||
id: ItemEntityId(1),
|
id: ItemEntityId(1),
|
||||||
location: ItemLocation::Inventory {
|
location: ItemLocation::Inventory {
|
||||||
@ -344,7 +286,6 @@ mod test {
|
|||||||
tool: item::tool::ToolType::Monomate,
|
tool: item::tool::ToolType::Monomate,
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|
||||||
let item_vec = vec![item1.clone(), item2.clone(), item3.clone(), item4.clone(), item5.clone(), item6.clone(), item7.clone(), item8.clone(), item9.clone()];
|
let item_vec = vec![item1.clone(), item2.clone(), item3.clone(), item4.clone(), item5.clone(), item6.clone(), item7.clone(), item8.clone(), item9.clone()];
|
||||||
|
|
||||||
let stacked = stack_items(item_vec);
|
let stacked = stack_items(item_vec);
|
||||||
|
@ -122,14 +122,14 @@ struct ClientState {
|
|||||||
settings: UserSettings,
|
settings: UserSettings,
|
||||||
character: Character,
|
character: Character,
|
||||||
session: Session,
|
session: Session,
|
||||||
inventory: items::Inventory,
|
|
||||||
guildcard: GuildCard,
|
guildcard: GuildCard,
|
||||||
|
inventory: items::ActiveInventory,
|
||||||
//bank: Bank,
|
//bank: Bank,
|
||||||
block: u32,
|
block: u32,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ClientState {
|
impl ClientState {
|
||||||
fn new(user: UserAccount, settings: UserSettings, character: Character, inventory: items::Inventory, /*bank: Bank,*/ session: Session, guildcard: GuildCard) -> ClientState {
|
fn new(user: UserAccount, settings: UserSettings, character: Character, inventory: items::ActiveInventory, /*bank: Bank,*/ session: Session, guildcard: GuildCard) -> ClientState {
|
||||||
ClientState {
|
ClientState {
|
||||||
user: user,
|
user: user,
|
||||||
settings: settings,
|
settings: settings,
|
||||||
@ -143,6 +143,7 @@ impl ClientState {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
pub struct ShipServerState<EG: EntityGateway> {
|
pub struct ShipServerState<EG: EntityGateway> {
|
||||||
entity_gateway: EG,
|
entity_gateway: EG,
|
||||||
clients: HashMap<ClientId, ClientState>,
|
clients: HashMap<ClientId, ClientState>,
|
||||||
@ -150,7 +151,7 @@ pub struct ShipServerState<EG: EntityGateway> {
|
|||||||
level_table: CharacterLevelTable,
|
level_table: CharacterLevelTable,
|
||||||
name: String,
|
name: String,
|
||||||
rooms: [Option<room::RoomState>; MAX_ROOMS],
|
rooms: [Option<room::RoomState>; MAX_ROOMS],
|
||||||
item_activator: items::ItemActivator,
|
item_database: items::ActiveItemDatabase,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<EG: EntityGateway> ShipServerState<EG> {
|
impl<EG: EntityGateway> ShipServerState<EG> {
|
||||||
@ -162,7 +163,7 @@ impl<EG: EntityGateway> ShipServerState<EG> {
|
|||||||
level_table: CharacterLevelTable::new(),
|
level_table: CharacterLevelTable::new(),
|
||||||
name: "Sona-Nyl".into(),
|
name: "Sona-Nyl".into(),
|
||||||
rooms: [None; MAX_ROOMS],
|
rooms: [None; MAX_ROOMS],
|
||||||
item_activator: items::ItemActivator::new(),
|
item_database: items::ActiveItemDatabase::new(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -180,14 +181,9 @@ impl<EG: EntityGateway> ShipServerState<EG> {
|
|||||||
.clone();
|
.clone();
|
||||||
let settings = self.entity_gateway.get_user_settings_by_user(&user)
|
let settings = self.entity_gateway.get_user_settings_by_user(&user)
|
||||||
.ok_or(ShipError::ClientNotFound(id))?;
|
.ok_or(ShipError::ClientNotFound(id))?;
|
||||||
|
|
||||||
let items = self.entity_gateway.get_items_by_character(&character);
|
|
||||||
let (inventory, bank) = items::split_items_into_inventory_and_bank(items);
|
|
||||||
let stacked_items = items::stack_items(inventory);
|
|
||||||
let activated_items = stacked_items.into_iter().map(|item| self.item_activator.activate_item(item)).collect();
|
|
||||||
let inventory = items::Inventory::new(activated_items);
|
|
||||||
let guildcard = self.entity_gateway.get_guild_card_by_character(&character)
|
let guildcard = self.entity_gateway.get_guild_card_by_character(&character)
|
||||||
.ok_or(ShipError::ClientNotFound(id))?;
|
.ok_or(ShipError::ClientNotFound(id))?;
|
||||||
|
let inventory = self.item_database.get_character_inventory(&mut self.entity_gateway, &character);
|
||||||
|
|
||||||
self.clients.insert(id, ClientState::new(user, settings, character, inventory, pkt.session, guildcard));
|
self.clients.insert(id, ClientState::new(user, settings, character, inventory, pkt.session, guildcard));
|
||||||
vec![SendShipPacket::LoginResponse(response), SendShipPacket::ShipBlockList(ShipBlockList::new(&self.name, 3))]
|
vec![SendShipPacket::LoginResponse(response), SendShipPacket::ShipBlockList(ShipBlockList::new(&self.name, 3))]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user