use ore_mint_api::consts::ONE_ORE;
use serde::{Deserialize, Serialize};
use steel::*;
use crate::state::{automation_pda, OreAccount};
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable, Serialize, Deserialize)]
pub struct Automation {
pub amount: u64,
pub authority: Pubkey,
pub balance: u64,
pub executor: Pubkey,
pub fee: u64,
pub strategy: u64,
pub mask: u64,
pub reload: u64,
pub total_sol_spent: u64,
pub total_ore_earned: u64,
pub conditions: AutomationConditions,
}
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable, Serialize, Deserialize)]
pub struct AutomationConditions {
pub max_production_cost: u64,
pub min_motherlode: u64,
pub max_motherlode: u64,
}
#[repr(u8)]
#[derive(Clone, Copy, Debug, PartialEq, IntoPrimitive, TryFromPrimitive)]
pub enum AutomationStrategy {
Random = 0,
Preferred = 1,
Discretionary = 2,
}
impl AutomationStrategy {
pub fn from_u64(value: u64) -> Self {
Self::try_from(value as u8).unwrap()
}
}
impl Default for AutomationConditions {
fn default() -> Self {
Self {
max_production_cost: u64::MAX,
min_motherlode: 0,
max_motherlode: u64::MAX,
}
}
}
impl Automation {
pub fn pda(&self) -> (Pubkey, u8) {
automation_pda(self.authority)
}
pub fn production_cost(&self) -> u64 {
if self.total_ore_earned == 0 {
return 0;
}
((self.total_sol_spent as u128) * (ONE_ORE as u128) / (self.total_ore_earned as u128))
as u64
}
}
account!(OreAccount, Automation);