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-10-12 16:14:57 +00:00
|
|
|
return config;
|
2014-04-09 03:18:23 +00:00
|
|
|
}
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
void SetConfig(const WindowConfig& val) {
|
2014-10-12 16:14:57 +00:00
|
|
|
config = val;
|
2014-04-09 03:18:23 +00:00
|
|
|
}
|
2014-08-30 05:23:12 +00:00
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
/**
|
|
|
|
* Gets the size of the framebuffer in pixels
|
|
|
|
*/
|
|
|
|
const std::pair<unsigned,unsigned> GetFramebufferSize() const {
|
|
|
|
return framebuffer_size;
|
2014-04-09 03:18:23 +00:00
|
|
|
}
|
2013-09-05 01:00:29 +00:00
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
/**
|
|
|
|
* Gets window client area width in logical coordinates
|
|
|
|
*/
|
|
|
|
std::pair<unsigned,unsigned> GetClientAreaSize() const {
|
|
|
|
return std::make_pair(client_area_width, client_area_height);
|
2014-04-09 03:18:23 +00:00
|
|
|
}
|
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
std::string GetWindowTitle() const {
|
|
|
|
return window_title;
|
2014-04-09 03:18:23 +00:00
|
|
|
}
|
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
void SetWindowTitle(const std::string& val) {
|
|
|
|
window_title = val;
|
2014-04-09 03:18:23 +00:00
|
|
|
}
|
2013-09-05 01:00:29 +00:00
|
|
|
|
|
|
|
protected:
|
2014-10-12 16:14:57 +00:00
|
|
|
EmuWindow() : // TODO: What the hell... -.- - don't hardcode dimensions here without applying them in a sensible manner...
|
|
|
|
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-10-12 16:14:57 +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-10-12 16:14:57 +00:00
|
|
|
std::pair<unsigned,unsigned> NotifyFramebufferSizeChanged(const std::pair<unsigned,unsigned>& size) {
|
|
|
|
framebuffer_size = size;
|
|
|
|
}
|
2013-09-05 01:00:29 +00:00
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
void NotifyClientAreaSizeChanged(std::pair<unsigned,unsigned> size) {
|
|
|
|
client_area_width = size.first;
|
|
|
|
client_area_height = size.second;
|
|
|
|
}
|
2013-09-05 01:00:29 +00:00
|
|
|
|
|
|
|
private:
|
2014-10-12 16:14:57 +00:00
|
|
|
std::string window_title; ///< Current window title, should be used by window impl.
|
|
|
|
|
|
|
|
std::pair<unsigned,unsigned> framebuffer_size;
|
|
|
|
|
|
|
|
unsigned client_area_width; ///< Current client width, should be set by window impl.
|
|
|
|
unsigned client_area_height; ///< Current client height, should be set by window impl.
|
2013-09-05 01:00:29 +00:00
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
WindowConfig config; ///< Internal configuration
|
2013-09-05 01:00:29 +00:00
|
|
|
};
|