mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
source code checkin
This commit is contained in:
parent
5f8fb2c825
commit
7e57b72e35
675 changed files with 168433 additions and 0 deletions
76
src/ARKServerManager/Windows/PlayerProfileWindow.xaml.cs
Normal file
76
src/ARKServerManager/Windows/PlayerProfileWindow.xaml.cs
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
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
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue