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"
|
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
|
|
|
|
struct Config{
|
|
|
|
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-04-09 03:18:23 +00:00
|
|
|
Config GetConfig() const {
|
|
|
|
return m_config;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetConfig(const Config& val) {
|
|
|
|
m_config = val;
|
|
|
|
}
|
2013-09-05 01:00:29 +00:00
|
|
|
|
2014-04-09 03:18:23 +00:00
|
|
|
int GetClientAreaWidth() const {
|
|
|
|
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-04-09 03:18:23 +00:00
|
|
|
EmuWindow() : m_client_area_width(640), m_client_area_height(480) {
|
2013-09-05 01:00:29 +00:00
|
|
|
char window_title[255];
|
2014-04-24 02:49:55 +00:00
|
|
|
sprintf(window_title, "Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc);
|
2014-04-09 03:18:23 +00:00
|
|
|
m_window_title = window_title;
|
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-04-09 03:18:23 +00:00
|
|
|
Config m_config; ///< Internal configuration
|
2013-09-05 01:00:29 +00:00
|
|
|
|
|
|
|
};
|