2014-04-09 03:18:23 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 01:00:29 +00:00
|
|
|
|
2014-04-09 03:18:23 +00:00
|
|
|
#pragma once
|
2013-09-05 01:00:29 +00:00
|
|
|
|
2014-04-09 03:18:23 +00:00
|
|
|
#include "common/common.h"
|
2014-04-24 01:43:57 +00:00
|
|
|
#include "common/scm_rev.h"
|
2014-10-24 04:17:01 +00:00
|
|
|
#include "common/string_util.h"
|
2014-09-04 01:12:58 +00:00
|
|
|
#include "common/key_map.h"
|
|
|
|
|
2013-09-05 01:00:29 +00:00
|
|
|
// Abstraction class used to provide an interface between emulation code and the frontend (e.g. SDL,
|
|
|
|
// QGLWidget, GLFW, etc...)
|
|
|
|
class EmuWindow
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
/// Data structure to store an emuwindow configuration
|
2014-09-13 00:06:13 +00:00
|
|
|
struct WindowConfig {
|
2013-09-05 01:00:29 +00:00
|
|
|
bool fullscreen;
|
|
|
|
int res_width;
|
|
|
|
int res_height;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Swap buffers to display the next frame
|
|
|
|
virtual void SwapBuffers() = 0;
|
|
|
|
|
2014-04-01 22:20:08 +00:00
|
|
|
/// Polls window events
|
|
|
|
virtual void PollEvents() = 0;
|
2013-09-05 01:00:29 +00:00
|
|
|
|
|
|
|
/// Makes the graphics context current for the caller thread
|
|
|
|
virtual void MakeCurrent() = 0;
|
|
|
|
|
|
|
|
/// Releases (dunno if this is the "right" word) the GLFW context from the caller thread
|
|
|
|
virtual void DoneCurrent() = 0;
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
virtual void ReloadSetKeymaps() = 0;
|
|
|
|
|
2014-09-09 04:46:02 +00:00
|
|
|
/// Signals a key press action to the HID module
|
|
|
|
static void KeyPressed(KeyMap::HostDeviceKey key);
|
2014-09-04 01:12:58 +00:00
|
|
|
|
2014-09-09 04:46:02 +00:00
|
|
|
/// Signals a key release action to the HID module
|
|
|
|
static void KeyReleased(KeyMap::HostDeviceKey key);
|
2014-09-04 01:12:58 +00:00
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
WindowConfig GetConfig() const {
|
2014-04-09 03:18:23 +00:00
|
|
|
return m_config;
|
|
|
|
}
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
void SetConfig(const WindowConfig& val) {
|
2014-04-09 03:18:23 +00:00
|
|
|
m_config = val;
|
|
|
|
}
|
2014-08-30 05:23:12 +00:00
|
|
|
|
|
|
|
/// Gets the size of the window in pixels
|
|
|
|
virtual void GetFramebufferSize(int* fbWidth, int* fbHeight) = 0;
|
|
|
|
|
|
|
|
int GetClientAreaWidth() const {
|
2014-04-09 03:18:23 +00:00
|
|
|
return m_client_area_width;
|
|
|
|
}
|
2013-09-05 01:00:29 +00:00
|
|
|
|
2014-04-09 03:18:23 +00:00
|
|
|
void SetClientAreaWidth(const int val) {
|
|
|
|
m_client_area_width = val;
|
|
|
|
}
|
2013-09-05 01:00:29 +00:00
|
|
|
|
2014-04-09 03:18:23 +00:00
|
|
|
int GetClientAreaHeight() const {
|
|
|
|
return m_client_area_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetClientAreaHeight(const int val) {
|
|
|
|
m_client_area_height = val;
|
|
|
|
}
|
|
|
|
|
2014-04-11 00:02:30 +00:00
|
|
|
std::string GetWindowTitle() const {
|
2014-04-09 03:18:23 +00:00
|
|
|
return m_window_title;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetWindowTitle(std::string val) {
|
|
|
|
m_window_title = val;
|
|
|
|
}
|
2013-09-05 01:00:29 +00:00
|
|
|
|
|
|
|
protected:
|
2014-10-24 04:17:01 +00:00
|
|
|
EmuWindow():
|
2014-11-17 14:27:56 +00:00
|
|
|
m_window_title(Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc)),
|
2014-10-24 04:17:01 +00:00
|
|
|
m_client_area_width(640),
|
2014-11-17 14:27:56 +00:00
|
|
|
m_client_area_height(480)
|
2014-10-24 04:17:01 +00:00
|
|
|
{}
|
2013-09-05 01:00:29 +00:00
|
|
|
virtual ~EmuWindow() {}
|
|
|
|
|
2014-04-09 03:18:23 +00:00
|
|
|
std::string m_window_title; ///< Current window title, should be used by window impl.
|
2013-09-05 01:00:29 +00:00
|
|
|
|
2014-04-09 03:18:23 +00:00
|
|
|
int m_client_area_width; ///< Current client width, should be set by window impl.
|
|
|
|
int m_client_area_height; ///< Current client height, should be set by window impl.
|
2013-09-05 01:00:29 +00:00
|
|
|
|
|
|
|
private:
|
2014-09-13 00:06:13 +00:00
|
|
|
WindowConfig m_config; ///< Internal configuration
|
2013-09-05 01:00:29 +00:00
|
|
|
|
|
|
|
};
|