RetroArch/netplay.h

68 lines
2.0 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
2011-02-13 15:40:24 +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-02-13 15:40:24 +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-13 15:40:24 +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-13 15:40:24 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
2012-04-21 21:25:32 +00:00
#ifndef __RARCH_NETPLAY_H
#define __RARCH_NETPLAY_H
2011-02-13 15:40:24 +00:00
#include <stdint.h>
2012-04-05 09:47:43 +00:00
#include <stddef.h>
2011-12-24 12:46:12 +00:00
#include "boolean.h"
2012-04-05 09:47:43 +00:00
#include "libretro.h"
#include "retro.h"
2011-02-13 15:40:24 +00:00
void input_poll_net(void);
2014-09-07 03:47:18 +00:00
int16_t input_state_net(unsigned port, unsigned device,
unsigned index, unsigned id);
void video_frame_net(const void *data, unsigned width,
unsigned height, size_t pitch);
2012-04-05 09:47:43 +00:00
void audio_sample_net(int16_t left, int16_t right);
2014-09-07 03:47:18 +00:00
2012-04-07 09:55:37 +00:00
size_t audio_sample_batch_net(const int16_t *data, size_t frames);
2011-02-13 15:40:24 +00:00
2014-09-07 03:47:18 +00:00
int16_t input_state_spectate(unsigned port, unsigned device,
unsigned index, unsigned id);
int16_t input_state_spectate_client(unsigned port, unsigned device,
unsigned index, unsigned id);
2012-01-11 18:22:18 +00:00
2011-02-13 15:40:24 +00:00
typedef struct netplay netplay_t;
2012-06-01 13:20:53 +00:00
bool netplay_init_network(void);
2014-09-07 03:47:18 +00:00
/* Creates a new netplay handle. A NULL host means we're
* hosting (player 1). :) */
2012-01-21 13:00:11 +00:00
netplay_t *netplay_new(const char *server,
uint16_t port, unsigned frames,
2012-04-05 09:47:43 +00:00
const struct retro_callbacks *cb, bool spectate,
2012-01-21 17:12:42 +00:00
const char *nick);
2014-09-07 03:47:18 +00:00
2011-02-13 15:40:24 +00:00
void netplay_free(netplay_t *handle);
2014-09-07 03:47:18 +00:00
/* On regular netplay, flip who controls player 1 and 2. */
2012-01-21 13:00:11 +00:00
void netplay_flip_players(netplay_t *handle);
2014-09-07 03:47:18 +00:00
/* Call this before running retro_run(). */
void netplay_pre_frame(netplay_t *handle);
2014-09-07 03:47:18 +00:00
/* Call this after running retro_run(). */
void netplay_post_frame(netplay_t *handle);
2011-02-13 15:40:24 +00:00
#endif