RetroArch/tasks/task_screenshot.c

407 lines
11 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* 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
* Copyright (C) 2016-2017 - Brad Parker
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2011-05-15 14:54:43 +00:00
* 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.
*
2012-04-21 21:13:50 +00:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2011-05-15 14:54:43 +00:00
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2011-05-15 14:54:43 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
2016-09-19 01:41:55 +00:00
#ifdef HAVE_CONFIG_H
#include "../config.h"
#endif
#ifdef _XBOX1
#include <xtl.h>
#include <xgraphics.h>
#endif
2011-05-15 14:54:43 +00:00
#include <stdio.h>
#include <stddef.h>
2011-05-15 14:54:43 +00:00
#include <time.h>
#include <boolean.h>
2011-05-15 14:54:43 +00:00
#include <stdint.h>
#include <string.h>
#include <file/file_path.h>
#include <compat/strl.h>
2016-05-17 13:02:25 +00:00
#include <string/stdstring.h>
#include <gfx/scaler/scaler.h>
2016-11-08 14:35:24 +00:00
#include <gfx/video_frame.h>
2016-06-07 04:14:28 +00:00
#ifdef HAVE_RBMP
2015-09-19 02:40:30 +00:00
#include <formats/rbmp.h>
2016-06-07 04:14:28 +00:00
#endif
2015-09-19 02:40:30 +00:00
#ifdef HAVE_RPNG
#include <formats/rpng.h>
#define IMG_EXT "png"
#else
#define IMG_EXT "bmp"
#endif
#include "../defaults.h"
2016-09-01 03:36:52 +00:00
#include "../configuration.h"
#include "../runloop.h"
2016-09-17 17:41:16 +00:00
#include "../paths.h"
#include "../msg_hash.h"
#include "../gfx/video_driver.h"
2011-05-15 14:54:43 +00:00
#include "tasks_internal.h"
2016-11-21 08:06:31 +00:00
typedef struct
{
2016-10-03 02:41:37 +00:00
#ifdef _XBOX1
D3DSurface *surf;
2016-01-25 00:01:57 +00:00
#endif
2016-10-03 02:41:37 +00:00
char filename[PATH_MAX_LENGTH];
char shotname[256];
uint8_t *out_buffer;
struct scaler_ctx scaler;
const void *frame;
unsigned width;
unsigned height;
int pitch;
bool bgr24;
bool silence;
2016-10-03 02:41:37 +00:00
void *userbuf;
bool is_idle;
bool is_paused;
bool history_list_enable;
2017-01-24 00:58:36 +00:00
unsigned pixel_format_type;
2016-10-03 02:41:37 +00:00
} screenshot_task_state_t;
2015-09-27 00:32:30 +00:00
2016-10-03 02:41:37 +00:00
/**
* task_screenshot_handler:
* @task : the task being worked on
*
* Saves a screenshot to disk.
**/
static void task_screenshot_handler(retro_task_t *task)
{
2017-01-24 00:58:36 +00:00
#ifdef HAVE_RBMP
enum rbmp_source_type bmp_type = RBMP_SOURCE_TYPE_DONT_CARE;
#endif
2016-10-03 02:41:37 +00:00
screenshot_task_state_t *state = (screenshot_task_state_t*)task->state;
2017-01-24 00:58:36 +00:00
struct scaler_ctx *scaler = (struct scaler_ctx*)&state->scaler;
2016-11-21 08:06:31 +00:00
bool ret = false;
2016-10-03 02:41:37 +00:00
if (task_get_progress(task) == 100)
{
task_set_finished(task, true);
2015-09-27 00:32:30 +00:00
2016-10-03 02:41:37 +00:00
if (state->userbuf)
free(state->userbuf);
free(state);
return;
}
2017-01-24 13:15:36 +00:00
#ifdef HAVE_RBMP
(void)bmp_type;
#endif
2016-05-04 14:37:58 +00:00
2016-10-03 02:41:37 +00:00
#if defined(_XBOX1)
if (XGWriteSurfaceToFile(state->surf, state->filename) == S_OK)
2015-09-27 00:32:30 +00:00
ret = true;
2016-10-03 02:41:37 +00:00
state->surf->Release();
#elif defined(HAVE_RPNG)
2017-01-24 00:58:36 +00:00
if (state->bgr24)
scaler->in_fmt = SCALER_FMT_BGR24;
else if (state->pixel_format_type == RETRO_PIXEL_FORMAT_XRGB8888)
scaler->in_fmt = SCALER_FMT_ARGB8888;
else
scaler->in_fmt = SCALER_FMT_RGB565;
2017-01-24 00:58:36 +00:00
video_frame_convert_to_bgr24(
scaler,
state->out_buffer,
(const uint8_t*)state->frame + ((int)state->height - 1)
* state->pitch,
state->width, state->height,
-state->pitch);
2015-09-27 00:32:30 +00:00
2016-10-03 02:41:37 +00:00
scaler_ctx_gen_reset(&state->scaler);
2015-09-27 00:32:30 +00:00
2016-03-20 04:12:53 +00:00
ret = rpng_save_image_bgr24(
2016-10-03 02:41:37 +00:00
state->filename,
state->out_buffer,
state->width,
state->height,
state->width * 3
2016-03-20 04:12:53 +00:00
);
2016-10-03 02:41:37 +00:00
free(state->out_buffer);
2016-06-07 04:14:28 +00:00
#elif defined(HAVE_RBMP)
2016-10-03 02:41:37 +00:00
if (state->bgr24)
2016-03-20 04:12:53 +00:00
bmp_type = RBMP_SOURCE_TYPE_BGR24;
2017-01-24 00:58:36 +00:00
else if (state->pixel_format_type == RETRO_PIXEL_FORMAT_XRGB8888)
2016-03-20 14:07:49 +00:00
bmp_type = RBMP_SOURCE_TYPE_XRGB888;
2016-03-20 04:12:53 +00:00
2016-10-03 02:41:37 +00:00
ret = rbmp_save_image(state->filename,
state->frame,
state->width,
state->height,
state->pitch,
2016-03-20 04:12:53 +00:00
bmp_type);
2015-09-27 00:32:30 +00:00
#endif
#ifdef HAVE_IMAGEVIEWER
if (ret && !state->silence)
2016-12-24 02:21:29 +00:00
{
if (
state->history_list_enable
&& g_defaults.image_history
&& playlist_push(
g_defaults.image_history,
state->filename,
NULL,
"builtin",
"imageviewer",
NULL,
NULL
)
)
playlist_write_file(g_defaults.image_history);
2016-12-24 02:21:29 +00:00
}
2016-10-03 02:41:37 +00:00
#endif
task_set_progress(task, 100);
2016-10-03 02:41:37 +00:00
if (!ret)
{
char *msg = strdup(msg_hash_to_str(MSG_FAILED_TO_TAKE_SCREENSHOT));
runloop_msg_queue_push(msg, 1, state->is_paused ? 1 : 180, true);
free(msg);
}
2016-10-03 02:41:37 +00:00
}
/* Take frame bottom-up. */
static bool screenshot_dump(
const char *name_base,
const void *frame,
unsigned width,
unsigned height,
int pitch, bool bgr24,
void *userbuf, bool savestate,
bool is_idle,
2017-01-03 05:57:55 +00:00
bool is_paused)
2016-10-03 02:41:37 +00:00
{
2017-01-03 03:30:02 +00:00
char screenshot_path[PATH_MAX_LENGTH];
2017-01-24 00:58:36 +00:00
uint8_t *buf = NULL;
2016-11-21 08:06:31 +00:00
#ifdef _XBOX1
d3d_video_t *d3d = (d3d_video_t*)video_driver_get_ptr(true);
#endif
2016-10-03 02:41:37 +00:00
settings_t *settings = config_get_ptr();
2016-11-21 08:06:31 +00:00
retro_task_t *task = (retro_task_t*)calloc(1, sizeof(*task));
2016-10-03 02:41:37 +00:00
screenshot_task_state_t *state = (screenshot_task_state_t*)
calloc(1, sizeof(*state));
2017-01-03 03:30:02 +00:00
const char *screenshot_dir = settings->directory.screenshot;
screenshot_path[0] = '\0';
if (string_is_empty(screenshot_dir))
2017-01-03 03:30:02 +00:00
{
fill_pathname_basedir(screenshot_path, name_base,
sizeof(screenshot_path));
screenshot_dir = screenshot_path;
}
2016-10-03 02:41:37 +00:00
state->is_idle = is_idle;
2017-01-03 05:57:55 +00:00
state->is_paused = is_paused;
state->bgr24 = bgr24;
state->height = height;
state->width = width;
state->pitch = pitch;
state->frame = frame;
state->userbuf = userbuf;
state->silence = savestate;
state->history_list_enable = settings->history_list_enable;
2017-01-24 00:58:36 +00:00
state->pixel_format_type = video_driver_get_pixel_format();
2016-10-03 02:41:37 +00:00
if (savestate)
2017-01-24 00:58:36 +00:00
snprintf(state->filename,
sizeof(state->filename), "%s.png", name_base);
2016-10-03 02:41:37 +00:00
else
{
if (settings->auto_screenshot_filename)
fill_str_dated_filename(state->shotname, path_basename(name_base),
IMG_EXT, sizeof(state->shotname));
else
snprintf(state->shotname, sizeof(state->shotname),
"%s.png", path_basename(name_base));
2016-10-03 02:41:37 +00:00
2017-01-03 03:30:02 +00:00
fill_pathname_join(state->filename, screenshot_dir,
state->shotname, sizeof(state->filename));
}
2016-10-03 02:41:37 +00:00
#ifdef _XBOX1
d3d->dev->GetBackBuffer(-1, D3DBACKBUFFER_TYPE_MONO, &state->surf);
#elif defined(HAVE_RPNG)
2017-01-24 00:58:36 +00:00
buf = (uint8_t*)malloc(width * height * 3);
if (!buf)
{
if (task)
free(task);
free(state);
2016-10-03 02:41:37 +00:00
return false;
}
2017-01-24 00:58:36 +00:00
state->out_buffer = buf;
#endif
2017-01-24 00:58:36 +00:00
task->type = TASK_TYPE_BLOCKING;
task->state = state;
task->handler = task_screenshot_handler;
2017-01-03 03:37:52 +00:00
2016-12-01 19:32:13 +00:00
if (!savestate)
2017-01-24 00:58:36 +00:00
task->title = strdup(msg_hash_to_str(MSG_TAKING_SCREENSHOT));
2017-01-03 03:37:52 +00:00
2016-10-03 02:41:37 +00:00
task_queue_ctl(TASK_QUEUE_CTL_PUSH, task);
return true;
2015-09-27 00:32:30 +00:00
}
2016-08-24 12:04:22 +00:00
#if !defined(VITA)
2017-01-03 05:57:55 +00:00
static bool take_screenshot_viewport(const char *name_base, bool savestate,
bool is_idle, bool is_paused)
{
2016-12-19 18:04:52 +00:00
struct video_viewport vp;
2015-06-12 15:00:37 +00:00
uint8_t *buffer = NULL;
bool retval = false;
2016-12-19 18:04:52 +00:00
vp.x = 0;
vp.y = 0;
vp.width = 0;
vp.height = 0;
vp.full_width = 0;
vp.full_height = 0;
2016-05-08 12:00:51 +00:00
video_driver_get_viewport_info(&vp);
if (!vp.width || !vp.height)
return false;
2016-05-17 13:00:18 +00:00
buffer = (uint8_t*)malloc(vp.width * vp.height * 3);
2016-10-03 02:41:37 +00:00
2016-05-17 13:00:18 +00:00
if (!buffer)
return false;
if (!video_driver_read_viewport(buffer, is_idle))
2016-10-03 02:41:37 +00:00
goto error;
/* Data read from viewport is in bottom-up order, suitable for BMP. */
2017-01-03 03:30:02 +00:00
if (!screenshot_dump(name_base,
buffer, vp.width, vp.height,
vp.width * 3, true, buffer, savestate, is_idle, is_paused))
2016-10-03 02:41:37 +00:00
goto error;
2016-10-03 02:41:37 +00:00
return true;
2016-10-03 02:41:37 +00:00
error:
if (buffer)
free(buffer);
return retval;
}
2016-08-24 12:04:22 +00:00
#endif
static bool take_screenshot_raw(const char *name_base, void *userbuf,
bool savestate, bool is_idle, bool is_paused)
{
size_t pitch;
2016-11-21 08:06:31 +00:00
unsigned width, height;
2015-06-12 15:00:37 +00:00
const void *data = NULL;
2015-06-17 12:29:09 +00:00
video_driver_cached_frame_get(&data, &width, &height, &pitch);
/* Negative pitch is needed as screenshot takes bottom-up,
* but we use top-down.
*/
2017-01-03 03:30:02 +00:00
if (!screenshot_dump(name_base,
(const uint8_t*)data + (height - 1) * pitch,
width, height, (int)(-pitch), false, userbuf, savestate, is_idle, is_paused))
return false;
return true;
}
2017-01-03 05:57:55 +00:00
static bool take_screenshot_choice(const char *name_base, bool savestate,
bool is_paused, bool is_idle)
{
2017-01-03 03:30:02 +00:00
size_t old_pitch;
unsigned old_width, old_height;
2017-01-03 03:40:11 +00:00
bool ret = false;
void *frame_data = NULL;
const void* old_data = NULL;
settings_t *settings = config_get_ptr();
const char *screenshot_dir = settings->directory.screenshot;
/* No way to infer screenshot directory. */
2017-01-03 03:40:11 +00:00
if ( string_is_empty(screenshot_dir)
2016-11-27 23:59:58 +00:00
&& string_is_empty(name_base))
return false;
2016-05-08 12:00:51 +00:00
if (video_driver_supports_viewport_read())
{
/* Avoid taking screenshot of GUI overlays. */
video_driver_set_texture_enable(false, false);
2017-01-03 05:57:55 +00:00
if (!is_idle)
video_driver_cached_frame();
#if defined(VITA)
return take_screenshot_raw(name_base, NULL, savestate, is_idle, is_paused);
#else
return take_screenshot_viewport(name_base, savestate, is_idle, is_paused);
#endif
}
2016-02-03 15:13:37 +00:00
2016-05-08 12:00:51 +00:00
if (!video_driver_cached_frame_has_valid_framebuffer())
return take_screenshot_raw(name_base, NULL, savestate, is_idle, is_paused);
2016-02-03 15:13:37 +00:00
2017-01-03 03:30:02 +00:00
if (!video_driver_supports_read_frame_raw())
return false;
2016-01-30 02:08:33 +00:00
2017-01-03 03:30:02 +00:00
video_driver_cached_frame_get(&old_data, &old_width, &old_height,
&old_pitch);
2017-01-03 03:30:02 +00:00
frame_data = video_driver_read_frame_raw(
&old_width, &old_height, &old_pitch);
2017-01-03 03:30:02 +00:00
video_driver_cached_frame_set(old_data, old_width, old_height,
old_pitch);
2016-01-30 02:08:33 +00:00
2017-01-03 03:30:02 +00:00
if (frame_data)
{
video_driver_set_cached_frame_ptr(frame_data);
if (take_screenshot_raw(name_base, frame_data, savestate, is_idle, is_paused))
2017-01-03 03:30:02 +00:00
ret = true;
}
2017-01-03 03:30:02 +00:00
return ret;
2016-01-30 02:08:33 +00:00
}
2016-12-06 05:52:57 +00:00
bool take_screenshot(const char *name_base, bool silence)
2016-11-28 00:57:48 +00:00
{
2017-01-25 15:57:22 +00:00
bool is_paused = false;
bool is_idle = false;
bool is_slowmotion = false;
bool is_perfcnt_enable = false;
bool ret = false;
2017-01-23 14:13:31 +00:00
2017-01-25 15:57:22 +00:00
runloop_get_status(&is_paused, &is_idle, &is_slowmotion, &is_perfcnt_enable);
2017-01-23 14:13:31 +00:00
ret = take_screenshot_choice(name_base, silence, is_paused, is_idle);
2016-11-28 00:57:48 +00:00
2017-01-03 05:57:55 +00:00
if (is_paused && !is_idle)
2016-11-28 00:57:48 +00:00
video_driver_cached_frame();
return ret;
}