pub mod cost;
pub mod diff;
pub mod gold;
pub mod influence;
pub mod maintenance;
pub mod prelude;
pub mod workforce;
use crate::city::stability::Stability;
use crate::error::{Error, Result};
use crate::infrastructure::mine::MineProduction;
use crate::infrastructure::storage::{OverallStorageCapacity, StorageCapacity};
use crate::market::fee::MarketFee;
use crate::resources::gold::Gold;
use bon::Builder;
use derive_more::Display;
use diff::{FoodDiff, IronDiff, ResourcesDiff, StoneDiff, WoodDiff};
use nil_num::impl_mul_ceil;
use nil_num::mul_ceil::MulCeil;
use nil_util::{ConstDeref, F64Math};
use serde::{Deserialize, Serialize};
use std::cmp::Ordering;
use std::iter::Sum;
use std::num::NonZeroU32;
use std::ops::{Add, AddAssign, Mul, MulAssign, Sub, SubAssign};
#[derive(Builder, Copy, Debug, Deserialize, Serialize)]
#[derive_const(Clone, PartialEq, Eq)]
#[serde(default, rename_all = "camelCase")]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
pub struct Resources {
#[builder(default)]
pub food: Food,
#[builder(default)]
pub iron: Iron,
#[builder(default)]
pub stone: Stone,
#[builder(default)]
pub wood: Wood,
}
impl Resources {
pub const MIN: Self = Self {
food: Food::MIN,
iron: Iron::MIN,
stone: Stone::MIN,
wood: Wood::MIN,
};
pub const MAX: Self = Self {
food: Food::MAX,
iron: Iron::MAX,
stone: Stone::MAX,
wood: Wood::MAX,
};
pub const PLAYER: Self = Self::splat(800);
pub const BOT: Self = Self::splat(2500);
pub const PRECURSOR: Self = Self::splat(5_000_000);
#[inline]
#[must_use]
pub const fn new() -> Self {
Self::MIN
}
#[must_use]
pub const fn splat(value: u32) -> Self {
Self {
food: Food::new(value),
iron: Iron::new(value),
stone: Stone::new(value),
wood: Wood::new(value),
}
}
#[inline]
#[must_use]
pub const fn with_food(self, food: Food) -> Self {
Self { food, ..self }
}
#[inline]
#[must_use]
pub const fn with_iron(self, iron: Iron) -> Self {
Self { iron, ..self }
}
#[inline]
#[must_use]
pub const fn with_stone(self, stone: Stone) -> Self {
Self { stone, ..self }
}
#[inline]
#[must_use]
pub const fn with_wood(self, wood: Wood) -> Self {
Self { wood, ..self }
}
#[must_use]
pub const fn silo(&self) -> Self {
Self {
food: self.food,
iron: Iron::MIN,
stone: Stone::MIN,
wood: Wood::MIN,
}
}
#[must_use]
pub const fn warehouse(&self) -> Self {
Self {
food: Food::MIN,
iron: self.iron,
stone: self.stone,
wood: self.wood,
}
}
pub const fn add_within_capacity(
&mut self,
diff: ResourcesDiff,
capacity: OverallStorageCapacity,
) {
macro_rules! add {
($($resource:ident => $storage:ident),+ $(,)?) => {
$(
let resource = diff.$resource;
let storage = capacity.$storage;
self.$resource.add_within_capacity(resource, storage);
)+
};
}
add!(food => silo, iron => warehouse, stone => warehouse, wood => warehouse);
}
pub fn set(&mut self, resources: impl Into<Resources>) {
*self = resources.into();
}
pub const fn checked_sub(&self, rhs: Resources) -> Option<Self> {
Some(Self {
food: self.food.checked_sub(rhs.food)?,
iron: self.iron.checked_sub(rhs.iron)?,
stone: self.stone.checked_sub(rhs.stone)?,
wood: self.wood.checked_sub(rhs.wood)?,
})
}
pub const fn sum(&self) -> u32 {
let Self { food, iron, stone, wood } = *self;
0u32
.saturating_add(food.0)
.saturating_add(iron.0)
.saturating_add(stone.0)
.saturating_add(wood.0)
}
#[inline]
pub const fn sum_silo(&self) -> u32 {
self.silo().sum()
}
#[inline]
pub const fn sum_warehouse(&self) -> u32 {
self.warehouse().sum()
}
#[inline]
pub const fn is_empty(&self) -> bool {
self.sum() == 0
}
}
const impl Default for Resources {
fn default() -> Self {
Self::new()
}
}
const impl From<u32> for Resources {
fn from(value: u32) -> Self {
Self::splat(value)
}
}
const impl Add for Resources {
type Output = Self;
fn add(self, rhs: Self) -> Self {
Self {
food: self.food + rhs.food,
iron: self.iron + rhs.iron,
stone: self.stone + rhs.stone,
wood: self.wood + rhs.wood,
}
}
}
const impl AddAssign for Resources {
fn add_assign(&mut self, rhs: Self) {
*self = Self {
food: self.food + rhs.food,
iron: self.iron + rhs.iron,
stone: self.stone + rhs.stone,
wood: self.wood + rhs.wood,
};
}
}
const impl Sub for Resources {
type Output = Self;
fn sub(self, rhs: Self) -> Self {
Self {
food: self.food - rhs.food,
iron: self.iron - rhs.iron,
stone: self.stone - rhs.stone,
wood: self.wood - rhs.wood,
}
}
}
const impl SubAssign for Resources {
fn sub_assign(&mut self, rhs: Self) {
*self = Self {
food: self.food - rhs.food,
iron: self.iron - rhs.iron,
stone: self.stone - rhs.stone,
wood: self.wood - rhs.wood,
};
}
}
const impl Mul<u32> for Resources {
type Output = Resources;
fn mul(self, rhs: u32) -> Self::Output {
Resources {
food: self.food * rhs,
iron: self.iron * rhs,
stone: self.stone * rhs,
wood: self.wood * rhs,
}
}
}
const impl Mul<NonZeroU32> for Resources {
type Output = Resources;
fn mul(self, rhs: NonZeroU32) -> Self::Output {
self * rhs.get()
}
}
const impl Mul<MarketFee> for Resources {
type Output = Resources;
fn mul(self, rhs: MarketFee) -> Self::Output {
Self {
food: self.food * rhs,
iron: self.iron * rhs,
stone: self.stone * rhs,
wood: self.wood * rhs,
}
}
}
impl Sum<Resources> for Resources {
fn sum<I>(iter: I) -> Self
where
I: Iterator<Item = Resources>,
{
iter.fold(Resources::default(), |acc, resources| acc + resources)
}
}
impl Sum<Resources> for u32 {
fn sum<I>(iter: I) -> Self
where
I: Iterator<Item = Resources>,
{
iter.fold(0u32, |acc, resources| acc.saturating_add(resources.sum()))
}
}
macro_rules! decl_resource {
($($resource:ident),+ $(,)?) => {
paste::paste! {
$(
#[derive(Copy, Debug, Display, Deserialize, Serialize, ConstDeref, F64Math)]
#[derive_const(Clone, Default, PartialEq, Eq, PartialOrd, Ord)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
pub struct $resource(u32);
impl $resource {
pub const MIN: Self = Self::new(0);
pub const MAX: Self = Self::new(u32::MAX);
pub const MARKET_PRICE: Gold = Gold::new(1);
#[inline]
pub const fn new(value: u32) -> Self {
Self(value)
}
#[inline]
pub const fn checked_sub(self, rhs: Self) -> Option<Self> {
self.0.checked_sub(rhs.0).map(Self::new)
}
pub const fn add_within_capacity(
&mut self,
diff: [<$resource Diff>],
capacity: StorageCapacity
) {
if diff < 0i32 {
*self += diff;
} else if self.0 < *capacity {
let capacity = $resource::from(capacity);
*self = (*self + diff).min(capacity);
}
}
}
const impl From<u32> for $resource {
fn from(value: u32) -> Self {
Self::new(value)
}
}
const impl From<$resource> for u32 {
fn from(value: $resource) -> Self {
value.0
}
}
const impl From<f64> for $resource {
fn from(value: f64) -> Self {
debug_assert!(value.is_finite());
debug_assert!(value >= 0.0);
Self(value.trunc() as u32)
}
}
const impl From<$resource> for f64 {
fn from(value: $resource) -> Self {
f64::from(value.0)
}
}
const impl From<MineProduction> for $resource {
fn from(value: MineProduction) -> Self {
Self(*value)
}
}
const impl From<StorageCapacity> for $resource {
fn from(value: StorageCapacity) -> Self {
Self(*value)
}
}
const impl From<$resource> for Resources {
fn from(value: $resource) -> Self {
let mut resources = Resources::new();
resources.[<$resource:snake>] = value;
resources
}
}
const impl From<$resource> for Gold {
fn from(value: $resource) -> Self {
$resource::MARKET_PRICE * value.0
}
}
impl TryFrom<$resource> for i32 {
type Error = $crate::error::Error;
fn try_from(value: $resource) -> Result<Self> {
match i32::try_from(value.0) {
Ok(value) => Ok(value),
Err(_) => {
let resources = Resources::from(value);
Err(Error::TooManyResources(resources))
},
}
}
}
const impl PartialEq<u32> for $resource {
fn eq(&self, other: &u32) -> bool {
self.0.eq(other)
}
}
const impl PartialOrd<u32> for $resource {
fn partial_cmp(&self, other: &u32) -> Option<Ordering> {
self.0.partial_cmp(other)
}
}
const impl Add for $resource {
type Output = Self;
fn add(self, rhs: Self) -> Self {
Self(self.0.saturating_add(rhs.0))
}
}
const impl Add<u32> for $resource {
type Output = Self;
fn add(self, rhs: u32) -> Self {
Self(self.0.saturating_add(rhs))
}
}
const impl AddAssign for $resource {
fn add_assign(&mut self, rhs: Self) {
*self = *self + rhs;
}
}
const impl Sub for $resource {
type Output = Self;
fn sub(self, rhs: Self) -> Self {
Self(self.0.saturating_sub(rhs.0))
}
}
const impl Sub<u32> for $resource {
type Output = Self;
fn sub(self, rhs: u32) -> Self {
Self(self.0.saturating_sub(rhs))
}
}
const impl SubAssign for $resource {
fn sub_assign(&mut self, rhs: Self) {
*self = *self - rhs;
}
}
const impl Mul<u32> for $resource {
type Output = Self;
fn mul(self, rhs: u32) -> Self::Output {
Self(self.0.saturating_mul(rhs))
}
}
const impl Mul<NonZeroU32> for $resource {
type Output = Self;
fn mul(self, rhs: NonZeroU32) -> Self::Output {
self * rhs.get()
}
}
const impl Mul<MarketFee> for $resource {
type Output = Self;
fn mul(self, rhs: MarketFee) -> Self::Output {
Self::from(self.mul_ceil(*rhs))
}
}
const impl Mul<Stability> for $resource {
type Output = $resource;
fn mul(self, rhs: Stability) -> Self::Output {
Self::from(self.mul_ceil(*rhs))
}
}
const impl MulAssign<u32> for $resource {
fn mul_assign(&mut self, rhs: u32) {
*self = *self * rhs;
}
}
const impl MulAssign<MarketFee> for $resource {
fn mul_assign(&mut self, rhs: MarketFee) {
*self = *self * rhs;
}
}
const impl MulAssign<Stability> for $resource {
fn mul_assign(&mut self, rhs: Stability) {
*self = *self * rhs;
}
}
impl_mul_ceil!($resource);
)+
}
};
}
decl_resource!(Food, Iron, Stone, Wood);