feat: Add React WebUI, make server improvements

This commit is contained in:
2024-06-05 16:47:10 +02:00
parent c1b87f98fb
commit 349cdd8424
6 changed files with 0 additions and 122 deletions

View File

@@ -1,29 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RoutePlanner
{
internal class Controller
{
private Mapper.Map map;
public void RoutePlanner()
{
}
public void fetchMap()
{
// get map from client
}
public void sendRoute()
{
// send route to client
}
}
}

View File

@@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RoutePlanner
{
internal class Route
{
public Routepoint[] routepoints;
}
}

View File

@@ -1,14 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Client\Mapper\Mapper.csproj" />
<ProjectReference Include="..\..\Client\RobotController\RobotController.csproj" />
</ItemGroup>
</Project>

View File

@@ -1,39 +0,0 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.10.34916.146
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RoutePlanner", "RoutePlanner.csproj", "{9BEFD90E-D1AB-4E98-A7F3-41577B136144}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{D0EC1416-23D0-4A38-8225-5420F2C0A890}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mapper", "..\..\Client\Mapper\Mapper.csproj", "{C9016E3C-4794-4B7A-AA05-070013A2FCBF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RobotController", "..\..\Client\RobotController\RobotController.csproj", "{5CC35547-8E0C-42A2-B1A7-F9AB0B149BAC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9BEFD90E-D1AB-4E98-A7F3-41577B136144}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9BEFD90E-D1AB-4E98-A7F3-41577B136144}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9BEFD90E-D1AB-4E98-A7F3-41577B136144}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9BEFD90E-D1AB-4E98-A7F3-41577B136144}.Release|Any CPU.Build.0 = Release|Any CPU
{C9016E3C-4794-4B7A-AA05-070013A2FCBF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C9016E3C-4794-4B7A-AA05-070013A2FCBF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C9016E3C-4794-4B7A-AA05-070013A2FCBF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C9016E3C-4794-4B7A-AA05-070013A2FCBF}.Release|Any CPU.Build.0 = Release|Any CPU
{5CC35547-8E0C-42A2-B1A7-F9AB0B149BAC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5CC35547-8E0C-42A2-B1A7-F9AB0B149BAC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5CC35547-8E0C-42A2-B1A7-F9AB0B149BAC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5CC35547-8E0C-42A2-B1A7-F9AB0B149BAC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {330E6F70-8C10-4ADE-BE14-D01EA868D4BB}
EndGlobalSection
EndGlobal

View File

@@ -1,15 +0,0 @@
using RobotController;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RoutePlanner
{
internal class Routepoint
{
private int step { get; set; }
private Coordinate coordinate { get; set; }
}
}

View File

@@ -1,12 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RoutePlanner
{
internal class Routing
{
}
}