Skip to content

Commit be6646c

Browse files
First commit
1 parent 4f8ba28 commit be6646c

81 files changed

Lines changed: 40764 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 433 additions & 0 deletions
Large diffs are not rendered by default.

AutoPilotNet/App.config

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
5+
</startup>
6+
<runtime>
7+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
8+
<dependentAssembly>
9+
<assemblyIdentity name="ZedGraph" publicKeyToken="02a83cbd123fcd60" culture="neutral"/>
10+
<bindingRedirect oldVersion="0.0.0.0-5.1.7.430" newVersion="5.1.7.430"/>
11+
</dependentAssembly>
12+
</assemblyBinding>
13+
</runtime>
14+
</configuration>
Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{F3C59204-5A93-442E-86DF-0C0BA3C86EB2}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>AutoPilotNet</RootNamespace>
10+
<AssemblyName>AutoPilotNet</AssemblyName>
11+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
<NuGetPackageImportStamp>
16+
</NuGetPackageImportStamp>
17+
<PublishUrl>publish\</PublishUrl>
18+
<Install>true</Install>
19+
<InstallFrom>Disk</InstallFrom>
20+
<UpdateEnabled>false</UpdateEnabled>
21+
<UpdateMode>Foreground</UpdateMode>
22+
<UpdateInterval>7</UpdateInterval>
23+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
24+
<UpdatePeriodically>false</UpdatePeriodically>
25+
<UpdateRequired>false</UpdateRequired>
26+
<MapFileExtensions>true</MapFileExtensions>
27+
<ApplicationRevision>0</ApplicationRevision>
28+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
29+
<IsWebBootstrapper>false</IsWebBootstrapper>
30+
<UseApplicationTrust>false</UseApplicationTrust>
31+
<BootstrapperEnabled>true</BootstrapperEnabled>
32+
<TargetFrameworkProfile />
33+
</PropertyGroup>
34+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
35+
<PlatformTarget>AnyCPU</PlatformTarget>
36+
<DebugSymbols>true</DebugSymbols>
37+
<DebugType>full</DebugType>
38+
<Optimize>false</Optimize>
39+
<OutputPath>bin\Debug\</OutputPath>
40+
<DefineConstants>DEBUG;TRACE</DefineConstants>
41+
<ErrorReport>prompt</ErrorReport>
42+
<WarningLevel>4</WarningLevel>
43+
</PropertyGroup>
44+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
45+
<PlatformTarget>AnyCPU</PlatformTarget>
46+
<DebugType>pdbonly</DebugType>
47+
<Optimize>true</Optimize>
48+
<OutputPath>bin\Release\</OutputPath>
49+
<DefineConstants>TRACE</DefineConstants>
50+
<ErrorReport>prompt</ErrorReport>
51+
<WarningLevel>4</WarningLevel>
52+
</PropertyGroup>
53+
<ItemGroup>
54+
<Compile Include="KeyBoardHook.cs" />
55+
<Compile Include="Keys.cs" />
56+
<Compile Include="RECT.cs" />
57+
<Compile Include="SuperImage.cs" />
58+
<Compile Include="TypeSendMouse.cs" />
59+
<Compile Include="VisualForm.cs">
60+
<SubType>Form</SubType>
61+
</Compile>
62+
<Compile Include="VisualForm.Designer.cs">
63+
<DependentUpon>VisualForm.cs</DependentUpon>
64+
</Compile>
65+
<Compile Include="Program.cs" />
66+
<Compile Include="Properties\AssemblyInfo.cs" />
67+
</ItemGroup>
68+
<ItemGroup>
69+
<None Include="App.config" />
70+
<None Include="packages.config" />
71+
</ItemGroup>
72+
<ItemGroup>
73+
<None Include="ImageFinder\NotAligned.bmp">
74+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
75+
</None>
76+
<None Include="ImageFinder\Target.bmp">
77+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
78+
</None>
79+
<None Include="ImageFinder\Aligned.bmp">
80+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
81+
</None>
82+
<None Include="ImageFinder\IconAlign.bmp">
83+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
84+
</None>
85+
<None Include="ImageFinder\NotTarget.bmp">
86+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
87+
</None>
88+
<None Include="ImageFinder\NotTargetClean.bmp">
89+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
90+
</None>
91+
<None Include="ImageFinder\Gravidar.bmp">
92+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
93+
</None>
94+
<None Include="ImageFinder\Sun.bmp">
95+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
96+
</None>
97+
<None Include="ImageFinder\Disengage.bmp">
98+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
99+
</None>
100+
<None Include="ImageFinder\Impact.bmp">
101+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
102+
</None>
103+
<None Include="ImageFinder\Jumping.bmp">
104+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
105+
</None>
106+
<None Include="ImageFinder\System.bmp">
107+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
108+
</None>
109+
<None Include="ImageFinder\MassLocked.bmp">
110+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
111+
</None>
112+
<None Include="ImageFinder\MassLockedSmall.bmp">
113+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
114+
</None>
115+
<None Include="ImageFinder\AlignedCross.bmp">
116+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
117+
</None>
118+
<None Include="ImageFinder\ML.bmp">
119+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
120+
</None>
121+
<None Include="ImageFinder\NotTarget2.bmp">
122+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
123+
</None>
124+
<None Include="ImageFinder\Info.bmp">
125+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
126+
</None>
127+
<Content Include="ImageFinder\Jumping2.bmp">
128+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
129+
</Content>
130+
<Content Include="ImageFinder\system2.bmp">
131+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
132+
</Content>
133+
<Content Include="License-LGPL.txt" />
134+
</ItemGroup>
135+
<ItemGroup>
136+
<EmbeddedResource Include="VisualForm.resx">
137+
<DependentUpon>VisualForm.cs</DependentUpon>
138+
</EmbeddedResource>
139+
</ItemGroup>
140+
<ItemGroup>
141+
<BootstrapperPackage Include=".NETFramework,Version=v4.6.1">
142+
<Visible>False</Visible>
143+
<ProductName>Microsoft .NET Framework 4.6.1 %28x86 e x64%29</ProductName>
144+
<Install>true</Install>
145+
</BootstrapperPackage>
146+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
147+
<Visible>False</Visible>
148+
<ProductName>.NET Framework 3.5 SP1</ProductName>
149+
<Install>false</Install>
150+
</BootstrapperPackage>
151+
</ItemGroup>
152+
<ItemGroup>
153+
<Reference Include="Emgu.CV.UI, Version=3.4.1.2976, Culture=neutral, processorArchitecture=MSIL">
154+
<HintPath>packages\EMGU.CV.3.4.1.2976\lib\net35\Emgu.CV.UI.dll</HintPath>
155+
<Private>True</Private>
156+
</Reference>
157+
<Reference Include="Emgu.CV.World, Version=3.4.1.2976, Culture=neutral, processorArchitecture=MSIL">
158+
<HintPath>packages\EMGU.CV.3.4.1.2976\lib\net35\Emgu.CV.World.dll</HintPath>
159+
<Private>True</Private>
160+
</Reference>
161+
<Reference Include="System" />
162+
<Reference Include="System.Data" />
163+
<Reference Include="System.Drawing" />
164+
<Reference Include="System.Drawing.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
165+
<HintPath>packages\System.Drawing.Primitives.4.3.0\lib\net45\System.Drawing.Primitives.dll</HintPath>
166+
<Private>True</Private>
167+
</Reference>
168+
<Reference Include="System.Windows" />
169+
<Reference Include="System.Windows.Forms" />
170+
<Reference Include="System.Xml" />
171+
<Reference Include="WindowsInput, Version=1.0.4.0, Culture=neutral, PublicKeyToken=9b287f7dc5073cad, processorArchitecture=MSIL">
172+
<SpecificVersion>False</SpecificVersion>
173+
<HintPath>bin\Debug\WindowsInput.dll</HintPath>
174+
</Reference>
175+
</ItemGroup>
176+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
177+
<Import Project="..\packages\EMGU.CV.3.4.1.2976\build\EMGU.CV.targets" Condition="Exists('..\packages\EMGU.CV.3.4.1.2976\build\EMGU.CV.targets')" />
178+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
179+
<PropertyGroup>
180+
<ErrorText>Questo progetto fa riferimento a uno o più pacchetti NuGet che non sono presenti in questo computer. Usare lo strumento di ripristino dei pacchetti NuGet per scaricarli. Per altre informazioni, vedere http://go.microsoft.com/fwlink/?LinkID=322105. Il file mancante è {0}.</ErrorText>
181+
</PropertyGroup>
182+
</Target>
183+
<Import Project="packages\EMGU.CV.3.4.1.2976\build\EMGU.CV.targets" Condition="Exists('packages\EMGU.CV.3.4.1.2976\build\EMGU.CV.targets')" />
184+
</Project>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.7.34221.43
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EliteDangerousHelper", "EliteDangerousHelper.csproj", "{F3C59204-5A93-442E-86DF-0C0BA3C86EB2}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{F3C59204-5A93-442E-86DF-0C0BA3C86EB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{F3C59204-5A93-442E-86DF-0C0BA3C86EB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{F3C59204-5A93-442E-86DF-0C0BA3C86EB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{F3C59204-5A93-442E-86DF-0C0BA3C86EB2}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {B2F8C431-0D51-49B3-90F6-3757A0FFEF3C}
24+
EndGlobalSection
25+
EndGlobal
5.93 MB
Binary file not shown.

AutoPilotNet/Image/NotAligned.bmp

5.93 MB
Binary file not shown.

AutoPilotNet/Image/NotAligned1.bmp

5.93 MB
Binary file not shown.
5.93 MB
Binary file not shown.
5.93 MB
Binary file not shown.
5.93 MB
Binary file not shown.

0 commit comments

Comments
 (0)