-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.axaml.cs
More file actions
144 lines (117 loc) · 4.02 KB
/
Copy pathApp.axaml.cs
File metadata and controls
144 lines (117 loc) · 4.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
using Avalonia;
using Avalonia.Controls;
using Avalonia.Controls.ApplicationLifetimes;
using Avalonia.Markup.Xaml;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Windows.Input;
using Yellowcake.Services;
using Yellowcake.ViewModels;
using Yellowcake.Views;
namespace Yellowcake;
public partial class App : Application
{
private readonly ThemeService _themeService = new();
public override void Initialize()
{
AvaloniaXamlLoader.Load(this);
}
public override void OnFrameworkInitializationCompleted()
{
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
{
var databaseService = new DatabaseService();
ThemeService.Database = databaseService;
_themeService.Initialize();
var viewModel = new MainViewModel();
var mainWindow = new MainWindow
{
DataContext = viewModel
};
desktop.MainWindow = mainWindow;
// CRITICAL: Initialize NotificationService AFTER window is created
mainWindow.Opened += (s, e) =>
{
NotificationService.Instance.Initialize(mainWindow);
Serilog.Log.Information("NotificationService initialized with MainWindow");
};
HandleCommandLineArguments(desktop.Args, viewModel);
desktop.MainWindow.Closing += (s, e) =>
{
if (desktop.MainWindow.DataContext is MainViewModel vm && vm.MinimizeToTray)
{
e.Cancel = true;
desktop.MainWindow.Hide();
}
};
}
base.OnFrameworkInitializationCompleted();
}
private void HandleCommandLineArguments(string[]? args, MainViewModel vm)
{
if (args == null || args.Length == 0) return;
var tokens = new Queue<string>(args);
while (tokens.Count > 0)
{
var flag = tokens.Dequeue().ToLowerInvariant();
switch (flag)
{
case "--launch":
TryExecute(vm.LaunchGameCommand);
break;
//case "--file":
// if (TryGetNext(tokens, out var filePath))
// TryExecute(vm.OpenFileCommand, filePath);
// break;
//case "--user":
// if (TryGetNext(tokens, out var user))
// vm.CurrentUser = user;
// break;
//case "--debug":
// vm.EnableLogging = true;
// break;
default:
if (flag == "-l") goto case "--launch";
// if (flag == "-d") goto case "--debug";
Debug.WriteLine($"Unknown argument: {flag}");
break;
}
}
}
private bool TryGetNext(Queue<string> tokens, out string value)
{
value = string.Empty;
if (tokens.TryPeek(out var next) && !next.StartsWith("-"))
{
value = tokens.Dequeue();
return true;
}
return false;
}
private void TryExecute(ICommand command, object? parameter = null)
{
if (command?.CanExecute(parameter) == true)
{
command.Execute(parameter);
}
}
public void ShowMainWindow()
{
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime { MainWindow: { } window })
{
window.Show();
if (window.WindowState == WindowState.Minimized)
window.WindowState = WindowState.Normal;
window.Activate();
}
}
public void Shutdown()
{
(ApplicationLifetime as IClassicDesktopStyleApplicationLifetime)?.Shutdown();
}
private void OnTrayShowClick(object? sender, EventArgs e) => ShowMainWindow();
private void OnTrayExitClick(object? sender, EventArgs e) => Shutdown();
}