mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 01:29:38 -04:00
405 lines
15 KiB
C#
405 lines
15 KiB
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Data;
|
|
using Avalonia.Markup.Xaml;
|
|
using System.Text.RegularExpressions;
|
|
using Observatory.Framework;
|
|
using Observatory.Framework.Interfaces;
|
|
using System.Linq;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.VisualTree;
|
|
|
|
namespace Observatory.UI.Views
|
|
{
|
|
public class BasicUIView : UserControl
|
|
{
|
|
public BasicUIView()
|
|
{
|
|
Initialized += OnInitialized;
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
|
|
public static readonly DirectProperty<BasicUIView, PluginUI.UIType> UITypeProperty =
|
|
AvaloniaProperty.RegisterDirect<BasicUIView, PluginUI.UIType>(
|
|
nameof(UIType),
|
|
o => o.UIType,
|
|
(o, v) => o.UIType = v,
|
|
PluginUI.UIType.None,
|
|
BindingMode.OneWay
|
|
);
|
|
|
|
public PluginUI.UIType UIType
|
|
{
|
|
get
|
|
{
|
|
return _uitype;
|
|
}
|
|
set
|
|
{
|
|
_uitype = value;
|
|
UITypeChange();
|
|
}
|
|
}
|
|
|
|
private PluginUI.UIType _uitype;
|
|
|
|
|
|
private void ColumnGeneration(object sender, DataGridAutoGeneratingColumnEventArgs e)
|
|
{
|
|
e.Column.Header = SplitCamelCase(e.PropertyName);
|
|
e.Column.CanUserReorder = true;
|
|
e.Column.CanUserResize = true;
|
|
e.Column.CanUserSort = true;
|
|
}
|
|
|
|
private void OnInitialized(object sender, System.EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void UITypeChange()
|
|
{
|
|
var uiPanel = this.Find<Panel>("UIPanel");
|
|
|
|
switch (UIType)
|
|
{
|
|
case PluginUI.UIType.None:
|
|
break;
|
|
case PluginUI.UIType.Basic:
|
|
DataGrid dataGrid = new()
|
|
{
|
|
[!DataGrid.ItemsProperty] = new Binding("BasicUIGrid"),
|
|
SelectionMode = DataGridSelectionMode.Extended,
|
|
GridLinesVisibility = DataGridGridLinesVisibility.Vertical,
|
|
AutoGenerateColumns = true
|
|
};
|
|
dataGrid.AutoGeneratingColumn += ColumnGeneration;
|
|
uiPanel.Children.Clear();
|
|
uiPanel.Children.Add(dataGrid);
|
|
break;
|
|
case PluginUI.UIType.Avalonia:
|
|
break;
|
|
case PluginUI.UIType.Core:
|
|
uiPanel.Children.Clear();
|
|
ScrollViewer scrollViewer = new();
|
|
scrollViewer.Content = GenerateCoreUI();
|
|
uiPanel.Children.Add(scrollViewer);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
private Grid GenerateCoreUI()
|
|
{
|
|
|
|
Grid corePanel = new();
|
|
|
|
ColumnDefinitions columns = new()
|
|
{
|
|
new ColumnDefinition() { Width = new GridLength(0, GridUnitType.Auto) },
|
|
new ColumnDefinition() { Width = new GridLength(300) },
|
|
new ColumnDefinition() { Width = new GridLength(0, GridUnitType.Auto) }
|
|
};
|
|
corePanel.ColumnDefinitions = columns;
|
|
|
|
RowDefinitions rows = new()
|
|
{
|
|
new RowDefinition() { Height = new GridLength(0, GridUnitType.Auto) },
|
|
new RowDefinition() { Height = new GridLength(0, GridUnitType.Auto) }
|
|
};
|
|
corePanel.RowDefinitions = rows;
|
|
|
|
var pluginManager = PluginManagement.PluginManager.GetInstance;
|
|
|
|
#region Journal Location
|
|
TextBlock journalPathLabel = new()
|
|
{
|
|
Text = "Journal Path: ",
|
|
HorizontalAlignment = Avalonia.Layout.HorizontalAlignment.Right,
|
|
VerticalAlignment = Avalonia.Layout.VerticalAlignment.Center
|
|
};
|
|
|
|
TextBox journalPath = new()
|
|
{
|
|
Text = Properties.Core.Default.JournalFolder
|
|
};
|
|
|
|
Button journalBrowse = new()
|
|
{
|
|
Content = "Browse",
|
|
Height = 30,
|
|
Width = 100,
|
|
HorizontalAlignment = Avalonia.Layout.HorizontalAlignment.Right,
|
|
HorizontalContentAlignment = Avalonia.Layout.HorizontalAlignment.Center
|
|
};
|
|
|
|
journalBrowse.Click += (object source, RoutedEventArgs e) =>
|
|
{
|
|
OpenFolderDialog openFolderDialog = new()
|
|
{
|
|
Directory = journalPath.Text
|
|
};
|
|
var browseTask = openFolderDialog.ShowAsync((Window)((Button)source).GetVisualRoot());
|
|
string path = browseTask.Result;
|
|
if (path != string.Empty)
|
|
{
|
|
journalPath.Text = path;
|
|
Properties.Core.Default.JournalFolder = path;
|
|
Properties.Core.Default.Save();
|
|
}
|
|
};
|
|
|
|
corePanel.AddControl(journalPathLabel, 1, 0);
|
|
corePanel.AddControl(journalPath, 1, 1);
|
|
corePanel.AddControl(journalBrowse, 1, 2);
|
|
|
|
#endregion
|
|
|
|
#region Plugin List
|
|
DataGrid pluginList = new() { Margin = new Thickness(0, 20) };
|
|
|
|
pluginList.Columns.Add(new DataGridTextColumn()
|
|
{
|
|
Header = "Plugin",
|
|
Binding = new Binding("Name")
|
|
});
|
|
|
|
pluginList.Columns.Add(new DataGridTextColumn()
|
|
{
|
|
Header = "Version",
|
|
Binding = new Binding("Version")
|
|
});
|
|
|
|
pluginList.Columns.Add(new DataGridTextColumn()
|
|
{
|
|
Header = "Status",
|
|
Binding = new Binding("Status")
|
|
});
|
|
|
|
System.Collections.Generic.List<PluginView> allPlugins = new();
|
|
|
|
foreach(var (plugin, signed) in pluginManager.workerPlugins)
|
|
{
|
|
allPlugins.Add(new PluginView() { Name = plugin.Name, Version = plugin.Version, Status = GetStatusText(signed) });
|
|
}
|
|
|
|
foreach (var (plugin, signed) in pluginManager.notifyPlugins)
|
|
{
|
|
allPlugins.Add(new PluginView() { Name = plugin.Name, Version = plugin.Version, Status = GetStatusText(signed) });
|
|
}
|
|
|
|
pluginList.Items = allPlugins;
|
|
corePanel.AddControl(pluginList, 0, 0, 2);
|
|
|
|
#endregion
|
|
|
|
#region Plugin Settings
|
|
|
|
foreach(var plugin in pluginManager.workerPlugins.Select(p => p.plugin))
|
|
{
|
|
GeneratePluginSettingUI(corePanel, plugin);
|
|
}
|
|
|
|
#endregion
|
|
|
|
return corePanel;
|
|
}
|
|
|
|
private void GeneratePluginSettingUI(Grid gridPanel, IObservatoryPlugin plugin)
|
|
{
|
|
//var plugin = pluginSettings.Key;
|
|
|
|
var displayedSettings = PluginManagement.PluginManager.GetSettingDisplayNames(plugin.Settings);
|
|
|
|
if (displayedSettings.Count > 0)
|
|
{
|
|
Expander expander = new()
|
|
{
|
|
Header = $"{plugin.Name} - {plugin.Version}",
|
|
DataContext = plugin.Settings,
|
|
Margin = new Thickness(0, 20)
|
|
};
|
|
|
|
Grid settingsGrid = new();
|
|
ColumnDefinitions settingColumns = new()
|
|
{
|
|
new ColumnDefinition() { Width = new GridLength(3, GridUnitType.Star) },
|
|
new ColumnDefinition() { Width = new GridLength(3, GridUnitType.Star) },
|
|
new ColumnDefinition() { Width = new GridLength(1, GridUnitType.Star) }
|
|
};
|
|
settingsGrid.ColumnDefinitions = settingColumns;
|
|
expander.Content = settingsGrid;
|
|
|
|
int nextRow = gridPanel.RowDefinitions.Count;
|
|
gridPanel.RowDefinitions.Add(new RowDefinition());
|
|
gridPanel.AddControl(expander, nextRow, 0, 3);
|
|
|
|
foreach (var setting in displayedSettings.Where(s => !System.Attribute.IsDefined(s.Key, typeof(SettingIgnore))))
|
|
{
|
|
if (setting.Key.PropertyType != typeof(bool) || settingsGrid.Children.Count % 2 == 0)
|
|
{
|
|
settingsGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(21) });
|
|
}
|
|
|
|
TextBlock label = new() { Text = setting.Value };
|
|
|
|
switch (setting.Key.GetValue(plugin.Settings))
|
|
{
|
|
case bool boolSetting:
|
|
CheckBox checkBox = new() { IsChecked = boolSetting, Content = label };
|
|
|
|
checkBox.Checked += (object sender, RoutedEventArgs e) =>
|
|
{
|
|
setting.Key.SetValue(plugin.Settings, true);
|
|
PluginManagement.PluginManager.GetInstance.SaveSettings(plugin, plugin.Settings);
|
|
};
|
|
|
|
checkBox.Unchecked += (object sender, RoutedEventArgs e) =>
|
|
{
|
|
setting.Key.SetValue(plugin.Settings, false);
|
|
PluginManagement.PluginManager.GetInstance.SaveSettings(plugin, plugin.Settings);
|
|
};
|
|
|
|
//settingsGrid.Children.Add(checkBox);
|
|
settingsGrid.AddControl(checkBox, settingsGrid.RowDefinitions.Count - 1, settingsGrid.Children.Count % 2 == 0 ? 0 : 1);
|
|
|
|
break;
|
|
case string stringSetting:
|
|
TextBox textBox = new() { Text = stringSetting };
|
|
settingsGrid.Children.Add(label);
|
|
settingsGrid.Children.Add(textBox);
|
|
break;
|
|
case int intSetting:
|
|
NumericUpDown numericUpDown = new() { Text = intSetting.ToString(), AllowSpin = true };
|
|
settingsGrid.Children.Add(label);
|
|
settingsGrid.Children.Add(numericUpDown);
|
|
break;
|
|
case System.IO.FileInfo fileSetting:
|
|
label.Text += ": ";
|
|
|
|
TextBox settingPath = new()
|
|
{
|
|
Text = fileSetting.FullName,
|
|
Width = 250,
|
|
HorizontalAlignment = Avalonia.Layout.HorizontalAlignment.Right
|
|
};
|
|
|
|
Button settingBrowse = new()
|
|
{
|
|
Content = "Browse",
|
|
Height = 30,
|
|
Width = 100,
|
|
HorizontalAlignment = Avalonia.Layout.HorizontalAlignment.Left,
|
|
HorizontalContentAlignment = Avalonia.Layout.HorizontalAlignment.Center
|
|
};
|
|
|
|
settingBrowse.Click += (object source, RoutedEventArgs e) =>
|
|
{
|
|
OpenFileDialog openFileDialog = new()
|
|
{
|
|
Directory = fileSetting.DirectoryName,
|
|
AllowMultiple = false
|
|
};
|
|
var browseTask = openFileDialog.ShowAsync((Window)((Button)source).GetVisualRoot());
|
|
|
|
if (browseTask.Result.Count() > 0)
|
|
{
|
|
string path = browseTask.Result[0];
|
|
settingPath.Text = path;
|
|
|
|
setting.Key.SetValue(plugin.Settings, new System.IO.FileInfo(path));
|
|
PluginManagement.PluginManager.GetInstance.SaveSettings(plugin, plugin.Settings);
|
|
|
|
}
|
|
};
|
|
|
|
StackPanel stackPanel = new() { Orientation = Avalonia.Layout.Orientation.Horizontal };
|
|
stackPanel.Children.Add(label);
|
|
stackPanel.Children.Add(settingPath);
|
|
|
|
settingsGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(21) });
|
|
//settingsGrid.AddControl(label, settingsGrid.RowDefinitions.Count - 1, 0, 2);
|
|
settingsGrid.AddControl(stackPanel, settingsGrid.RowDefinitions.Count - 1, 0, 2);
|
|
settingsGrid.AddControl(settingBrowse, settingsGrid.RowDefinitions.Count - 1, 2);
|
|
|
|
break;
|
|
}
|
|
//wrapPanel.Children.Add(panel);
|
|
}
|
|
}
|
|
}
|
|
|
|
private string GetStatusText(PluginManagement.PluginManager.PluginStatus status)
|
|
{
|
|
string statusText;
|
|
|
|
switch (status)
|
|
{
|
|
case PluginManagement.PluginManager.PluginStatus.Signed:
|
|
statusText = "Signed";
|
|
break;
|
|
case PluginManagement.PluginManager.PluginStatus.Unsigned:
|
|
statusText = "Unsigned";
|
|
break;
|
|
case PluginManagement.PluginManager.PluginStatus.InvalidSignature:
|
|
statusText = "Signature Invalid";
|
|
break;
|
|
case PluginManagement.PluginManager.PluginStatus.InvalidPlugin:
|
|
statusText = "No Interface";
|
|
break;
|
|
case PluginManagement.PluginManager.PluginStatus.InvalidLibrary:
|
|
statusText = "Invalid Library";
|
|
break;
|
|
default:
|
|
statusText = "Unknown";
|
|
break;
|
|
}
|
|
|
|
return statusText;
|
|
}
|
|
|
|
//From https://stackoverflow.com/questions/5796383/insert-spaces-between-words-on-a-camel-cased-token
|
|
private static string SplitCamelCase(string str)
|
|
{
|
|
return Regex.Replace(
|
|
Regex.Replace(
|
|
str,
|
|
@"(\P{Ll})(\P{Ll}\p{Ll})",
|
|
"$1 $2"
|
|
),
|
|
@"(\p{Ll})(\P{Ll})",
|
|
"$1 $2"
|
|
);
|
|
}
|
|
}
|
|
|
|
internal class PluginView
|
|
{
|
|
public string Name { get; set; }
|
|
public string Version { get; set; }
|
|
public string Status { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static class GridExtention
|
|
{
|
|
public static void AddControl(this Grid grid, Control control, int row, int column, int span = 1)
|
|
{
|
|
grid.Children.Add(control);
|
|
Grid.SetColumnSpan(control, span);
|
|
Grid.SetColumn(control, column);
|
|
Grid.SetRow(control, row);
|
|
}
|
|
}
|
|
}
|