2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2014-12-15 22:09:36 +00:00
|
|
|
#pragma once
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2020-05-17 10:48:06 +00:00
|
|
|
#include <atomic>
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "LogManager.h"
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2013-07-29 03:43:25 +00:00
|
|
|
#include "CommonWindows.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
#endif
|
|
|
|
|
2015-11-03 22:22:09 +00:00
|
|
|
class ConsoleListener : public LogListener {
|
2012-11-01 15:19:01 +00:00
|
|
|
public:
|
|
|
|
ConsoleListener();
|
|
|
|
~ConsoleListener();
|
|
|
|
|
2013-10-16 05:27:03 +00:00
|
|
|
void Init(bool AutoOpen = true, int Width = 200, int Height = 100, const char * Name = "DebugConsole (PPSSPP)");
|
|
|
|
void Open();
|
2012-11-01 15:19:01 +00:00
|
|
|
void UpdateHandle();
|
|
|
|
void Close();
|
|
|
|
bool IsOpen();
|
|
|
|
void LetterSpace(int Width, int Height);
|
|
|
|
void BufferWidthHeight(int BufferWidth, int BufferHeight, int ScreenWidth, int ScreenHeight, bool BufferFirst);
|
|
|
|
void PixelSpace(int Left, int Top, int Width, int Height, bool);
|
2016-01-03 23:10:50 +00:00
|
|
|
#if defined(USING_WIN_UI)
|
2012-11-01 15:19:01 +00:00
|
|
|
COORD GetCoordinates(int BytesRead, int BufferWidth);
|
|
|
|
#endif
|
2022-12-11 04:32:12 +00:00
|
|
|
void Log(const LogMessage &message) override;
|
2012-11-01 15:19:01 +00:00
|
|
|
void ClearScreen(bool Cursor = true);
|
|
|
|
|
2012-12-23 09:46:37 +00:00
|
|
|
void Show(bool bShow);
|
|
|
|
bool Hidden() const { return bHidden; }
|
2020-05-17 10:48:06 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
private:
|
2016-01-03 23:10:50 +00:00
|
|
|
#if defined(USING_WIN_UI)
|
2015-12-26 06:43:49 +00:00
|
|
|
HWND hWnd;
|
2012-11-01 15:19:01 +00:00
|
|
|
HANDLE hConsole;
|
2012-12-23 09:46:37 +00:00
|
|
|
|
2013-06-08 00:32:07 +00:00
|
|
|
static unsigned int WINAPI RunThread(void *lpParam);
|
2012-12-23 09:46:37 +00:00
|
|
|
void LogWriterThread();
|
|
|
|
void SendToThread(LogTypes::LOG_LEVELS Level, const char *Text);
|
2013-01-30 16:19:25 +00:00
|
|
|
void WriteToConsole(LogTypes::LOG_LEVELS Level, const char *Text, size_t Len);
|
2012-12-23 09:46:37 +00:00
|
|
|
|
2013-06-02 05:18:21 +00:00
|
|
|
static int refCount;
|
|
|
|
static HANDLE hThread;
|
|
|
|
static HANDLE hTriggerEvent;
|
|
|
|
static CRITICAL_SECTION criticalSection;
|
2012-12-23 09:46:37 +00:00
|
|
|
|
2013-06-02 05:18:21 +00:00
|
|
|
static char *logPending;
|
2020-08-16 12:11:56 +00:00
|
|
|
static std::atomic<uint32_t> logPendingReadPos;
|
|
|
|
static std::atomic<uint32_t> logPendingWritePos;
|
2013-10-16 05:27:03 +00:00
|
|
|
|
2022-12-11 05:09:50 +00:00
|
|
|
int openWidth_ = 0;
|
|
|
|
int openHeight_ = 0;
|
2013-10-16 05:27:03 +00:00
|
|
|
std::wstring title_;
|
2012-11-01 15:19:01 +00:00
|
|
|
#endif
|
2012-12-23 09:46:37 +00:00
|
|
|
bool bHidden;
|
2012-11-01 15:19:01 +00:00
|
|
|
bool bUseColor;
|
|
|
|
};
|