2015-10-20 03:20:42 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2015-10-23 22:49:04 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
2015-10-20 03:20:42 +00:00
|
|
|
|
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 WinUI
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for MainWindow.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
{
|
2015-10-22 03:29:03 +00:00
|
|
|
|
APIHandler handler = new APIHandler();
|
2015-10-27 01:08:44 +00:00
|
|
|
|
Regex charRegex = new Regex("[0-9a-fxA-FX]");
|
|
|
|
|
Regex wholeStringRegex = new Regex("^[0-9a-fxA-FX]+$");
|
2015-10-22 03:29:03 +00:00
|
|
|
|
|
2015-10-20 03:20:42 +00:00
|
|
|
|
public MainWindow()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2015-10-22 03:29:03 +00:00
|
|
|
|
|
|
|
|
|
updateStatus();
|
|
|
|
|
updateNetworks();
|
2015-10-27 01:08:44 +00:00
|
|
|
|
|
|
|
|
|
DataObject.AddPastingHandler(joinNetworkID, OnPaste);
|
2015-10-22 03:29:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateStatus()
|
|
|
|
|
{
|
2015-10-23 22:36:42 +00:00
|
|
|
|
var status = handler.GetStatus();
|
2015-10-22 03:29:03 +00:00
|
|
|
|
|
2015-10-23 22:36:42 +00:00
|
|
|
|
this.networkId.Content = status.Address;
|
|
|
|
|
this.versionString.Content = status.Version;
|
|
|
|
|
this.onlineStatus.Content = (status.Online ? "ONLINE" : "OFFLINE");
|
2015-10-22 03:29:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateNetworks()
|
|
|
|
|
{
|
2015-10-23 22:36:42 +00:00
|
|
|
|
var networks = handler.GetNetworks();
|
2015-10-22 03:29:03 +00:00
|
|
|
|
|
|
|
|
|
networksPage.setNetworks(networks);
|
2015-10-20 03:20:42 +00:00
|
|
|
|
}
|
2015-10-23 22:36:42 +00:00
|
|
|
|
|
|
|
|
|
private void joinButton_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2015-10-23 22:50:49 +00:00
|
|
|
|
if (joinNetworkID.Text.Length < 16)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Invalid Network ID");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
handler.JoinNetwork(joinNetworkID.Text);
|
|
|
|
|
}
|
2015-10-23 22:36:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-23 22:49:04 +00:00
|
|
|
|
private void OnNetworkEntered(object sender, TextCompositionEventArgs e)
|
2015-10-23 22:36:42 +00:00
|
|
|
|
{
|
2015-10-27 01:08:44 +00:00
|
|
|
|
e.Handled = !charRegex.IsMatch(e.Text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnPaste(object sender, DataObjectPastingEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var isText = e.SourceDataObject.GetDataPresent(DataFormats.UnicodeText, true);
|
|
|
|
|
if (!isText) return;
|
|
|
|
|
|
|
|
|
|
var text = e.SourceDataObject.GetData(DataFormats.UnicodeText) as string;
|
|
|
|
|
|
|
|
|
|
if (!wholeStringRegex.IsMatch(text))
|
|
|
|
|
{
|
|
|
|
|
e.CancelCommand();
|
|
|
|
|
}
|
2015-10-23 22:36:42 +00:00
|
|
|
|
}
|
2015-10-20 03:20:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|