RetroArch/gfx/drivers_context/d3d_ctx.cpp

383 lines
8.7 KiB
C++
Raw Normal View History

/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2017-01-22 12:40:32 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
2014-01-01 00:50:59 +00:00
* Copyright (C) 2012-2014 - OV2
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
2015-04-12 18:00:49 +00:00
#ifdef _XBOX
#include <xtl.h>
#endif
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
2016-12-02 00:51:26 +00:00
#include <compat/strl.h>
#include <string/stdstring.h>
2016-12-02 00:51:26 +00:00
2016-08-01 20:21:50 +00:00
#include "../drivers/d3d.h"
2015-04-09 03:16:02 +00:00
#include "../common/win32_common.h"
#include "../../configuration.h"
2015-11-23 11:14:53 +00:00
#include "../../verbosity.h"
2016-12-02 00:51:26 +00:00
#include "../../ui/ui_companion_driver.h"
#ifdef _MSC_VER
#ifndef _XBOX
#pragma comment( lib, "d3d9" )
#pragma comment( lib, "d3dx9" )
2016-07-16 20:32:33 +00:00
#ifdef HAVE_CG
#pragma comment( lib, "cgd3d9" )
2016-07-16 20:32:33 +00:00
#endif
#pragma comment( lib, "dxguid" )
#endif
#endif
#if defined(_XBOX1)
#define XBOX_PRESENTATIONINTERVAL D3DRS_PRESENTATIONINTERVAL
#define PresentationInterval FullScreen_PresentationInterval
#elif defined(_XBOX360)
#define XBOX_PRESENTATIONINTERVAL D3DRS_PRESENTINTERVAL
#endif
2014-10-02 19:45:09 +00:00
#ifdef _XBOX
static bool widescreen_mode = false;
#endif
2015-11-11 18:48:24 +00:00
void *dinput;
static bool gfx_ctx_d3d_set_resize(void *data, unsigned new_width, unsigned new_height)
{
2016-01-07 00:18:51 +00:00
d3d_video_t *d3d = (d3d_video_t*)video_driver_get_ptr(false);
2016-01-07 00:18:51 +00:00
if (!d3d || !d3d->dev)
2016-01-07 00:11:26 +00:00
return false;
/* No changes? */
if (new_width == d3d->video_info.width && new_height == d3d->video_info.height)
return false;
RARCH_LOG("[D3D]: Resize %ux%u.\n", new_width, new_height);
d3d->video_info.width = new_width;
d3d->video_info.height = new_height;
video_driver_set_size(&new_width, &new_height);
return true;
}
2017-05-19 01:34:53 +00:00
static void gfx_ctx_d3d_swap_buffers(void *data, void *data2)
{
d3d_video_t *d3d = (d3d_video_t*)data;
LPDIRECT3DDEVICE d3dr = (LPDIRECT3DDEVICE)d3d->dev;
2014-03-07 20:14:56 +00:00
2014-09-12 15:36:22 +00:00
d3d_swap(d3d, d3dr);
}
2017-05-19 01:34:53 +00:00
static void gfx_ctx_d3d_update_title(void *data, void *data2)
{
2017-05-19 01:34:53 +00:00
video_frame_info_t *video_info = (video_frame_info_t*)data2;
2014-03-07 20:14:56 +00:00
#ifdef _XBOX
2017-01-18 16:41:27 +00:00
if (video_info->fps_show)
{
2014-03-07 20:14:56 +00:00
MEMORYSTATUS stat;
2016-12-17 13:40:06 +00:00
char mem[128];
mem[0] = '\0';
2015-06-13 00:10:06 +00:00
2014-03-07 20:14:56 +00:00
GlobalMemoryStatus(&stat);
2014-10-27 13:35:23 +00:00
snprintf(mem, sizeof(mem), "|| MEM: %.2f/%.2fMB",
stat.dwAvailPhys/(1024.0f*1024.0f), stat.dwTotalPhys/(1024.0f*1024.0f));
2017-01-18 16:41:27 +00:00
strlcat(video_info->fps_text, mem, sizeof(video_info->fps_text));
2014-03-07 20:14:56 +00:00
}
2017-01-18 16:41:27 +00:00
#else
const ui_window_t *window = ui_companion_driver_get_window_ptr();
if (window)
{
char title[128];
title[0] = '\0';
video_driver_get_window_title(title, sizeof(title));
if (title[0])
window->set_title(&main_window, title);
}
2017-01-18 16:41:27 +00:00
#endif
}
2014-03-09 16:11:06 +00:00
static void gfx_ctx_d3d_show_mouse(void *data, bool state)
{
2014-03-09 16:11:06 +00:00
(void)data;
2015-04-10 07:30:18 +00:00
win32_show_cursor(state);
}
2014-03-09 16:11:06 +00:00
static void gfx_ctx_d3d_check_window(void *data, bool *quit,
2015-04-05 14:15:14 +00:00
bool *resize, unsigned *width,
unsigned *height, bool is_shutdown)
{
win32_check_window(quit, resize, width, height);
}
2014-03-09 16:11:06 +00:00
static bool gfx_ctx_d3d_has_focus(void *data)
{
2015-11-17 07:58:49 +00:00
return win32_has_focus();
}
2015-01-18 21:32:14 +00:00
static bool gfx_ctx_d3d_suppress_screensaver(void *data, bool enable)
{
return win32_suppress_screensaver(data, enable);
2015-01-18 21:32:14 +00:00
}
2017-01-19 01:50:56 +00:00
#ifndef _XBOX
static bool gfx_ctx_d3d_has_windowed(void *data)
{
(void)data;
return true;
}
2017-01-19 01:50:56 +00:00
#endif
2014-10-27 13:35:23 +00:00
static bool gfx_ctx_d3d_bind_api(void *data,
enum gfx_ctx_api api, unsigned major, unsigned minor)
{
2014-03-09 16:11:06 +00:00
(void)data;
(void)major;
(void)minor;
(void)api;
2015-04-05 14:15:14 +00:00
#if defined(HAVE_D3D8)
return api == GFX_CTX_DIRECT3D8_API;
2014-10-27 13:35:23 +00:00
#else
/* As long as we don't have a D3D11 implementation, we default to this */
return api == GFX_CTX_DIRECT3D9_API;
#endif
}
static void *gfx_ctx_d3d_init(video_frame_info_t *video_info, void *video_driver)
{
2015-11-11 16:57:15 +00:00
win32_monitor_init();
return video_driver;
}
2014-03-09 16:11:06 +00:00
static void gfx_ctx_d3d_destroy(void *data)
{
2014-03-09 16:11:06 +00:00
(void)data;
}
2014-10-27 13:35:23 +00:00
static void gfx_ctx_d3d_input_driver(void *data,
const char *name,
2014-10-27 13:35:23 +00:00
const input_driver_t **input, void **input_data)
{
2014-03-07 20:14:56 +00:00
#ifdef _XBOX
2017-01-16 04:04:56 +00:00
void *xinput = input_xinput.init(name);
2017-01-10 18:55:31 +00:00
*input = xinput ? (const input_driver_t*)&input_xinput : NULL;
*input_data = xinput;
2014-03-07 20:14:56 +00:00
#else
settings_t *settings = config_get_ptr();
#if _WIN32_WINNT >= 0x0501
/* winraw only available since XP */
if (string_is_equal_fast(settings->arrays.input_driver, "raw", 4))
{
*input_data = input_winraw.init(name);
if (*input_data)
{
*input = &input_winraw;
dinput = NULL;
return;
}
}
#endif
2017-01-16 04:04:56 +00:00
dinput = input_dinput.init(name);
2017-01-10 18:55:31 +00:00
*input = dinput ? &input_dinput : NULL;
*input_data = dinput;
2014-03-07 20:14:56 +00:00
#endif
2015-04-05 14:15:14 +00:00
(void)data;
2014-03-07 20:14:56 +00:00
}
2015-11-11 04:01:37 +00:00
static bool gfx_ctx_d3d_set_video_mode(void *data,
2017-01-18 16:41:27 +00:00
video_frame_info_t *video_info,
unsigned width, unsigned height,
bool fullscreen)
{
win32_show_cursor(!fullscreen);
2015-11-11 04:01:37 +00:00
return true;
}
2014-10-27 13:35:23 +00:00
static void gfx_ctx_d3d_get_video_size(void *data,
unsigned *width, unsigned *height)
2014-03-07 20:14:56 +00:00
{
2015-09-29 15:35:28 +00:00
#ifdef _XBOX
2015-01-03 19:54:49 +00:00
d3d_video_t *d3d = (d3d_video_t*)data;
2014-03-07 20:14:56 +00:00
(void)width;
(void)height;
#if defined(_XBOX360)
XVIDEO_MODE video_mode;
2014-03-07 20:14:56 +00:00
XGetVideoMode(&video_mode);
*width = video_mode.dwDisplayWidth;
*height = video_mode.dwDisplayHeight;
2014-10-03 20:26:29 +00:00
d3d->resolution_hd_enable = false;
2014-03-07 20:14:56 +00:00
if(video_mode.fIsHiDef)
{
*width = 1280;
*height = 720;
2014-10-03 20:26:29 +00:00
d3d->resolution_hd_enable = true;
2014-03-07 20:14:56 +00:00
}
else
{
2014-09-04 02:10:15 +00:00
*width = 640;
*height = 480;
2014-03-07 20:14:56 +00:00
}
2014-10-02 19:45:09 +00:00
widescreen_mode = video_mode.fIsWideScreen;
2014-03-07 20:14:56 +00:00
#elif defined(_XBOX1)
DWORD video_mode = XGetVideoFlags();
2015-04-03 00:18:33 +00:00
*width = 640;
*height = 480;
2014-03-07 20:14:56 +00:00
2015-04-03 00:18:33 +00:00
widescreen_mode = false;
/* Only valid in PAL mode, not valid for HDTV modes! */
2014-03-07 20:14:56 +00:00
if(XGetVideoStandard() == XC_VIDEO_STANDARD_PAL_I)
{
2014-10-02 19:45:09 +00:00
/* Check for 16:9 mode (PAL REGION) */
2014-03-07 20:14:56 +00:00
if(video_mode & XC_VIDEO_FLAGS_WIDESCREEN)
{
2014-10-02 19:45:09 +00:00
*width = 720;
2014-09-04 02:10:15 +00:00
//60 Hz, 720x480i
2014-03-07 20:14:56 +00:00
if(video_mode & XC_VIDEO_FLAGS_PAL_60Hz)
*height = 480;
2014-09-04 02:10:15 +00:00
else //50 Hz, 720x576i
2014-03-07 20:14:56 +00:00
*height = 576;
2014-10-02 19:45:09 +00:00
widescreen_mode = true;
2014-09-04 02:10:15 +00:00
}
2014-03-07 20:14:56 +00:00
}
else
{
2014-10-02 19:45:09 +00:00
/* Check for 16:9 mode (NTSC REGIONS) */
2014-03-07 20:14:56 +00:00
if(video_mode & XC_VIDEO_FLAGS_WIDESCREEN)
{
*width = 720;
*height = 480;
2014-10-02 19:45:09 +00:00
widescreen_mode = true;
2014-09-04 02:10:15 +00:00
}
2014-03-07 20:14:56 +00:00
}
if(XGetAVPack() == XC_AV_PACK_HDTV)
{
if(video_mode & XC_VIDEO_FLAGS_HDTV_480p)
{
2014-09-04 02:10:15 +00:00
*width = 640;
2014-03-07 20:14:56 +00:00
*height = 480;
2014-10-02 19:45:09 +00:00
widescreen_mode = false;
2014-10-22 00:05:01 +00:00
d3d->resolution_hd_enable = true;
2014-03-07 20:14:56 +00:00
}
2014-09-04 02:10:15 +00:00
else if(video_mode & XC_VIDEO_FLAGS_HDTV_720p)
2014-03-07 20:14:56 +00:00
{
2014-09-04 02:10:15 +00:00
*width = 1280;
2014-03-07 20:14:56 +00:00
*height = 720;
2014-10-02 19:45:09 +00:00
widescreen_mode = true;
2014-10-22 00:05:01 +00:00
d3d->resolution_hd_enable = true;
2014-03-07 20:14:56 +00:00
}
2014-09-04 02:10:15 +00:00
else if(video_mode & XC_VIDEO_FLAGS_HDTV_1080i)
2014-03-07 20:14:56 +00:00
{
2014-09-04 02:10:15 +00:00
*width = 1920;
2014-03-07 20:14:56 +00:00
*height = 1080;
2014-10-02 19:45:09 +00:00
widescreen_mode = true;
2014-10-22 00:05:01 +00:00
d3d->resolution_hd_enable = true;
2014-03-07 20:14:56 +00:00
}
}
#endif
#endif
}
2014-03-09 16:11:06 +00:00
static void gfx_ctx_d3d_swap_interval(void *data, unsigned interval)
2014-03-07 20:14:56 +00:00
{
d3d_video_t *d3d = (d3d_video_t*)data;
#ifdef _XBOX
2014-10-27 13:35:23 +00:00
unsigned d3d_interval = interval ?
D3DPRESENT_INTERVAL_ONE : D3DPRESENT_INTERVAL_IMMEDIATE;
2014-03-07 20:14:56 +00:00
2015-11-17 10:33:24 +00:00
d3d_set_render_state(d3d->dev, XBOX_PRESENTATIONINTERVAL, d3d_interval);
2014-03-07 20:14:56 +00:00
#endif
}
static bool gfx_ctx_d3d_get_metrics(void *data,
enum display_metric_types type, float *value)
{
2015-04-09 03:19:29 +00:00
return win32_get_metrics(data, type, value);
}
static uint32_t gfx_ctx_d3d_get_flags(void *data)
{
2016-05-05 15:35:28 +00:00
uint32_t flags = 0;
BIT32_SET(flags, GFX_CTX_FLAGS_NONE);
return flags;
}
static void gfx_ctx_d3d_set_flags(void *data, uint32_t flags)
{
(void)flags;
}
2014-09-14 04:45:47 +00:00
const gfx_ctx_driver_t gfx_ctx_d3d = {
gfx_ctx_d3d_init,
gfx_ctx_d3d_destroy,
gfx_ctx_d3d_bind_api,
2014-03-07 20:14:56 +00:00
gfx_ctx_d3d_swap_interval,
gfx_ctx_d3d_set_video_mode,
2014-03-07 20:14:56 +00:00
gfx_ctx_d3d_get_video_size,
NULL, /* get_video_output_size */
NULL, /* get_video_output_prev */
NULL, /* get_video_output_next */
gfx_ctx_d3d_get_metrics,
NULL,
gfx_ctx_d3d_update_title,
gfx_ctx_d3d_check_window,
gfx_ctx_d3d_set_resize,
gfx_ctx_d3d_has_focus,
2015-01-18 21:32:14 +00:00
gfx_ctx_d3d_suppress_screensaver,
2017-01-19 01:50:56 +00:00
#ifdef _XBOX
NULL,
#else
gfx_ctx_d3d_has_windowed,
2017-01-19 01:50:56 +00:00
#endif
gfx_ctx_d3d_swap_buffers,
gfx_ctx_d3d_input_driver,
NULL,
2014-09-16 00:16:36 +00:00
NULL,
NULL,
gfx_ctx_d3d_show_mouse,
2014-03-07 20:22:59 +00:00
"d3d",
gfx_ctx_d3d_get_flags,
2016-08-31 13:02:07 +00:00
gfx_ctx_d3d_set_flags,
NULL,
NULL
};