Newer
Older
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using UnityEngine;
using UnityEngine.Networking;
using UnityEngine.SceneManagement;
public class StartServer : MonoBehaviour
{
[SerializeField]
TMPro.TextMeshProUGUI WaitingText;
bool ServerRunning = false;
// Start is called before the first frame update
void Start()
{
StartCoroutine(ServerRoutine());
}
void PrepareGame()
{
WaitingText.text = "Press any key to start the game";
ServerRunning= true;
UnityEngine.Debug.Log("server fin");
}
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
string command = "\"" + Application.streamingAssetsPath + "\"/start.BAT "+ "\"" + Application.streamingAssetsPath + "\"" ;
command = command.Replace("/", @"\");
command = "\"" + command + "\"";
UnityEngine.Debug.Log(command);
ProcessStartInfo processInfo;
Process process;
//processInfo = new ProcessStartInfo("cmd.exe", "/C " + command);
bool cmd = true;
if (cmd)
{
processInfo = new ProcessStartInfo("cmd.exe", "/C " + command);
// processInfo.CreateNoWindow = false;
// processInfo.UseShellExecute = true;
process = Process.Start(processInfo);
}else
/*
*/
Process.Start("powershell.exe", command);
// *** Read the streams ***
// Warning: This approach can lead to deadlocks, see Edit #2
//string output = process.StandardOutput.ReadToEnd();
//string error = process.StandardError.ReadToEnd();
// exitCode = process.ExitCode;
// UnityEngine.Debug.Log(output);
// UnityEngine.Debug.Log(error);
// Console.WriteLine("output>>" + (String.IsNullOrEmpty(output) ? "(none)" : output));
// Console.WriteLine("error>>" + (String.IsNullOrEmpty(error) ? "(none)" : error));
// Console.WriteLine("ExitCode: " + exitCode.ToString(), "ExecuteCommand");
// process.Close();
yield return null;
}
IEnumerator ServerRoutine()
{
UnityWebRequest request = UnityWebRequest.Get("localhost:8081/scroll/list");
yield return request.SendWebRequest();
if (request.isNetworkError || request.isHttpError)
{
UnityEngine.Debug.Log("no running server");
string command = "\"" + Application.streamingAssetsPath + "\"/start.BAT " + "\"" + Application.streamingAssetsPath + "\"";
command = command.Replace("/", @"\");
command = "\"" + command + "\"";
ProcessStartInfo processInfo;
Process process;
processInfo = new ProcessStartInfo("cmd.exe", "/c " + command);
processInfo.CreateNoWindow = false;
processInfo.UseShellExecute = true;
// *** Redirect the output ***
// processInfo.RedirectStandardError = true;
//processInfo.RedirectStandardOutput = true;
process = Process.Start(processInfo);
yield return null;
while (true)
{
request = UnityWebRequest.Get("localhost:8081/scroll/list");
yield return request.SendWebRequest();
if (request.isNetworkError || request.isHttpError)
{
// UnityEngine.Debug.Log("no running server");
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
}
else
{
break;
}
yield return null;
}
// *** Read the streams ***
// Warning: This approach can lead to deadlocks, see Edit #2
//string output = process.StandardOutput.ReadToEnd();
//string error = process.StandardError.ReadToEnd();
// exitCode = process.ExitCode;
// UnityEngine.Debug.Log(output);
// UnityEngine.Debug.Log(error);
// Console.WriteLine("output>>" + (String.IsNullOrEmpty(output) ? "(none)" : output));
// Console.WriteLine("error>>" + (String.IsNullOrEmpty(error) ? "(none)" : error));
// Console.WriteLine("ExitCode: " + exitCode.ToString(), "ExecuteCommand");
process.Close();
}
PrepareGame();
yield return null;
}
// Update is called once per frame
void Update()
{
if(ServerRunning && Input.anyKey)
{
SceneManager.LoadScene(1);
}
//if(!ServerRunning) UnityEngine.Debug.Log("waiting " + ServerRunning);
}
}