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
|
|
|
|
|
|
|
class WindowsHost : public Host
|
|
|
|
{
|
|
|
|
public:
|
2013-07-06 17:08:59 +00:00
|
|
|
WindowsHost(HWND mainWindow, HWND displayWindow);
|
|
|
|
|
2013-06-26 07:32:49 +00:00
|
|
|
~WindowsHost()
|
|
|
|
{
|
|
|
|
UpdateConsolePosition();
|
|
|
|
}
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
void UpdateMemView();
|
|
|
|
void UpdateDisassembly();
|
|
|
|
void UpdateUI();
|
|
|
|
void SetDebugMode(bool mode);
|
|
|
|
|
|
|
|
void AddSymbol(std::string name, u32 addr, u32 size, int type);
|
|
|
|
|
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
|
|
|
|
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();
|
|
|
|
|
2012-11-30 20:49:59 +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;
|
2012-11-01 15:19:01 +00:00
|
|
|
};
|