Skip to main content

AffectProcessor

Struct AffectProcessor 

Source
pub struct AffectProcessor { /* private fields */ }
Expand description

Tracks affect state and contagion dynamics for agents.

Implementations§

Source§

impl AffectProcessor

Source

pub fn new() -> Self

Source

pub fn with_config(config: ContagionConfig) -> Self

Source

pub fn register_agent( &mut self, agent_id: &str, initial_state: AffectState, resistance: f64, )

Register an agent with initial affect state and resistance.

Source

pub fn get_state(&self, agent_id: &str) -> Option<&AffectState>

Get current affect state for an agent.

Source

pub fn get_agent_affect(&self, agent_id: &str) -> Option<&AgentAffect>

Get full agent affect info.

Source

pub fn set_resistance(&mut self, agent_id: &str, resistance: f64) -> bool

Set resistance level for an agent.

Source

pub fn apply_contagion( &mut self, sender_id: &str, receiver_id: &str, incoming_affect: &AffectState, contagion_strength: f64, ) -> f64

Apply affect contagion from sender to receiver.

The effective change is modulated by:

  • contagion_strength (from the message)
  • receiver’s resistance factor
  • base_strength from config

Returns the effective strength applied (0.0 if blocked by resistance).

Source

pub fn apply_decay(&mut self, elapsed_seconds: f64)

Apply temporal decay — move all agents’ states toward their baselines. Call this periodically (e.g., every second).

Source

pub fn affect_distance(&self, agent_a: &str, agent_b: &str) -> Option<f64>

Get the affect distance between two agents (Euclidean in PAD space).

Source

pub fn agent_count(&self) -> usize

Get number of registered agents.

Source

pub fn get_history(&self, agent_id: &str) -> Option<&[AffectChange]>

Get affect change history for an agent.

Trait Implementations§

Source§

impl Debug for AffectProcessor

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for AffectProcessor

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V