Add project files.

This commit is contained in:
Robert Altner 2019-08-01 11:51:53 +02:00
parent b2c740ccd7
commit 04d98fdba0
4 changed files with 268 additions and 0 deletions

25
CrosshairMod.sln Normal file
View file

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29123.88
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CrosshairMod", "CrosshairMod\CrosshairMod.csproj", "{363B8EB5-F528-4FF2-8B9E-57C93D009DFC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{363B8EB5-F528-4FF2-8B9E-57C93D009DFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{363B8EB5-F528-4FF2-8B9E-57C93D009DFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{363B8EB5-F528-4FF2-8B9E-57C93D009DFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{363B8EB5-F528-4FF2-8B9E-57C93D009DFC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A0507B5B-B2BD-4486-A9F8-A91D693BE3A0}
EndGlobalSection
EndGlobal

View file

@ -0,0 +1,51 @@
<?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>{363B8EB5-F528-4FF2-8B9E-57C93D009DFC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CrosshairMod</RootNamespace>
<AssemblyName>CrosshairMod</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<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' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</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.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="UnityEngine">
<HintPath>..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Blackwake\Blackwake_Data\Managed\UnityEngine.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Main.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

156
CrosshairMod/Main.cs Normal file
View file

@ -0,0 +1,156 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace Mod
{
public class Main : MonoBehaviour
{
private void Log(string message)
{
System.Console.WriteLine("[CROSSHAIRMOD]" + message);
}
private Dictionary<string, int> m_settings = new Dictionary<string, int>();
private Texture2D crosshair = new Texture2D(-1, -1);
private bool m_validState = true;
// Reads settings file and sets all variables
private bool readSettings(string filepath, ref Dictionary<string, int> sett_dict)
{
Log("Accessing Settings at " + filepath);
string settings = "";
try
{
settings = System.IO.File.ReadAllText(filepath);
} catch(Exception e)
{
Log(e.Message);
return false;
}
sett_dict = new Dictionary<string, int>();
string[] lines = settings.Split('\n');
foreach (string line in lines)
{
if (line == "")
continue;
string[] vals = line.Split('=');
sett_dict.Add(vals[0], Int32.Parse(vals[1]));
}
return true;
}
// Creates a crosshair texture
private bool createCrossTexture(ref Texture2D texture)
{
int m_crosshairLength = 0, m_crosshairThickness = 0, m_crosshairColorRed = 0, m_crosshairColorGreen = 0, m_crosshairColorBlue = 0, m_crosshairColorAlpha = 0;
if(!m_settings.TryGetValue("crosshairLength", out m_crosshairLength))
{
Log("Missing Setting: crosshairLength");
return false;
}
if (!m_settings.TryGetValue("crosshairThickness", out m_crosshairThickness))
{
Log("Missing Setting: crosshairThickness");
return false;
}
if (!m_settings.TryGetValue("crosshairColorRed", out m_crosshairColorRed))
{
Log("Missing Setting: crosshairColorRed");
return false;
}
if (!m_settings.TryGetValue("crosshairColorGreen", out m_crosshairColorGreen))
{
Log("Missing Setting: crosshairColorGreen");
return false;
}
if (!m_settings.TryGetValue("crosshairColorBlue", out m_crosshairColorBlue))
{
Log("Missing Setting: crosshairColorBlue");
return false;
}
if (!m_settings.TryGetValue("crosshairColorAlpha", out m_crosshairColorAlpha))
{
Log("Missing Setting: crosshairColorAlpha");
return false;
}
Color m_crosshairColor = new Color(m_crosshairColorRed / 255f,
m_crosshairColorGreen / 255f,
m_crosshairColorBlue / 255f,
m_crosshairColorAlpha / 255f);
// Lazy
m_crosshairThickness += (m_crosshairThickness % 2 == 0) ? 1 : 0;
// Create Texture with approprate dimensions. The m_crosshairLength is the distance
// between center and end-of-line (end-points included)
texture = new Texture2D((m_crosshairLength - 1) * 2 + 1, (m_crosshairLength - 1) * 2 + 1);
// Fill Texture with some color where alpha = 0
for (int y = 0; y < texture.height; y++)
for (int x = 0; x < texture.width; x++)
texture.SetPixel(x, y, new Color(0, 0, 0, 0));
// The texture will always have odd dimensions, so we can be sure that there will be a definite center (which is m_crossheirLength)
// Draw vertical line:
for (int y = 0; y < texture.height; y++)
{
for (int i = 0; i < m_crosshairThickness; i++)
{
texture.SetPixel(m_crosshairLength - (int)Math.Floor((double)m_crosshairThickness / 2) + i - 1, y, m_crosshairColor);
}
}
// Draw horizontal line:
for (int x = 0; x < texture.height; x++)
{
for (int i = 0; i < m_crosshairThickness; i++)
{
texture.SetPixel(x, m_crosshairLength - (int)Math.Floor((double)m_crosshairThickness / 2) + i - 1, m_crosshairColor);
}
}
texture.wrapMode = TextureWrapMode.Repeat;
texture.Apply();
return true;
}
void Start()
{
m_validState = readSettings(".\\Blackwake_Data\\Managed\\Mods\\chSettings.sett", ref m_settings);
foreach (KeyValuePair<string, int> setting in m_settings)
Log(setting.Key + ": " + setting.Value);
}
void OnGUI()
{
if (m_validState)
{
m_validState = createCrossTexture(ref crosshair);
GUIStyle style = new GUIStyle();
style.normal.background = crosshair;
GUI.Label(new Rect(Screen.width / 2 - crosshair.width / 2, Screen.height / 2 - crosshair.height / 2, crosshair.width, crosshair.height),
crosshair, style);
}
}
}
}

View file

@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Allgemeine Informationen über eine Assembly werden über die folgenden
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die einer Assembly zugeordnet sind.
[assembly: AssemblyTitle("CrosshairMod")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("CrosshairMod")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
[assembly: ComVisible(false)]
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
[assembly: Guid("363b8eb5-f528-4ff2-8b9e-57c93d009dfc")]
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
//
// Hauptversion
// Nebenversion
// Buildnummer
// Revision
//
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]