From 634edf78e2f04c5b06937e4166128b5a28c17669 Mon Sep 17 00:00:00 2001 From: Bandit Date: Thu, 21 May 2020 21:38:31 -0700 Subject: [PATCH] Initial Upload --- SWGSourceLauncher.sln | 31 ++++ SWGSourceLauncher/App.config | 10 ++ SWGSourceLauncher/App.xaml | 9 + SWGSourceLauncher/App.xaml.cs | 17 ++ SWGSourceLauncher/Bandit42/SWGSourceLauncher | 1 + SWGSourceLauncher/ClassDiagram1.cd | 2 + SWGSourceLauncher/Launcher.cs | 22 +++ SWGSourceLauncher/MainWindow.xaml | 30 ++++ SWGSourceLauncher/MainWindow.xaml.cs | 38 ++++ SWGSourceLauncher/Properties/AssemblyInfo.cs | 55 ++++++ .../Properties/Resources.Designer.cs | 63 +++++++ SWGSourceLauncher/Properties/Resources.resx | 117 ++++++++++++ .../Properties/Settings.Designer.cs | 26 +++ .../Properties/Settings.settings | 7 + SWGSourceLauncher/SWGSourceLauncher | 1 + SWGSourceLauncher/SWGSourceLauncher.csproj | 166 ++++++++++++++++++ SWGSourceLauncher/packages.config | 11 ++ 17 files changed, 606 insertions(+) create mode 100644 SWGSourceLauncher.sln create mode 100644 SWGSourceLauncher/App.config create mode 100644 SWGSourceLauncher/App.xaml create mode 100644 SWGSourceLauncher/App.xaml.cs create mode 160000 SWGSourceLauncher/Bandit42/SWGSourceLauncher create mode 100644 SWGSourceLauncher/ClassDiagram1.cd create mode 100644 SWGSourceLauncher/Launcher.cs create mode 100644 SWGSourceLauncher/MainWindow.xaml create mode 100644 SWGSourceLauncher/MainWindow.xaml.cs create mode 100644 SWGSourceLauncher/Properties/AssemblyInfo.cs create mode 100644 SWGSourceLauncher/Properties/Resources.Designer.cs create mode 100644 SWGSourceLauncher/Properties/Resources.resx create mode 100644 SWGSourceLauncher/Properties/Settings.Designer.cs create mode 100644 SWGSourceLauncher/Properties/Settings.settings create mode 160000 SWGSourceLauncher/SWGSourceLauncher create mode 100644 SWGSourceLauncher/SWGSourceLauncher.csproj create mode 100644 SWGSourceLauncher/packages.config diff --git a/SWGSourceLauncher.sln b/SWGSourceLauncher.sln new file mode 100644 index 0000000..314842f --- /dev/null +++ b/SWGSourceLauncher.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30114.105 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SWGSourceLauncher", "SWGSourceLauncher\SWGSourceLauncher.csproj", "{7F6FF448-357A-4E16-9055-7CE4DC18B7DA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Debug|x86.ActiveCfg = Debug|x86 + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Debug|x86.Build.0 = Debug|x86 + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Release|Any CPU.Build.0 = Release|Any CPU + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Release|x86.ActiveCfg = Release|x86 + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {02EC5655-2A8E-4861-BAE2-A2E3DA0FE7F6} + EndGlobalSection +EndGlobal diff --git a/SWGSourceLauncher/App.config b/SWGSourceLauncher/App.config new file mode 100644 index 0000000..69f4c9b --- /dev/null +++ b/SWGSourceLauncher/App.config @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/SWGSourceLauncher/App.xaml b/SWGSourceLauncher/App.xaml new file mode 100644 index 0000000..8b63391 --- /dev/null +++ b/SWGSourceLauncher/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/SWGSourceLauncher/App.xaml.cs b/SWGSourceLauncher/App.xaml.cs new file mode 100644 index 0000000..4828ad1 --- /dev/null +++ b/SWGSourceLauncher/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace SWGSourceLauncher +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/SWGSourceLauncher/Bandit42/SWGSourceLauncher b/SWGSourceLauncher/Bandit42/SWGSourceLauncher new file mode 160000 index 0000000..5253a29 --- /dev/null +++ b/SWGSourceLauncher/Bandit42/SWGSourceLauncher @@ -0,0 +1 @@ +Subproject commit 5253a29092bb28f6c1b7a02d157e174ecf444c67 diff --git a/SWGSourceLauncher/ClassDiagram1.cd b/SWGSourceLauncher/ClassDiagram1.cd new file mode 100644 index 0000000..7b89419 --- /dev/null +++ b/SWGSourceLauncher/ClassDiagram1.cd @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/SWGSourceLauncher/Launcher.cs b/SWGSourceLauncher/Launcher.cs new file mode 100644 index 0000000..031aa1d --- /dev/null +++ b/SWGSourceLauncher/Launcher.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Diagnostics; + +namespace SWGSourceLauncher +{ + class Launcher + { + public static void PlayGame() + { + Process.Start("SwgClient_r.exe"); + } + + public static void LaunchWebsite(string url) + { + Process.Start(url); + } + } +} diff --git a/SWGSourceLauncher/MainWindow.xaml b/SWGSourceLauncher/MainWindow.xaml new file mode 100644 index 0000000..0a5bdfc --- /dev/null +++ b/SWGSourceLauncher/MainWindow.xaml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + +