summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchai <215380520@qq.com>2024-06-03 00:27:28 +0800
committerchai <215380520@qq.com>2024-06-03 00:27:28 +0800
commit6adb4d7a11a522fab159562f2dda6ced30885fb4 (patch)
tree0d47531f7800bd65041685550468761f3f5ffb48
parent3cf4c5121994dbbf548d9f0f3a5ccd5bc15c174c (diff)
+UGEditor project
-rw-r--r--Projects/Tools/UGEditor/.config/dotnet-tools.json36
-rw-r--r--Projects/Tools/UGEditor/Content/Content.mgcb15
-rw-r--r--Projects/Tools/UGEditor/Game1.cs52
-rw-r--r--Projects/Tools/UGEditor/Icon.bmpbin0 -> 262282 bytes
-rw-r--r--Projects/Tools/UGEditor/Icon.icobin0 -> 147541 bytes
-rw-r--r--Projects/Tools/UGEditor/Program.cs3
-rw-r--r--Projects/Tools/UGEditor/UGEditor.csproj29
-rw-r--r--Projects/Tools/UGEditor/app.manifest43
-rw-r--r--Projects/ULTRAGUNFU.sln13
9 files changed, 190 insertions, 1 deletions
diff --git a/Projects/Tools/UGEditor/.config/dotnet-tools.json b/Projects/Tools/UGEditor/.config/dotnet-tools.json
new file mode 100644
index 0000000..efabe22
--- /dev/null
+++ b/Projects/Tools/UGEditor/.config/dotnet-tools.json
@@ -0,0 +1,36 @@
+{
+ "version": 1,
+ "isRoot": true,
+ "tools": {
+ "dotnet-mgcb": {
+ "version": "3.8.1.303",
+ "commands": [
+ "mgcb"
+ ]
+ },
+ "dotnet-mgcb-editor": {
+ "version": "3.8.1.303",
+ "commands": [
+ "mgcb-editor"
+ ]
+ },
+ "dotnet-mgcb-editor-linux": {
+ "version": "3.8.1.303",
+ "commands": [
+ "mgcb-editor-linux"
+ ]
+ },
+ "dotnet-mgcb-editor-windows": {
+ "version": "3.8.1.303",
+ "commands": [
+ "mgcb-editor-windows"
+ ]
+ },
+ "dotnet-mgcb-editor-mac": {
+ "version": "3.8.1.303",
+ "commands": [
+ "mgcb-editor-mac"
+ ]
+ }
+ }
+} \ No newline at end of file
diff --git a/Projects/Tools/UGEditor/Content/Content.mgcb b/Projects/Tools/UGEditor/Content/Content.mgcb
new file mode 100644
index 0000000..ddc4c36
--- /dev/null
+++ b/Projects/Tools/UGEditor/Content/Content.mgcb
@@ -0,0 +1,15 @@
+
+#----------------------------- Global Properties ----------------------------#
+
+/outputDir:bin/$(Platform)
+/intermediateDir:obj/$(Platform)
+/platform:DesktopGL
+/config:
+/profile:Reach
+/compress:False
+
+#-------------------------------- References --------------------------------#
+
+
+#---------------------------------- Content ---------------------------------#
+
diff --git a/Projects/Tools/UGEditor/Game1.cs b/Projects/Tools/UGEditor/Game1.cs
new file mode 100644
index 0000000..2c87347
--- /dev/null
+++ b/Projects/Tools/UGEditor/Game1.cs
@@ -0,0 +1,52 @@
+using Microsoft.Xna.Framework;
+using Microsoft.Xna.Framework.Graphics;
+using Microsoft.Xna.Framework.Input;
+
+namespace UGEditor
+{
+ public class Game1 : Game
+ {
+ private GraphicsDeviceManager _graphics;
+ private SpriteBatch _spriteBatch;
+
+ public Game1()
+ {
+ _graphics = new GraphicsDeviceManager(this);
+ Content.RootDirectory = "Content";
+ IsMouseVisible = true;
+ }
+
+ protected override void Initialize()
+ {
+ // TODO: Add your initialization logic here
+
+ base.Initialize();
+ }
+
+ protected override void LoadContent()
+ {
+ _spriteBatch = new SpriteBatch(GraphicsDevice);
+
+ // TODO: use this.Content to load your game content here
+ }
+
+ protected override void Update(GameTime gameTime)
+ {
+ if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed || Keyboard.GetState().IsKeyDown(Keys.Escape))
+ Exit();
+
+ // TODO: Add your update logic here
+
+ base.Update(gameTime);
+ }
+
+ protected override void Draw(GameTime gameTime)
+ {
+ GraphicsDevice.Clear(Color.CornflowerBlue);
+
+ // TODO: Add your drawing code here
+
+ base.Draw(gameTime);
+ }
+ }
+}
diff --git a/Projects/Tools/UGEditor/Icon.bmp b/Projects/Tools/UGEditor/Icon.bmp
new file mode 100644
index 0000000..2b48165
--- /dev/null
+++ b/Projects/Tools/UGEditor/Icon.bmp
Binary files differ
diff --git a/Projects/Tools/UGEditor/Icon.ico b/Projects/Tools/UGEditor/Icon.ico
new file mode 100644
index 0000000..7d9dec1
--- /dev/null
+++ b/Projects/Tools/UGEditor/Icon.ico
Binary files differ
diff --git a/Projects/Tools/UGEditor/Program.cs b/Projects/Tools/UGEditor/Program.cs
new file mode 100644
index 0000000..17a046b
--- /dev/null
+++ b/Projects/Tools/UGEditor/Program.cs
@@ -0,0 +1,3 @@
+
+using var game = new UGEditor.Game1();
+game.Run();
diff --git a/Projects/Tools/UGEditor/UGEditor.csproj b/Projects/Tools/UGEditor/UGEditor.csproj
new file mode 100644
index 0000000..a7fb71d
--- /dev/null
+++ b/Projects/Tools/UGEditor/UGEditor.csproj
@@ -0,0 +1,29 @@
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <OutputType>WinExe</OutputType>
+ <TargetFramework>net6.0</TargetFramework>
+ <RollForward>Major</RollForward>
+ <PublishReadyToRun>false</PublishReadyToRun>
+ <TieredCompilation>false</TieredCompilation>
+ </PropertyGroup>
+ <PropertyGroup>
+ <ApplicationManifest>app.manifest</ApplicationManifest>
+ <ApplicationIcon>Icon.ico</ApplicationIcon>
+ </PropertyGroup>
+ <ItemGroup>
+ <None Remove="Icon.ico" />
+ <None Remove="Icon.bmp" />
+ </ItemGroup>
+ <ItemGroup>
+ <EmbeddedResource Include="Icon.ico" />
+ <EmbeddedResource Include="Icon.bmp" />
+ </ItemGroup>
+ <ItemGroup>
+ <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
+ <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
+ </ItemGroup>
+ <Target Name="RestoreDotnetTools" BeforeTargets="Restore">
+ <Message Text="Restoring dotnet tools" Importance="High" />
+ <Exec Command="dotnet tool restore" />
+ </Target>
+</Project> \ No newline at end of file
diff --git a/Projects/Tools/UGEditor/app.manifest b/Projects/Tools/UGEditor/app.manifest
new file mode 100644
index 0000000..991f61c
--- /dev/null
+++ b/Projects/Tools/UGEditor/app.manifest
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
+ <assemblyIdentity version="1.0.0.0" name="UGEditor"/>
+ <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
+ <security>
+ <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
+ <requestedExecutionLevel level="asInvoker" uiAccess="false" />
+ </requestedPrivileges>
+ </security>
+ </trustInfo>
+
+ <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
+ <application>
+ <!-- A list of the Windows versions that this application has been tested on and is
+ is designed to work with. Uncomment the appropriate elements and Windows will
+ automatically selected the most compatible environment. -->
+
+ <!-- Windows Vista -->
+ <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />
+
+ <!-- Windows 7 -->
+ <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
+
+ <!-- Windows 8 -->
+ <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
+
+ <!-- Windows 8.1 -->
+ <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
+
+ <!-- Windows 10 -->
+ <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
+
+ </application>
+ </compatibility>
+
+ <application xmlns="urn:schemas-microsoft-com:asm.v3">
+ <windowsSettings>
+ <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/pm</dpiAware>
+ <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">permonitorv2,permonitor</dpiAwareness>
+ </windowsSettings>
+ </application>
+
+</assembly>
diff --git a/Projects/ULTRAGUNFU.sln b/Projects/ULTRAGUNFU.sln
index 3558051..bf799e7 100644
--- a/Projects/ULTRAGUNFU.sln
+++ b/Projects/ULTRAGUNFU.sln
@@ -3,7 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.10.34916.146
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ULTRAGUNFU", "./ULTRAGUNFU/ULTRAGUNFU.csproj", "{C87D9D21-A205-4E54-B4D4-793CA6B3092F}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ULTRAGUNFU", "ULTRAGUNFU\ULTRAGUNFU.csproj", "{C87D9D21-A205-4E54-B4D4-793CA6B3092F}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UGEditor", "Tools\UGEditor\UGEditor.csproj", "{EC33DBA6-E734-449E-841C-D0578FDA5F08}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{DF3F1C06-0493-497B-9A51-FFD7DC1BF87E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -15,10 +19,17 @@ Global
{C87D9D21-A205-4E54-B4D4-793CA6B3092F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C87D9D21-A205-4E54-B4D4-793CA6B3092F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C87D9D21-A205-4E54-B4D4-793CA6B3092F}.Release|Any CPU.Build.0 = Release|Any CPU
+ {EC33DBA6-E734-449E-841C-D0578FDA5F08}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {EC33DBA6-E734-449E-841C-D0578FDA5F08}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {EC33DBA6-E734-449E-841C-D0578FDA5F08}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {EC33DBA6-E734-449E-841C-D0578FDA5F08}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
+ GlobalSection(NestedProjects) = preSolution
+ {EC33DBA6-E734-449E-841C-D0578FDA5F08} = {DF3F1C06-0493-497B-9A51-FFD7DC1BF87E}
+ EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {87A7D18A-A218-4959-BDAB-065DB5DA20FC}
EndGlobalSection