1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 23:34:37 +01:00
Files
OpenRCT2/src/openrct2/interface/InteractiveConsole.h
Aaron van Geffen 2302f0d2e3 Rework Localisation includes (#23789)
* Clean up internal localisation header includes

* Remove some external localisation includes

* Remove dependency on FormatCodes.h from InteractiveConsole.h

* Reduce Formatter.h, Localisation.Date.h includes
2025-02-07 22:36:42 +01:00

58 lines
1.3 KiB
C++

/*****************************************************************************
* Copyright (c) 2014-2025 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.
*****************************************************************************/
#pragma once
#include <atomic>
#include <cstdint>
#include <string>
struct DrawPixelInfo;
struct TextInputSession;
enum class FormatToken : uint8_t;
enum class ConsoleInput : uint8_t
{
None,
LineClear,
LineExecute,
HistoryPrevious,
HistoryNext,
ScrollPrevious,
ScrollNext,
};
class InteractiveConsole
{
private:
std::atomic_flag _commandExecuting;
public:
virtual ~InteractiveConsole()
{
}
void Execute(const std::string& s);
void WriteLine(const std::string& s);
void WriteLineError(const std::string& s);
void WriteLineWarning(const std::string& s);
void WriteFormatLine(const char* format, ...);
void BeginAsyncExecution();
void EndAsyncExecution();
bool IsExecuting();
virtual void Clear() = 0;
virtual void Close() = 0;
virtual void Hide() = 0;
virtual void WriteLine(const std::string& s, FormatToken colourFormat) = 0;
};