2014-04-09 05:18:23 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 03:00:29 +02:00
|
|
|
|
2014-04-09 05:18:23 +02:00
|
|
|
#pragma once
|
2013-09-05 03:00:29 +02:00
|
|
|
|
2014-04-09 05:18:23 +02:00
|
|
|
#include "common/common.h"
|
2014-04-24 03:43:57 +02:00
|
|
|
#include "common/scm_rev.h"
|
2014-10-24 06:17:01 +02:00
|
|
|
#include "common/string_util.h"
|
2014-09-04 03:12:58 +02:00
|
|
|
#include "common/key_map.h"
|
|
|
|
|
2013-09-05 03:00:29 +02: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 02:06:13 +02:00
|
|
|
struct WindowConfig {
|
2013-09-05 03:00:29 +02:00
|
|
|
bool fullscreen;
|
|
|
|
int res_width;
|
|
|
|
int res_height;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Swap buffers to display the next frame
|
|
|
|
virtual void SwapBuffers() = 0;
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
/// Polls window events
|
|
|
|
virtual void PollEvents() = 0;
|
2013-09-05 03:00:29 +02: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 02:06:13 +02:00
|
|
|
virtual void ReloadSetKeymaps() = 0;
|
|
|
|
|
2014-09-09 06:46:02 +02:00
|
|
|
/// Signals a key press action to the HID module
|
|
|
|
static void KeyPressed(KeyMap::HostDeviceKey key);
|
2014-09-04 03:12:58 +02:00
|
|
|
|
2014-09-09 06:46:02 +02:00
|
|
|
/// Signals a key release action to the HID module
|
|
|
|
static void KeyReleased(KeyMap::HostDeviceKey key);
|
2014-09-04 03:12:58 +02:00
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
WindowConfig GetConfig() const {
|
2014-04-09 05:18:23 +02:00
|
|
|
return m_config;
|
|
|
|
}
|
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
void SetConfig(const WindowConfig& val) {
|
2014-04-09 05:18:23 +02:00
|
|
|
m_config = val;
|
|
|
|
}
|
2014-08-30 07:23:12 +02:00
|
|
|
|
|
|
|
/// Gets the size of the window in pixels
|
|
|
|
virtual void GetFramebufferSize(int* fbWidth, int* fbHeight) = 0;
|
|
|
|
|
|
|
|
int GetClientAreaWidth() const {
|
2014-04-09 05:18:23 +02:00
|
|
|
return m_client_area_width;
|
|
|
|
}
|
2013-09-05 03:00:29 +02:00
|
|
|
|
2014-04-09 05:18:23 +02:00
|
|
|
void SetClientAreaWidth(const int val) {
|
|
|
|
m_client_area_width = val;
|
|
|
|
}
|
2013-09-05 03:00:29 +02:00
|
|
|
|
2014-04-09 05:18:23 +02:00
|
|
|
int GetClientAreaHeight() const {
|
|
|
|
return m_client_area_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetClientAreaHeight(const int val) {
|
|
|
|
m_client_area_height = val;
|
|
|
|
}
|
|
|
|
|
2014-04-11 02:02:30 +02:00
|
|
|
std::string GetWindowTitle() const {
|
2014-04-09 05:18:23 +02:00
|
|
|
return m_window_title;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetWindowTitle(std::string val) {
|
|
|
|
m_window_title = val;
|
|
|
|
}
|
2013-09-05 03:00:29 +02:00
|
|
|
|
|
|
|
protected:
|
2014-10-24 06:17:01 +02:00
|
|
|
EmuWindow():
|
2014-11-17 15:27:56 +01:00
|
|
|
m_window_title(Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc)),
|
2014-10-24 06:17:01 +02:00
|
|
|
m_client_area_width(640),
|
2014-11-17 15:27:56 +01:00
|
|
|
m_client_area_height(480)
|
2014-10-24 06:17:01 +02:00
|
|
|
{}
|
2013-09-05 03:00:29 +02:00
|
|
|
virtual ~EmuWindow() {}
|
|
|
|
|
2014-04-09 05:18:23 +02:00
|
|
|
std::string m_window_title; ///< Current window title, should be used by window impl.
|
2013-09-05 03:00:29 +02:00
|
|
|
|
2014-04-09 05:18:23 +02: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 03:00:29 +02:00
|
|
|
|
|
|
|
private:
|
2014-09-13 02:06:13 +02:00
|
|
|
WindowConfig m_config; ///< Internal configuration
|
2013-09-05 03:00:29 +02:00
|
|
|
|
|
|
|
};
|