Skip to content

Commit e16688a

Browse files
Updated c# runner
1 parent e66ff17 commit e16688a

11 files changed

+101
-15
lines changed

EchoEngine.sln

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.5.2.0
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Engine_base", "Engine_base\Engine_base.csproj", "{16A321A8-B989-45DF-8E09-2F24E8F7D176}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{16A321A8-B989-45DF-8E09-2F24E8F7D176}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{16A321A8-B989-45DF-8E09-2F24E8F7D176}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{16A321A8-B989-45DF-8E09-2F24E8F7D176}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{16A321A8-B989-45DF-8E09-2F24E8F7D176}.Release|Any CPU.Build.0 = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(SolutionProperties) = preSolution
19+
HideSolutionNode = FALSE
20+
EndGlobalSection
21+
GlobalSection(ExtensibilityGlobals) = postSolution
22+
SolutionGuid = {B202E660-3CD7-4D72-A80C-5995F1593F6C}
23+
EndGlobalSection
24+
EndGlobal
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

Engine_base/Echo_runner.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,9 @@ public MainForm()
311311
this.Shown += (s, e) =>
312312
{
313313
outputArea.Focus();
314-
new Thread(() => ShowLogoAndStart(windowTitle)).Start();
314+
Thread logoThread = new Thread(() => ShowLogoAndStart(windowTitle));
315+
logoThread.IsBackground = true;
316+
logoThread.Start();
315317
};
316318
}
317319

@@ -421,7 +423,9 @@ private void ShowLogoAndStart(string windowTitle)
421423
outputArea.Font = originalFont;
422424
});
423425

424-
new Thread(() => RunGame(windowTitle)).Start();
426+
Thread gameThread = new Thread(() => RunGame(windowTitle));
427+
gameThread.IsBackground = true;
428+
gameThread.Start();
425429
}
426430

427431
// Wait for user input from the GUI

Engine_base/obj/Debug/net9.0-windows/Engine_base.AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[assembly: System.Reflection.AssemblyCompanyAttribute("Engine_base")]
1414
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
1515
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a4a8ded1507761357820eb4dd0ed132acf871dcf")]
16+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e66ff178223dcf0d10a84cf09dc06469d703212d")]
1717
[assembly: System.Reflection.AssemblyProductAttribute("Engine_base")]
1818
[assembly: System.Reflection.AssemblyTitleAttribute("Engine_base")]
1919
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1cde06b15bc9a5f15356ec5e09613d15c9b9100ab0816734b0a3f7dadee0d3d0
1+
c0453af64c8913a7c97e0f761da3aad0e4a38b779380afd09c0446946ed984f8

Engine_base/obj/Debug/net9.0-windows/Engine_base.GeneratedMSBuildEditorConfig.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build_property.PlatformNeutralAssembly =
1414
build_property.EnforceExtendedAnalyzerRules =
1515
build_property._SupportedPlatformList = Linux,macOS,Windows
1616
build_property.RootNamespace = Engine_base
17-
build_property.ProjectDir = E:\Projects\Programming\Echo Engine\Engine_base\
17+
build_property.ProjectDir = C:\Users\jackp\Github Repositories\EchoEngine\Engine_base\
1818
build_property.EnableComHosting =
1919
build_property.EnableGeneratedComInterfaceComImportInterop =
2020
build_property.CsWinRTUseWindowsUIXamlProjections = false
0 Bytes
Binary file not shown.

Engine_base/obj/Engine_base.csproj.nuget.dgspec.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"format": 1,
33
"restore": {
4-
"E:\\Projects\\Programming\\Echo Engine\\Engine_base\\Engine_base.csproj": {}
4+
"C:\\Users\\jackp\\Github Repositories\\EchoEngine\\Engine_base\\Engine_base.csproj": {}
55
},
66
"projects": {
7-
"E:\\Projects\\Programming\\Echo Engine\\Engine_base\\Engine_base.csproj": {
7+
"C:\\Users\\jackp\\Github Repositories\\EchoEngine\\Engine_base\\Engine_base.csproj": {
88
"version": "1.0.0",
99
"restore": {
10-
"projectUniqueName": "E:\\Projects\\Programming\\Echo Engine\\Engine_base\\Engine_base.csproj",
10+
"projectUniqueName": "C:\\Users\\jackp\\Github Repositories\\EchoEngine\\Engine_base\\Engine_base.csproj",
1111
"projectName": "Engine_base",
12-
"projectPath": "E:\\Projects\\Programming\\Echo Engine\\Engine_base\\Engine_base.csproj",
12+
"projectPath": "C:\\Users\\jackp\\Github Repositories\\EchoEngine\\Engine_base\\Engine_base.csproj",
1313
"packagesPath": "C:\\Users\\jackp\\.nuget\\packages\\",
14-
"outputPath": "E:\\Projects\\Programming\\Echo Engine\\Engine_base\\obj\\",
14+
"outputPath": "C:\\Users\\jackp\\Github Repositories\\EchoEngine\\Engine_base\\obj\\",
1515
"projectStyle": "PackageReference",
1616
"configFilePaths": [
1717
"C:\\Users\\jackp\\AppData\\Roaming\\NuGet\\NuGet.Config"

Engine_base/obj/project.assets.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
"project": {
1414
"version": "1.0.0",
1515
"restore": {
16-
"projectUniqueName": "E:\\Projects\\Programming\\Echo Engine\\Engine_base\\Engine_base.csproj",
16+
"projectUniqueName": "C:\\Users\\jackp\\Github Repositories\\EchoEngine\\Engine_base\\Engine_base.csproj",
1717
"projectName": "Engine_base",
18-
"projectPath": "E:\\Projects\\Programming\\Echo Engine\\Engine_base\\Engine_base.csproj",
18+
"projectPath": "C:\\Users\\jackp\\Github Repositories\\EchoEngine\\Engine_base\\Engine_base.csproj",
1919
"packagesPath": "C:\\Users\\jackp\\.nuget\\packages\\",
20-
"outputPath": "E:\\Projects\\Programming\\Echo Engine\\Engine_base\\obj\\",
20+
"outputPath": "C:\\Users\\jackp\\Github Repositories\\EchoEngine\\Engine_base\\obj\\",
2121
"projectStyle": "PackageReference",
2222
"configFilePaths": [
2323
"C:\\Users\\jackp\\AppData\\Roaming\\NuGet\\NuGet.Config"

0 commit comments

Comments
 (0)