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
|
2019-02-22 21:31:54 +00:00
|
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
2016-03-10 22:36:46 +00:00
|
|
|
*
|
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
|
|
|
|
|
2011-05-15 14:54:43 +00:00
|
|
|
#include <stdio.h>
|
2014-09-11 22:11:08 +00:00
|
|
|
#include <stddef.h>
|
2011-05-15 14:54:43 +00:00
|
|
|
#include <time.h>
|
2014-10-21 03:05:52 +00:00
|
|
|
#include <boolean.h>
|
2011-05-15 14:54:43 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
2015-06-29 22:38:10 +00:00
|
|
|
|
|
|
|
#include <file/file_path.h>
|
|
|
|
#include <compat/strl.h>
|
2016-05-17 13:02:25 +00:00
|
|
|
#include <string/stdstring.h>
|
2016-05-17 12:31:33 +00:00
|
|
|
#include <gfx/scaler/scaler.h>
|
2016-11-08 14:35:24 +00:00
|
|
|
#include <gfx/video_frame.h>
|
2015-06-29 22:38:10 +00:00
|
|
|
|
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
|
|
|
|
2016-08-02 13:34:48 +00:00
|
|
|
#ifdef HAVE_RPNG
|
2015-06-29 22:38:10 +00:00
|
|
|
#include <formats/rpng.h>
|
2015-09-19 00:52:23 +00:00
|
|
|
#define IMG_EXT "png"
|
|
|
|
#else
|
|
|
|
#define IMG_EXT "bmp"
|
|
|
|
#endif
|
2015-06-29 22:38:10 +00:00
|
|
|
|
2020-02-17 20:28:42 +00:00
|
|
|
#if defined(HAVE_GFX_WIDGETS)
|
2020-02-17 00:54:07 +00:00
|
|
|
#include "../gfx/gfx_widgets.h"
|
2019-04-08 14:39:50 +00:00
|
|
|
#endif
|
|
|
|
|
2016-07-30 23:20:00 +00:00
|
|
|
#include "../defaults.h"
|
2017-11-25 22:06:25 +00:00
|
|
|
#include "../command.h"
|
2016-09-01 03:36:52 +00:00
|
|
|
#include "../configuration.h"
|
2017-05-11 07:11:46 +00:00
|
|
|
#include "../retroarch.h"
|
2016-09-17 17:41:16 +00:00
|
|
|
#include "../paths.h"
|
2016-05-17 12:31:33 +00:00
|
|
|
#include "../msg_hash.h"
|
2019-03-01 17:05:14 +00:00
|
|
|
#include "../verbosity.h"
|
2016-05-04 14:34:13 +00:00
|
|
|
|
2016-07-30 23:20:00 +00:00
|
|
|
#include "tasks_internal.h"
|
|
|
|
|
2017-05-13 20:28:19 +00:00
|
|
|
typedef struct screenshot_task_state screenshot_task_state_t;
|
|
|
|
|
|
|
|
struct screenshot_task_state
|
2016-11-21 08:06:31 +00:00
|
|
|
{
|
2016-10-03 02:41:37 +00:00
|
|
|
bool bgr24;
|
2016-12-11 09:34:12 +00:00
|
|
|
bool silence;
|
2017-01-22 17:17:48 +00:00
|
|
|
bool is_idle;
|
2017-01-03 03:42:10 +00:00
|
|
|
bool is_paused;
|
2017-01-03 03:35:13 +00:00
|
|
|
bool history_list_enable;
|
2020-01-04 11:04:00 +00:00
|
|
|
bool pl_fuzzy_archive_match;
|
|
|
|
bool pl_use_old_format;
|
2020-04-21 15:44:26 +00:00
|
|
|
bool pl_compression;
|
2020-03-07 18:14:45 +00:00
|
|
|
bool widgets_ready;
|
|
|
|
|
2017-09-29 20:58:32 +00:00
|
|
|
int pitch;
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2017-01-24 00:58:36 +00:00
|
|
|
unsigned pixel_format_type;
|
2020-03-07 18:14:45 +00:00
|
|
|
|
2017-09-29 20:58:32 +00:00
|
|
|
char filename[PATH_MAX_LENGTH];
|
2018-11-22 14:45:52 +00:00
|
|
|
char shotname[256];
|
2020-03-07 18:14:45 +00:00
|
|
|
|
2017-09-29 20:58:32 +00:00
|
|
|
struct scaler_ctx scaler;
|
2020-03-07 18:14:45 +00:00
|
|
|
|
|
|
|
uint8_t *out_buffer;
|
|
|
|
const void *frame;
|
|
|
|
void *userbuf;
|
2017-05-13 20:28:19 +00:00
|
|
|
};
|
2015-09-27 00:32:30 +00:00
|
|
|
|
2018-08-19 03:08:55 +00:00
|
|
|
static bool screenshot_dump_direct(screenshot_task_state_t *state)
|
2016-10-03 02:41:37 +00:00
|
|
|
{
|
2019-04-13 02:56:11 +00:00
|
|
|
struct scaler_ctx *scaler = (struct scaler_ctx*)&state->scaler;
|
|
|
|
bool ret = false;
|
2016-05-04 14:37:58 +00:00
|
|
|
|
2018-02-04 23:29:05 +00:00
|
|
|
#if defined(HAVE_RPNG)
|
2017-01-24 00:58:36 +00:00
|
|
|
if (state->bgr24)
|
2019-04-13 02:56:11 +00:00
|
|
|
scaler->in_fmt = SCALER_FMT_BGR24;
|
2017-01-24 00:58:36 +00:00
|
|
|
else if (state->pixel_format_type == RETRO_PIXEL_FORMAT_XRGB8888)
|
2019-04-13 02:56:11 +00:00
|
|
|
scaler->in_fmt = SCALER_FMT_ARGB8888;
|
2017-01-24 00:58:36 +00:00
|
|
|
else
|
2019-04-13 02:56:11 +00:00
|
|
|
scaler->in_fmt = SCALER_FMT_RGB565;
|
2016-11-08 14:26:15 +00:00
|
|
|
|
2017-01-24 00:58:36 +00:00
|
|
|
video_frame_convert_to_bgr24(
|
|
|
|
scaler,
|
|
|
|
state->out_buffer,
|
2017-12-12 07:55:31 +00:00
|
|
|
(const uint8_t*)state->frame + ((int)state->height - 1)
|
2017-01-24 00:58:36 +00:00
|
|
|
* 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)
|
2019-04-13 02:56:11 +00:00
|
|
|
{
|
|
|
|
enum rbmp_source_type bmp_type = RBMP_SOURCE_TYPE_DONT_CARE;
|
|
|
|
if (state->bgr24)
|
|
|
|
bmp_type = RBMP_SOURCE_TYPE_BGR24;
|
|
|
|
else if (state->pixel_format_type == RETRO_PIXEL_FORMAT_XRGB8888)
|
|
|
|
bmp_type = RBMP_SOURCE_TYPE_XRGB888;
|
|
|
|
|
|
|
|
ret = rbmp_save_image(state->filename,
|
|
|
|
state->frame,
|
|
|
|
state->width,
|
|
|
|
state->height,
|
|
|
|
state->pitch,
|
|
|
|
bmp_type);
|
|
|
|
}
|
2015-09-27 00:32:30 +00:00
|
|
|
#endif
|
|
|
|
|
2018-08-19 03:08:55 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* task_screenshot_handler:
|
|
|
|
* @task : the task being worked on
|
|
|
|
*
|
|
|
|
* Saves a screenshot to disk.
|
|
|
|
**/
|
|
|
|
static void task_screenshot_handler(retro_task_t *task)
|
|
|
|
{
|
2020-04-30 10:25:53 +00:00
|
|
|
screenshot_task_state_t *state = NULL;
|
2018-08-19 03:08:55 +00:00
|
|
|
bool ret = false;
|
|
|
|
|
2020-04-30 10:25:53 +00:00
|
|
|
if (!task)
|
|
|
|
return;
|
2018-08-19 03:08:55 +00:00
|
|
|
|
2020-04-30 10:25:53 +00:00
|
|
|
state = (screenshot_task_state_t*)task->state;
|
2019-03-01 17:05:14 +00:00
|
|
|
|
2020-04-30 10:25:53 +00:00
|
|
|
if (!state)
|
|
|
|
goto task_finished;
|
2018-08-19 03:08:55 +00:00
|
|
|
|
2020-04-30 10:25:53 +00:00
|
|
|
if (task_get_cancelled(task))
|
|
|
|
goto task_finished;
|
|
|
|
|
|
|
|
if (task_get_progress(task) == 100)
|
|
|
|
goto task_finished;
|
2018-08-19 03:08:55 +00:00
|
|
|
|
2020-04-30 10:25:53 +00:00
|
|
|
/* Take screenshot */
|
2018-08-19 03:08:55 +00:00
|
|
|
ret = screenshot_dump_direct(state);
|
|
|
|
|
2020-04-30 10:25:53 +00:00
|
|
|
/* Push screenshot to image history playlist */
|
2016-07-31 12:22:43 +00:00
|
|
|
#ifdef HAVE_IMAGEVIEWER
|
2017-12-12 07:55:31 +00:00
|
|
|
if ( ret &&
|
2017-11-25 21:33:43 +00:00
|
|
|
!state->silence &&
|
2017-11-25 22:06:56 +00:00
|
|
|
state->history_list_enable
|
2017-11-25 21:33:43 +00:00
|
|
|
)
|
2019-04-12 16:50:27 +00:00
|
|
|
{
|
|
|
|
struct playlist_entry entry = {0};
|
|
|
|
|
|
|
|
/* the push function reads our entry as const, so these casts are safe */
|
2019-04-13 02:56:11 +00:00
|
|
|
entry.path = state->filename;
|
|
|
|
entry.core_path = (char*)"builtin";
|
|
|
|
entry.core_name = (char*)"imageviewer";
|
2019-04-12 16:50:27 +00:00
|
|
|
|
2020-01-04 11:04:00 +00:00
|
|
|
command_playlist_push_write(g_defaults.image_history, &entry,
|
|
|
|
state->pl_fuzzy_archive_match,
|
2020-04-21 15:44:26 +00:00
|
|
|
state->pl_use_old_format,
|
|
|
|
state->pl_compression);
|
2019-04-12 16:50:27 +00:00
|
|
|
}
|
2016-10-03 02:41:37 +00:00
|
|
|
#endif
|
|
|
|
|
2016-12-29 05:50:18 +00:00
|
|
|
task_set_progress(task, 100);
|
2016-10-03 02:41:37 +00:00
|
|
|
|
2020-04-30 10:25:53 +00:00
|
|
|
/* Report any errors */
|
2016-10-03 02:41:37 +00:00
|
|
|
if (!ret)
|
|
|
|
{
|
2016-12-06 05:56:07 +00:00
|
|
|
char *msg = strdup(msg_hash_to_str(MSG_FAILED_TO_TAKE_SCREENSHOT));
|
2018-11-22 14:45:52 +00:00
|
|
|
runloop_msg_queue_push(msg, 1, state->is_paused ? 1 : 180, true, NULL, MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_INFO);
|
2016-12-06 05:56:07 +00:00
|
|
|
free(msg);
|
2016-07-30 23:20:00 +00:00
|
|
|
}
|
2019-03-01 17:05:14 +00:00
|
|
|
|
|
|
|
if (task->title)
|
|
|
|
task_free_title(task);
|
2020-04-30 10:25:53 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
task_finished:
|
|
|
|
|
|
|
|
task_set_finished(task, true);
|
|
|
|
|
|
|
|
if (task->title)
|
|
|
|
task_free_title(task);
|
|
|
|
|
|
|
|
if (state && state->userbuf)
|
|
|
|
free(state->userbuf);
|
|
|
|
|
|
|
|
#if defined(HAVE_GFX_WIDGETS)
|
|
|
|
/* If display widgets are enabled, state is freed
|
|
|
|
in the callback after the notification
|
|
|
|
is displayed */
|
|
|
|
if (state && !state->widgets_ready)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
free(state);
|
|
|
|
/* Must explicitly set task->state to NULL here,
|
|
|
|
* to avoid potential heap-use-after-free errors */
|
|
|
|
state = NULL;
|
|
|
|
task->state = NULL;
|
|
|
|
}
|
2016-10-03 02:41:37 +00:00
|
|
|
}
|
|
|
|
|
2020-02-17 20:28:42 +00:00
|
|
|
#if defined(HAVE_GFX_WIDGETS)
|
2019-05-01 13:46:57 +00:00
|
|
|
static void task_screenshot_callback(retro_task_t *task,
|
|
|
|
void *task_data,
|
|
|
|
void *user_data, const char *error)
|
|
|
|
{
|
2020-04-30 10:25:53 +00:00
|
|
|
screenshot_task_state_t *state = NULL;
|
|
|
|
|
|
|
|
if (!task)
|
|
|
|
return;
|
|
|
|
|
|
|
|
state = (screenshot_task_state_t*)task->state;
|
2019-05-01 13:46:57 +00:00
|
|
|
|
2020-04-30 10:25:53 +00:00
|
|
|
if (!state)
|
2019-05-01 13:46:57 +00:00
|
|
|
return;
|
|
|
|
|
2020-04-30 10:25:53 +00:00
|
|
|
if (!state->silence && state->widgets_ready)
|
2020-03-11 10:44:45 +00:00
|
|
|
gfx_widget_screenshot_taken(state->shotname, state->filename);
|
2019-05-01 13:46:57 +00:00
|
|
|
|
|
|
|
free(state);
|
2020-04-30 10:25:53 +00:00
|
|
|
/* Must explicitly set task->state to NULL here,
|
|
|
|
* to avoid potential heap-use-after-free errors */
|
|
|
|
state = NULL;
|
|
|
|
task->state = NULL;
|
2019-05-01 13:46:57 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-10-03 02:41:37 +00:00
|
|
|
/* Take frame bottom-up. */
|
|
|
|
static bool screenshot_dump(
|
2019-05-22 03:54:35 +00:00
|
|
|
const char *screenshot_dir,
|
2016-10-03 02:41:37 +00:00
|
|
|
const char *name_base,
|
|
|
|
const void *frame,
|
|
|
|
unsigned width,
|
|
|
|
unsigned height,
|
2019-05-22 03:54:35 +00:00
|
|
|
int pitch,
|
|
|
|
bool bgr24,
|
|
|
|
void *userbuf,
|
|
|
|
bool savestate,
|
2017-01-22 17:17:48 +00:00
|
|
|
bool is_idle,
|
2018-08-19 03:08:55 +00:00
|
|
|
bool is_paused,
|
|
|
|
bool fullpath,
|
2019-05-22 03:54:35 +00:00
|
|
|
bool use_thread,
|
|
|
|
unsigned pixel_format_type)
|
2016-10-03 02:41:37 +00:00
|
|
|
{
|
2019-04-13 02:56:11 +00:00
|
|
|
struct retro_system_info system_info;
|
2017-01-24 00:58:36 +00:00
|
|
|
uint8_t *buf = NULL;
|
2016-10-03 02:41:37 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2019-04-13 02:56:11 +00:00
|
|
|
screenshot_task_state_t *state = (screenshot_task_state_t*)calloc(1, sizeof(*state));
|
2017-01-03 03:30:02 +00:00
|
|
|
|
2019-04-13 02:56:11 +00:00
|
|
|
state->shotname[0] = '\0';
|
2017-01-03 03:30:02 +00:00
|
|
|
|
2019-04-13 02:56:11 +00:00
|
|
|
/* If fullpath is true, name_base already contains a
|
|
|
|
* static path + filename to save the screenshot to. */
|
2018-08-19 03:08:55 +00:00
|
|
|
if (fullpath)
|
|
|
|
strlcpy(state->filename, name_base, sizeof(state->filename));
|
2016-10-03 02:41:37 +00:00
|
|
|
|
2020-01-04 11:04:00 +00:00
|
|
|
state->pl_fuzzy_archive_match = settings->bools.playlist_fuzzy_archive_match;
|
|
|
|
state->pl_use_old_format = settings->bools.playlist_use_old_format;
|
2020-04-21 15:44:26 +00:00
|
|
|
state->pl_compression = settings->bools.playlist_compression;
|
2020-01-04 11:04:00 +00:00
|
|
|
state->is_idle = is_idle;
|
|
|
|
state->is_paused = is_paused;
|
|
|
|
state->bgr24 = bgr24;
|
|
|
|
state->height = height;
|
|
|
|
state->width = width;
|
|
|
|
state->pitch = pitch;
|
|
|
|
state->frame = frame;
|
|
|
|
state->userbuf = userbuf;
|
2020-02-17 20:28:42 +00:00
|
|
|
#if defined(HAVE_GFX_WIDGETS)
|
2020-02-17 00:43:40 +00:00
|
|
|
state->widgets_ready = gfx_widgets_ready();
|
2019-08-15 11:12:15 +00:00
|
|
|
#else
|
2020-01-04 11:04:00 +00:00
|
|
|
state->widgets_ready = false;
|
2019-08-15 11:12:15 +00:00
|
|
|
#endif
|
2020-01-04 11:04:00 +00:00
|
|
|
state->silence = savestate;
|
|
|
|
state->history_list_enable = settings->bools.history_list_enable;
|
|
|
|
state->pixel_format_type = pixel_format_type;
|
2016-10-03 02:41:37 +00:00
|
|
|
|
2018-08-19 03:08:55 +00:00
|
|
|
if (!fullpath)
|
2016-12-01 22:24:16 +00:00
|
|
|
{
|
2018-08-19 03:08:55 +00:00
|
|
|
if (savestate)
|
2019-09-18 00:31:02 +00:00
|
|
|
{
|
2019-09-22 22:18:29 +00:00
|
|
|
strlcpy(state->filename,
|
2019-09-18 00:31:02 +00:00
|
|
|
name_base, sizeof(state->filename));
|
2019-09-22 22:18:29 +00:00
|
|
|
strlcat(state->filename, ".png", sizeof(state->filename));
|
2019-09-18 00:31:02 +00:00
|
|
|
}
|
2016-12-01 22:24:16 +00:00
|
|
|
else
|
2018-08-19 03:08:55 +00:00
|
|
|
{
|
|
|
|
if (settings->bools.auto_screenshot_filename)
|
2018-12-27 20:57:55 +00:00
|
|
|
{
|
2019-01-16 04:33:48 +00:00
|
|
|
const char *screenshot_name = NULL;
|
|
|
|
|
2018-12-27 20:57:55 +00:00
|
|
|
if (path_is_empty(RARCH_PATH_CONTENT))
|
2019-01-16 04:33:48 +00:00
|
|
|
{
|
2019-04-13 02:56:11 +00:00
|
|
|
if (!core_get_system_info(&system_info))
|
|
|
|
return false;
|
|
|
|
|
2019-01-16 04:33:48 +00:00
|
|
|
if (string_is_empty(system_info.library_name))
|
|
|
|
screenshot_name = "RetroArch";
|
|
|
|
else
|
|
|
|
screenshot_name = system_info.library_name;
|
|
|
|
}
|
2018-12-27 20:57:55 +00:00
|
|
|
else
|
2019-01-16 04:33:48 +00:00
|
|
|
screenshot_name = path_basename(name_base);
|
|
|
|
|
2018-11-22 14:45:52 +00:00
|
|
|
fill_str_dated_filename(state->shotname, screenshot_name,
|
|
|
|
IMG_EXT, sizeof(state->shotname));
|
2018-12-27 20:57:55 +00:00
|
|
|
}
|
2018-08-19 03:08:55 +00:00
|
|
|
else
|
2019-09-18 00:31:02 +00:00
|
|
|
{
|
2019-09-22 22:18:29 +00:00
|
|
|
strlcpy(state->shotname, path_basename(name_base),
|
2019-09-18 00:31:02 +00:00
|
|
|
sizeof(state->shotname));
|
2019-09-22 22:18:29 +00:00
|
|
|
strlcat(state->shotname, ".png", sizeof(state->shotname));
|
2019-09-18 00:31:02 +00:00
|
|
|
}
|
2018-08-19 03:08:55 +00:00
|
|
|
|
2019-05-22 05:40:23 +00:00
|
|
|
if ( string_is_empty(screenshot_dir) ||
|
|
|
|
settings->bools.screenshots_in_content_dir)
|
|
|
|
{
|
|
|
|
char screenshot_path[PATH_MAX_LENGTH];
|
|
|
|
screenshot_path[0] = '\0';
|
|
|
|
fill_pathname_basedir(screenshot_path, name_base,
|
|
|
|
sizeof(screenshot_path));
|
|
|
|
fill_pathname_join(state->filename, screenshot_path,
|
|
|
|
state->shotname, sizeof(state->filename));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fill_pathname_join(state->filename, screenshot_dir,
|
|
|
|
state->shotname, sizeof(state->filename));
|
2018-08-19 03:08:55 +00:00
|
|
|
}
|
2016-12-01 22:24:16 +00:00
|
|
|
}
|
2016-10-03 02:41:37 +00:00
|
|
|
|
2018-02-04 23:29:05 +00:00
|
|
|
#if defined(HAVE_RPNG)
|
2017-01-24 00:58:36 +00:00
|
|
|
buf = (uint8_t*)malloc(width * height * 3);
|
|
|
|
if (!buf)
|
2016-10-04 09:02:01 +00:00
|
|
|
{
|
2016-10-06 03:17:22 +00:00
|
|
|
free(state);
|
2016-10-03 02:41:37 +00:00
|
|
|
return false;
|
2016-10-04 09:02:01 +00:00
|
|
|
}
|
2017-01-24 00:58:36 +00:00
|
|
|
state->out_buffer = buf;
|
2016-07-31 12:22:43 +00:00
|
|
|
#endif
|
2016-07-30 23:20:00 +00:00
|
|
|
|
2018-08-19 03:08:55 +00:00
|
|
|
if (use_thread)
|
|
|
|
{
|
2019-07-08 19:32:12 +00:00
|
|
|
retro_task_t *task = task_init();
|
2019-05-22 03:23:19 +00:00
|
|
|
|
|
|
|
task->type = TASK_TYPE_BLOCKING;
|
|
|
|
task->state = state;
|
|
|
|
task->handler = task_screenshot_handler;
|
2020-04-30 10:25:53 +00:00
|
|
|
task->mute = savestate;
|
2020-02-17 20:28:42 +00:00
|
|
|
#if defined(HAVE_GFX_WIDGETS)
|
2020-04-30 10:25:53 +00:00
|
|
|
/* This callback is only required when
|
|
|
|
* widgets are enabled */
|
|
|
|
task->callback = state->widgets_ready ?
|
|
|
|
task_screenshot_callback : NULL;
|
2019-08-15 11:12:15 +00:00
|
|
|
if (state->widgets_ready && !savestate)
|
2019-04-08 14:39:50 +00:00
|
|
|
task_free_title(task);
|
|
|
|
else
|
|
|
|
#endif
|
2019-05-06 19:10:58 +00:00
|
|
|
{
|
2019-04-13 02:56:11 +00:00
|
|
|
if (!savestate)
|
|
|
|
task->title = strdup(msg_hash_to_str(MSG_TAKING_SCREENSHOT));
|
2019-05-06 19:10:58 +00:00
|
|
|
}
|
2017-01-03 03:37:52 +00:00
|
|
|
|
2019-04-13 02:56:11 +00:00
|
|
|
if (task_queue_push(task))
|
|
|
|
return true;
|
2019-03-01 17:05:14 +00:00
|
|
|
|
2019-04-13 02:56:11 +00:00
|
|
|
/* There is already a blocking task going on */
|
|
|
|
if (task->title)
|
|
|
|
task_free_title(task);
|
2019-03-01 17:05:14 +00:00
|
|
|
|
2019-04-13 02:56:11 +00:00
|
|
|
free(task);
|
2019-03-01 17:05:14 +00:00
|
|
|
|
2019-04-13 02:56:11 +00:00
|
|
|
if (state->out_buffer)
|
|
|
|
free(state->out_buffer);
|
2019-03-01 17:05:14 +00:00
|
|
|
|
2019-04-13 02:56:11 +00:00
|
|
|
free(state);
|
|
|
|
|
|
|
|
return false;
|
2019-03-01 17:05:14 +00:00
|
|
|
}
|
2016-10-03 02:41:37 +00:00
|
|
|
|
2019-04-13 02:56:11 +00:00
|
|
|
return screenshot_dump_direct(state);
|
2015-09-27 00:32:30 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 03:54:35 +00:00
|
|
|
static bool take_screenshot_viewport(
|
|
|
|
const char *screenshot_dir,
|
|
|
|
const char *name_base,
|
|
|
|
bool savestate,
|
|
|
|
bool is_idle,
|
|
|
|
bool is_paused,
|
|
|
|
bool fullpath,
|
|
|
|
bool use_thread,
|
|
|
|
unsigned pixel_format_type)
|
2015-02-10 19:58:33 +00:00
|
|
|
{
|
2016-12-19 18:04:52 +00:00
|
|
|
struct video_viewport vp;
|
2015-06-12 15:00:37 +00:00
|
|
|
uint8_t *buffer = NULL;
|
2016-10-09 08:43:16 +00:00
|
|
|
|
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);
|
2015-02-10 19:58:33 +00:00
|
|
|
|
|
|
|
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)
|
2015-02-10 19:58:33 +00:00
|
|
|
return false;
|
|
|
|
|
2017-01-22 17:17:48 +00:00
|
|
|
if (!video_driver_read_viewport(buffer, is_idle))
|
2019-05-22 03:23:19 +00:00
|
|
|
{
|
|
|
|
free(buffer);
|
|
|
|
return false;
|
|
|
|
}
|
2015-02-10 19:58:33 +00:00
|
|
|
|
|
|
|
/* Data read from viewport is in bottom-up order, suitable for BMP. */
|
2019-05-22 03:54:35 +00:00
|
|
|
if (!screenshot_dump(screenshot_dir,
|
|
|
|
name_base,
|
2016-12-04 18:08:24 +00:00
|
|
|
buffer, vp.width, vp.height,
|
2019-08-15 11:12:15 +00:00
|
|
|
vp.width * 3, true, buffer,
|
|
|
|
savestate, is_idle, is_paused, fullpath, use_thread,
|
2019-05-22 03:54:35 +00:00
|
|
|
pixel_format_type))
|
2019-05-22 03:23:19 +00:00
|
|
|
{
|
|
|
|
free(buffer);
|
|
|
|
return false;
|
|
|
|
}
|
2015-02-10 19:58:33 +00:00
|
|
|
|
2016-10-03 02:41:37 +00:00
|
|
|
return true;
|
2015-02-10 19:58:33 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 03:54:35 +00:00
|
|
|
static bool take_screenshot_raw(const char *screenshot_dir,
|
|
|
|
const char *name_base, void *userbuf,
|
|
|
|
bool savestate, bool is_idle, bool is_paused, bool fullpath, bool use_thread,
|
|
|
|
unsigned pixel_format_type)
|
2015-02-10 19:58:33 +00:00
|
|
|
{
|
2015-05-20 19:29:23 +00:00
|
|
|
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;
|
2016-10-09 08:43:16 +00:00
|
|
|
|
2015-06-17 12:29:09 +00:00
|
|
|
video_driver_cached_frame_get(&data, &width, &height, &pitch);
|
2016-03-10 22:36:46 +00:00
|
|
|
|
2015-02-10 19:58:33 +00:00
|
|
|
/* Negative pitch is needed as screenshot takes bottom-up,
|
|
|
|
* but we use top-down.
|
|
|
|
*/
|
2019-05-22 03:54:35 +00:00
|
|
|
if (!screenshot_dump(screenshot_dir,
|
|
|
|
name_base,
|
|
|
|
(const uint8_t*)data + (height - 1) * pitch,
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
(int)(-pitch),
|
|
|
|
false,
|
|
|
|
userbuf,
|
|
|
|
savestate,
|
|
|
|
is_idle,
|
|
|
|
is_paused,
|
|
|
|
fullpath,
|
|
|
|
use_thread,
|
|
|
|
pixel_format_type))
|
2016-07-30 23:20:00 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
2015-02-10 19:58:33 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 03:54:35 +00:00
|
|
|
static bool take_screenshot_choice(
|
|
|
|
const char *screenshot_dir,
|
|
|
|
const char *name_base,
|
|
|
|
bool savestate,
|
|
|
|
bool is_paused,
|
|
|
|
bool is_idle,
|
|
|
|
bool has_valid_framebuffer,
|
|
|
|
bool fullpath,
|
|
|
|
bool use_thread,
|
|
|
|
bool supports_viewport_read,
|
|
|
|
bool supports_read_frame_raw,
|
2019-05-22 05:07:33 +00:00
|
|
|
unsigned pixel_format_type
|
|
|
|
)
|
2015-02-10 19:58:33 +00:00
|
|
|
{
|
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
|
|
|
void *frame_data = NULL;
|
|
|
|
const void* old_data = NULL;
|
2015-02-10 19:58:33 +00:00
|
|
|
|
2019-05-22 03:54:35 +00:00
|
|
|
if (supports_viewport_read)
|
2015-02-10 19:58:33 +00:00
|
|
|
{
|
|
|
|
/* Avoid taking screenshot of GUI overlays. */
|
2015-03-22 17:59:16 +00:00
|
|
|
video_driver_set_texture_enable(false, false);
|
2017-01-03 05:57:55 +00:00
|
|
|
if (!is_idle)
|
2016-10-24 22:42:14 +00:00
|
|
|
video_driver_cached_frame();
|
2019-05-22 03:54:35 +00:00
|
|
|
return take_screenshot_viewport(screenshot_dir,
|
|
|
|
name_base, savestate, is_idle, is_paused, fullpath, use_thread,
|
|
|
|
pixel_format_type);
|
2015-02-10 19:58:33 +00:00
|
|
|
}
|
2016-02-03 15:13:37 +00:00
|
|
|
|
2017-05-13 17:37:16 +00:00
|
|
|
if (!has_valid_framebuffer)
|
2019-05-22 03:54:35 +00:00
|
|
|
return take_screenshot_raw(screenshot_dir,
|
|
|
|
name_base, NULL, savestate, is_idle, is_paused, fullpath, use_thread,
|
|
|
|
pixel_format_type);
|
2016-02-03 15:13:37 +00:00
|
|
|
|
2019-05-22 03:54:35 +00:00
|
|
|
if (!supports_read_frame_raw)
|
2017-01-03 03:30:02 +00:00
|
|
|
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);
|
2015-05-20 19:29:23 +00:00
|
|
|
|
2017-01-03 03:30:02 +00:00
|
|
|
frame_data = video_driver_read_frame_raw(
|
|
|
|
&old_width, &old_height, &old_pitch);
|
2015-03-16 12:41:26 +00:00
|
|
|
|
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);
|
2019-05-22 03:54:35 +00:00
|
|
|
if (take_screenshot_raw(screenshot_dir,
|
|
|
|
name_base, frame_data, savestate, is_idle, is_paused, fullpath, use_thread,
|
|
|
|
pixel_format_type))
|
2019-04-13 02:56:11 +00:00
|
|
|
return true;
|
2015-03-16 14:32:18 +00:00
|
|
|
}
|
2015-03-16 12:41:26 +00:00
|
|
|
|
2019-04-13 02:56:11 +00:00
|
|
|
return false;
|
2016-01-30 02:08:33 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 03:54:35 +00:00
|
|
|
bool take_screenshot(
|
|
|
|
const char *screenshot_dir,
|
|
|
|
const char *name_base,
|
2019-04-13 02:56:11 +00:00
|
|
|
bool silence, bool has_valid_framebuffer,
|
|
|
|
bool fullpath, bool use_thread)
|
2016-11-28 00:57:48 +00:00
|
|
|
{
|
2019-05-22 03:54:35 +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
|
|
|
|
2019-05-22 03:54:35 +00:00
|
|
|
/* No way to infer screenshot directory. */
|
|
|
|
if ( string_is_empty(screenshot_dir)
|
|
|
|
&& string_is_empty(name_base))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ret = take_screenshot_choice(
|
|
|
|
screenshot_dir,
|
|
|
|
name_base, silence, is_paused, is_idle,
|
|
|
|
has_valid_framebuffer, fullpath, use_thread,
|
2019-06-06 13:48:50 +00:00
|
|
|
video_driver_supports_viewport_read() &&
|
|
|
|
video_driver_prefer_viewport_read(),
|
2019-05-22 03:54:35 +00:00
|
|
|
video_driver_supports_read_frame_raw(),
|
|
|
|
video_driver_get_pixel_format()
|
|
|
|
);
|
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;
|
|
|
|
}
|