mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
97 lines
2.5 KiB
C++
97 lines
2.5 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2019 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#include <linenoise.hpp>
|
|
#include "../Context.h"
|
|
#include "../OpenRCT2.h"
|
|
#include "../platform/Platform2.h"
|
|
#include "../scripting/ScriptEngine.h"
|
|
#include "InteractiveConsole.h"
|
|
|
|
using namespace OpenRCT2;
|
|
|
|
void StdInOutConsole::Start()
|
|
{
|
|
std::thread replThread([this]() -> void {
|
|
linenoise::SetMultiLine(true);
|
|
linenoise::SetHistoryMaxLen(32);
|
|
|
|
std::string prompt = "\033[32mopenrct2 $\x1b[0m ";
|
|
bool lastPromptQuit = false;
|
|
while (true)
|
|
{
|
|
std::string line;
|
|
std::string left = prompt;
|
|
auto quit = linenoise::Readline(left.c_str(), line);
|
|
if (quit)
|
|
{
|
|
if (lastPromptQuit)
|
|
{
|
|
openrct2_finish();
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
lastPromptQuit = true;
|
|
std::puts("(To exit, press ^C again or type exit)");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
lastPromptQuit = false;
|
|
linenoise::AddHistory(line.c_str());
|
|
Eval(line).wait();
|
|
}
|
|
}
|
|
});
|
|
replThread.detach();
|
|
}
|
|
|
|
std::future<void> StdInOutConsole::Eval(const std::string& s)
|
|
{
|
|
auto& scriptEngine = GetContext()->GetScriptEngine();
|
|
return scriptEngine.Eval(s);
|
|
}
|
|
|
|
void StdInOutConsole::Clear()
|
|
{
|
|
linenoise::linenoiseClearScreen();
|
|
}
|
|
|
|
void StdInOutConsole::Close()
|
|
{
|
|
openrct2_finish();
|
|
}
|
|
|
|
void StdInOutConsole::WriteLine(const std::string& s, uint32_t colourFormat)
|
|
{
|
|
std::string formatBegin;
|
|
if (colourFormat != FORMAT_WINDOW_COLOUR_2)
|
|
{
|
|
switch (colourFormat)
|
|
{
|
|
case FORMAT_RED:
|
|
formatBegin = "\033[31m";
|
|
break;
|
|
case FORMAT_YELLOW:
|
|
formatBegin = "\033[33m";
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (formatBegin.empty() || !Platform::IsColourTerminalSupported())
|
|
{
|
|
std::printf("%s\n", s.c_str());
|
|
}
|
|
else
|
|
{
|
|
std::printf("%s%s%s\n", formatBegin.c_str(), s.c_str(), "\x1b[0m");
|
|
}
|
|
}
|