Skip to content

Commit

Permalink
Merge pull request #90 from opensky-to/landing-analyis2.0
Browse files Browse the repository at this point in the history
Landing analyis2.0
  • Loading branch information
sushiat authored Dec 13, 2023
2 parents 367ce75 + 361a8c2 commit ea8817e
Show file tree
Hide file tree
Showing 40 changed files with 652 additions and 258 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
<Reference Include="Microsoft.Maps.MapControl.WPF, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Maps.MapControl.WPF.1.0.0.3\lib\net40-Client\Microsoft.Maps.MapControl.WPF.dll</HintPath>
</Reference>
<Reference Include="OpenSky.FlightLogXML, Version=0.1.6.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OpenSky.FlightLogXML.0.1.7\lib\net48\OpenSky.FlightLogXML.dll</HintPath>
<Reference Include="OpenSky.FlightLogXML, Version=0.1.8.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OpenSky.FlightLogXML.0.1.8\lib\net48\OpenSky.FlightLogXML.dll</HintPath>
</Reference>
<Reference Include="ParallelExtensionsExtras, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\MSFT.ParallelExtensionsExtras.1.2.0\lib\ParallelExtensionsExtras.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion OpenSky.Agent.SimConnectMSFS/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<package id="Microsoft.CodeAnalysis.NetAnalyzers" version="8.0.0" targetFramework="net48" developmentDependency="true" />
<package id="Microsoft.Maps.MapControl.WPF" version="1.0.0.3" targetFramework="net48" />
<package id="MSFT.ParallelExtensionsExtras" version="1.2.0" targetFramework="net48" />
<package id="OpenSky.FlightLogXML" version="0.1.7" targetFramework="net48" />
<package id="OpenSky.FlightLogXML" version="0.1.8" targetFramework="net48" />
<package id="Serilog" version="3.1.1" targetFramework="net48" />
<package id="System.Buffers" version="4.5.1" targetFramework="net48" />
<package id="System.Diagnostics.DiagnosticSource" version="8.0.0" targetFramework="net48" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace OpenSky.Agent.Controls.Models
namespace OpenSky.Agent.Simulator.Controls.Models
{
using System;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace OpenSky.Agent.Controls.Models
namespace OpenSky.Agent.Simulator.Controls.Models
{
/// -------------------------------------------------------------------------------------------------
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace OpenSky.Agent.Controls.Models
namespace OpenSky.Agent.Simulator.Controls.Models
{
/// -------------------------------------------------------------------------------------------------
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
====================================================================================================================
-->

<UserControl x:Class="OpenSky.Agent.Controls.OpenSkyMessageBox"
<UserControl x:Class="OpenSky.Agent.Simulator.Controls.OpenSkyMessageBox"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:sf="http://schemas.syncfusion.com/wpf"
xmlns:tools="clr-namespace:OpenSky.Agent.Tools"
xmlns:tools="clr-namespace:OpenSky.Agent.Simulator.Tools"
mc:Ignorable="d" Foreground="White" tools:VisibilityAnimation.AnimationType="Fade" Visibility="Hidden"
d:DesignHeight="450" d:DesignWidth="800" Loaded="OpenSkyMessageBoxOnLoaded">
<Grid>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace OpenSky.Agent.Controls
namespace OpenSky.Agent.Simulator.Controls
{
using System;
using System.Media;
Expand All @@ -13,7 +13,7 @@ namespace OpenSky.Agent.Controls
using System.Windows.Input;
using System.Windows.Media;

using OpenSky.Agent.Controls.Models;
using OpenSky.Agent.Simulator.Controls.Models;
using OpenSky.Agent.Simulator.Tools;

/// -------------------------------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
====================================================================================================================
-->

<UserControl x:Class="OpenSky.Agent.Controls.OpenSkyNotification"
<UserControl x:Class="OpenSky.Agent.Simulator.Controls.OpenSkyNotification"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:sf="http://schemas.syncfusion.com/wpf"
xmlns:tools="clr-namespace:OpenSky.Agent.Tools"
xmlns:tools="clr-namespace:OpenSky.Agent.Simulator.Tools"
mc:Ignorable="d"
d:DesignWidth="300" Foreground="White" tools:VisibilityAnimation.AnimationType="SlideFromRight" Visibility="Hidden" Loaded="OpenSkyNotificationOnLoaded">
<Border Name="BackgroundBorder" Background="#023b31" CornerRadius="3" Width="300" Margin="0,0,5,5">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace OpenSky.Agent.Controls
namespace OpenSky.Agent.Simulator.Controls
{
using System;
using System.Threading;
using System.Windows;
using System.Windows.Media;

using OpenSky.Agent.Controls.Models;
using OpenSky.Agent.Simulator.Controls.Models;
using OpenSky.Agent.Simulator.Tools;

/// -------------------------------------------------------------------------------------------------
Expand Down
26 changes: 24 additions & 2 deletions OpenSky.Agent.Simulator/OpenSky.Agent.Simulator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,17 @@
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="OpenSky.FlightLogXML, Version=0.1.6.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OpenSky.FlightLogXML.0.1.7\lib\net48\OpenSky.FlightLogXML.dll</HintPath>
<Reference Include="OpenSky.FlightLogXML, Version=0.1.8.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OpenSky.FlightLogXML.0.1.8\lib\net48\OpenSky.FlightLogXML.dll</HintPath>
</Reference>
<Reference Include="ParallelExtensionsExtras, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\MSFT.ParallelExtensionsExtras.1.2.0\lib\ParallelExtensionsExtras.dll</HintPath>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="Syncfusion.SfProgressBar.WPF, Version=23.2460.7.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
<HintPath>..\packages\Syncfusion.SfProgressBar.WPF.23.2.7\lib\net46\Syncfusion.SfProgressBar.WPF.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Device" />
Expand All @@ -79,6 +82,15 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Controls\Models\ErrorDetails.cs" />
<Compile Include="Controls\Models\ExtendedMessageBoxImage.cs" />
<Compile Include="Controls\Models\ExtendedMessageBoxResult.cs" />
<Compile Include="Controls\OpenSkyMessageBox.xaml.cs">
<DependentUpon>OpenSkyMessageBox.xaml</DependentUpon>
</Compile>
<Compile Include="Controls\OpenSkyNotification.xaml.cs">
<DependentUpon>OpenSkyNotification.xaml</DependentUpon>
</Compile>
<Compile Include="Enums\FuelTank.cs" />
<Compile Include="Enums\Pushback.cs" />
<Compile Include="Enums\Requests.cs" />
Expand Down Expand Up @@ -137,6 +149,7 @@
<Compile Include="Tools\StringEnumExtension.cs" />
<Compile Include="Tools\StringValueAttribute.cs" />
<Compile Include="Tools\UpdateGUIDelegate.cs" />
<Compile Include="Tools\VisibilityAnimation.cs" />
</ItemGroup>
<ItemGroup>
<None Include="OpenAPIs\swagger.json">
Expand All @@ -149,6 +162,14 @@
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Page Include="Controls\OpenSkyMessageBox.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Controls\OpenSkyNotification.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="OpenSkyColors.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
Expand All @@ -161,5 +182,6 @@
<Analyzer Include="..\packages\Microsoft.CodeAnalysis.NetAnalyzers.8.0.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.NetAnalyzers.dll" />
<Analyzer Include="..\packages\Microsoft.CodeAnalysis.NetAnalyzers.8.0.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.NetAnalyzers.dll" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
2 changes: 2 additions & 0 deletions OpenSky.Agent.Simulator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
// --------------------------------------------------------------------------------------------------------------------

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("OpenSky.Agent.Simulator")]
Expand All @@ -19,3 +20,4 @@
[assembly: Guid("30c467e8-2eee-41e5-be01-0142a61ba171")]
[assembly: AssemblyVersion("0.5.9")]
[assembly: AssemblyFileVersion("0.5.9")]
[assembly: InternalsVisibleTo("OpenSky.Agent")]
Loading

0 comments on commit ea8817e

Please sign in to comment.