add new net4 launcher.
This commit is contained in:
parent
c35f3c01be
commit
a8da81b8b5
|
|
@ -0,0 +1,45 @@
|
|||
#region Usings
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
#endregion
|
||||
|
||||
namespace Novetus.Launch
|
||||
{
|
||||
#region Local Funcs
|
||||
public class LocalFuncs
|
||||
{
|
||||
public static void LaunchApplicationExt(string filePath, string appName, string args = "")
|
||||
{
|
||||
Process client = new Process();
|
||||
client.StartInfo.FileName = filePath + @"\\" + appName;
|
||||
client.StartInfo.Arguments = args;
|
||||
client.Start();
|
||||
}
|
||||
|
||||
public static void LaunchApplication(string appName, string args = "")
|
||||
{
|
||||
LaunchApplicationExt(LocalPaths.BinPath, appName, args);
|
||||
}
|
||||
|
||||
public static string GetVersion(string infopath)
|
||||
{
|
||||
//READ
|
||||
string version;
|
||||
INIFile ini = new INIFile(infopath);
|
||||
string section = "ProgramInfo";
|
||||
bool isSnapshot = Convert.ToBoolean(ini.IniReadValue(section, "IsSnapshot", "False"));
|
||||
version = (isSnapshot ? ini.IniReadValue(section, "SnapshotTemplate", "%version% Snapshot (%build%.%revision%.%snapshot-revision%)") : ini.IniReadValue(section, "Branch", "0.0"));
|
||||
|
||||
var versionInfo = FileVersionInfo.GetVersionInfo(LocalPaths.BinPath + "\\" + LocalPaths.LauncherName);
|
||||
string snapshotrevision = ini.IniReadValue(section, "SnapshotRevision", "1");
|
||||
version = version.Replace("%version%", ini.IniReadValue(section, "Branch", "0.0"))
|
||||
.Replace("%build%", versionInfo.ProductBuildPart.ToString())
|
||||
.Replace("%revision%", versionInfo.FilePrivatePart.ToString())
|
||||
.Replace("%snapshot-revision%", snapshotrevision);
|
||||
return version;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
#region Usings
|
||||
using System.IO;
|
||||
using System.Reflection;
|
||||
#endregion
|
||||
|
||||
namespace Novetus.Launch
|
||||
{
|
||||
#region Local Paths
|
||||
|
||||
public class LocalPaths
|
||||
{
|
||||
#region Base Paths
|
||||
public static readonly string RootPathLauncher = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
|
||||
public static readonly string BasePathLauncher = RootPathLauncher.Replace(@"\", @"\\");
|
||||
public static readonly string BinPath = BasePathLauncher + @"\\bin";
|
||||
public static readonly string ConfigPath = BasePathLauncher + @"\\config";
|
||||
#endregion
|
||||
|
||||
#region File Names
|
||||
public static readonly string LauncherName = "Novetus.exe";
|
||||
public static readonly string CMDName = "NovetusCMD.exe";
|
||||
public static readonly string URIName = "NovetusURI.exe";
|
||||
public static readonly string DependencyLauncherName = "Novetus_dependency_installer.bat";
|
||||
public static readonly string LauncherInfoFile = "info.ini";
|
||||
#endregion
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
|
@ -0,0 +1,101 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{D7B467EE-A4B9-42FB-AA83-F487DA0F5CB1}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<RootNamespace>Novetus.Launch</RootNamespace>
|
||||
<AssemblyName>NovetusLauncher</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>NovetusIcon.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\NovetusCore\Classes\INIFile.cs">
|
||||
<Link>INIFile.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="LocalPaths.cs" />
|
||||
<Compile Include="LocalFuncs.cs" />
|
||||
<Compile Include="NovetusLaunchForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="NovetusLaunchForm.Designer.cs">
|
||||
<DependentUpon>NovetusLaunchForm.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="NovetusLaunch.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<EmbeddedResource Include="NovetusLaunchForm.resx">
|
||||
<DependentUpon>NovetusLaunchForm.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<Compile Include="Properties\Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
<DesignTime>True</DesignTime>
|
||||
</Compile>
|
||||
<None Include="Properties\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||
</None>
|
||||
<Compile Include="Properties\Settings.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
<None Include="Resources\Montserrat-SemiBold.ttf" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="NovetusIcon.ico" />
|
||||
<None Include="Resources\NOVETUS_new_final_smol.png" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<PropertyGroup>
|
||||
<PostBuildEvent>SET path=$(SolutionDir)build
|
||||
if not exist "%25path%25" mkdir "%25path%25"
|
||||
copy $(ProjectDir)$(OutDir) "%25path%25"\*
|
||||
del "%25path%25"\$(TargetName).vshost.exe
|
||||
del "%25path%25"\$(TargetName).vshost.exe.config
|
||||
del "%25path%25"\$(TargetName).vshost.exe.manifest
|
||||
del "%25path%25"\$(TargetName).xml</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 132 KiB |
|
|
@ -0,0 +1,21 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Novetus.Launch
|
||||
{
|
||||
static class NovetusLaunch
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new NovetusLaunchForm());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,216 @@
|
|||
|
||||
namespace Novetus.Launch
|
||||
{
|
||||
partial class NovetusLaunchForm
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NovetusLaunchForm));
|
||||
this.LaunchNovetusButton = new System.Windows.Forms.Button();
|
||||
this.LaunchSDKButton = new System.Windows.Forms.Button();
|
||||
this.CMDButton = new System.Windows.Forms.Button();
|
||||
this.CMDHelpButton = new System.Windows.Forms.Button();
|
||||
this.DependencyInstallerButton = new System.Windows.Forms.Button();
|
||||
this.CMDGroup = new System.Windows.Forms.GroupBox();
|
||||
this.ArgLabel = new System.Windows.Forms.Label();
|
||||
this.ArgBox = new System.Windows.Forms.TextBox();
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.URIButton = new System.Windows.Forms.Button();
|
||||
this.VersionLabel = new System.Windows.Forms.Label();
|
||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||
this.CMDGroup.SuspendLayout();
|
||||
this.groupBox1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// LaunchNovetusButton
|
||||
//
|
||||
this.LaunchNovetusButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.LaunchNovetusButton.Location = new System.Drawing.Point(12, 132);
|
||||
this.LaunchNovetusButton.Name = "LaunchNovetusButton";
|
||||
this.LaunchNovetusButton.Size = new System.Drawing.Size(485, 52);
|
||||
this.LaunchNovetusButton.TabIndex = 0;
|
||||
this.LaunchNovetusButton.Text = "PLAY NOVETUS";
|
||||
this.LaunchNovetusButton.UseVisualStyleBackColor = true;
|
||||
this.LaunchNovetusButton.Click += new System.EventHandler(this.LaunchNovetusButton_Click);
|
||||
//
|
||||
// LaunchSDKButton
|
||||
//
|
||||
this.LaunchSDKButton.Location = new System.Drawing.Point(18, 19);
|
||||
this.LaunchSDKButton.Name = "LaunchSDKButton";
|
||||
this.LaunchSDKButton.Size = new System.Drawing.Size(93, 23);
|
||||
this.LaunchSDKButton.TabIndex = 2;
|
||||
this.LaunchSDKButton.Text = "LAUNCH SDK";
|
||||
this.LaunchSDKButton.UseVisualStyleBackColor = true;
|
||||
this.LaunchSDKButton.Click += new System.EventHandler(this.LaunchSDKButton_Click);
|
||||
//
|
||||
// CMDButton
|
||||
//
|
||||
this.CMDButton.Location = new System.Drawing.Point(166, 58);
|
||||
this.CMDButton.Name = "CMDButton";
|
||||
this.CMDButton.Size = new System.Drawing.Size(60, 23);
|
||||
this.CMDButton.TabIndex = 3;
|
||||
this.CMDButton.Text = "LAUNCH";
|
||||
this.CMDButton.UseVisualStyleBackColor = true;
|
||||
this.CMDButton.Click += new System.EventHandler(this.CMDButton_Click);
|
||||
//
|
||||
// CMDHelpButton
|
||||
//
|
||||
this.CMDHelpButton.Location = new System.Drawing.Point(32, 58);
|
||||
this.CMDHelpButton.Name = "CMDHelpButton";
|
||||
this.CMDHelpButton.Size = new System.Drawing.Size(128, 23);
|
||||
this.CMDHelpButton.TabIndex = 4;
|
||||
this.CMDHelpButton.Text = "ARGUMENT HELP";
|
||||
this.CMDHelpButton.UseVisualStyleBackColor = true;
|
||||
this.CMDHelpButton.Click += new System.EventHandler(this.CMDHelpButton_Click);
|
||||
//
|
||||
// DependencyInstallerButton
|
||||
//
|
||||
this.DependencyInstallerButton.Location = new System.Drawing.Point(30, 46);
|
||||
this.DependencyInstallerButton.Name = "DependencyInstallerButton";
|
||||
this.DependencyInstallerButton.Size = new System.Drawing.Size(155, 23);
|
||||
this.DependencyInstallerButton.TabIndex = 5;
|
||||
this.DependencyInstallerButton.Text = "DEPENDENCY INSTALLER";
|
||||
this.DependencyInstallerButton.UseVisualStyleBackColor = true;
|
||||
this.DependencyInstallerButton.Click += new System.EventHandler(this.DependencyInstallerButton_Click);
|
||||
//
|
||||
// CMDGroup
|
||||
//
|
||||
this.CMDGroup.Controls.Add(this.ArgLabel);
|
||||
this.CMDGroup.Controls.Add(this.ArgBox);
|
||||
this.CMDGroup.Controls.Add(this.CMDHelpButton);
|
||||
this.CMDGroup.Controls.Add(this.CMDButton);
|
||||
this.CMDGroup.Location = new System.Drawing.Point(12, 190);
|
||||
this.CMDGroup.Name = "CMDGroup";
|
||||
this.CMDGroup.Size = new System.Drawing.Size(263, 92);
|
||||
this.CMDGroup.TabIndex = 6;
|
||||
this.CMDGroup.TabStop = false;
|
||||
this.CMDGroup.Text = "Novetus CMD";
|
||||
//
|
||||
// ArgLabel
|
||||
//
|
||||
this.ArgLabel.AutoSize = true;
|
||||
this.ArgLabel.Location = new System.Drawing.Point(6, 16);
|
||||
this.ArgLabel.Name = "ArgLabel";
|
||||
this.ArgLabel.Size = new System.Drawing.Size(60, 13);
|
||||
this.ArgLabel.TabIndex = 6;
|
||||
this.ArgLabel.Text = "Arguments:";
|
||||
//
|
||||
// ArgBox
|
||||
//
|
||||
this.ArgBox.Location = new System.Drawing.Point(6, 32);
|
||||
this.ArgBox.Name = "ArgBox";
|
||||
this.ArgBox.Size = new System.Drawing.Size(251, 20);
|
||||
this.ArgBox.TabIndex = 5;
|
||||
//
|
||||
// groupBox1
|
||||
//
|
||||
this.groupBox1.Controls.Add(this.URIButton);
|
||||
this.groupBox1.Controls.Add(this.LaunchSDKButton);
|
||||
this.groupBox1.Controls.Add(this.DependencyInstallerButton);
|
||||
this.groupBox1.Location = new System.Drawing.Point(281, 199);
|
||||
this.groupBox1.Name = "groupBox1";
|
||||
this.groupBox1.Size = new System.Drawing.Size(216, 80);
|
||||
this.groupBox1.TabIndex = 7;
|
||||
this.groupBox1.TabStop = false;
|
||||
this.groupBox1.Text = "Other Options";
|
||||
//
|
||||
// URIButton
|
||||
//
|
||||
this.URIButton.Location = new System.Drawing.Point(117, 19);
|
||||
this.URIButton.Name = "URIButton";
|
||||
this.URIButton.Size = new System.Drawing.Size(83, 23);
|
||||
this.URIButton.TabIndex = 6;
|
||||
this.URIButton.Text = "INSTALL URI";
|
||||
this.URIButton.UseVisualStyleBackColor = true;
|
||||
this.URIButton.Click += new System.EventHandler(this.URIButton_Click);
|
||||
//
|
||||
// VersionLabel
|
||||
//
|
||||
this.VersionLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.VersionLabel.ForeColor = System.Drawing.Color.IndianRed;
|
||||
this.VersionLabel.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
|
||||
this.VersionLabel.Location = new System.Drawing.Point(20, 95);
|
||||
this.VersionLabel.Name = "VersionLabel";
|
||||
this.VersionLabel.Size = new System.Drawing.Size(470, 34);
|
||||
this.VersionLabel.TabIndex = 8;
|
||||
this.VersionLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.BackgroundImage = global::Novetus.Launch.Properties.Resources.NOVETUS_new_final_smol;
|
||||
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||
this.pictureBox1.InitialImage = null;
|
||||
this.pictureBox1.Location = new System.Drawing.Point(21, 12);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(469, 91);
|
||||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
||||
this.pictureBox1.TabIndex = 1;
|
||||
this.pictureBox1.TabStop = false;
|
||||
//
|
||||
// NovetusLaunchForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.SystemColors.ControlLightLight;
|
||||
this.ClientSize = new System.Drawing.Size(508, 294);
|
||||
this.Controls.Add(this.VersionLabel);
|
||||
this.Controls.Add(this.groupBox1);
|
||||
this.Controls.Add(this.CMDGroup);
|
||||
this.Controls.Add(this.pictureBox1);
|
||||
this.Controls.Add(this.LaunchNovetusButton);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.MaximizeBox = false;
|
||||
this.Name = "NovetusLaunchForm";
|
||||
this.Text = "Novetus";
|
||||
this.Load += new System.EventHandler(this.NovetusLaunchForm_Load);
|
||||
this.CMDGroup.ResumeLayout(false);
|
||||
this.CMDGroup.PerformLayout();
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Button LaunchNovetusButton;
|
||||
private System.Windows.Forms.PictureBox pictureBox1;
|
||||
private System.Windows.Forms.Button LaunchSDKButton;
|
||||
private System.Windows.Forms.Button CMDButton;
|
||||
private System.Windows.Forms.Button CMDHelpButton;
|
||||
private System.Windows.Forms.Button DependencyInstallerButton;
|
||||
private System.Windows.Forms.GroupBox CMDGroup;
|
||||
private System.Windows.Forms.Label ArgLabel;
|
||||
private System.Windows.Forms.TextBox ArgBox;
|
||||
private System.Windows.Forms.GroupBox groupBox1;
|
||||
private System.Windows.Forms.Button URIButton;
|
||||
private System.Windows.Forms.Label VersionLabel;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,72 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using System.Drawing.Text;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Novetus.Launch
|
||||
{
|
||||
public partial class NovetusLaunchForm : Form
|
||||
{
|
||||
public NovetusLaunchForm()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void NovetusLaunchForm_Load(object sender, EventArgs e)
|
||||
{
|
||||
//use novetus font for label!!
|
||||
//https://stackoverflow.com/questions/1297264/using-custom-fonts-on-a-label-on-winforms
|
||||
|
||||
PrivateFontCollection pfc = new PrivateFontCollection();
|
||||
int fontLength = Properties.Resources.Montserrat_SemiBold.Length;
|
||||
byte[] fontdata = Properties.Resources.Montserrat_SemiBold;
|
||||
IntPtr data = Marshal.AllocCoTaskMem(fontLength);
|
||||
Marshal.Copy(fontdata, 0, data, fontLength);
|
||||
pfc.AddMemoryFont(data, fontLength);
|
||||
|
||||
VersionLabel.Font = new Font(pfc.Families[0], VersionLabel.Font.Size);
|
||||
VersionLabel.Text = LocalFuncs.GetVersion(LocalPaths.ConfigPath + @"\\" + LocalPaths.LauncherInfoFile).ToUpper();
|
||||
|
||||
LaunchNovetusButton.Font = new Font(pfc.Families[0], VersionLabel.Font.Size);
|
||||
|
||||
CenterToScreen();
|
||||
}
|
||||
|
||||
private void LaunchNovetusButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
LocalFuncs.LaunchApplication(LocalPaths.LauncherName);
|
||||
Close();
|
||||
}
|
||||
|
||||
private void LaunchSDKButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
LocalFuncs.LaunchApplication(LocalPaths.LauncherName, "-sdk");
|
||||
Close();
|
||||
}
|
||||
|
||||
private void CMDButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
LocalFuncs.LaunchApplication(LocalPaths.CMDName, ArgBox.Text);
|
||||
Close();
|
||||
}
|
||||
|
||||
private void CMDHelpButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
LocalFuncs.LaunchApplication(LocalPaths.CMDName, "-help");
|
||||
Close();
|
||||
}
|
||||
|
||||
private void DependencyInstallerButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
LocalFuncs.LaunchApplicationExt(LocalPaths.BasePathLauncher, LocalPaths.DependencyLauncherName);
|
||||
Close();
|
||||
}
|
||||
|
||||
private void URIButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
LocalFuncs.LaunchApplication(LocalPaths.URIName);
|
||||
Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,36 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Novetus.Launch")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Novetus.Launch")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("d7b467ee-a4b9-42fb-aa83-f487da0f5cb1")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace Novetus.Launch.Properties {
|
||||
using System;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||
/// </summary>
|
||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class Resources {
|
||||
|
||||
private static global::System.Resources.ResourceManager resourceMan;
|
||||
|
||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||
|
||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||
internal Resources() {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the cached ResourceManager instance used by this class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||
get {
|
||||
if (object.ReferenceEquals(resourceMan, null)) {
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Novetus.Launch.Properties.Resources", typeof(Resources).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the current thread's CurrentUICulture property for all
|
||||
/// resource lookups using this strongly typed resource class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture {
|
||||
get {
|
||||
return resourceCulture;
|
||||
}
|
||||
set {
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Byte[].
|
||||
/// </summary>
|
||||
internal static byte[] Montserrat_SemiBold {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("Montserrat_SemiBold", resourceCulture);
|
||||
return ((byte[])(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap NOVETUS_new_final_smol {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("NOVETUS_new_final_smol", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,127 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="Montserrat_SemiBold" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Montserrat-SemiBold.ttf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="NOVETUS_new_final_smol" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\NOVETUS_new_final_smol.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
|
||||
namespace Novetus.Launch.Properties
|
||||
{
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
|
||||
{
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
||||
public static Settings Default
|
||||
{
|
||||
get
|
||||
{
|
||||
return defaultInstance;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
||||
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 668 KiB |
|
|
@ -1,67 +0,0 @@
|
|||
#region Usings
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
#endregion
|
||||
|
||||
#region INI File Parser
|
||||
//modified from https://www.codeproject.com/articles/1966/an-ini-file-handling-class-using-c?fid=425860&df=90&mpp=25&prof=True&sort=Position&view=Normal&spc=Relaxed&fr=51
|
||||
|
||||
public class INIFile
|
||||
{
|
||||
public string path;
|
||||
|
||||
[DllImport("kernel32")]
|
||||
private static extern long WritePrivateProfileString(string section,
|
||||
string key, string val, string filePath);
|
||||
[DllImport("kernel32")]
|
||||
private static extern int GetPrivateProfileString(string section,
|
||||
string key, string def, StringBuilder retVal,
|
||||
int size, string filePath);
|
||||
|
||||
/// <summary>
|
||||
/// INIFile Constructor.
|
||||
/// </summary>
|
||||
/// <PARAM name="INIPath"></PARAM>
|
||||
public INIFile(string INIPath)
|
||||
{
|
||||
path = INIPath;
|
||||
}
|
||||
/// <summary>
|
||||
/// Write Data to the INI File
|
||||
/// </summary>
|
||||
/// <PARAM name="Section"></PARAM>
|
||||
/// Section name
|
||||
/// <PARAM name="Key"></PARAM>
|
||||
/// Key Name
|
||||
/// <PARAM name="Value"></PARAM>
|
||||
/// Value Name
|
||||
public void IniWriteValue(string Section, string Key, string Value)
|
||||
{
|
||||
WritePrivateProfileString(Section, Key, Value, this.path);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Read Data Value From the Ini File
|
||||
/// </summary>
|
||||
/// <PARAM name="Section"></PARAM>
|
||||
/// <PARAM name="Key"></PARAM>
|
||||
/// <PARAM name="Default Value. Optional for creating values in case they are invalid."></PARAM>
|
||||
/// <returns></returns>
|
||||
public string IniReadValue(string Section, string Key, string DefaultValue = "")
|
||||
{
|
||||
try
|
||||
{
|
||||
StringBuilder temp = new StringBuilder(255);
|
||||
int i = GetPrivateProfileString(Section, Key, "", temp,
|
||||
255, this.path);
|
||||
return temp.ToString();
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
IniWriteValue(Section, Key, DefaultValue);
|
||||
return IniReadValue(Section, Key);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
|
@ -44,7 +44,9 @@
|
|||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="INIFile.cs" />
|
||||
<Compile Include="..\NovetusCore\Classes\INIFile.cs">
|
||||
<Link>INIFile.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="ReleasePreparer.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
|
|
|
|||
|
|
@ -15,6 +15,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Novetus.ClientScriptTester"
|
|||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Novetus.ReleasePreparer", "Novetus.ReleasePreparer\Novetus.ReleasePreparer.csproj", "{64A99062-3C1C-4D2E-99E4-D6D92443AC98}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Novetus.Launch", "Novetus.Launch\Novetus.Launch.csproj", "{D7B467EE-A4B9-42FB-AA83-F487DA0F5CB1}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SharedMSBuildProjectFiles) = preSolution
|
||||
NovetusCore\NovetusCore.projitems*{2070eaa6-7606-4006-a628-5705c24a3644}*SharedItemsImports = 4
|
||||
|
|
@ -47,6 +49,10 @@ Global
|
|||
{64A99062-3C1C-4D2E-99E4-D6D92443AC98}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{64A99062-3C1C-4D2E-99E4-D6D92443AC98}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{64A99062-3C1C-4D2E-99E4-D6D92443AC98}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{D7B467EE-A4B9-42FB-AA83-F487DA0F5CB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{D7B467EE-A4B9-42FB-AA83-F487DA0F5CB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{D7B467EE-A4B9-42FB-AA83-F487DA0F5CB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{D7B467EE-A4B9-42FB-AA83-F487DA0F5CB1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ public class GlobalPaths
|
|||
#endregion
|
||||
|
||||
#region Asset Dirs
|
||||
public static readonly string AssetCacheDir = GlobalPaths.DataPath + "\\assetcache";
|
||||
public static readonly string AssetCacheDir = DataPath + "\\assetcache";
|
||||
public static readonly string AssetCacheDirSky = AssetCacheDir + "\\sky";
|
||||
public static readonly string AssetCacheDirFonts = AssetCacheDir + DirFonts;
|
||||
public static readonly string AssetCacheDirSounds = AssetCacheDir + DirSounds;
|
||||
|
|
@ -68,7 +68,7 @@ public class GlobalPaths
|
|||
public static readonly string AssetCacheDirScripts = AssetCacheDir + DirScripts;
|
||||
//public static readonly string AssetCacheDirScriptAssets = AssetCacheDir + "\\scriptassets";
|
||||
|
||||
public static readonly string AssetCacheGameDir = GlobalPaths.SharedDataGameDir + "assetcache/";
|
||||
public static readonly string AssetCacheGameDir = SharedDataGameDir + "assetcache/";
|
||||
public static readonly string AssetCacheFontsGameDir = AssetCacheGameDir + FontsGameDir;
|
||||
public static readonly string AssetCacheSkyGameDir = AssetCacheGameDir + "sky/";
|
||||
public static readonly string AssetCacheSoundsGameDir = AssetCacheGameDir + SoundsGameDir;
|
||||
|
|
@ -79,27 +79,27 @@ public class GlobalPaths
|
|||
#endregion
|
||||
|
||||
#region Item Dirs
|
||||
public static readonly string hatdirFonts = GlobalPaths.hatdir + DirFonts;
|
||||
public static readonly string hatdirTextures = GlobalPaths.hatdir + DirTextures;
|
||||
public static readonly string hatdirSounds = GlobalPaths.hatdir + DirSounds;
|
||||
public static readonly string hatdirScripts = GlobalPaths.hatdir + DirScripts;
|
||||
public static readonly string facedirTextures = GlobalPaths.facedir + DirTextures;
|
||||
public static readonly string headdirFonts = GlobalPaths.headdir + DirFonts;
|
||||
public static readonly string headdirTextures = GlobalPaths.headdir + DirTextures;
|
||||
public static readonly string tshirtdirTextures = GlobalPaths.tshirtdir + DirTextures;
|
||||
public static readonly string shirtdirTextures = GlobalPaths.shirtdir + DirTextures;
|
||||
public static readonly string pantsdirTextures = GlobalPaths.pantsdir + DirTextures;
|
||||
public static readonly string hatdirFonts = hatdir + DirFonts;
|
||||
public static readonly string hatdirTextures = hatdir + DirTextures;
|
||||
public static readonly string hatdirSounds = hatdir + DirSounds;
|
||||
public static readonly string hatdirScripts = hatdir + DirScripts;
|
||||
public static readonly string facedirTextures = facedir + DirTextures;
|
||||
public static readonly string headdirFonts = headdir + DirFonts;
|
||||
public static readonly string headdirTextures = headdir + DirTextures;
|
||||
public static readonly string tshirtdirTextures = tshirtdir + DirTextures;
|
||||
public static readonly string shirtdirTextures = shirtdir + DirTextures;
|
||||
public static readonly string pantsdirTextures = pantsdir + DirTextures;
|
||||
|
||||
public static readonly string hatGameDirFonts = GlobalPaths.hatGameDir + FontsGameDir;
|
||||
public static readonly string hatGameDirTextures = GlobalPaths.hatGameDir + TexturesGameDir;
|
||||
public static readonly string hatGameDirSounds = GlobalPaths.hatGameDir + SoundsGameDir;
|
||||
public static readonly string hatGameDirScripts = GlobalPaths.hatGameDir + ScriptsGameDir;
|
||||
public static readonly string faceGameDirTextures = GlobalPaths.faceGameDir + TexturesGameDir;
|
||||
public static readonly string headGameDirFonts = GlobalPaths.headGameDir + FontsGameDir;
|
||||
public static readonly string headGameDirTextures = GlobalPaths.headGameDir + TexturesGameDir;
|
||||
public static readonly string tshirtGameDirTextures = GlobalPaths.tshirtGameDir + TexturesGameDir;
|
||||
public static readonly string shirtGameDirTextures = GlobalPaths.shirtGameDir + TexturesGameDir;
|
||||
public static readonly string pantsGameDirTextures = GlobalPaths.pantsGameDir + TexturesGameDir;
|
||||
public static readonly string hatGameDirFonts = hatGameDir + FontsGameDir;
|
||||
public static readonly string hatGameDirTextures = hatGameDir + TexturesGameDir;
|
||||
public static readonly string hatGameDirSounds = hatGameDir + SoundsGameDir;
|
||||
public static readonly string hatGameDirScripts = hatGameDir + ScriptsGameDir;
|
||||
public static readonly string faceGameDirTextures = faceGameDir + TexturesGameDir;
|
||||
public static readonly string headGameDirFonts = headGameDir + FontsGameDir;
|
||||
public static readonly string headGameDirTextures = headGameDir + TexturesGameDir;
|
||||
public static readonly string tshirtGameDirTextures = tshirtGameDir + TexturesGameDir;
|
||||
public static readonly string shirtGameDirTextures = shirtGameDir + TexturesGameDir;
|
||||
public static readonly string pantsGameDirTextures = pantsGameDir + TexturesGameDir;
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
|
|
|
|||
|
|
@ -1157,7 +1157,7 @@ namespace NovetusLauncher
|
|||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage")));
|
||||
this.pictureBox2.BackgroundImage = global::NovetusLauncher.Properties.Resources.N;
|
||||
this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(6, 12);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -70,6 +70,11 @@ namespace NovetusLauncher
|
|||
this.button28 = new System.Windows.Forms.Button();
|
||||
this.button34 = new System.Windows.Forms.Button();
|
||||
this.panel2 = new System.Windows.Forms.Panel();
|
||||
this.SettingsButton = new System.Windows.Forms.Button();
|
||||
this.panel3 = new System.Windows.Forms.Panel();
|
||||
this.panel4 = new System.Windows.Forms.Panel();
|
||||
this.button35 = new System.Windows.Forms.Button();
|
||||
this.UAButton = new System.Windows.Forms.Button();
|
||||
this.tabControl1 = new TabControlWithoutHeader();
|
||||
this.tabPage1 = new System.Windows.Forms.TabPage();
|
||||
this.button37 = new System.Windows.Forms.Button();
|
||||
|
|
@ -156,14 +161,11 @@ namespace NovetusLauncher
|
|||
this.label18 = new System.Windows.Forms.Label();
|
||||
this.label8 = new System.Windows.Forms.Label();
|
||||
this.label7 = new System.Windows.Forms.Label();
|
||||
this.SettingsButton = new System.Windows.Forms.Button();
|
||||
this.panel3 = new System.Windows.Forms.Panel();
|
||||
this.panel4 = new System.Windows.Forms.Panel();
|
||||
this.button35 = new System.Windows.Forms.Button();
|
||||
this.UAButton = new System.Windows.Forms.Button();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
|
||||
this.panel1.SuspendLayout();
|
||||
this.panel2.SuspendLayout();
|
||||
this.panel3.SuspendLayout();
|
||||
this.panel4.SuspendLayout();
|
||||
this.tabControl1.SuspendLayout();
|
||||
this.tabPage1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
|
||||
|
|
@ -177,8 +179,6 @@ namespace NovetusLauncher
|
|||
this.tabPage8.SuspendLayout();
|
||||
this.tabPage5.SuspendLayout();
|
||||
this.panel5.SuspendLayout();
|
||||
this.panel3.SuspendLayout();
|
||||
this.panel4.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// button25
|
||||
|
|
@ -253,7 +253,7 @@ namespace NovetusLauncher
|
|||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage")));
|
||||
this.pictureBox2.BackgroundImage = global::NovetusLauncher.Properties.Resources.N;
|
||||
this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(3, 3);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
|
|
@ -469,6 +469,61 @@ namespace NovetusLauncher
|
|||
this.panel2.Size = new System.Drawing.Size(646, 311);
|
||||
this.panel2.TabIndex = 61;
|
||||
//
|
||||
// SettingsButton
|
||||
//
|
||||
this.SettingsButton.Location = new System.Drawing.Point(0, 0);
|
||||
this.SettingsButton.Name = "SettingsButton";
|
||||
this.SettingsButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.SettingsButton.TabIndex = 0;
|
||||
//
|
||||
// panel3
|
||||
//
|
||||
this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.panel3.Controls.Add(this.pictureBox2);
|
||||
this.panel3.Controls.Add(this.textBox2);
|
||||
this.panel3.Controls.Add(this.textBox5);
|
||||
this.panel3.Controls.Add(this.button4);
|
||||
this.panel3.Controls.Add(this.label16);
|
||||
this.panel3.Controls.Add(this.label15);
|
||||
this.panel3.Controls.Add(this.label12);
|
||||
this.panel3.Controls.Add(this.label13);
|
||||
this.panel3.Location = new System.Drawing.Point(1, 4);
|
||||
this.panel3.Name = "panel3";
|
||||
this.panel3.Size = new System.Drawing.Size(229, 69);
|
||||
this.panel3.TabIndex = 62;
|
||||
//
|
||||
// panel4
|
||||
//
|
||||
this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.panel4.Controls.Add(this.button35);
|
||||
this.panel4.Controls.Add(this.button34);
|
||||
this.panel4.Controls.Add(this.button21);
|
||||
this.panel4.Controls.Add(this.button8);
|
||||
this.panel4.Controls.Add(this.button3);
|
||||
this.panel4.Controls.Add(this.button25);
|
||||
this.panel4.Location = new System.Drawing.Point(236, 41);
|
||||
this.panel4.Name = "panel4";
|
||||
this.panel4.Size = new System.Drawing.Size(501, 32);
|
||||
this.panel4.TabIndex = 63;
|
||||
//
|
||||
// button35
|
||||
//
|
||||
this.button35.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.button35.Location = new System.Drawing.Point(113, 3);
|
||||
this.button35.Name = "button35";
|
||||
this.button35.Size = new System.Drawing.Size(41, 20);
|
||||
this.button35.TabIndex = 61;
|
||||
this.button35.Text = "Studio";
|
||||
this.button35.UseVisualStyleBackColor = true;
|
||||
this.button35.Click += new System.EventHandler(this.button35_Click);
|
||||
//
|
||||
// UAButton
|
||||
//
|
||||
this.UAButton.Location = new System.Drawing.Point(0, 0);
|
||||
this.UAButton.Name = "UAButton";
|
||||
this.UAButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.UAButton.TabIndex = 0;
|
||||
//
|
||||
// tabControl1
|
||||
//
|
||||
this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;
|
||||
|
|
@ -1457,61 +1512,6 @@ namespace NovetusLauncher
|
|||
this.label7.Text = "PROJECT STARLIGHT";
|
||||
this.label7.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
||||
//
|
||||
// SettingsButton
|
||||
//
|
||||
this.SettingsButton.Location = new System.Drawing.Point(0, 0);
|
||||
this.SettingsButton.Name = "SettingsButton";
|
||||
this.SettingsButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.SettingsButton.TabIndex = 0;
|
||||
//
|
||||
// panel3
|
||||
//
|
||||
this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.panel3.Controls.Add(this.pictureBox2);
|
||||
this.panel3.Controls.Add(this.textBox2);
|
||||
this.panel3.Controls.Add(this.textBox5);
|
||||
this.panel3.Controls.Add(this.button4);
|
||||
this.panel3.Controls.Add(this.label16);
|
||||
this.panel3.Controls.Add(this.label15);
|
||||
this.panel3.Controls.Add(this.label12);
|
||||
this.panel3.Controls.Add(this.label13);
|
||||
this.panel3.Location = new System.Drawing.Point(1, 4);
|
||||
this.panel3.Name = "panel3";
|
||||
this.panel3.Size = new System.Drawing.Size(229, 69);
|
||||
this.panel3.TabIndex = 62;
|
||||
//
|
||||
// panel4
|
||||
//
|
||||
this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.panel4.Controls.Add(this.button35);
|
||||
this.panel4.Controls.Add(this.button34);
|
||||
this.panel4.Controls.Add(this.button21);
|
||||
this.panel4.Controls.Add(this.button8);
|
||||
this.panel4.Controls.Add(this.button3);
|
||||
this.panel4.Controls.Add(this.button25);
|
||||
this.panel4.Location = new System.Drawing.Point(236, 41);
|
||||
this.panel4.Name = "panel4";
|
||||
this.panel4.Size = new System.Drawing.Size(501, 32);
|
||||
this.panel4.TabIndex = 63;
|
||||
//
|
||||
// button35
|
||||
//
|
||||
this.button35.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.button35.Location = new System.Drawing.Point(113, 3);
|
||||
this.button35.Name = "button35";
|
||||
this.button35.Size = new System.Drawing.Size(41, 20);
|
||||
this.button35.TabIndex = 61;
|
||||
this.button35.Text = "Studio";
|
||||
this.button35.UseVisualStyleBackColor = true;
|
||||
this.button35.Click += new System.EventHandler(this.button35_Click);
|
||||
//
|
||||
// UAButton
|
||||
//
|
||||
this.UAButton.Location = new System.Drawing.Point(0, 0);
|
||||
this.UAButton.Name = "UAButton";
|
||||
this.UAButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.UAButton.TabIndex = 0;
|
||||
//
|
||||
// LauncherFormExtended
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
|
|
@ -1538,6 +1538,9 @@ namespace NovetusLauncher
|
|||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
|
||||
this.panel1.ResumeLayout(false);
|
||||
this.panel2.ResumeLayout(false);
|
||||
this.panel3.ResumeLayout(false);
|
||||
this.panel3.PerformLayout();
|
||||
this.panel4.ResumeLayout(false);
|
||||
this.tabControl1.ResumeLayout(false);
|
||||
this.tabPage1.ResumeLayout(false);
|
||||
this.tabPage1.PerformLayout();
|
||||
|
|
@ -1556,9 +1559,6 @@ namespace NovetusLauncher
|
|||
this.tabPage5.ResumeLayout(false);
|
||||
this.panel5.ResumeLayout(false);
|
||||
this.panel5.PerformLayout();
|
||||
this.panel3.ResumeLayout(false);
|
||||
this.panel3.PerformLayout();
|
||||
this.panel4.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -27,22 +27,12 @@
|
|||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NovetusSDK));
|
||||
this.pictureBox2 = new System.Windows.Forms.PictureBox();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.listBox1 = new System.Windows.Forms.ListBox();
|
||||
this.pictureBox2 = new System.Windows.Forms.PictureBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage")));
|
||||
this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(12, 12);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(260, 52);
|
||||
this.pictureBox2.TabIndex = 8;
|
||||
this.pictureBox2.TabStop = false;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Location = new System.Drawing.Point(12, 168);
|
||||
|
|
@ -70,6 +60,16 @@
|
|||
this.listBox1.TabIndex = 14;
|
||||
this.listBox1.DoubleClick += new System.EventHandler(this.listBox1_SelectedIndexChanged);
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BackgroundImage = global::NovetusLauncher.Properties.Resources.NOVETUS_small;
|
||||
this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(12, 12);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(260, 52);
|
||||
this.pictureBox2.TabIndex = 8;
|
||||
this.pictureBox2.TabStop = false;
|
||||
//
|
||||
// NovetusSDK
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -295,26 +295,10 @@
|
|||
<Install>true</Install>
|
||||
</BootstrapperPackage>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\BC.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\OBC.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\TBC.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\BC_legacy.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\OBC_legacy.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\TBC_legacy.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="NovetusIcon.ico" />
|
||||
<None Include="Resources\NOVETUS_small.png" />
|
||||
<None Include="Resources\N.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<Import Project="..\NovetusCore\NovetusCore.projitems" Label="Shared" />
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ namespace NovetusLauncher.Properties {
|
|||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class Resources {
|
||||
|
|
@ -59,5 +59,25 @@ namespace NovetusLauncher.Properties {
|
|||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap N {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("N", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap NOVETUS_small {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("NOVETUS_small", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -117,4 +117,11 @@
|
|||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="N" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\N.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="NOVETUS_small" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\NOVETUS_small.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
||||
Loading…
Reference in New Issue