Add features
This commit is contained in:
parent
8cb41eb12c
commit
1abc5ac6f1
214
src/bot.rs
214
src/bot.rs
@ -1,40 +1,66 @@
|
|||||||
use std::{
|
use std::{
|
||||||
sync::Arc,
|
borrow::Borrow,
|
||||||
|
collections::HashMap,
|
||||||
|
sync::{
|
||||||
|
mpsc::{self, Receiver, Sender},
|
||||||
|
Arc, Mutex,
|
||||||
|
},
|
||||||
thread,
|
thread,
|
||||||
time::{Duration, Instant},
|
time::{Duration, Instant},
|
||||||
};
|
};
|
||||||
|
|
||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
use tokio::runtime::Runtime;
|
use tokio::runtime::Runtime;
|
||||||
use veloren_client::{addr::ConnectionArgs, Client, Event};
|
use veloren_client::{addr::ConnectionArgs, Client, Event as VelorenEvent};
|
||||||
use veloren_common::{
|
use veloren_common::{
|
||||||
clock::Clock,
|
clock::Clock,
|
||||||
comp::{
|
comp::{
|
||||||
invite::InviteKind,
|
invite::InviteKind,
|
||||||
item::{ItemDefinitionId, ItemDefinitionIdOwned, ItemDesc},
|
item::{self, ItemDefinitionId, ItemDefinitionIdOwned, ItemDesc},
|
||||||
ChatType, ControllerInputs, Item,
|
ChatType, ControllerInputs, Item,
|
||||||
},
|
},
|
||||||
trade::TradeAction,
|
trade::{PendingTrade, TradeAction, TradePhase},
|
||||||
uid::Uid,
|
uid::Uid,
|
||||||
ViewDistances,
|
ViewDistances,
|
||||||
};
|
};
|
||||||
use veloren_common_net::{msg::InviteAnswer, sync::WorldSyncExt};
|
use veloren_common_net::{msg::InviteAnswer, sync::WorldSyncExt};
|
||||||
|
|
||||||
|
const COINS: &str = "common.items.utility.coins";
|
||||||
|
|
||||||
|
enum TradeMode {
|
||||||
|
Take,
|
||||||
|
Buy,
|
||||||
|
Sell,
|
||||||
|
}
|
||||||
|
|
||||||
pub struct Bot {
|
pub struct Bot {
|
||||||
|
username: String,
|
||||||
client: Client,
|
client: Client,
|
||||||
clock: Clock,
|
clock: Clock,
|
||||||
last_announcement: Instant,
|
buy_prices: HashMap<String, u32>,
|
||||||
|
sell_prices: HashMap<String, u32>,
|
||||||
|
last_action: Instant,
|
||||||
|
trade_mode: TradeMode,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Bot {
|
impl Bot {
|
||||||
pub fn new(username: &str, password: &str) -> Result<Self, String> {
|
pub fn new(
|
||||||
let client = connect_to_veloren(username, password)?;
|
username: String,
|
||||||
|
password: &str,
|
||||||
|
buy_prices: HashMap<String, u32>,
|
||||||
|
sell_prices: HashMap<String, u32>,
|
||||||
|
) -> Result<Self, String> {
|
||||||
|
let client = connect_to_veloren(&username, password)?;
|
||||||
let clock = Clock::new(Duration::from_secs_f64(1.0 / 60.0));
|
let clock = Clock::new(Duration::from_secs_f64(1.0 / 60.0));
|
||||||
|
|
||||||
Ok(Bot {
|
Ok(Bot {
|
||||||
|
username,
|
||||||
client,
|
client,
|
||||||
clock,
|
clock,
|
||||||
last_announcement: Instant::now(),
|
buy_prices,
|
||||||
|
sell_prices,
|
||||||
|
last_action: Instant::from(0),
|
||||||
|
trade_mode: TradeMode::Sell,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -69,75 +95,68 @@ impl Bot {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn announce(&mut self) {
|
|
||||||
self.client.send_command(
|
|
||||||
"say".to_string(),
|
|
||||||
vec![
|
|
||||||
"Buying cheese! Type '/say trade' near me and place your cheese in the window."
|
|
||||||
.to_string(),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn tick(&mut self) -> Result<(), String> {
|
pub fn tick(&mut self) -> Result<(), String> {
|
||||||
let events = self
|
let veloren_events = self
|
||||||
.client
|
.client
|
||||||
.tick(ControllerInputs::default(), self.clock.dt())
|
.tick(ControllerInputs::default(), self.clock.dt())
|
||||||
.map_err(|error| format!("{error:?}"))?;
|
.map_err(|error| format!("{error:?}"))?;
|
||||||
|
|
||||||
for event in events {
|
for event in veloren_events {
|
||||||
self.handle_event(event)?;
|
self.handle_veloren_event(event)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
let now = Instant::now();
|
if self.last_action.elapsed() > Duration::from_millis(100) {
|
||||||
|
if let Some((_, trade, _)) = self.client.pending_trade() {
|
||||||
if now.duration_since(self.last_announcement) > Duration::from_secs(100) {
|
match self.trade_mode {
|
||||||
self.announce();
|
TradeMode::Buy => self.handle_buying(trade)?,
|
||||||
|
TradeMode::Take => self.handle_take(trade),
|
||||||
self.last_announcement = now;
|
TradeMode::Sell => self.handle_selling(trade)?,
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
self.handle_trading()?;
|
|
||||||
self.client.cleanup();
|
self.client.cleanup();
|
||||||
self.clock.tick();
|
self.clock.tick();
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn handle_event(&mut self, event: Event) -> Result<(), String> {
|
fn handle_veloren_event(&mut self, event: VelorenEvent) -> Result<(), String> {
|
||||||
match event {
|
if let VelorenEvent::Chat(message) = event {
|
||||||
Event::Chat(message) => match message.chat_type {
|
let content = message.content().as_plain().unwrap_or_default();
|
||||||
|
|
||||||
|
if !content.starts_with(&self.username) {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
match message.chat_type {
|
||||||
ChatType::Tell(sender_uid, _) | ChatType::Say(sender_uid) => {
|
ChatType::Tell(sender_uid, _) | ChatType::Say(sender_uid) => {
|
||||||
if message.content().as_plain() == Some("trade") && !self.client.is_trading() {
|
if !self.client.is_trading() {
|
||||||
|
match content.trim_start_matches(&self.username).trim() {
|
||||||
|
"buy" => {
|
||||||
|
self.trade_mode = TradeMode::Buy;
|
||||||
self.client.send_invite(sender_uid, InviteKind::Trade);
|
self.client.send_invite(sender_uid, InviteKind::Trade);
|
||||||
}
|
}
|
||||||
|
"sell" => {
|
||||||
|
self.trade_mode = TradeMode::Sell;
|
||||||
|
self.client.send_invite(sender_uid, InviteKind::Trade);
|
||||||
|
}
|
||||||
|
"take" => {
|
||||||
|
self.trade_mode = TradeMode::Take;
|
||||||
|
self.client.send_invite(sender_uid, InviteKind::Trade);
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
},
|
|
||||||
Event::InviteComplete {
|
|
||||||
target,
|
|
||||||
answer,
|
|
||||||
kind,
|
|
||||||
} => {
|
|
||||||
if let InviteKind::Trade = kind {
|
|
||||||
if let InviteAnswer::Accepted = answer {
|
|
||||||
if let Some(name) = self.find_name(&target) {
|
|
||||||
self.client.send_command(
|
|
||||||
"say".to_string(),
|
|
||||||
vec![format!("Trading with {name}")],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn handle_trading(&mut self) -> Result<(), String> {
|
fn handle_buying(&mut self, trade: &PendingTrade) -> Result<(), String> {
|
||||||
if let Some((_, trade, _)) = self.client.pending_trade() {
|
|
||||||
let inventories = self.client.inventories();
|
let inventories = self.client.inventories();
|
||||||
let my_inventory = inventories.get(self.client.entity()).unwrap();
|
let my_inventory = inventories.get(self.client.entity()).unwrap();
|
||||||
let my_coins = my_inventory.get_slot_of_item_by_def_id(&ItemDefinitionIdOwned::Simple(
|
let my_coins = my_inventory.get_slot_of_item_by_def_id(&ItemDefinitionIdOwned::Simple(
|
||||||
@ -155,7 +174,12 @@ impl Bot {
|
|||||||
.into_iter()
|
.into_iter()
|
||||||
.fold(0, |acc, (slot_id, quantity)| {
|
.fold(0, |acc, (slot_id, quantity)| {
|
||||||
if let Some(item) = their_inventory.get(slot_id.clone()) {
|
if let Some(item) = their_inventory.get(slot_id.clone()) {
|
||||||
acc + (get_item_value(item) * quantity)
|
let item_value = self
|
||||||
|
.buy_prices
|
||||||
|
.get(&item.persistence_item_id())
|
||||||
|
.unwrap_or(&1);
|
||||||
|
|
||||||
|
acc + (item_value * quantity)
|
||||||
} else {
|
} else {
|
||||||
acc
|
acc
|
||||||
}
|
}
|
||||||
@ -163,7 +187,11 @@ impl Bot {
|
|||||||
let my_offered_coins = (&trade.offers[0])
|
let my_offered_coins = (&trade.offers[0])
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.find_map(|(slot_id, quantity)| {
|
.find_map(|(slot_id, quantity)| {
|
||||||
let item = my_inventory.get(slot_id.clone()).unwrap();
|
let item = if let Some(item) = my_inventory.get(slot_id.clone()) {
|
||||||
|
item
|
||||||
|
} else {
|
||||||
|
return None;
|
||||||
|
};
|
||||||
|
|
||||||
if item.item_definition_id()
|
if item.item_definition_id()
|
||||||
== ItemDefinitionId::Simple("common.items.utility.coins".into())
|
== ItemDefinitionId::Simple("common.items.utility.coins".into())
|
||||||
@ -174,7 +202,6 @@ impl Bot {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.unwrap_or(&0);
|
.unwrap_or(&0);
|
||||||
|
|
||||||
let difference: i32 = their_offered_items_value as i32 - *my_offered_coins as i32;
|
let difference: i32 = their_offered_items_value as i32 - *my_offered_coins as i32;
|
||||||
|
|
||||||
drop(inventories);
|
drop(inventories);
|
||||||
@ -196,12 +223,88 @@ impl Bot {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
thread::sleep(Duration::from_millis(300));
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn handle_selling(&mut self, trade: &PendingTrade) -> Result<(), String> {
|
||||||
|
let inventories = self.client.inventories();
|
||||||
|
let my_inventory = inventories.get(self.client.entity()).unwrap();
|
||||||
|
let them = self
|
||||||
|
.client
|
||||||
|
.state()
|
||||||
|
.ecs()
|
||||||
|
.entity_from_uid(trade.parties[1])
|
||||||
|
.unwrap();
|
||||||
|
let their_inventory = inventories.get(them).unwrap();
|
||||||
|
let their_coins = their_inventory.get_slot_of_item_by_def_id(
|
||||||
|
&ItemDefinitionIdOwned::Simple("common.items.utility.coins".to_string()),
|
||||||
|
);
|
||||||
|
let my_offered_items_value =
|
||||||
|
(&trade.offers[0])
|
||||||
|
.into_iter()
|
||||||
|
.fold(0, |acc, (slot_id, quantity)| {
|
||||||
|
if let Some(item) = my_inventory.get(slot_id.clone()) {
|
||||||
|
println!("{}", item.persistence_item_id());
|
||||||
|
|
||||||
|
let item_value = self
|
||||||
|
.sell_prices
|
||||||
|
.get(&item.persistence_item_id())
|
||||||
|
.unwrap_or(&0);
|
||||||
|
|
||||||
|
acc + (item_value * quantity)
|
||||||
|
} else {
|
||||||
|
acc
|
||||||
|
}
|
||||||
|
});
|
||||||
|
let their_offered_coins = (&trade.offers[1])
|
||||||
|
.into_iter()
|
||||||
|
.find_map(|(slot_id, quantity)| {
|
||||||
|
let item = if let Some(item) = their_inventory.get(slot_id.clone()) {
|
||||||
|
item
|
||||||
|
} else {
|
||||||
|
return None;
|
||||||
|
};
|
||||||
|
|
||||||
|
if item.item_definition_id()
|
||||||
|
== ItemDefinitionId::Simple("common.items.utility.coins".into())
|
||||||
|
{
|
||||||
|
Some(quantity)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.unwrap_or(&0);
|
||||||
|
let difference: i32 = my_offered_items_value as i32 - *their_offered_coins as i32;
|
||||||
|
|
||||||
|
drop(inventories);
|
||||||
|
|
||||||
|
if difference == 0 {
|
||||||
|
self.client
|
||||||
|
.perform_trade_action(TradeAction::Accept(trade.phase));
|
||||||
|
} else if difference.is_positive() {
|
||||||
|
self.client.perform_trade_action(TradeAction::AddItem {
|
||||||
|
item: their_coins.unwrap(),
|
||||||
|
quantity: difference as u32,
|
||||||
|
ours: false,
|
||||||
|
});
|
||||||
|
} else if difference.is_negative() {
|
||||||
|
self.client.perform_trade_action(TradeAction::RemoveItem {
|
||||||
|
item: their_coins.unwrap(),
|
||||||
|
quantity: difference.abs() as u32,
|
||||||
|
ours: false,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn handle_take(&self, trade: &PendingTrade) {
|
||||||
|
if trade.offers[0].is_empty() && !trade.offers[1].is_empty() {
|
||||||
|
self.client
|
||||||
|
.perform_trade_action(TradeAction::Accept(trade.phase));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn find_name<'a>(&'a self, uid: &Uid) -> Option<&'a String> {
|
fn find_name<'a>(&'a self, uid: &Uid) -> Option<&'a String> {
|
||||||
self.client.player_list().iter().find_map(|(id, info)| {
|
self.client.player_list().iter().find_map(|(id, info)| {
|
||||||
if id == uid {
|
if id == uid {
|
||||||
@ -256,10 +359,3 @@ fn connect_to_veloren(username: &str, password: &str) -> Result<Client, String>
|
|||||||
))
|
))
|
||||||
.map_err(|error| format!("{error:?}"))
|
.map_err(|error| format!("{error:?}"))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_item_value(item: &Item) -> u32 {
|
|
||||||
match item.name().as_ref() {
|
|
||||||
"Dwarven Cheese" => 50,
|
|
||||||
_ => 0,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
12
src/main.rs
12
src/main.rs
@ -1,8 +1,10 @@
|
|||||||
mod bot;
|
mod bot;
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
|
collections::HashMap,
|
||||||
env::var,
|
env::var,
|
||||||
fs::{read_to_string, write},
|
fs::{read_to_string, write},
|
||||||
|
sync::{Arc, Mutex},
|
||||||
thread::{sleep, spawn},
|
thread::{sleep, spawn},
|
||||||
time::Duration,
|
time::Duration,
|
||||||
};
|
};
|
||||||
@ -14,6 +16,8 @@ use serde::{Deserialize, Serialize};
|
|||||||
struct Config {
|
struct Config {
|
||||||
pub username: String,
|
pub username: String,
|
||||||
pub password: String,
|
pub password: String,
|
||||||
|
pub buy_prices: HashMap<String, u32>,
|
||||||
|
pub sell_prices: HashMap<String, u32>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Config {
|
impl Config {
|
||||||
@ -34,7 +38,13 @@ impl Config {
|
|||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let config = Config::read().unwrap();
|
let config = Config::read().unwrap();
|
||||||
let mut bot = Bot::new(&config.username, &config.password).expect("Failed to create bot");
|
let mut bot = Bot::new(
|
||||||
|
config.username,
|
||||||
|
&config.password,
|
||||||
|
config.buy_prices,
|
||||||
|
config.sell_prices,
|
||||||
|
)
|
||||||
|
.expect("Failed to create bot");
|
||||||
|
|
||||||
bot.select_character().expect("Failed to select character");
|
bot.select_character().expect("Failed to select character");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user