use crate::dynamic_data::{Pokemon, PokemonParty}; use crate::ffi::{ExternPointer, IdentifiablePointer}; use std::sync::Arc; /// Instantiates a party with a set size. #[no_mangle] extern "C" fn pokemon_party_new(capacity: usize) -> IdentifiablePointer> { Arc::new(PokemonParty::new(capacity)).into() } /// Gets a Pokemon at an index in the party. #[no_mangle] extern "C" fn pokemon_party_at( ptr: ExternPointer>, index: usize, ) -> IdentifiablePointer> { if let Some(v) = ptr.as_ref().at(index) { v.into() } else { IdentifiablePointer::none() } } /// Gets a Pokemon at an index in the party. #[no_mangle] extern "C" fn pokemon_party_switch(ptr: ExternPointer>, a: usize, b: usize) { ptr.as_ref().switch(a, b); } /// Sets the Pokemon at an index to a Pokemon, returning the old Pokemon. #[no_mangle] extern "C" fn pokemon_party_swap_into( ptr: ExternPointer>, index: usize, pokemon: ExternPointer>, ) -> IdentifiablePointer> { let pokemon = if pokemon.ptr.is_null() { None } else { Some(pokemon.as_ref().clone()) }; if let Some(v) = ptr.as_ref().swap_into(index, pokemon) { v.into() } else { IdentifiablePointer::none() } } /// Whether or not the party still has Pokemon that can be used in battle. #[no_mangle] extern "C" fn pokemon_party_has_usable_pokemon(ptr: ExternPointer>) -> u8 { u8::from(ptr.as_ref().has_usable_pokemon()) } /// Get the length of the underlying list of Pokemon. #[no_mangle] extern "C" fn pokemon_party_length(ptr: ExternPointer>) -> usize { ptr.as_ref().length() } /// Makes sure there are no empty spots in the party anymore, leaving the length the same. #[no_mangle] extern "C" fn pokemon_party_pack_party(ptr: ExternPointer>) { ptr.as_ref().pack_party() } /// Checks if the party contains a given pokemon. #[no_mangle] extern "C" fn pokemon_party_has_pokemon( ptr: ExternPointer>, pokemon: ExternPointer>, ) -> u8 { u8::from(ptr.as_ref().has_pokemon(pokemon.as_ref())) }