2012-12-30 03:36:03 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP 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
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// 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 git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-09-20 15:58:42 +00:00
|
|
|
#include "headless/StubHost.h"
|
2018-03-25 16:47:56 +00:00
|
|
|
#include <thread>
|
2012-12-30 03:36:03 +00:00
|
|
|
|
|
|
|
#undef HEADLESSHOST_CLASS
|
|
|
|
#define HEADLESSHOST_CLASS WindowsHeadlessHost
|
|
|
|
|
2013-07-29 03:43:25 +00:00
|
|
|
#include "Common/CommonWindows.h"
|
2012-12-30 03:36:03 +00:00
|
|
|
|
|
|
|
// TODO: Get rid of this junk
|
|
|
|
class WindowsHeadlessHost : public HeadlessHost
|
|
|
|
{
|
|
|
|
public:
|
2017-09-20 15:58:42 +00:00
|
|
|
bool InitGraphics(std::string *error_message, GraphicsContext **ctx) override;
|
|
|
|
void ShutdownGraphics() override;
|
2012-12-30 03:36:03 +00:00
|
|
|
|
2017-09-20 15:58:42 +00:00
|
|
|
void SwapBuffers() override;
|
2013-02-18 22:25:06 +00:00
|
|
|
|
2017-09-20 15:58:42 +00:00
|
|
|
void SendDebugOutput(const std::string &output) override;
|
2012-12-30 04:49:45 +00:00
|
|
|
|
2014-08-30 16:55:40 +00:00
|
|
|
protected:
|
2012-12-30 04:49:45 +00:00
|
|
|
void LoadNativeAssets();
|
2012-12-30 03:36:03 +00:00
|
|
|
|
2018-03-25 16:47:56 +00:00
|
|
|
enum class RenderThreadState {
|
|
|
|
IDLE,
|
|
|
|
START_REQUESTED,
|
|
|
|
STARTING,
|
|
|
|
START_FAILED,
|
|
|
|
STARTED,
|
|
|
|
STOP_REQUESTED,
|
|
|
|
STOPPING,
|
|
|
|
STOPPED,
|
|
|
|
};
|
|
|
|
|
2012-12-30 03:36:03 +00:00
|
|
|
HWND hWnd;
|
|
|
|
HDC hDC;
|
|
|
|
HGLRC hRC;
|
2018-03-25 16:47:56 +00:00
|
|
|
volatile RenderThreadState threadState_ = RenderThreadState::IDLE;
|
2017-09-20 15:58:42 +00:00
|
|
|
};
|