2018-03-21 20:56:56 +08:00
|
|
|
|
using BililiveRecorder.Core;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NLog.Config;
|
|
|
|
|
using NLog.Targets;
|
|
|
|
|
using System;
|
2018-03-12 18:57:20 +08:00
|
|
|
|
using System.Collections.Generic;
|
2018-03-21 20:56:56 +08:00
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
using System.Deployment.Application;
|
2018-03-12 18:57:20 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
using System.Windows.Navigation;
|
|
|
|
|
using System.Windows.Shapes;
|
|
|
|
|
|
|
|
|
|
namespace BililiveRecorder.WPF
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for MainWindow.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
{
|
2018-03-21 20:56:56 +08:00
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
|
|
|
|
private const int MAX_LOG_ROW = 25;
|
|
|
|
|
|
|
|
|
|
public Recorder Recorder { get; set; }
|
|
|
|
|
public ObservableCollection<string> Logs { get; set; } =
|
|
|
|
|
new ObservableCollection<string>()
|
|
|
|
|
{
|
|
|
|
|
"注:按鼠标右键复制日志",
|
|
|
|
|
"网站: https://rec.danmuji.org",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public static void AddLog(string message) => _AddLog?.Invoke(message);
|
|
|
|
|
private static Action<string> _AddLog;
|
|
|
|
|
|
2018-03-12 18:57:20 +08:00
|
|
|
|
public MainWindow()
|
|
|
|
|
{
|
2018-03-21 22:41:34 +08:00
|
|
|
|
_AddLog = (message) => Log.Dispatcher.Invoke(() => { Logs.Add(message); while (Logs.Count > MAX_LOG_ROW) Logs.RemoveAt(0); });
|
2018-03-21 20:56:56 +08:00
|
|
|
|
|
2018-03-12 18:57:20 +08:00
|
|
|
|
InitializeComponent();
|
2018-03-21 20:56:56 +08:00
|
|
|
|
|
|
|
|
|
Recorder = new Recorder();
|
|
|
|
|
DataContext = this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void Window_Loaded(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadSettings();
|
|
|
|
|
LoadRooms();
|
|
|
|
|
Task.Run(() => CheckVersion());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void CheckVersion()
|
|
|
|
|
{
|
|
|
|
|
UpdateBar.MainButtonClick += UpdateBar_MainButtonClick;
|
|
|
|
|
|
|
|
|
|
if (ApplicationDeployment.IsNetworkDeployed)
|
|
|
|
|
{
|
|
|
|
|
ApplicationDeployment ad = ApplicationDeployment.CurrentDeployment;
|
|
|
|
|
ad.CheckForUpdateCompleted += Ad_CheckForUpdateCompleted;
|
|
|
|
|
ad.CheckForUpdateAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Action UpdateAction;
|
|
|
|
|
private void UpdateBar_MainButtonClick(object sender, RoutedEventArgs e) => UpdateAction?.Invoke();
|
|
|
|
|
|
|
|
|
|
private void Ad_CheckForUpdateCompleted(object sender, CheckForUpdateCompletedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
ApplicationDeployment ad = ApplicationDeployment.CurrentDeployment;
|
|
|
|
|
if (e.Error != null)
|
|
|
|
|
{
|
|
|
|
|
logger.Error(e.Error, "检查版本更新出错");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (e.Cancelled)
|
|
|
|
|
return;
|
|
|
|
|
if (e.UpdateAvailable)
|
|
|
|
|
{
|
|
|
|
|
if (e.IsUpdateRequired)
|
|
|
|
|
{
|
|
|
|
|
BeginUpdate();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
UpdateAction = () => BeginUpdate();
|
|
|
|
|
UpdateBar.MainText = string.Format("发现新版本: {0} 大小: {1}KiB", e.AvailableVersion, e.UpdateSizeBytes / 1024);
|
|
|
|
|
UpdateBar.ButtonText = "下载更新";
|
|
|
|
|
UpdateBar.Display = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void BeginUpdate()
|
|
|
|
|
{
|
|
|
|
|
ApplicationDeployment ad = ApplicationDeployment.CurrentDeployment;
|
|
|
|
|
ad.UpdateCompleted += Ad_UpdateCompleted;
|
|
|
|
|
ad.UpdateProgressChanged += Ad_UpdateProgressChanged;
|
|
|
|
|
ad.UpdateAsync();
|
|
|
|
|
UpdateBar.ProgressText = "0KiB / 0KiB - 0%";
|
|
|
|
|
UpdateBar.Progress = 0;
|
|
|
|
|
UpdateBar.Display = true;
|
|
|
|
|
UpdateBar.ShowProgressBar = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Ad_UpdateProgressChanged(object sender, DeploymentProgressChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
UpdateBar.Progress = e.BytesCompleted / e.BytesTotal;
|
|
|
|
|
UpdateBar.ProgressText = string.Format("{0}KiB / {1}KiB - {2}%", e.BytesCompleted / 1024, e.BytesTotal / 1024, e.BytesCompleted / e.BytesTotal);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Ad_UpdateCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.Cancelled)
|
|
|
|
|
{
|
|
|
|
|
UpdateBar.Display = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (e.Error != null)
|
|
|
|
|
{
|
|
|
|
|
UpdateBar.Display = false;
|
|
|
|
|
logger.Error(e.Error, "下载更新时出现错误");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UpdateAction = () =>
|
|
|
|
|
{
|
|
|
|
|
System.Windows.Forms.Application.Restart();
|
|
|
|
|
};
|
|
|
|
|
UpdateBar.MainText = "更新已下载好,要现在重启软件吗?";
|
|
|
|
|
UpdateBar.ButtonText = "重启软件";
|
|
|
|
|
UpdateBar.ShowProgressBar = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LoadSettings()
|
|
|
|
|
{
|
|
|
|
|
// TODO: Load Settings
|
2018-03-21 22:41:34 +08:00
|
|
|
|
Recorder.Settings.Clip_Future = 10;
|
|
|
|
|
Recorder.Settings.Clip_Past = 20;
|
|
|
|
|
Recorder.Settings.SavePath = @"D:\录播姬测试保存";
|
2018-03-21 20:56:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LoadRooms()
|
|
|
|
|
{
|
2018-03-21 22:41:34 +08:00
|
|
|
|
Recorder.AddRoom(647);
|
|
|
|
|
Recorder.Rooms[0].streamMonitor.Start();
|
2018-03-21 20:56:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void TextBlock_MouseRightButtonUp(object sender, MouseButtonEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void RoomList_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
2018-03-12 18:57:20 +08:00
|
|
|
|
}
|
2018-03-21 22:41:34 +08:00
|
|
|
|
|
|
|
|
|
private void Clip_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var rr = (sender as Button).DataContext as RecordedRoom;
|
|
|
|
|
Task.Run(() => rr.Clip());
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-12 18:57:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|