mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 14:34:39 +01:00
88 lines
3.8 KiB
C#
88 lines
3.8 KiB
C#
using BLHX.Server.Common.Data;
|
|
using BLHX.Server.Common.Database;
|
|
using BLHX.Server.Common.Proto.common;
|
|
using BLHX.Server.Common.Utils;
|
|
using BLHX.Server.Game.Handlers;
|
|
using static Microsoft.EntityFrameworkCore.DbLoggerCategory.Database;
|
|
|
|
namespace BLHX.Server.Game.Commands {
|
|
[CommandHandler("ship", "Unlock a character or all characters", "ship unlock=all rarity=6")]
|
|
public class ShipCommand : Command {
|
|
[Argument("unlock")]
|
|
public string? Unlock { get; set; }
|
|
|
|
[Argument("rarity")]
|
|
public string? Rarity { get; set; }
|
|
|
|
public override void Execute(Dictionary<string, string> args, Connection connection) {
|
|
base.Execute(args);
|
|
|
|
if (Unlock is null) {
|
|
connection.SendSystemMsg($"Usage: /ship unlock=<all|clear|shipId> rarity=1-6");
|
|
return;
|
|
}
|
|
|
|
if (Unlock.Equals("all", StringComparison.CurrentCultureIgnoreCase)) {
|
|
int amount = 585; // adding more than this currently causes the client to crash since too much data is sent in a single packet
|
|
Dictionary<int, ShipDataTemplate> ship_ids_filter = Data.ShipDataTemplate.Where(x => x.Value.Star == x.Value.StarMax && x.Value.Star >= 5).ToDictionary();
|
|
|
|
List<int> all_ship_ids = ship_ids_filter.Keys.ToList();
|
|
|
|
if (Rarity is not null && int.TryParse(Rarity, out int rarity)) {
|
|
all_ship_ids = Data.ShipDataStatistics.Where(ship_data => all_ship_ids.Contains(ship_data.Key) && ship_data.Value.Rarity == rarity).ToDictionary().Keys.ToList();
|
|
}
|
|
|
|
List<PlayerShip> all_ships = all_ship_ids.Select(ship_id => CreateShipFromId((uint)ship_id, connection.player.Uid)).Take(amount).ToList();
|
|
|
|
all_ships.AddRange(GetDefaultShips(connection.player.Ships)); // add the defaults
|
|
connection.player.Ships = all_ships;
|
|
connection.SendSystemMsg($"Added {amount} ships!");
|
|
|
|
} else if (Unlock.Equals("clear", StringComparison.CurrentCultureIgnoreCase)) {
|
|
connection.player.Ships = GetDefaultShips(connection.player.Ships);
|
|
connection.SendSystemMsg($"Cleared all ships!");
|
|
|
|
} else if (uint.TryParse(Unlock, out uint shipId)) {
|
|
connection.player.AddShip(shipId);
|
|
|
|
} else {
|
|
connection.SendSystemMsg($"Invalid Ship Id: {shipId}");
|
|
return;
|
|
}
|
|
|
|
Rarity = null;
|
|
DBManager.PlayerContext.Save();
|
|
connection.NotifyShipData();
|
|
base.NotifySuccess(connection);
|
|
}
|
|
|
|
public static PlayerShip CreateShipFromId(uint shipId, uint playerUid) {
|
|
if (!Data.ShipDataTemplate.TryGetValue((int)shipId, out var shipTemplate))
|
|
throw new InvalidDataException($"Ship template {shipId} not found!");
|
|
|
|
var ship = new PlayerShip() {
|
|
TemplateId = shipId,
|
|
Level = 1,
|
|
EquipInfoLists = [
|
|
new EquipskinInfo() { Id = shipTemplate.EquipId1 },
|
|
new EquipskinInfo() { Id = shipTemplate.EquipId2 },
|
|
new EquipskinInfo() { Id = shipTemplate.EquipId3 },
|
|
new EquipskinInfo(),
|
|
new EquipskinInfo(),
|
|
],
|
|
Energy = shipTemplate.Energy,
|
|
SkillIdLists = shipTemplate.BuffList.Select(x => new Shipskill() { SkillId = x, SkillLv = 1 }).ToList(),
|
|
Intimacy = 5000,
|
|
|
|
PlayerUid = playerUid
|
|
};
|
|
|
|
return ship;
|
|
}
|
|
|
|
public static ICollection<PlayerShip> GetDefaultShips(ICollection<PlayerShip> playerShips) {
|
|
return playerShips.Where(ship => ship.TemplateId == 106011 || ship.TemplateId == 101171).ToList();
|
|
}
|
|
}
|
|
}
|