mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Changed durability persistence to a NonZeroU32
This commit is contained in:
parent
011b6c3feb
commit
52a62420db
@ -1228,7 +1228,11 @@ impl Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn persistence_set_durability(&mut self, value: Option<u32>) {
|
pub fn persistence_durability(&self) -> Option<NonZeroU32> {
|
||||||
|
self.durability.and_then(NonZeroU32::new)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn persistence_set_durability(&mut self, value: Option<NonZeroU32>) {
|
||||||
// If changes have been made so that item no longer needs to track durability,
|
// If changes have been made so that item no longer needs to track durability,
|
||||||
// set to None
|
// set to None
|
||||||
if !self.has_durability() {
|
if !self.has_durability() {
|
||||||
@ -1236,7 +1240,7 @@ impl Item {
|
|||||||
} else {
|
} else {
|
||||||
// Set durability to persisted value, and if item previously had no durability,
|
// Set durability to persisted value, and if item previously had no durability,
|
||||||
// set to Some(0) so that durability will be tracked
|
// set to Some(0) so that durability will be tracked
|
||||||
self.durability = Some(value.unwrap_or(0));
|
self.durability = Some(value.map_or(0, NonZeroU32::get));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1022,16 +1022,17 @@ impl TradePricing {
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
fn print_sorted(&self) {
|
fn print_sorted(&self) {
|
||||||
use crate::comp::item::armor; //, ItemKind, MaterialStatManifest};
|
use crate::comp::item::{armor, DurabilityMultiplier}; //, ItemKind, MaterialStatManifest};
|
||||||
|
|
||||||
println!("Item, ForSale, Amount, Good, Quality, Deal, Unit,");
|
println!("Item, ForSale, Amount, Good, Quality, Deal, Unit,");
|
||||||
|
|
||||||
fn more_information(i: &Item, p: f32) -> (String, &'static str) {
|
fn more_information(i: &Item, p: f32) -> (String, &'static str) {
|
||||||
let msm = &MaterialStatManifest::load().read();
|
let msm = &MaterialStatManifest::load().read();
|
||||||
|
let durability_multiplier = DurabilityMultiplier(1.0);
|
||||||
|
|
||||||
if let ItemKind::Armor(a) = &*i.kind() {
|
if let ItemKind::Armor(a) = &*i.kind() {
|
||||||
(
|
(
|
||||||
match a.stats(msm).protection {
|
match a.stats(msm, durability_multiplier).protection {
|
||||||
Some(armor::Protection::Invincible) => "Invincible".into(),
|
Some(armor::Protection::Invincible) => "Invincible".into(),
|
||||||
Some(armor::Protection::Normal(x)) => format!("{:.4}", x * p),
|
Some(armor::Protection::Normal(x)) => format!("{:.4}", x * p),
|
||||||
None => "0.0".into(),
|
None => "0.0".into(),
|
||||||
@ -1039,10 +1040,8 @@ impl TradePricing {
|
|||||||
"prot/val",
|
"prot/val",
|
||||||
)
|
)
|
||||||
} else if let ItemKind::Tool(t) = &*i.kind() {
|
} else if let ItemKind::Tool(t) = &*i.kind() {
|
||||||
(
|
let stats = t.stats(durability_multiplier);
|
||||||
format!("{:.4}", t.stats.power * t.stats.speed * p),
|
(format!("{:.4}", stats.power * stats.speed * p), "dps/val")
|
||||||
"dps/val",
|
|
||||||
)
|
|
||||||
} else if let ItemKind::Consumable { kind: _, effects } = &*i.kind() {
|
} else if let ItemKind::Consumable { kind: _, effects } = &*i.kind() {
|
||||||
(
|
(
|
||||||
effects
|
effects
|
||||||
|
@ -2,7 +2,7 @@ use common::comp;
|
|||||||
use common_base::dev_panic;
|
use common_base::dev_panic;
|
||||||
use hashbrown::HashMap;
|
use hashbrown::HashMap;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use std::string::ToString;
|
use std::{num::NonZeroU32, string::ToString};
|
||||||
use vek::{Vec2, Vec3};
|
use vek::{Vec2, Vec3};
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
@ -286,15 +286,18 @@ pub fn active_abilities_from_db_model(
|
|||||||
comp::ability::ActiveAbilities::new(ability_sets)
|
comp::ability::ActiveAbilities::new(ability_sets)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Struct containing item properties in the format that they get persisted to
|
||||||
|
/// the database. Adding new fields is generally safe as long as they are
|
||||||
|
/// optional. Renaming or removing old fields will require a migration.
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
pub struct DatabaseItemProperties {
|
pub struct DatabaseItemProperties {
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
durability: Option<u32>,
|
durability: Option<NonZeroU32>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn item_properties_to_db_model(item: &comp::Item) -> DatabaseItemProperties {
|
pub fn item_properties_to_db_model(item: &comp::Item) -> DatabaseItemProperties {
|
||||||
DatabaseItemProperties {
|
DatabaseItemProperties {
|
||||||
durability: item.durability(),
|
durability: item.persistence_durability(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -302,3 +305,16 @@ pub fn apply_db_item_properties(item: &mut comp::Item, properties: &DatabaseItem
|
|||||||
let DatabaseItemProperties { durability } = properties;
|
let DatabaseItemProperties { durability } = properties;
|
||||||
item.persistence_set_durability(*durability);
|
item.persistence_set_durability(*durability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
pub mod tests {
|
||||||
|
#[test]
|
||||||
|
fn test_default_item_properties() {
|
||||||
|
use super::DatabaseItemProperties;
|
||||||
|
const DEFAULT_ITEM_PROPERTIES: &str = "{}";
|
||||||
|
let _ = serde_json::de::from_str::<DatabaseItemProperties>(DEFAULT_ITEM_PROPERTIES).expect(
|
||||||
|
"Default value should always load to ensure that changes to item properties is always \
|
||||||
|
forward compatible with migration V50.",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user