Make announcements optional; Add docs

This commit is contained in:
Jeff 2024-07-13 03:51:37 -04:00
parent 311d8df544
commit 29e3178eba
4 changed files with 61 additions and 45 deletions

View File

@ -36,7 +36,7 @@ You will also need a "config.toml" and it needs it be in a "config" directory th
# config/config.toml # config/config.toml
position = [0, 0, 0] # Change these to the desired X, Y, Z coordinates position = [0, 0, 0] # Change these to the desired X, Y, Z coordinates
orientation = 0 # 0 = North, 90 = West, 180 = South, 270 = East orientation = 0 # 0 = North, 90 = West, 180 = South, 270 = East
announcement = "Crabo loves cheese! I am" # The bot appends " at [location]." to each announcement. announcement = "I love cheese! I am at {location}." # Optional. Announcements are sent every 45 minutes. Use {location} to insert the bot's current location.
[buy_prices] [buy_prices]
"food.cheese" = 50 "food.cheese" = 50

View File

@ -1,6 +1,5 @@
position = [17626.0, 14960.0, 237.0] position = [17720.0, 14951.0, 237.0]
orientation = 90.0 orientation = 0
announcement = "Buying cheese and selling stuff"
[buy_prices] [buy_prices]
"food.cheese" = 50 "food.cheese" = 50

View File

