Added repair equipment command

This commit is contained in:
Sam 2023-04-14 18:09:23 -04:00
parent 913eda4b7f
commit 553aa690b4
2 changed files with 39 additions and 1 deletions

View File

@ -293,6 +293,7 @@ pub enum ServerChatCommand {
Region, Region,
ReloadChunks, ReloadChunks,
RemoveLights, RemoveLights,
RepairEquipment,
Respawn, Respawn,
RevokeBuild, RevokeBuild,
RevokeBuildAll, RevokeBuildAll,
@ -772,6 +773,9 @@ impl ServerChatCommand {
"Scale your character", "Scale your character",
Some(Admin), Some(Admin),
), ),
ServerChatCommand::RepairEquipment => {
cmd(vec![], "Repairs all equipped items", Some(Admin))
},
} }
} }
@ -859,6 +863,7 @@ impl ServerChatCommand {
ServerChatCommand::WeatherZone => "weather_zone", ServerChatCommand::WeatherZone => "weather_zone",
ServerChatCommand::Lightning => "lightning", ServerChatCommand::Lightning => "lightning",
ServerChatCommand::Scale => "scale", ServerChatCommand::Scale => "scale",
ServerChatCommand::RepairEquipment => "repair_equipment",
} }
} }

View File

@ -28,7 +28,10 @@ use common::{
self, self,
aura::{Aura, AuraKind, AuraTarget}, aura::{Aura, AuraKind, AuraTarget},
buff::{Buff, BuffCategory, BuffData, BuffKind, BuffSource}, buff::{Buff, BuffCategory, BuffData, BuffKind, BuffSource},
inventory::item::{tool::AbilityMap, MaterialStatManifest, Quality}, inventory::{
item::{tool::AbilityMap, MaterialStatManifest, Quality},
slot::Slot,
},
invite::InviteKind, invite::InviteKind,
AdminRole, ChatType, Inventory, Item, LightEmitter, Presence, PresenceKind, WaypointArea, AdminRole, ChatType, Inventory, Item, LightEmitter, Presence, PresenceKind, WaypointArea,
}, },
@ -202,6 +205,7 @@ fn do_command(
ServerChatCommand::WeatherZone => handle_weather_zone, ServerChatCommand::WeatherZone => handle_weather_zone,
ServerChatCommand::Lightning => handle_lightning, ServerChatCommand::Lightning => handle_lightning,
ServerChatCommand::Scale => handle_scale, ServerChatCommand::Scale => handle_scale,
ServerChatCommand::RepairEquipment => handle_repair_equipment,
}; };
handler(server, client, target, args, cmd) handler(server, client, target, args, cmd)
@ -4123,3 +4127,32 @@ fn handle_scale(
Err(action.help_string()) Err(action.help_string())
} }
} }
fn handle_repair_equipment(
server: &mut Server,
client: EcsEntity,
target: EcsEntity,
_args: Vec<String>,
action: &ServerChatCommand,
) -> CmdResult<()> {
let ecs = server.state.ecs();
if let Some(mut inventory) = ecs.write_storage::<comp::Inventory>().get_mut(target) {
let ability_map = ecs.read_resource::<AbilityMap>();
let msm = ecs.read_resource::<MaterialStatManifest>();
let slots = inventory
.equipped_items_with_slot()
.filter(|(_, item)| item.has_durability())
.map(|(slot, _)| slot)
.collect::<Vec<_>>();
for slot in slots {
inventory.repair_item_at_slot(Slot::Equip(slot), &ability_map, &msm);
}
server.notify_client(
client,
ServerGeneral::server_msg(ChatType::CommandInfo, "Repaired all equipped items"),
);
Ok(())
} else {
Err(action.help_string())
}
}