-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainWindow.xaml.cs
289 lines (250 loc) · 9.79 KB
/
MainWindow.xaml.cs
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
using Microsoft.Toolkit.Uwp.Notifications;
using System;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
using System.Threading;
using System.Windows;
using System.Windows.Interop;
using System.Windows.Threading;
namespace VRCSaveHelper
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
private const uint CLIPBRD_E_CANT_OPEN = 0x800401D0;
private static Regex _nameRegex = new Regex(@"^output_log_\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}\.txt$");
private static Regex _logRegex = new Regex(@"^(\d{4})\.(\d{2})\.(\d{2}) (\d{2}):(\d{2}):(\d{2}) Log\s*- (.*)$");
private static Regex _enteringRegex = new Regex(@"^\[Behaviour\] Entering Room: (.*)$");
private static Regex _joiningRegex = new Regex(@"^\[Behaviour\] Joining (wrld_[^:]*):(.*)$");
private readonly string _folder;
private readonly DispatcherTimer _timer;
private string _currentFile = "";
private FileStream? _currentStream = null;
private StreamReader? _currentReader = null;
private FileStream? _historyStream = null;
private string _lastWorldName = "";
private string _lastWorldID = "";
private Database _database = new Database();
private MainViewModel _viewModel;
public MainWindow()
{
InitializeComponent();
_viewModel = _database.LoadData();
WorldsComboBox.DataContext = _viewModel;
HistoryListView.DataContext = _viewModel;
AutoLoadCheckBox.DataContext = _viewModel;
AutoSaveCheckBox.DataContext = _viewModel;
_folder = Path.Join(
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
@"..\LocalLow\VRChat\VRChat");
_timer = new DispatcherTimer();
_timer.Interval = new TimeSpan(0, 0, 1);
_timer.Tick += Timer_Tick;
_timer.Start();
}
[DllImport("user32.dll", SetLastError = true)]
private extern static void AddClipboardFormatListener(IntPtr hWnd);
[DllImport("user32.dll", SetLastError = true)]
private extern static void RemoveClipboardFormatListener(IntPtr hWnd);
[DllImport("user32.dll", SetLastError = true)]
private extern static IntPtr GetClipboardOwner();
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private extern static IntPtr FindWindow(string lpClassName, string lpWindowName);
private void Window_Loaded(object sender, RoutedEventArgs e)
{
var hwnd = new WindowInteropHelper(this).Handle;
var source = HwndSource.FromHwnd(hwnd);
source.AddHook(new HwndSourceHook(WndProc));
AddClipboardFormatListener(hwnd);
}
private void Window_Unloaded(object sender, RoutedEventArgs e)
{
if (_currentReader != null) { _currentReader.Close(); }
if (_currentStream != null) { _currentStream.Close(); }
if (_historyStream != null) { _historyStream.Close(); }
var hwnd = new WindowInteropHelper(this).Handle;
RemoveClipboardFormatListener(hwnd);
_database.Close();
}
private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{
const int WM_CLIPBOARDUPDATE = 0x31D;
if (msg == WM_CLIPBOARDUPDATE)
{
OnClipboardUpdate();
handled = true;
}
return IntPtr.Zero;
}
private string GetClipboardText()
{
string data = "";
for (int i = 0; i < 32; ++i)
{
try
{
data = Clipboard.GetText();
break;
}
catch (COMException e)
{
if ((uint)e.ErrorCode != CLIPBRD_E_CANT_OPEN) throw;
}
Thread.Sleep(5);
}
return data;
}
private void SetClipboardText(string data)
{
for (int i = 0; i < 32; ++i)
{
try
{
Clipboard.SetText(data);
break;
}
catch (COMException e)
{
if ((uint)e.ErrorCode != CLIPBRD_E_CANT_OPEN) throw;
}
Thread.Sleep(5);
}
}
private void OnClipboardUpdate()
{
string data = GetClipboardText();
if (string.IsNullOrEmpty(data)) { return; }
// Some apps (incl. VRChat) set NULL for clipboard owner.
var ownerHwnd = GetClipboardOwner();
if (ownerHwnd != IntPtr.Zero) { return; }
// Safety: VRChat window must exist
var vrchatHwnd = FindWindow("UnityWndClass", "VRChat");
if (vrchatHwnd == IntPtr.Zero) { return; }
var history = new HistoryViewModel(-1, _lastWorldID, DateTime.Now, data);
var world = _viewModel.FindWorldById(_lastWorldID);
if (world != null && world.AutoSave)
{
world.History.Add(history);
_viewModel.SelectedHistory = history;
new ToastContentBuilder()
.AddText(world.Name)
.AddText("Saved: " + history.DisplayData)
.Show();
}
}
private void Timer_Tick(object? sender, EventArgs e)
{
bool fileChanged = false;
foreach(var path in Directory.GetFiles(_folder, "output_log_*.txt"))
{
var name = Path.GetFileName(path);
if (_nameRegex.IsMatch(name) && string.Compare(name, _currentFile) > 0)
{
fileChanged = true;
_currentFile = name;
}
}
if (fileChanged)
{
var path = Path.Combine(_folder, _currentFile);
Debug.WriteLine(path);
if (_currentReader != null) { _currentReader.Close(); }
if (_currentStream != null) { _currentStream.Close(); }
_currentStream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
_currentReader = new StreamReader(_currentStream);
}
if (_currentReader != null)
{
string? line = null;
while ((line = _currentReader.ReadLine()) != null)
{
ParseLogLine(line);
}
}
}
private void ParseLogLine(string line)
{
line = line.Trim();
var match = _logRegex.Match(line);
if (!match.Success) { return; }
var timestamp = new DateTime(
int.Parse(match.Groups[1].Value),
int.Parse(match.Groups[2].Value),
int.Parse(match.Groups[3].Value),
int.Parse(match.Groups[4].Value),
int.Parse(match.Groups[5].Value),
int.Parse(match.Groups[6].Value));
var body = match.Groups[7].Value;
// ignore if the message is too old (15sec?)
if (DateTime.Now - timestamp > TimeSpan.FromSeconds(15))
{
return;
}
match = _enteringRegex.Match(body);
if (match.Success)
{
_lastWorldName = match.Groups[1].Value;
}
match = _joiningRegex.Match(body);
if (match.Success)
{
_lastWorldID = match.Groups[1].Value;
if (!string.IsNullOrEmpty(_lastWorldName))
{
OnEnterWorld(_lastWorldID, _lastWorldName);
}
}
}
private void OnEnterWorld(string id, string name)
{
var world = _viewModel.FindWorldById(id);
if (world != null)
{
world.Name = name;
}
else
{
world = new WorldViewModel(_database, id, name, true, true, new HistoryViewModel[0]);
_viewModel.Worlds.Add(world);
}
var history = world.History;
if (history.Count > 0 && world.AutoLoad)
{
var item = history[history.Count - 1];
SetClipboardText(item.Data);
new ToastContentBuilder()
.AddText(world.Name)
.AddText("Copied: " + item.DisplayData)
.Show();
}
_viewModel.SelectedWorld = world;
}
private void ImportButton_Click(object sender, RoutedEventArgs e)
{
var world = _viewModel.SelectedWorld;
if (world == null) { return; }
var data = GetClipboardText();
if (string.IsNullOrEmpty(data)) { return; }
var history = new HistoryViewModel(-1, world.Id, DateTime.Now, data);
world.History.Add(history);
_viewModel.SelectedHistory = history;
}
private void CopyButton_Click(object sender, RoutedEventArgs e)
{
var history = _viewModel.SelectedHistory;
if (history == null) { return; }
SetClipboardText(history.Data);
}
private void RemoveButton_Click(object sender, RoutedEventArgs e)
{
var world = _viewModel.SelectedWorld;
var history = _viewModel.SelectedHistory;
if (history == null || world == null) { return; }
world.History.Remove(history);
}
}
}