Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Logophilist
2020-10-05 20:21:08 +02:00
20 changed files with 587 additions and 81 deletions

View File

@@ -4,7 +4,7 @@ using System;
namespace RH_Engine
{
class Command
public class Command
{
public const string STANDARD_HEAD = "Head";
public const string STANDARD_GROUND = "GroundPlane";

View File

@@ -3,7 +3,7 @@ using System;
namespace RH_Engine
{
class JSONParser
public class JSONParser
{
/// <summary>
/// returns all the users from the given response
@@ -50,7 +50,7 @@ namespace RH_Engine
{
if (d.clientinfo.host == pc.host && d.clientinfo.user == pc.user)
{
Console.WriteLine("connecting to {0}, on {1} with id {2}", pc.user, pc.host, d.id);
Console.WriteLine("[JSONPARSER] connecting to {0}, on {1} with id {2}", pc.user, pc.host, d.id);
return d.id;
}
}

View File

@@ -11,7 +11,7 @@ namespace RH_Engine
{
public delegate void HandleSerial(string message);
class Program
public class Program
{
private static PC[] PCs = {
//new PC("DESKTOP-M2CIH87", "Fabian"),
@@ -226,6 +226,7 @@ namespace RH_Engine
<<<<<<< HEAD
//Console.WriteLine("id of head " + GetId(Command.STANDARD_HEAD, stream, mainCommand));
//command = mainCommand.AddModel("car", "data\\customModels\\TeslaRoadster.fbx");
@@ -244,6 +245,9 @@ namespace RH_Engine
// Console.WriteLine("Color panel: " + ReadPrefMessage(stream));
// WriteTextMessage(stream, mainCommand.SwapPanel(uuidPanel));
// Console.WriteLine("Swap panel: " + ReadPrefMessage(stream));
=======
Console.WriteLine("id of head " + GetId(Command.STANDARD_HEAD, stream, mainCommand));
>>>>>>> develop
}
/// <summary>

View File

@@ -7,7 +7,7 @@ namespace RH_Engine
{
public delegate void OnResponse(string response);
class ServerResponseReader
public class ServerResponseReader
{
public OnResponse callback
{
@@ -31,7 +31,7 @@ namespace RH_Engine
}
else
{
Console.WriteLine("Starting loop for reading");
Console.WriteLine("[SERVERRESPONSEREADER] Starting loop for reading");
while (true)
{
string res = ReadPrefMessage(Stream);