snes9x/gtk/src/gtk_display_driver_gtk.cpp

223 lines
5.3 KiB
C++
Raw Normal View History

#include "gtk_2_3_compat.h"
2010-09-26 11:19:15 +02:00
#include <cairo.h>
2010-09-25 17:46:12 +02:00
#include "gtk_display.h"
#include "gtk_display_driver_gtk.h"
S9xGTKDisplayDriver::S9xGTKDisplayDriver (Snes9xWindow *window,
Snes9xConfig *config)
{
this->window = window;
this->config = config;
this->drawing_area = GTK_WIDGET (window->drawing_area);
}
void
2018-05-05 00:12:22 +02:00
S9xGTKDisplayDriver::update (int width, int height, int yoffset)
2010-09-25 17:46:12 +02:00
{
2010-09-26 11:19:15 +02:00
int x, y, w, h;
int final_pitch;
2010-09-26 11:19:15 +02:00
uint8 *final_buffer;
GtkAllocation allocation;
2010-09-25 17:46:12 +02:00
if (width <= 0)
return;
gtk_widget_get_allocation (drawing_area, &allocation);
2010-09-25 17:46:12 +02:00
if (config->scale_method > 0)
{
uint8 *src_buffer = (uint8 *) padded_buffer[0];
uint8 *dst_buffer = (uint8 *) padded_buffer[1];
int src_pitch = image_width * image_bpp;
int dst_pitch = scaled_max_width * image_bpp;
2018-05-05 00:12:22 +02:00
src_buffer += (src_pitch * yoffset);
2010-09-25 17:46:12 +02:00
S9xFilter (src_buffer,
src_pitch,
dst_buffer,
dst_pitch,
width,
height);
final_buffer = (uint8 *) padded_buffer[1];
final_pitch = dst_pitch;
}
else
{
final_buffer = (uint8 *) padded_buffer[0];
final_pitch = image_width * image_bpp;
2018-05-05 00:12:22 +02:00
final_buffer += (final_pitch * yoffset);
2010-09-25 17:46:12 +02:00
}
x = width; y = height; w = allocation.width; h = allocation.height;
2010-09-26 11:19:15 +02:00
S9xApplyAspect (x, y, w, h);
2010-09-26 11:19:15 +02:00
output (final_buffer, final_pitch, x, y, width, height, w, h);
2010-09-25 17:46:12 +02:00
}
void
S9xGTKDisplayDriver::output (void *src,
int src_pitch,
int x,
int y,
int width,
int height,
int dst_width,
int dst_height)
{
if (last_known_width != dst_width || last_known_height != dst_height)
{
clear ();
last_known_width = dst_width;
last_known_height = dst_height;
}
2017-12-07 19:24:29 +01:00
cairo_t *cr = window->get_cairo ();
2010-09-26 11:19:15 +02:00
cairo_surface_t *surface;
surface = cairo_image_surface_create_for_data ((unsigned char *) src, CAIRO_FORMAT_RGB16_565, width, height, src_pitch);
cairo_set_source_surface (cr, surface, 0, 0);
2010-09-26 11:19:15 +02:00
if (width != dst_width || height != dst_height)
{
cairo_matrix_t matrix;
cairo_pattern_t *pattern = cairo_get_source (cr);;
cairo_matrix_init_identity (&matrix);
cairo_matrix_scale (&matrix,
(double) width / (double) dst_width,
(double) height / (double) dst_height);
cairo_matrix_translate (&matrix, -x, -y);
cairo_pattern_set_matrix (pattern, &matrix);
cairo_pattern_set_filter (pattern,
Settings.BilinearFilter
? CAIRO_FILTER_BILINEAR
: CAIRO_FILTER_NEAREST);
}
2010-09-26 11:19:15 +02:00
cairo_rectangle (cr, x, y, dst_width, dst_height);
cairo_fill (cr);
cairo_surface_finish (surface);
cairo_surface_destroy (surface);
2017-12-07 19:24:29 +01:00
window->release_cairo ();
2010-09-25 17:46:12 +02:00
window->set_mouseable_area (x, y, width, height);
}
int
S9xGTKDisplayDriver::init ()
2010-09-25 17:46:12 +02:00
{
buffer[0] = malloc (image_padded_size);
buffer[1] = malloc (scaled_padded_size);
2018-05-05 00:12:22 +02:00
padded_buffer[0] = (void *) (((uint8 *) buffer[0]) + image_padded_offset);
padded_buffer[1] = (void *) (((uint8 *) buffer[1]) + scaled_padded_offset);
2010-09-25 17:46:12 +02:00
memset (buffer[0], 0, image_padded_size);
memset (buffer[1], 0, scaled_padded_size);
GFX.Screen = (uint16 *) padded_buffer[0];
GFX.Pitch = image_width * image_bpp;
return 0;
}
void
S9xGTKDisplayDriver::deinit ()
2010-09-25 17:46:12 +02:00
{
padded_buffer[0] = NULL;
padded_buffer[1] = NULL;
free (buffer[0]);
free (buffer[1]);
}
void
S9xGTKDisplayDriver::clear ()
2010-09-25 17:46:12 +02:00
{
2010-09-26 11:19:15 +02:00
int x, y, w, h;
int width, height;
GtkAllocation allocation;
gtk_widget_get_allocation (drawing_area, &allocation);
width = allocation.width;
height = allocation.height;
2010-09-25 17:46:12 +02:00
2017-12-07 19:24:29 +01:00
cairo_t *cr = window->get_cairo ();
2010-09-26 11:19:15 +02:00
cairo_set_source_rgb (cr, 0.0, 0.0, 0.0);
2010-09-25 17:46:12 +02:00
if (window->last_width <= 0 || window->last_height <= 0)
{
2010-09-26 11:19:15 +02:00
cairo_paint (cr);
2017-12-07 19:24:29 +01:00
window->release_cairo ();
2010-09-26 11:19:15 +02:00
2010-09-25 17:46:12 +02:00
return;
}
2010-09-26 11:19:15 +02:00
x = window->last_width;
y = window->last_height;
get_filter_scale (x, y);
w = width;
h = height;
S9xApplyAspect (x, y, w, h);
2010-09-25 17:46:12 +02:00
2010-09-26 11:19:15 +02:00
if (x > 0)
2010-09-25 17:46:12 +02:00
{
2010-09-26 11:19:15 +02:00
cairo_rectangle (cr, 0, y, x, h);
2010-09-25 17:46:12 +02:00
}
2010-09-26 11:19:15 +02:00
if (x + w < width)
{
cairo_rectangle (cr, x + w, y, width - (x + w), h);
}
if (y > 0)
{
cairo_rectangle (cr, 0, 0, width, y);
}
if (y + h < height)
2010-09-25 17:46:12 +02:00
{
2010-09-26 11:19:15 +02:00
cairo_rectangle (cr, 0, y + h, width, height - (y + h));
2010-09-25 17:46:12 +02:00
}
2010-09-26 11:19:15 +02:00
cairo_fill (cr);
2017-12-07 19:24:29 +01:00
window->release_cairo ();
2010-09-25 17:46:12 +02:00
}
void
S9xGTKDisplayDriver::refresh (int width, int height)
{
clear ();
}
uint16 *
S9xGTKDisplayDriver::get_next_buffer ()
2010-09-25 17:46:12 +02:00
{
return (uint16 *) padded_buffer[0];
}
uint16 *
S9xGTKDisplayDriver::get_current_buffer ()
2010-09-25 17:46:12 +02:00
{
return (uint16 *) padded_buffer[0];
}
void
S9xGTKDisplayDriver::push_buffer (uint16 *src)
{
memmove (GFX.Screen, src, image_size);
}
void
S9xGTKDisplayDriver::clear_buffers ()
2010-09-25 17:46:12 +02:00
{
memset (buffer[0], 0, image_padded_size);
memset (buffer[1], 0, scaled_padded_size);
}