mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
76 lines
2.7 KiB
C#
76 lines
2.7 KiB
C#
using ArkData;
|
|
using ServerManagerTool.Common.Lib;
|
|
using ServerManagerTool.Common.Utils;
|
|
using ServerManagerTool.Lib.ViewModel.RCON;
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
using WPFSharp.Globalizer;
|
|
|
|
namespace ServerManagerTool
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for PlayerProfileWindow.xaml
|
|
/// </summary>
|
|
public partial class PlayerProfileWindow : Window
|
|
{
|
|
private readonly GlobalizedApplication _globalizer = GlobalizedApplication.Instance;
|
|
|
|
public PlayerProfileWindow(PlayerInfo player, String serverFolder)
|
|
{
|
|
InitializeComponent();
|
|
WindowUtils.RemoveDefaultResourceDictionary(this, Config.Default.DefaultGlobalizationFile);
|
|
|
|
this.Player = player;
|
|
this.ServerFolder = serverFolder;
|
|
this.DataContext = this;
|
|
}
|
|
|
|
public PlayerInfo Player
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public String ServerFolder
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public PlayerData PlayerData => Player?.PlayerData;
|
|
|
|
public TribeData TribeData => Player?.PlayerData?.Tribe;
|
|
|
|
public String CreatedDate => PlayerData?.FileCreated.ToString("G");
|
|
|
|
public Boolean IsTribeOwner => PlayerData != null && TribeData != null && TribeData.OwnerId == PlayerData.CharacterId;
|
|
|
|
public String PlayerLink => String.IsNullOrWhiteSpace(ServerFolder) ? null : $"/select, {Path.Combine(ServerFolder, !String.IsNullOrWhiteSpace(Player?.PlayerData?.File) ? Player?.PlayerData?.Filename : $"{Player.PlayerId}{Config.Default.PlayerFileExtension}")}";
|
|
|
|
public String TribeLink => String.IsNullOrWhiteSpace(ServerFolder) || TribeData == null ? null : $"/select, {Path.Combine(ServerFolder, $"{TribeData.Id}{Config.Default.TribeFileExtension}")}";
|
|
|
|
public String TribeOwner => TribeData != null && TribeData.Owner != null ? $"{TribeData.Owner.CharacterName} ({TribeData.Owner.PlayerName})" : null;
|
|
|
|
public String UpdatedDate => PlayerData?.FileUpdated.ToString("G");
|
|
|
|
public String WindowTitle => String.Format(_globalizer.GetResourceString("Profile_WindowTitle_Player"), Player.PlayerName);
|
|
|
|
public ICommand ExplorerLinkCommand
|
|
{
|
|
get
|
|
{
|
|
return new RelayCommand<String>(
|
|
execute: (action) =>
|
|
{
|
|
if (String.IsNullOrWhiteSpace(action)) return;
|
|
Process.Start("explorer.exe", action);
|
|
},
|
|
canExecute: (action) => true
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|