Commit 83605bc1 by 鲁志-悦动

Replay拖出入点框,把坐标数据发送给算法

parent 5346a6b5
......@@ -32,7 +32,6 @@ namespace VIZ.FGOUT.Connection
/// <summary>
/// InValidPalce
/// </summary>
public List<List<List<int>>> ignore { get; set; }
/// <summary>
......
using VIZ.FGOUT.Domain;
using System.Collections.Generic;
using VIZ.FGOUT.Domain;
namespace VIZ.FGOUT.Connection
{
......@@ -28,6 +29,11 @@ namespace VIZ.FGOUT.Connection
/// <summary>
/// 数据
/// </summary>
public VideoData data { get; set; }
//public VideoData data { get; set; }
/// <summary>
/// InValidPalce
/// </summary>
public List<List<List<int>>> inPoints { get; set; }
}
}
namespace VIZ.FGOUT.Domain
{
public class CleanInPointsModel
{
}
}
......@@ -77,6 +77,7 @@
<Compile Include="Message\Algorithm\Implementation\AlgorithmMessage__detect.cs" />
<Compile Include="Message\Algorithm\Implementation\AlgorithmMessage__start_end.cs" />
<Compile Include="Message\Algorithm\Interface\IAlgorithmMessage__roi.cs" />
<Compile Include="Message\Setting\CleanInPointsModel.cs" />
<Compile Include="Message\Setting\CleanPlaceModel.cs" />
<Compile Include="Message\Setting\DisplayPlaceModel.cs" />
<Compile Include="Message\Setting\EndPlaceModel.cs" />
......
3524faf8538cdae4f5dd0830a09823eb1c801e99
e5d520f069224ea49e66eb87e09bd80ce5e68404
......@@ -126,6 +126,19 @@ namespace VIZ.FGOUT.Module
return true;
}
private bool AssembleHotkeyModeCam3(NDIViewHotkeys hotkey)
{
var service = ApplicationDomain.ServiceManager.GetService<INDIViewService>(NDIViewKeys.CAM_3);
if (service == null) return false;
var context = new NDIViewHotkeyContext()
{
hotkey = hotkey
};
service.NDIViewHotkeyMode(context);
return true;
}
/// <summary>
/// 算法是否处于停止状态
/// </summary>
......@@ -142,13 +155,13 @@ namespace VIZ.FGOUT.Module
//Replay入点命令
if (string.Equals(this.Support.HotkeyConfig.I, hotkey))
{
return AssembleHotkeyMode(NDIViewHotkeys.I);
return AssembleHotkeyModeCam3(NDIViewHotkeys.I);
}
//Replay出点命令
if (string.Equals(this.Support.HotkeyConfig.O, hotkey))
{
return AssembleHotkeyMode(NDIViewHotkeys.O);
return AssembleHotkeyModeCam3(NDIViewHotkeys.O);
}
//位置标记删除命令
......
......@@ -227,6 +227,7 @@
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<GroupBox Foreground="White" Header="自动检测">
<CheckBox
......@@ -607,7 +608,7 @@
Visibility="{Binding ReplaySendVisibility, Mode=TwoWay}" />
<Button
Grid.Row="5"
Grid.Row="4"
Grid.Column="3"
Width="100"
Height="40"
......@@ -616,6 +617,18 @@
Content="Replay Stop"
Style="{StaticResource ButtonStyle}"
Visibility="{Binding ReplaySendVisibility, Mode=TwoWay}" />
<Button
Grid.Row="5"
Grid.Column="3"
Width="100"
Height="40"
Margin="10"
Command="{Binding Path=CleanInPointCommand}"
Content="Clean In Point"
IsEnabled="{Binding CleanEnable}"
Style="{StaticResource ButtonStyle}"
Visibility="{Binding ReplaySendVisibility, Mode=TwoWay}" />
</Grid>
</WrapPanel>
<!--<WrapPanel
......
......@@ -5,6 +5,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Web.WebSockets;
using System.Windows;
using System.Windows.Interop;
using VIZ.FGOUT.Connection;
......@@ -87,6 +88,8 @@ namespace VIZ.FGOUT.Module
this.InPointCommand = new VCommand(this.InPoint);
//出点
this.OutPointCommand = new VCommand(this.OutPoint);
//清空入点标记
this.CleanInPointCommand = new VCommand(this.CleanInPoint);
//UESetting
this.UESettingCommand = new VCommand(this.UESetting);
......@@ -727,6 +730,13 @@ namespace VIZ.FGOUT.Module
ReplayIsChecked = false;
}
public VCommand CleanInPointCommand { get; set; }
public CleanInPointsModel _cleanInPointsModel = new CleanInPointsModel();
private void CleanInPoint()
{
ApplicationDomain.MessageManager.Send(_cleanInPointsModel);
}
public VCommand ReplayStartCommand { get; set; }
public ReplayStartModel replayStartModel = new ReplayStartModel();
private void ReplayStart()
......@@ -1115,7 +1125,7 @@ namespace VIZ.FGOUT.Module
}
/// <summary>
/// 清除矩形框
/// 清除开始、结束、无效位置标记
/// </summary>
public VCommand CleanCommand { get; set; }
public CleanPlaceModel cleanPlaceModel = new CleanPlaceModel();
......
......@@ -33,8 +33,11 @@ namespace VIZ.FGOUT.Module
// public Rectangle rectInvalid;
public List<Rect> rectsInvalid = new List<Rect>();
// public Path myPath = new Path();
public Rect rectReplay;
// public Rectangle rectInvalid;
public List<Rect> rectsReplay = new List<Rect>();
// public Path myPath = new Path();
// public Path myPath1 = new Path();
public NDIView()
......@@ -296,6 +299,26 @@ namespace VIZ.FGOUT.Module
canvas1.Children.Add(myPath);
}
}
if (vm.IsReplay)
{
aa = new PathGeometry();
if (!rectsReplay.Contains(rectReplay))
{
aa.AddGeometry(new RectangleGeometry(rectReplay));
rectsReplay.Add(rectReplay);
//if (rectsReplay.Count == 2)
// rectsReplay.RemoveAt(0);
var myPath = new Path()
{
Fill = Brushes.Transparent,
Stroke = Brushes.Green,
StrokeThickness = 1,
Data = aa
};
canvas1.Children.Add(myPath);
}
}
}
/// <summary>
......@@ -369,8 +392,8 @@ namespace VIZ.FGOUT.Module
DrawPolygon(e.GetPosition(this.canvas1), Brushes.Blue);
else if (vm.IsDrawEndPlace)
DrawPolygon(e.GetPosition(this.canvas1), Brushes.Green);
else if(vm.IsMark)
DrawDot(e.GetPosition(this.canvas1), Brushes.Red);
//else if(vm.IsMark)
// DrawDot(e.GetPosition(this.canvas1), Brushes.Red);
//else if (vm.IsDrawInvalidPlace)
// DrawPolygon(e.GetPosition(this.canvas1), Brushes.Red);
......@@ -416,6 +439,11 @@ namespace VIZ.FGOUT.Module
{
rectInvalid = new Rect(startPoint, e.GetPosition(this.canvas1));
}
if (vm.IsReplay)
{
rectReplay = new Rect(startPoint, e.GetPosition(this.canvas1));
}
}
}
......
......@@ -182,6 +182,9 @@ namespace VIZ.FGOUT.Module
// Replay出点发送命令
ApplicationDomain.MessageManager.Register<ReplayOutPointModel>(this, this.ReplayOutPort);
//清空入点标记
ApplicationDomain.MessageManager.Register<CleanInPointsModel>(this, this.CleanInPoints);
}
private void ReplayOutPort(ReplayOutPointModel replayOutPointModel)
......@@ -200,8 +203,14 @@ namespace VIZ.FGOUT.Module
private void ReplayStart(ReplayStartModel replayStartModel)
{
if (this.ViewKey != NDIViewKeys.CAM_1)
if (this.ViewKey != NDIViewKeys.CAM_3)
//if (this.ViewKey != NDIViewKeys.CAM_1)
return;
// 对结束值进行组装
NDIView nDIView = this.GetView<NDIView>();
//var rects = nDIView.rectsReplay;
var srcWidth = nDIView.video.ActualWidth;
var srcHeight = nDIView.video.ActualHeight;
var manager = ConnectionManager.UdpConnection.GetEndpointManager(NDIViewKeys.CAM_1__CLIP);
if (manager == null) return;
......@@ -229,7 +238,8 @@ namespace VIZ.FGOUT.Module
type = ClipPackageSignal.REPLAY,
start_time = StartTime,
end_time = EndTime,
status = ReplayStatus.Start
status = ReplayStatus.Start,
inPoints = Coordinate(nDIView.rectsReplay, srcWidth, srcHeight)
};
managerAlgorithm.SendJson(replayPackage);
......@@ -237,6 +247,17 @@ namespace VIZ.FGOUT.Module
MessageBoxEx.ShowDialog("Replay Start OK.");
}
private void CleanInPoints(CleanInPointsModel cleanInPointsModel)
{
if (this.ViewKey != NDIViewKeys.CAM_3)
return;
var ndiView = this.GetView<NDIView>();
if (ndiView == null)
return;
ndiView.rectsReplay.Clear();
ndiView.canvas1.Children.Clear();
}
private void UESetting(UESettingModel ueSettingModel)
{
if (this.ViewKey != NDIViewKeys.CAM_1)
......@@ -264,7 +285,7 @@ namespace VIZ.FGOUT.Module
/// </summary>
private void Replay(ReplayModel replayModel)
{
if (this.ViewKey != NDIViewKeys.CAM_1)
if (this.ViewKey == NDIViewKeys.CAM_2)
return;
IsReplay = replayModel.IsReplay;
IsSliderValueChanged = replayModel.IsSliderValueChanged;
......@@ -419,12 +440,12 @@ namespace VIZ.FGOUT.Module
public bool IsCleanPlace;
private void CleanPlace(CleanPlaceModel cleanPlaceModel)
{
IsCleanPlace = cleanPlaceModel.CleanPlace;
if (this.ViewKey != NDIViewKeys.CAM_1)
return;
var ndiView = this.GetView<NDIView>();
if(ndiView == null)
if (ndiView == null)
return;
IsCleanPlace = cleanPlaceModel.CleanPlace;
//nDIView.aa = null;
//nDIView.myPath.Data = null;
......@@ -451,12 +472,12 @@ namespace VIZ.FGOUT.Module
/// <param name="sendPlaceModel"></param>
private void SendPlace(SendPlaceModel sendPlaceModel)
{
// 对结束值进行组装
NDIView nDIView = this.GetView<NDIView>();
if (this.ViewKey != NDIViewKeys.CAM_1)
return;
// 对结束值进行组装
NDIView nDIView = this.GetView<NDIView>();
//var renderInfo = nDIView.video.GetRenderInfo();
//var rectStart = nDIView.rectStart;
......@@ -1308,6 +1329,8 @@ namespace VIZ.FGOUT.Module
view.polygonsEnd.RemoveAt(view.polygonsEnd.Count - 1);
else if (IsDrawInvalidPlace && view.rectsInvalid.Count > 0)
view.rectsInvalid.RemoveAt(view.rectsInvalid.Count - 1);
else if (IsReplay && view.rectsReplay.Count > 0)
view.rectsReplay.RemoveAt(view.rectsReplay.Count - 1);
//先清空
view.canvas1.Children.Clear();
......@@ -1329,6 +1352,11 @@ namespace VIZ.FGOUT.Module
foreach (var points in view.rectsInvalid)
AddRects(view, points, Brushes.Red);
}
//if (view.rectsReplay.Count > 0)
//{
// foreach (var points in view.rectsReplay)
// AddRects(view, points, Brushes.Red);
//}
}
/// <summary>
......
......@@ -38,7 +38,7 @@ namespace VIZ.FGOUT.Module
//timecode
data.timecode = timecode;
data.status = 1;
replayPackage.data = data;
//replayPackage.data = data;
manager.SendJson(replayPackage);
}
......@@ -62,7 +62,7 @@ namespace VIZ.FGOUT.Module
//timecode
data.timecode = timecode;
data.status = 2; //重新开始
replayPackage.data = data;
//replayPackage.data = data;
manager.SendJson(replayPackage);
}
......@@ -94,7 +94,7 @@ namespace VIZ.FGOUT.Module
//timecode
data.timecode = timecode;
data.status = 0;//停止
replayPackage.data = data;
//replayPackage.data = data;
manager.SendJson(replayPackage);
}
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F7E31AF7C684FC230365F0EB5CBFB35D5A0FF9028A004C278D0DD9FC304C7CE0"
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "C2A844093FC01C7C4B85B4490D8FC7C48519F47C8585C4E6427F9B7D13310026"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -58,7 +58,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 233 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 234 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox _AutoMode_;
......@@ -66,7 +66,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 250 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 251 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox _ManualMode_;
......@@ -74,7 +74,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 912 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 925 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam1;
......@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 926 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 939 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam3;
......@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 973 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 986 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2;
......@@ -140,7 +140,7 @@ namespace VIZ.FGOUT.Module {
case 2:
this._AutoMode_ = ((System.Windows.Controls.CheckBox)(target));
#line 235 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 236 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
this._AutoMode_.Click += new System.Windows.RoutedEventHandler(this.AutoMode_OnClick);
#line default
......@@ -149,7 +149,7 @@ namespace VIZ.FGOUT.Module {
case 3:
this._ManualMode_ = ((System.Windows.Controls.CheckBox)(target));
#line 252 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 253 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
this._ManualMode_.Click += new System.Windows.RoutedEventHandler(this.ManualMode_OnClick);
#line default
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F7E31AF7C684FC230365F0EB5CBFB35D5A0FF9028A004C278D0DD9FC304C7CE0"
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "C2A844093FC01C7C4B85B4490D8FC7C48519F47C8585C4E6427F9B7D13310026"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -58,7 +58,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 233 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 234 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox _AutoMode_;
......@@ -66,7 +66,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 250 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 251 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox _ManualMode_;
......@@ -74,7 +74,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 912 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 925 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam1;
......@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 926 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 939 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam3;
......@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 973 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 986 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2;
......@@ -140,7 +140,7 @@ namespace VIZ.FGOUT.Module {
case 2:
this._AutoMode_ = ((System.Windows.Controls.CheckBox)(target));
#line 235 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 236 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
this._AutoMode_.Click += new System.Windows.RoutedEventHandler(this.AutoMode_OnClick);
#line default
......@@ -149,7 +149,7 @@ namespace VIZ.FGOUT.Module {
case 3:
this._ManualMode_ = ((System.Windows.Controls.CheckBox)(target));
#line 252 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 253 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
this._ManualMode_.Click += new System.Windows.RoutedEventHandler(this.ManualMode_OnClick);
#line default
......

C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\obj\x64\Debug\GeneratedInternalTypeHelper.g.cs
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIMainView\View\NDIMainView.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIPreviewView\View\NDIPreviewView.xaml;;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
2023-12-28 10:42:01,004 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 10:42:04,975 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 10:42:23,695 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 10:42:43,700 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 10:42:50,349 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 10:42:56,461 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 10:43:50,995 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 14:30:50,310 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 14:30:56,381 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:30:56,381 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:31:06,685 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:31:06,685 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:31:11,360 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:31:11,360 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:31:22,178 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:31:22,178 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:40:05,343 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 14:40:08,530 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:40:08,530 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:41:41,460 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 14:41:44,573 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:41:44,573 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:41:59,491 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 14:43:10,087 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 14:43:13,240 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:43:13,240 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:44:22,817 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 14:44:27,703 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:44:27,703 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:44:41,825 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:44:41,826 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:44:50,582 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:44:50,582 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:45:32,930 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 14:45:39,024 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:45:39,024 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:45:54,672 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:45:54,672 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:46:00,615 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:46:00,615 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:46:05,674 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:46:05,674 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:47:11,446 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:47:11,446 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:55:16,533 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 14:56:54,842 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:56:54,843 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:57:22,430 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:57:22,430 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 14:57:24,819 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:57:24,820 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:59:48,544 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 14:59:54,799 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 14:59:54,799 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:00:19,543 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:00:19,543 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:16:22,325 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:16:47,202 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:16:47,202 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:17:04,927 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:17:04,927 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:17:08,914 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:17:08,914 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:17:21,020 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:17:21,020 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:17:22,175 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:17:22,175 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:17:42,866 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:17:42,866 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:25:04,343 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:25:08,317 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:25:08,317 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:25:12,228 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:25:12,388 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:D3
2023-12-28 15:25:13,408 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:25:13,568 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2023-12-28 15:25:24,296 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:25:24,469 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:D4
2023-12-28 15:25:25,049 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:25:25,224 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2023-12-28 15:25:43,410 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:25:51,958 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:25:51,959 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:27:07,829 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:27:11,754 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:27:13,729 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:27:13,936 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:27:14,091 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:27:14,255 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:27:15,028 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:27:15,215 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:27:15,367 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2023-12-28 15:27:26,531 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:27:34,551 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:27:34,551 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:28:01,952 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:02,178 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:02,360 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:02,853 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:02,888 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:02,928 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:02,967 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:03,007 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:03,042 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:03,046 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:03,305 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:04,324 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:04,471 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:D1
2023-12-28 15:28:04,579 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:D5
2023-12-28 15:28:07,946 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:08,425 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:08,460 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:08,530 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:08,531 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:08,569 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:08,608 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:08,645 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:09,116 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:09,308 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2023-12-28 15:28:22,221 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:27,637 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:28:27,637 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:28:55,289 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:55,760 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:55,956 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2023-12-28 15:28:56,897 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:57,390 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:57,540 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:D1
2023-12-28 15:28:57,722 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:D0
2023-12-28 15:28:58,065 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:28:58,206 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2023-12-28 15:29:09,345 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:29:11,796 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:29:11,796 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:29:22,366 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:29:22,366 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:29:41,436 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:29:58,658 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:29:58,658 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:30:16,685 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:30:16,685 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:30:18,630 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:30:18,630 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:30:24,449 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:30:26,781 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:30:26,781 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:30:29,189 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:30:29,189 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:30:46,925 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:30:46,925 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:30:50,985 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:30:50,985 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:30:53,284 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:30:53,284 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:32:34,445 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:32:40,046 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:32:40,047 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:32:49,456 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:32:49,456 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:36:46,625 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 15:36:51,409 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:36:51,409 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 15:37:01,626 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:I
2023-12-28 15:37:04,859 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2023-12-28 15:39:17,608 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:39:17,608 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 15:42:17,757 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2023-12-28 15:42:18,586 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2023-12-28 15:42:18,970 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2023-12-28 16:15:37,544 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:16:12,902 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:16:12,976 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + N
2023-12-28 16:16:14,152 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:S
2023-12-28 16:16:14,324 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:T
2023-12-28 16:16:14,503 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2023-12-28 16:16:14,934 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:E
2023-12-28 16:16:15,547 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:A
2023-12-28 16:16:15,656 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:M
2023-12-28 16:16:16,972 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:16:17,525 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:16:17,563 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:16:33,231 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:16:33,724 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:16:33,759 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:16:33,795 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:16:33,831 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:16:33,899 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:16:33,901 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:17:18,763 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:19:55,965 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:26:12,175 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:06,316 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:06,619 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + F
2023-12-28 16:28:31,116 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:31,622 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:31,658 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:31,694 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:31,733 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + X
2023-12-28 16:28:32,886 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:32,958 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:33,156 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + V
2023-12-28 16:28:35,406 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:35,559 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:35,701 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2023-12-28 16:28:47,000 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:47,505 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,538 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,577 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,578 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,613 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,649 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,683 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,718 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,734 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,801 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,802 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,871 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,909 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,910 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,944 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:47,979 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,014 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,052 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,086 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,122 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,158 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,195 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,240 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,242 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,276 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,300 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,369 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,369 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,404 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,440 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:28:48,474 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + X
2023-12-28 16:28:49,967 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:50,081 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:50,186 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + V
2023-12-28 16:28:52,670 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:52,779 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:28:52,931 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2023-12-28 16:28:59,660 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:29:00,161 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:29:00,196 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:29:00,235 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2023-12-28 16:29:00,272 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + X
2023-12-28 16:29:01,342 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:29:01,461 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:29:01,535 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + V
2023-12-28 16:29:03,516 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:29:03,660 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:29:03,809 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2023-12-28 16:29:26,542 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:29:26,810 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:29:27,032 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2023-12-28 16:51:29,395 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:51:35,218 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 16:51:35,219 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 16:51:46,620 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 16:51:46,626 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 16:51:53,864 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:52:05,693 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 16:52:05,693 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 16:52:29,630 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:52:33,990 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 16:52:33,991 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 16:52:56,846 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 16:52:56,846 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 16:54:34,333 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:54:47,403 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:54:47,578 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + C
2023-12-28 16:54:47,845 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + F
2023-12-28 16:55:45,527 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 16:59:02,632 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2023-12-28 16:59:37,372 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 16:59:37,372 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 18:06:56,394 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2023-12-28 18:06:58,206 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 18:06:58,218 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2023-12-28 18:07:07,435 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2023-12-28 18:07:07,443 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 10:26:00,715 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:09:40,109 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:09:48,263 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:09:49,789 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:09:51,442 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:10:23,559 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:10:23,561 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:10:45,096 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:I
2024-01-02 14:10:50,466 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2024-01-02 14:10:58,617 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":32805,"end_time":32879,"status":2}
2024-01-02 14:10:58,617 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":32805,"end_time":32879,"status":2}
2024-01-02 14:11:00,165 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:11:16,798 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 14:11:16,799 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 14:12:58,821 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:12:58,821 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:14:36,138 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 14:14:36,138 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 14:18:27,942 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:35:50,988 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:35:57,216 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:35:57,218 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:37:45,631 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:37:48,442 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:I
2024-01-02 14:37:53,307 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2024-01-02 14:37:59,895 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":109720,"end_time":109803,"status":2,"inPoints":[]}
2024-01-02 14:38:45,051 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":109720,"end_time":109803,"status":2,"inPoints":[]}
2024-01-02 14:38:47,369 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:38:57,783 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:38:57,925 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:38:59,022 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:38:59,341 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2024-01-02 14:39:17,737 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 14:39:17,738 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 14:39:18,908 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:39:18,913 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:39:30,533 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:I
2024-01-02 14:39:35,678 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2024-01-02 14:39:50,070 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2024-01-02 14:39:52,799 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":109736,"end_time":109838,"status":2,"inPoints":[]}
2024-01-02 14:40:33,292 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":109736,"end_time":109838,"status":2,"inPoints":[[[1090,931],[1893,931],[1893,1405],[1090,1405]]]}
2024-01-02 14:40:38,589 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":109736,"end_time":109838,"status":2,"inPoints":[[[1090,931],[1893,931],[1893,1405],[1090,1405]]]}
2024-01-02 14:41:08,251 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:41:16,041 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":109736,"end_time":109838,"status":2,"inPoints":[[[2292,807],[3000,807],[3000,1478],[2292,1478]]]}
2024-01-02 14:42:31,584 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:42:37,916 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:42:37,917 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:42:44,096 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:I
2024-01-02 14:42:57,565 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2024-01-02 14:43:01,824 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":128596,"end_time":128790,"status":2,"inPoints":[[[601,871],[843,871],[843,1291],[601,1291]],[[949,945],[1325,945],[1325,1350],[949,1350]],[[1764,975],[1938,975],[1938,1326],[1764,1326]]]}
2024-01-02 14:43:22,131 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:43:27,928 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2024-01-02 14:43:30,086 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2024-01-02 14:43:30,228 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2024-01-02 14:43:30,406 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2024-01-02 14:43:30,583 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2024-01-02 14:43:30,735 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2024-01-02 14:43:35,697 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2024-01-02 14:43:39,180 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2024-01-02 14:43:42,789 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2024-01-02 14:43:46,685 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Delete
2024-01-02 14:43:58,435 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":128596,"end_time":128790,"status":2,"inPoints":[[[601,871],[843,871],[843,1291],[601,1291]],[[949,945],[1325,945],[1325,1350],[949,1350]],[[1764,975],[1938,975],[1938,1326],[1764,1326]]]}
2024-01-02 14:44:04,137 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:45:06,424 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":128596,"end_time":128790,"status":2,"inPoints":[[[601,871],[843,871],[843,1291],[601,1291]],[[949,945],[1325,945],[1325,1350],[949,1350]],[[1764,975],[1938,975],[1938,1326],[1764,1326]]]}
2024-01-02 14:46:08,156 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 14:46:08,161 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 14:46:09,873 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:46:09,883 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:49:02,862 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:49:05,978 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:49:05,978 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 14:50:14,649 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:I
2024-01-02 14:50:17,441 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:I
2024-01-02 14:50:23,405 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2024-01-02 14:50:32,630 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:I
2024-01-02 14:50:33,791 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":148168,"end_time":148213,"status":2,"inPoints":[[[1062,926],[1613,926],[1613,1553],[1062,1553]],[[1989,812],[2540,812],[2540,1548],[1989,1548]],[[539,921],[859,921],[859,1351],[539,1351]]]}
2024-01-02 14:50:44,711 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 14:51:15,140 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 14:51:15,140 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 15:18:51,070 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:18:55,996 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:18:55,997 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:19:01,171 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 15:19:01,176 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 15:19:02,338 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:19:02,344 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:19:07,732 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:19:07,906 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Shift + C
2024-01-02 15:19:08,407 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:L
2024-01-02 15:19:08,549 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:E
2024-01-02 15:19:08,724 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:A
2024-01-02 15:19:08,831 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-01-02 15:19:09,310 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Space
2024-01-02 15:19:10,479 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:19:10,664 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Shift + I
2024-01-02 15:19:10,942 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:N
2024-01-02 15:19:11,602 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Space
2024-01-02 15:19:11,781 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:19:11,889 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Shift + P
2024-01-02 15:19:12,101 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2024-01-02 15:19:12,179 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-01-02 15:19:12,390 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:T
2024-01-02 15:19:13,048 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:19:13,256 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2024-01-02 15:19:48,270 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:19:48,482 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:19:58,537 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Space
2024-01-02 15:19:59,222 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:19:59,596 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Shift + I
2024-01-02 15:19:59,855 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:N
2024-01-02 15:20:00,134 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Space
2024-01-02 15:20:00,311 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:P
2024-01-02 15:20:00,557 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2024-01-02 15:20:01,382 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:20:01,564 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:20:02,323 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:20:02,535 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Shift + P
2024-01-02 15:20:02,882 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2024-01-02 15:20:03,090 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:I
2024-01-02 15:20:03,268 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:N
2024-01-02 15:20:03,341 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:T
2024-01-02 15:20:03,904 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:20:04,078 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2024-01-02 15:20:15,441 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:20:15,582 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + C
2024-01-02 15:20:17,719 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Space
2024-01-02 15:20:18,051 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:20:18,350 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + V
2024-01-02 15:20:18,917 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:20:19,106 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2024-01-02 15:20:27,130 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 15:20:27,130 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 15:20:28,278 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:20:28,288 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:20:39,176 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:20:42,117 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:20:42,118 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:20:47,947 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 15:20:47,947 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 15:20:49,081 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:20:49,081 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:20:50,234 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 15:20:50,239 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 15:33:40,714 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:33:43,274 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:33:43,276 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 15:33:48,324 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:I
2024-01-02 15:33:58,237 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:O
2024-01-02 15:34:00,240 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":281958,"end_time":281996,"status":2,"inPoints":[[[416,891],[944,891],[944,1291],[416,1291]],[[2006,817],[2984,817],[2984,1370],[2006,1370]]]}
2024-01-02 15:34:04,359 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:34:16,506 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":281958,"end_time":281996,"status":2,"inPoints":[[[416,891],[944,891],[944,1291],[416,1291]],[[2006,817],[2984,817],[2984,1370],[2006,1370]]]}
2024-01-02 15:34:30,633 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:34:45,868 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":281958,"end_time":281996,"status":2,"inPoints":[]}
2024-01-02 15:35:00,533 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:35:23,309 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:35:23,605 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2024-01-02 15:35:25,400 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:35:25,858 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:35:26,586 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 15:35:26,746 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + S
2024-01-02 15:35:30,750 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 15:35:30,750 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 17:05:41,294 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-01-02 17:05:50,824 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 17:05:50,826 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 17:07:11,228 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 17:07:11,233 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 17:07:12,380 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 17:07:12,385 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-01-02 17:07:22,739 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-01-02 17:07:22,739 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment