2013-03-10 22:08:57 +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/.
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "../Core/Host.h"
|
2012-11-12 17:32:35 +00:00
|
|
|
#include "InputDevice.h"
|
2013-07-06 17:08:59 +00:00
|
|
|
#include "KeyboardDevice.h"
|
2012-11-12 17:32:35 +00:00
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-08-12 21:26:01 +00:00
|
|
|
extern float mouseDeltaX;
|
|
|
|
extern float mouseDeltaY;
|
|
|
|
|
2014-06-29 20:13:53 +00:00
|
|
|
class WindowsHost : public Host
|
|
|
|
{
|
2012-11-01 15:19:01 +00:00
|
|
|
public:
|
2014-06-29 20:13:53 +00:00
|
|
|
WindowsHost(HWND mainWindow, HWND displayWindow);
|
|
|
|
|
|
|
|
~WindowsHost()
|
|
|
|
{
|
2013-06-26 07:32:49 +00:00
|
|
|
UpdateConsolePosition();
|
|
|
|
}
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
void UpdateMemView();
|
|
|
|
void UpdateDisassembly();
|
|
|
|
void UpdateUI();
|
2014-06-29 20:13:53 +00:00
|
|
|
virtual void UpdateScreen();
|
2012-11-01 15:19:01 +00:00
|
|
|
void SetDebugMode(bool mode);
|
|
|
|
|
2013-03-10 22:08:57 +00:00
|
|
|
bool InitGL(std::string *error_message);
|
2013-03-30 22:32:34 +00:00
|
|
|
void PollControllers(InputState &input_state);
|
2012-11-01 15:19:01 +00:00
|
|
|
void ShutdownGL();
|
|
|
|
|
|
|
|
void InitSound(PMixer *mixer);
|
|
|
|
void UpdateSound();
|
|
|
|
void ShutdownSound();
|
|
|
|
|
|
|
|
bool IsDebuggingEnabled();
|
|
|
|
void BootDone();
|
|
|
|
bool AttemptLoadSymbolMap();
|
2013-03-31 04:42:43 +00:00
|
|
|
void SaveSymbolMap();
|
2012-11-30 20:49:59 +00:00
|
|
|
void SetWindowTitle(const char *message);
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2014-06-29 20:13:53 +00:00
|
|
|
virtual bool GPUDebuggingActive();
|
|
|
|
virtual void GPUNotifyCommand(u32 pc);
|
|
|
|
virtual void GPUNotifyDisplay(u32 framebuf, u32 stride, int format);
|
|
|
|
virtual void GPUNotifyDraw();
|
|
|
|
virtual void GPUNotifyTextureAttachment(u32 addr);
|
|
|
|
virtual bool GPUAllowTextureCache(u32 addr);
|
|
|
|
virtual void ToggleDebugConsoleVisibility();
|
2013-09-22 17:27:09 +00:00
|
|
|
|
2014-06-29 20:13:53 +00:00
|
|
|
virtual bool CanCreateShortcut() {return false;} // Turn on when fixed
|
|
|
|
virtual bool CreateDesktopShortcut(std::string argumentPath, std::string title);
|
2013-08-26 17:00:16 +00:00
|
|
|
|
2014-06-29 20:13:53 +00:00
|
|
|
virtual void GoFullscreen(bool);
|
2013-10-13 17:24:49 +00:00
|
|
|
|
2013-07-06 17:08:59 +00:00
|
|
|
std::shared_ptr<KeyboardDevice> keyboard;
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
private:
|
2013-06-26 07:32:49 +00:00
|
|
|
void SetConsolePosition();
|
|
|
|
void UpdateConsolePosition();
|
|
|
|
|
2014-06-29 20:13:53 +00:00
|
|
|
HWND displayWindow_;
|
|
|
|
HWND mainWindow_;
|
2013-07-06 17:08:59 +00:00
|
|
|
|
2012-11-12 17:32:35 +00:00
|
|
|
std::list<std::shared_ptr<InputDevice>> input;
|
2013-08-06 23:38:54 +00:00
|
|
|
};
|