@ -39,7 +39,7 @@ pub struct Bot {
position: [f32; 3], position: [f32; 3],
orientation: f32, orientation: f32,
admins: Vec<String>, admins: Vec<String>,
announcement: String, announcement: Option<String>,
client: Client, client: Client,
clock: Clock, clock: Clock,
@ -68,7 +68,7 @@ impl Bot {
sell_prices: HashMap<String, u32>, sell_prices: HashMap<String, u32>,
position: [f32; 3], position: [f32; 3],
orientation: f32, orientation: f32,
announcement: String, announcement: Option<String>,
) -> Result<Self, String> { ) -> Result<Self, String> {
log::info!("Connecting to veloren"); log::info!("Connecting to veloren");
@ -127,8 +127,15 @@ impl Bot {
/// Run the bot for a single tick. This should be called in a loop. /// Run the bot for a single tick. This should be called in a loop.
/// ///
/// There are three timers in this function:
/// - The [Clock] runs the Veloren client. At **30 ticks per second** this timer is faster than
/// the others so the bot can respond to events quickly.
/// - `last_trade_action` times the bot's behavior to compensate for latency, every **300ms**.
/// - `last_announcement` times the bot's announcements to **45 minutes** and is checked while
/// processing trade actions.
///
/// This function should be modified with care. In addition to being the bot's main loop, it /// This function should be modified with care. In addition to being the bot's main loop, it
/// also accepts incoming trade invites, which has a potential for error if the bot accepts an /// invite while in the wrong trade mode. /// also accepts incoming trade invites, which has a potential for error if the bot accepts an /// invite while in the wrong trade mode. See the inline comments for more information.
pub fn tick(&mut self) -> Result<(), String> { pub fn tick(&mut self) -> Result<(), String> {
let veloren_events = self let veloren_events = self
.client .client
@ -140,19 +147,10 @@ impl Bot {
} }
if self.last_trade_action.elapsed() > Duration::from_millis(300) { if self.last_trade_action.elapsed() > Duration::from_millis(300) {
if self.client.is_dead() {
self.client.respawn(); self.client.respawn();
}
self.handle_position_and_orientation()?; self.handle_position_and_orientation()?;
self.handle_lantern(); self.handle_lantern();
if self.sort_count > 0 {
self.client.sort_inventory();
self.sort_count -= 1;
}
if let Some((_, trade, _)) = self.client.pending_trade() { if let Some((_, trade, _)) = self.client.pending_trade() {
match self.trade_mode { match self.trade_mode {
TradeMode::AdminAccess => { TradeMode::AdminAccess => {
@ -163,13 +161,29 @@ impl Bot {
} }
TradeMode::Trade => self.handle_trade(trade.clone())?, TradeMode::Trade => self.handle_trade(trade.clone())?,
} }
} else if self.client.pending_invites().is_empty() // It should be enough to check the trade mode but the extra check for outgoing
&& self.trade_mode == TradeMode::Trade // invites ensures that the bot doesn't accept an invite while in AdminAccess mode.
// This cannot happen because the bot doesn't send invites in Trade mode but the code
// is here to be extra safe for future refactoring.
} else if TradeMode::Trade == self.trade_mode
&& self.client.pending_invites().is_empty()
{ {
self.client.accept_invite(); self.client.accept_invite();
} }
if self.last_announcement.elapsed() > Duration::from_mins(30) { if self.sort_count > 0 {
self.client.sort_inventory();
self.sort_count -= 1;
if self.sort_count == 0 {
log::info!("Sorted inventory, finished")
} else {
log::info!("Sorted inventory, {} more times to go", self.sort_count);
}
}
if self.last_announcement.elapsed() > Duration::from_mins(45) {
self.handle_announcement()?; self.handle_announcement()?;
self.last_announcement = Instant::now(); self.last_announcement = Instant::now();
@ -215,8 +229,9 @@ impl Bot {
self.sort_count = sort_count; self.sort_count = sort_count;
} else { } else {
log::info!("Sorting inventory");
self.client.sort_inventory(); self.client.sort_inventory();
log::info!("Sorting inventory once");
} }
None None
@ -296,7 +311,7 @@ impl Bot {
.. ..
}) => { }) => {
if let Some(uid) = self.client.uid() { if let Some(uid) = self.client.uid() {
if uid == target && self.last_ouch.elapsed() > Duration::from_secs(1) { if uid == target && self.last_ouch.elapsed() > Duration::from_secs(2) {
self.client self.client
.send_command("say".to_string(), vec!["Ouch!".to_string()]); .send_command("say".to_string(), vec!["Ouch!".to_string()]);
@ -360,11 +375,20 @@ impl Bot {
// Make the bot's trading and help accouncements // Make the bot's trading and help accouncements
// //
// Currently, this will make two announcements: one in /region with basic usage instructions // Currently, this can make two announcements: one in /region with basic usage instructions is // always made. If an announcement was provided when the bot was created, it will make it in
// and one in /world with the [Bot::announcment] field followed by " at [location]." // /world followed by " at [location]."
fn handle_announcement(&mut self) -> Result<(), String> { fn handle_announcement(&mut self) -> Result<(), String> {
log::info!("Making an announcement"); log::info!("Making an announcement");
self.client.send_command(
"region".to_string(),
vec![format!(
"I'm a bot. You can trade with me or check prices: '/tell {} price [search_term]'.",
self.username
)],
);
if let Some(announcement) = &self.announcement {
let location = self let location = self
.client .client
.sites() .sites()
@ -380,18 +404,11 @@ impl Bot {
} }
}) })
.unwrap_or(format!("{:?}", self.position)); .unwrap_or(format!("{:?}", self.position));
let interpolated_announcement = announcement.replace("{location}", &location);
self.client.send_command( self.client
"region".to_string(), .send_command("world".to_string(), vec![interpolated_announcement]);
vec![format!( }
"I'm a bot. You can trade with me or check prices: '/tell {} price [search_term]'.",
self.username
)],
);
self.client.send_command(
"world".to_string(),
vec![format!("{} at {location}.", self.announcement)],
);
Ok(()) Ok(())
} }

View File

@ -19,7 +19,7 @@ pub struct Secrets {
struct Config { struct Config {
pub position: [f32; 3], pub position: [f32; 3],
pub orientation: f32, pub orientation: f32,
pub announcement: String, pub announcement: Option<String>,
pub buy_prices: HashMap<String, u32>, pub buy_prices: HashMap<String, u32>,
pub sell_prices: HashMap<String, u32>, pub sell_prices: HashMap<String, u32>,
} }