mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 18:32:44 +00:00
504 lines
15 KiB
C
504 lines
15 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
|
*
|
|
* RetroArch 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.
|
|
*
|
|
* RetroArch 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 RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <retro_miscellaneous.h>
|
|
#include <retro_timers.h>
|
|
#include <stdlib.h>
|
|
#include <compat/strl.h>
|
|
|
|
#ifdef HAVE_NETWORKING
|
|
#include <net/net_compat.h>
|
|
#include <net/net_socket.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "../../config.h"
|
|
#endif
|
|
|
|
#ifdef HAVE_MENU
|
|
#include "../../menu/menu_driver.h"
|
|
#endif
|
|
|
|
#include "../font_driver.h"
|
|
|
|
#include "../../driver.h"
|
|
#include "../../configuration.h"
|
|
#include "../../verbosity.h"
|
|
#include "../../frontend/frontend_driver.h"
|
|
|
|
#define xstr(s) str(s)
|
|
#define str(s) #s
|
|
|
|
enum
|
|
{
|
|
NETWORK_VIDEO_PIXELFORMAT_RGBA8888 = 0,
|
|
NETWORK_VIDEO_PIXELFORMAT_BGRA8888,
|
|
NETWORK_VIDEO_PIXELFORMAT_RGB565
|
|
} network_video_pixelformat;
|
|
|
|
typedef struct network
|
|
{
|
|
int fd;
|
|
unsigned video_width;
|
|
unsigned video_height;
|
|
unsigned screen_width;
|
|
unsigned screen_height;
|
|
uint16_t port;
|
|
char address[256];
|
|
} network_video_t;
|
|
|
|
static unsigned char *network_menu_frame = NULL;
|
|
static unsigned network_menu_width = 0;
|
|
static unsigned network_menu_height = 0;
|
|
static unsigned network_menu_pitch = 0;
|
|
static unsigned network_video_width = 0;
|
|
static unsigned network_video_height = 0;
|
|
static unsigned network_video_pitch = 0;
|
|
static unsigned network_video_bits = 0;
|
|
static unsigned network_menu_bits = 0;
|
|
static bool network_rgb32 = false;
|
|
static unsigned *network_video_temp_buf = NULL;
|
|
|
|
static void gfx_ctx_network_input_driver(
|
|
const char *joypad_driver,
|
|
input_driver_t **input, void **input_data)
|
|
{
|
|
#ifdef HAVE_UDEV
|
|
*input_data = input_driver_init_wrap(&input_udev, joypad_driver);
|
|
|
|
if (*input_data)
|
|
{
|
|
*input = &input_udev;
|
|
return;
|
|
}
|
|
#endif
|
|
*input = NULL;
|
|
*input_data = NULL;
|
|
}
|
|
|
|
static void *network_gfx_init(const video_info_t *video,
|
|
input_driver_t **input, void **input_data)
|
|
{
|
|
int fd;
|
|
struct addrinfo *addr = NULL, *next_addr = NULL;
|
|
settings_t *settings = config_get_ptr();
|
|
network_video_t *network = (network_video_t*)calloc(1, sizeof(*network));
|
|
bool video_font_enable = settings->bools.video_font_enable;
|
|
const char *joypad_driver = settings->arrays.input_joypad_driver;
|
|
|
|
*input = NULL;
|
|
*input_data = NULL;
|
|
|
|
network_rgb32 = video->rgb32;
|
|
network_video_bits = video->rgb32 ? 32 : 16;
|
|
|
|
if (video->rgb32)
|
|
network_video_pitch = video->width * 4;
|
|
else
|
|
network_video_pitch = video->width * 2;
|
|
|
|
gfx_ctx_network_input_driver(joypad_driver,
|
|
input, input_data);
|
|
|
|
if (video_font_enable)
|
|
font_driver_init_osd(network,
|
|
video,
|
|
false,
|
|
video->is_threaded,
|
|
FONT_DRIVER_RENDER_NETWORK_VIDEO);
|
|
|
|
strlcpy(network->address, xstr(NETWORK_VIDEO_HOST), sizeof(network->address));
|
|
network->port = NETWORK_VIDEO_PORT;
|
|
|
|
RARCH_LOG("[Network]: Connecting to host %s:%d\n", network->address, network->port);
|
|
try_connect:
|
|
fd = socket_init((void**)&addr, network->port, network->address, SOCKET_TYPE_STREAM, 0);
|
|
|
|
for (next_addr = addr; fd >= 0; fd = socket_next((void**)&next_addr))
|
|
{
|
|
if (socket_connect_with_timeout(fd, next_addr, 5000))
|
|
{
|
|
/* socket_connect_with_timeout makes the socket non-blocking. */
|
|
if (socket_set_block(fd, true))
|
|
break;
|
|
}
|
|
|
|
socket_close(fd);
|
|
}
|
|
|
|
if (addr)
|
|
freeaddrinfo_retro(addr);
|
|
|
|
network->fd = fd;
|
|
|
|
if (network->fd >= 0)
|
|
RARCH_LOG("[Network]: Connected to host.\n");
|
|
else
|
|
{
|
|
RARCH_LOG("[Network]: Could not connect to host, retrying...\n");
|
|
retro_sleep(1000);
|
|
goto try_connect;
|
|
}
|
|
|
|
RARCH_LOG("[Network]: Init complete.\n");
|
|
|
|
return network;
|
|
}
|
|
|
|
static bool network_gfx_frame(void *data, const void *frame,
|
|
unsigned frame_width, unsigned frame_height, uint64_t frame_count,
|
|
unsigned pitch, const char *msg, video_frame_info_t *video_info)
|
|
{
|
|
const void *frame_to_copy = frame;
|
|
unsigned width = 0;
|
|
unsigned height = 0;
|
|
unsigned bits = network_video_bits;
|
|
unsigned pixfmt = NETWORK_VIDEO_PIXELFORMAT_RGB565;
|
|
bool draw = true;
|
|
network_video_t *network = (network_video_t*)data;
|
|
#ifdef HAVE_MENU
|
|
bool menu_is_alive = (video_info->menu_st_flags & MENU_ST_FLAG_ALIVE) ? true : false;
|
|
#endif
|
|
|
|
if (!frame || !frame_width || !frame_height)
|
|
return true;
|
|
|
|
#ifdef HAVE_MENU
|
|
menu_driver_frame(menu_is_alive, video_info);
|
|
#endif
|
|
|
|
if ( (network_video_width != frame_width)
|
|
|| (network_video_height != frame_height)
|
|
|| (network_video_pitch != pitch))
|
|
{
|
|
if (frame_width > 4 && frame_height > 4)
|
|
{
|
|
network_video_width = frame_width;
|
|
network_video_height = frame_height;
|
|
network_video_pitch = pitch;
|
|
network->screen_width = network_video_width;
|
|
network->screen_height = network_video_height;
|
|
}
|
|
}
|
|
|
|
#ifdef HAVE_MENU
|
|
if (network_menu_frame && menu_is_alive)
|
|
{
|
|
frame_to_copy = network_menu_frame;
|
|
width = network_menu_width;
|
|
height = network_menu_height;
|
|
pitch = network_menu_pitch;
|
|
bits = network_menu_bits;
|
|
}
|
|
else
|
|
#endif
|
|
{
|
|
width = network_video_width;
|
|
height = network_video_height;
|
|
pitch = network_video_pitch;
|
|
|
|
if ( (frame_width == 4)
|
|
&& (frame_height == 4)
|
|
&& (frame_width < width && frame_height < height))
|
|
draw = false;
|
|
|
|
#ifdef HAVE_MENU
|
|
if (menu_is_alive)
|
|
draw = false;
|
|
#endif
|
|
}
|
|
|
|
if ( (network->video_width != width)
|
|
|| (network->video_height != height))
|
|
{
|
|
network->video_width = width;
|
|
network->video_height = height;
|
|
|
|
if (network_video_temp_buf)
|
|
free(network_video_temp_buf);
|
|
|
|
network_video_temp_buf = (unsigned*)
|
|
malloc(
|
|
network->screen_width
|
|
* network->screen_height
|
|
* sizeof(unsigned));
|
|
}
|
|
|
|
if (bits == 16)
|
|
{
|
|
if (network_video_temp_buf)
|
|
{
|
|
if (frame_to_copy == network_menu_frame)
|
|
{
|
|
/* Scale and convert 16-bit RGBX4444 image to 32-bit RGBX8888. */
|
|
unsigned x, y;
|
|
|
|
for (y = 0; y < network->screen_height; y++)
|
|
{
|
|
for (x = 0; x < network->screen_width; x++)
|
|
{
|
|
/* scale incoming frame to fit the screen */
|
|
unsigned scaled_x = (width * x) / network->screen_width;
|
|
unsigned scaled_y = (height * y) / network->screen_height;
|
|
unsigned short pixel = ((unsigned short*)frame_to_copy)[width * scaled_y + scaled_x];
|
|
|
|
/* convert RGBX4444 to RGBX8888 */
|
|
unsigned r = ((pixel & 0xF000) << 8)
|
|
| ((pixel & 0xF000) << 4);
|
|
unsigned g = ((pixel & 0x0F00) << 4)
|
|
| ((pixel & 0x0F00) << 0);
|
|
unsigned b = ((pixel & 0x00F0) << 0)
|
|
| ((pixel & 0x00F0) >> 4);
|
|
|
|
network_video_temp_buf[network->screen_width * y + x]
|
|
= 0xFF000000 | b | g | r;
|
|
}
|
|
}
|
|
|
|
pixfmt = NETWORK_VIDEO_PIXELFORMAT_RGBA8888;
|
|
frame_to_copy = network_video_temp_buf;
|
|
}
|
|
else
|
|
{
|
|
/* Scale and convert 16-bit RGB565 image to 32-bit RGBX8888. */
|
|
unsigned x, y;
|
|
|
|
for (y = 0; y < network->screen_height; y++)
|
|
{
|
|
for (x = 0; x < network->screen_width; x++)
|
|
{
|
|
/* scale incoming frame to fit the screen */
|
|
unsigned scaled_x = (width * x) / network->screen_width;
|
|
unsigned scaled_y = (height * y) / network->screen_height;
|
|
unsigned short pixel = ((unsigned short*)frame_to_copy)[(pitch / (bits / 8)) * scaled_y + scaled_x];
|
|
|
|
/* convert RGB565 to RGBX8888 */
|
|
unsigned r = ((pixel & 0x001F) << 3) | ((pixel & 0x001C) >> 2);
|
|
unsigned g = ((pixel & 0x07E0) << 5) | ((pixel & 0x0600) >> 1);
|
|
unsigned b = ((pixel & 0xF800) << 8) | ((pixel & 0xE000) << 3);
|
|
|
|
network_video_temp_buf[network->screen_width * y + x] = 0xFF000000 | b | g | r;
|
|
}
|
|
}
|
|
|
|
pixfmt = NETWORK_VIDEO_PIXELFORMAT_BGRA8888;
|
|
frame_to_copy = network_video_temp_buf;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* no temp buffer available yet */
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* Scale 32-bit RGBX8888 image to output geometry. */
|
|
unsigned x, y;
|
|
|
|
for (y = 0; y < network->screen_height; y++)
|
|
{
|
|
for (x = 0; x < network->screen_width; x++)
|
|
{
|
|
/* scale incoming frame to fit the screen */
|
|
unsigned scaled_x = (width * x) / network->screen_width;
|
|
unsigned scaled_y = (height * y) / network->screen_height;
|
|
unsigned pixel = ((unsigned*)frame_to_copy)[(pitch / (bits / 8)) * scaled_y + scaled_x];
|
|
|
|
network_video_temp_buf[network->screen_width * y + x] = pixel;
|
|
}
|
|
}
|
|
|
|
pixfmt = NETWORK_VIDEO_PIXELFORMAT_BGRA8888;
|
|
frame_to_copy = network_video_temp_buf;
|
|
}
|
|
|
|
if (draw && network->screen_width > 0 && network->screen_height > 0)
|
|
{
|
|
if (network->fd > 0)
|
|
socket_send_all_blocking(network->fd, frame_to_copy, network->screen_width * network->screen_height * 4, true);
|
|
}
|
|
|
|
if (msg)
|
|
font_driver_render_msg(network, msg, NULL, NULL);
|
|
|
|
return true;
|
|
}
|
|
|
|
static void network_gfx_set_nonblock_state(void *a, bool b, bool c, unsigned d) { }
|
|
|
|
static bool network_gfx_alive(void *data)
|
|
{
|
|
unsigned temp_width = 0;
|
|
unsigned temp_height = 0;
|
|
bool quit = false;
|
|
bool resize = false;
|
|
network_video_t *network = (network_video_t*)data;
|
|
|
|
video_driver_get_size(&temp_width, &temp_height);
|
|
|
|
if (temp_width != 0 && temp_height != 0)
|
|
video_driver_set_size(temp_width, temp_height);
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool network_gfx_focus(void *data) { return true; }
|
|
static bool network_gfx_suppress_screensaver(void *data, bool enable) { return false; }
|
|
static bool network_gfx_has_windowed(void *data) { return true; }
|
|
|
|
static void network_gfx_free(void *data)
|
|
{
|
|
network_video_t *network = (network_video_t*)data;
|
|
|
|
if (network_menu_frame)
|
|
free(network_menu_frame);
|
|
|
|
if (network_video_temp_buf)
|
|
free(network_video_temp_buf);
|
|
|
|
network_menu_frame = NULL;
|
|
network_video_temp_buf = NULL;
|
|
|
|
font_driver_free_osd();
|
|
|
|
if (network->fd >= 0)
|
|
socket_close(network->fd);
|
|
|
|
if (network)
|
|
free(network);
|
|
}
|
|
|
|
static bool network_gfx_set_shader(void *data,
|
|
enum rarch_shader_type type, const char *path) { return false; }
|
|
static void network_gfx_set_rotation(void *data,
|
|
unsigned rotation) { }
|
|
|
|
static void network_set_texture_frame(void *data,
|
|
const void *frame, bool rgb32, unsigned width, unsigned height,
|
|
float alpha)
|
|
{
|
|
unsigned pitch = width * 2;
|
|
|
|
if (rgb32)
|
|
pitch = width * 4;
|
|
|
|
if (network_menu_frame)
|
|
{
|
|
free(network_menu_frame);
|
|
network_menu_frame = NULL;
|
|
}
|
|
|
|
if ( !network_menu_frame
|
|
|| (network_menu_width != width)
|
|
|| (network_menu_height != height)
|
|
|| (network_menu_pitch != pitch))
|
|
if (pitch && height)
|
|
network_menu_frame = (unsigned char*)malloc(pitch * height);
|
|
|
|
if (network_menu_frame && frame && pitch && height)
|
|
{
|
|
memcpy(network_menu_frame, frame, pitch * height);
|
|
network_menu_width = width;
|
|
network_menu_height = height;
|
|
network_menu_pitch = pitch;
|
|
network_menu_bits = rgb32 ? 32 : 16;
|
|
}
|
|
}
|
|
|
|
static void network_get_video_output_size(void *data,
|
|
unsigned *width, unsigned *height, char *desc, size_t desc_len) { }
|
|
static void network_get_video_output_prev(void *data) { }
|
|
static void network_get_video_output_next(void *data) { }
|
|
|
|
static void network_set_video_mode(void *data, unsigned width, unsigned height,
|
|
bool fullscreen) { }
|
|
|
|
static const video_poke_interface_t network_poke_interface = {
|
|
NULL, /* get_flags */
|
|
NULL, /* load_texture */
|
|
NULL, /* unload_texture */
|
|
network_set_video_mode,
|
|
NULL, /* get_refresh_rate */
|
|
NULL, /* set_filtering */
|
|
network_get_video_output_size,
|
|
network_get_video_output_prev,
|
|
network_get_video_output_next,
|
|
NULL, /* get_current_framebuffer */
|
|
NULL, /* get_proc_address */
|
|
NULL, /* set_aspect_ratio */
|
|
NULL, /* apply_state_changes */
|
|
#if defined(HAVE_MENU)
|
|
network_set_texture_frame,
|
|
NULL, /* set_texture_enable */
|
|
font_driver_render_msg,
|
|
NULL, /* show_mouse */
|
|
#else
|
|
NULL, /* set_texture_frame */
|
|
NULL, /* set_texture_enable */
|
|
NULL, /* set_osd_msg */
|
|
NULL, /* show_mouse */
|
|
#endif
|
|
NULL, /* grab_mouse_toggle */
|
|
NULL, /* get_current_shader */
|
|
NULL, /* get_current_software_framebuffer */
|
|
NULL, /* get_hw_render_interface */
|
|
NULL, /* set_hdr_max_nits */
|
|
NULL, /* set_hdr_paper_white_nits */
|
|
NULL, /* set_hdr_contrast */
|
|
NULL /* set_hdr_expand_gamut */
|
|
};
|
|
|
|
static void network_gfx_get_poke_interface(void *data,
|
|
const video_poke_interface_t **iface)
|
|
{
|
|
*iface = &network_poke_interface;
|
|
}
|
|
|
|
static void network_gfx_set_viewport(void *data, unsigned vp_width,
|
|
unsigned vp_height, bool force_full, bool allow_rotate) { }
|
|
|
|
bool network_has_menu_frame(void)
|
|
{
|
|
return (network_menu_frame != NULL);
|
|
}
|
|
|
|
video_driver_t video_network = {
|
|
network_gfx_init,
|
|
network_gfx_frame,
|
|
network_gfx_set_nonblock_state,
|
|
network_gfx_alive,
|
|
network_gfx_focus,
|
|
network_gfx_suppress_screensaver,
|
|
network_gfx_has_windowed,
|
|
network_gfx_set_shader,
|
|
network_gfx_free,
|
|
"network",
|
|
network_gfx_set_viewport,
|
|
network_gfx_set_rotation,
|
|
NULL, /* viewport_info */
|
|
NULL, /* read_viewport */
|
|
NULL, /* read_frame_raw */
|
|
#ifdef HAVE_OVERLAY
|
|
NULL, /* overlay_interface */
|
|
#endif
|
|
network_gfx_get_poke_interface,
|
|
NULL, /* wrap_type_to_enum */
|
|
#ifdef HAVE_GFX_WIDGETS
|
|
NULL /* gfx_widgets_enabled */
|
|
#endif
|
|
};
|