mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-29 20:30:44 +00:00
67 lines
1.7 KiB
C#
67 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.IO.Pipes;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
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;
|
|
using System.Windows.Threading;
|
|
using Cosmos.Compiler.Debug;
|
|
|
|
namespace Cosmos.VS.Debug
|
|
{
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
|
|
PipeThread.DataPacketReceived += new Action<byte, byte[]>(PipeThread_DataPacketReceived);
|
|
|
|
var xServerThread = new Thread(PipeThread.ThreadStartServer);
|
|
xServerThread.Start();
|
|
}
|
|
|
|
void PipeThread_DataPacketReceivedInvoke(byte aCommand, byte[] aMsg) {
|
|
switch (aCommand) {
|
|
case DwMsgType.Noop:
|
|
break;
|
|
|
|
case DwMsgType.Registers:
|
|
//TODO
|
|
break;
|
|
|
|
case DwMsgType.Quit:
|
|
Close();
|
|
break;
|
|
|
|
case DwMsgType.AssemblySource:
|
|
string xData = Encoding.ASCII.GetString(aMsg);
|
|
xData = xData.Replace("\t", " ");
|
|
asmUC1.listBox1.Items.Add(xData);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void PipeThread_DataPacketReceived(byte aCmd, byte[] aMsg) {
|
|
Dispatcher.Invoke(DispatcherPriority.Normal,
|
|
(Action)delegate() {
|
|
PipeThread_DataPacketReceivedInvoke(aCmd, aMsg);
|
|
}
|
|
);
|
|
}
|
|
|
|
private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) {
|
|
PipeThread.Stop();
|
|
}
|
|
}
|
|
}
|