RetroArch/audio/roar.c

123 lines
2.8 KiB
C
Raw Normal View History

2011-01-17 19:54:58 +00:00
/* SSNES - A Super Nintendo Entertainment System (SNES) Emulator frontend for libsnes.
2011-01-23 19:29:28 +00:00
* Copyright (C) 2010-2011 - Hans-Kristian Arntzen
2010-08-16 19:20:07 +00:00
*
* Some code herein may be based on code found in BSNES.
*
* SSNES 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.
*
* SSNES 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 SSNES.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "driver.h"
#include <stdlib.h>
#include <roaraudio.h>
#include <errno.h>
#include <stdio.h>
#include <stdbool.h>
2011-03-11 18:23:32 +00:00
#include "general.h"
typedef struct
{
roar_vs_t *vss;
bool nonblocking;
} roar_t;
2010-08-16 19:20:07 +00:00
static void *ra_init(const char *device, unsigned rate, unsigned latency)
2010-08-16 19:20:07 +00:00
{
(void)latency;
2010-08-16 19:20:07 +00:00
int err;
roar_t *roar = calloc(1, sizeof(roar_t));
if (roar == NULL)
return NULL;
2010-08-16 19:20:07 +00:00
roar_vs_t *vss;
2011-03-11 18:23:32 +00:00
if ((vss = roar_vs_new_simple(device, "SSNES", rate, 2, ROAR_CODEC_PCM_S, 16, ROAR_DIR_PLAY, &err)) == NULL)
2010-08-16 19:20:07 +00:00
{
2011-03-11 18:23:32 +00:00
SSNES_ERR("RoarAudio: \"%s\"\n", roar_vs_strerr(err));
free(roar);
2010-08-16 19:20:07 +00:00
return NULL;
}
2011-03-11 18:23:32 +00:00
roar_vs_role(vss, ROAR_ROLE_GAME, NULL);
roar->vss = vss;
return roar;
2010-08-16 19:20:07 +00:00
}
static ssize_t ra_write(void *data, const void *buf, size_t size)
2010-08-16 19:20:07 +00:00
{
roar_t *roar = data;
ssize_t rc;
2010-08-16 19:20:07 +00:00
2011-03-11 18:23:32 +00:00
if (size == 0)
2010-08-16 19:20:07 +00:00
return 0;
int err;
size_t written = 0;
while (written < size)
2010-08-16 19:20:07 +00:00
{
2011-03-11 18:23:32 +00:00
size_t write_amt = size - written;
if ((rc = roar_vs_write(roar->vss, (const char*)buf + written, write_amt, &err)) < write_amt)
{
2011-03-11 18:23:32 +00:00
if (roar->nonblocking)
return rc;
else if (rc < 0)
return -1;
}
written += rc;
2010-08-16 19:20:07 +00:00
}
return size;
}
static bool ra_stop(void *data)
2010-08-16 19:20:07 +00:00
{
(void)data;
2010-08-16 19:20:07 +00:00
return true;
}
static void ra_set_nonblock_state(void *data, bool state)
2010-08-16 19:20:07 +00:00
{
roar_t *roar = data;
if (roar_vs_blocking(roar->vss, (state) ? ROAR_VS_FALSE : ROAR_VS_TRUE, NULL) < 0)
2010-08-16 19:20:07 +00:00
fprintf(stderr, "SSNES [ERROR]: Can't set nonblocking. Will not be able to fast-forward.\n");
roar->nonblocking = state;
2010-08-16 19:20:07 +00:00
}
static bool ra_start(void *data)
2010-08-16 19:20:07 +00:00
{
(void)data;
2010-08-16 19:20:07 +00:00
return true;
}
static void ra_free(void *data)
2010-08-16 19:20:07 +00:00
{
roar_t *roar = data;
roar_vs_close(roar->vss, ROAR_VS_TRUE, NULL);
free(data);
2010-08-16 19:20:07 +00:00
}
const audio_driver_t audio_roar = {
.init = ra_init,
.write = ra_write,
.stop = ra_stop,
.start = ra_start,
.set_nonblock_state = ra_set_nonblock_state,
.free = ra_free,
.ident = "roar"
2010-08-16 19:20:07 +00:00
};