RetroArch/movie.h

122 lines
2.8 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-03-22 02:09:18 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2011-02-02 10:47:05 +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-02-02 10:47:05 +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-02-02 10:47:05 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
2012-04-21 21:25:32 +00:00
#ifndef __RARCH_MOVIE_H
#define __RARCH_MOVIE_H
2011-02-02 10:47:05 +00:00
#include <stdint.h>
2012-01-11 18:22:18 +00:00
#include <stddef.h>
2016-02-04 19:56:22 +00:00
#include <boolean.h>
2016-06-03 00:39:35 +00:00
#include <retro_common_api.h>
2019-01-13 06:46:35 +00:00
#include <streams/interface_stream.h>
2019-01-14 03:39:58 +00:00
#include <retro_miscellaneous.h>
2016-06-03 00:39:35 +00:00
RETRO_BEGIN_DECLS
2011-02-02 10:47:05 +00:00
2016-02-04 19:56:22 +00:00
#define BSV_MAGIC 0x42535631
2016-02-04 19:56:22 +00:00
#define MAGIC_INDEX 0
#define SERIALIZER_INDEX 1
#define CRC_INDEX 2
#define STATE_SIZE_INDEX 3
2011-02-02 10:47:05 +00:00
typedef struct bsv_movie bsv_movie_t;
2012-04-21 21:25:32 +00:00
enum rarch_movie_type
2011-02-02 10:47:05 +00:00
{
2016-03-22 01:45:25 +00:00
RARCH_MOVIE_PLAYBACK = 0,
2012-04-21 21:25:32 +00:00
RARCH_MOVIE_RECORD
2011-02-02 10:47:05 +00:00
};
2015-11-30 23:04:04 +00:00
enum bsv_ctl_state
{
2016-01-30 02:25:47 +00:00
BSV_MOVIE_CTL_NONE = 0,
BSV_MOVIE_CTL_IS_INITED,
BSV_MOVIE_CTL_SET_INPUT,
BSV_MOVIE_CTL_SET_START_RECORDING,
BSV_MOVIE_CTL_UNSET_START_RECORDING,
BSV_MOVIE_CTL_SET_START_PLAYBACK,
BSV_MOVIE_CTL_UNSET_START_PLAYBACK,
2015-11-30 23:16:48 +00:00
BSV_MOVIE_CTL_UNSET_PLAYBACK,
BSV_MOVIE_CTL_FRAME_REWIND,
2015-12-01 00:29:16 +00:00
BSV_MOVIE_CTL_SET_END_EOF,
2015-11-30 23:16:48 +00:00
BSV_MOVIE_CTL_SET_END,
BSV_MOVIE_CTL_UNSET_END
2015-11-30 23:04:04 +00:00
};
2019-01-14 03:39:58 +00:00
struct bsv_state
{
bool movie_start_recording;
bool movie_start_playback;
bool movie_playback;
bool eof_exit;
bool movie_end;
/* Movie playback/recording support. */
char movie_path[PATH_MAX_LENGTH];
/* Immediate playback/recording. */
char movie_start_path[PATH_MAX_LENGTH];
};
2019-01-13 06:46:35 +00:00
struct bsv_movie
{
intfstream_t *file;
/* A ring buffer keeping track of positions
* in the file for each frame. */
size_t *frame_pos;
size_t frame_mask;
size_t frame_ptr;
size_t min_file_pos;
size_t state_size;
uint8_t *state;
bool playback;
bool first_rewind;
bool did_rewind;
};
2017-05-07 16:15:30 +00:00
void bsv_movie_deinit(void);
bool bsv_movie_init(void);
2017-04-20 08:40:11 +00:00
bool bsv_movie_is_playback_on(void);
bool bsv_movie_is_playback_off(void);
void bsv_movie_set_path(const char *path);
void bsv_movie_set_start_path(const char *path);
2017-01-22 16:03:42 +00:00
bool bsv_movie_get_input(int16_t *bsv_data);
2015-11-30 23:04:04 +00:00
bool bsv_movie_ctl(enum bsv_ctl_state state, void *data);
2016-09-16 23:54:33 +00:00
bool bsv_movie_check(void);
bool bsv_movie_init_handle(const char *path, enum rarch_movie_type type);
2019-01-13 06:46:35 +00:00
extern bsv_movie_t *bsv_movie_state_handle;
2019-01-14 03:39:58 +00:00
extern struct bsv_state bsv_movie_state;
2016-06-03 00:39:35 +00:00
RETRO_END_DECLS
2011-02-02 10:47:05 +00:00
#endif