2020-09-17 23:02:14 +00:00
|
|
|
use crate::persistence::character_loader::CharacterLoader;
|
2021-01-08 19:12:09 +00:00
|
|
|
use common::comp::{inventory::loadout_builder::LoadoutBuilder, Body, Inventory, Item, Stats};
|
2020-09-17 23:02:14 +00:00
|
|
|
use specs::{Entity, ReadExpect};
|
|
|
|
|
|
|
|
pub fn create_character(
|
|
|
|
entity: Entity,
|
|
|
|
player_uuid: String,
|
|
|
|
character_alias: String,
|
|
|
|
character_tool: Option<String>,
|
|
|
|
body: Body,
|
|
|
|
character_loader: &ReadExpect<'_, CharacterLoader>,
|
|
|
|
) {
|
2021-01-22 21:12:16 +00:00
|
|
|
let stats = Stats::new(character_alias.to_string());
|
2020-09-17 23:02:14 +00:00
|
|
|
|
|
|
|
let loadout = LoadoutBuilder::new()
|
|
|
|
.defaults()
|
2021-01-08 19:12:09 +00:00
|
|
|
.active_item(Some(Item::new_from_asset_expect(
|
2020-11-13 03:24:19 +00:00
|
|
|
character_tool.as_deref().unwrap(),
|
2020-09-17 23:02:14 +00:00
|
|
|
)))
|
|
|
|
.build();
|
|
|
|
|
2021-01-08 19:12:09 +00:00
|
|
|
let mut inventory = Inventory::new_with_loadout(loadout);
|
|
|
|
|
|
|
|
// Default items for new characters
|
|
|
|
inventory.push(Item::new_from_asset_expect(
|
|
|
|
"common.items.consumable.potion_minor",
|
|
|
|
));
|
|
|
|
inventory.push(Item::new_from_asset_expect("common.items.food.cheese"));
|
|
|
|
|
2020-11-03 00:12:49 +00:00
|
|
|
let waypoint = None;
|
2020-09-17 23:02:14 +00:00
|
|
|
|
|
|
|
character_loader.create_character(
|
|
|
|
entity,
|
|
|
|
player_uuid,
|
|
|
|
character_alias,
|
2021-01-08 19:12:09 +00:00
|
|
|
(body, stats, inventory, waypoint),
|
2020-09-17 23:02:14 +00:00
|
|
|
);
|
|
|
|
}
|