2012-06-14 09:42:16 -04:00
|
|
|
#include <cogl/cogl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <SDL.h>
|
|
|
|
|
|
|
|
/* This short example is just to demonstrate mixing SDL with Cogl as a
|
|
|
|
simple way to get portable support for events */
|
|
|
|
|
|
|
|
typedef struct Data
|
|
|
|
{
|
|
|
|
CoglPrimitive *triangle;
|
|
|
|
CoglPipeline *pipeline;
|
|
|
|
float center_x, center_y;
|
|
|
|
CoglFramebuffer *fb;
|
|
|
|
CoglBool quit;
|
|
|
|
CoglBool redraw_queued;
|
2013-01-31 07:06:52 -05:00
|
|
|
CoglBool ready_to_draw;
|
2012-06-14 09:42:16 -04:00
|
|
|
} Data;
|
|
|
|
|
2013-01-31 07:06:52 -05:00
|
|
|
static void
|
2012-06-14 09:42:16 -04:00
|
|
|
redraw (Data *data)
|
|
|
|
{
|
|
|
|
CoglFramebuffer *fb = data->fb;
|
|
|
|
|
|
|
|
cogl_framebuffer_clear4f (fb, COGL_BUFFER_BIT_COLOR, 0, 0, 0, 1);
|
|
|
|
|
|
|
|
cogl_framebuffer_push_matrix (fb);
|
|
|
|
cogl_framebuffer_translate (fb, data->center_x, -data->center_y, 0.0f);
|
|
|
|
|
2013-07-09 18:47:29 -04:00
|
|
|
cogl_primitive_draw (data->triangle, fb, data->pipeline);
|
2012-06-14 09:42:16 -04:00
|
|
|
cogl_framebuffer_pop_matrix (fb);
|
|
|
|
|
|
|
|
cogl_onscreen_swap_buffers (COGL_ONSCREEN (fb));
|
|
|
|
}
|
|
|
|
|
2013-05-14 08:41:29 -04:00
|
|
|
static void
|
|
|
|
dirty_cb (CoglOnscreen *onscreen,
|
|
|
|
const CoglOnscreenDirtyInfo *info,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
Data *data = user_data;
|
|
|
|
|
|
|
|
data->redraw_queued = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-06-14 09:42:16 -04:00
|
|
|
static void
|
|
|
|
handle_event (Data *data, SDL_Event *event)
|
|
|
|
{
|
|
|
|
switch (event->type)
|
|
|
|
{
|
|
|
|
case SDL_WINDOWEVENT:
|
|
|
|
switch (event->window.event)
|
|
|
|
{
|
|
|
|
case SDL_WINDOWEVENT_CLOSE:
|
|
|
|
data->quit = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_MOUSEMOTION:
|
|
|
|
{
|
|
|
|
int width =
|
|
|
|
cogl_framebuffer_get_width (COGL_FRAMEBUFFER (data->fb));
|
|
|
|
int height =
|
|
|
|
cogl_framebuffer_get_height (COGL_FRAMEBUFFER (data->fb));
|
|
|
|
|
|
|
|
data->center_x = event->motion.x * 2.0f / width - 1.0f;
|
|
|
|
data->center_y = event->motion.y * 2.0f / height - 1.0f;
|
|
|
|
|
|
|
|
data->redraw_queued = TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_QUIT:
|
|
|
|
data->quit = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-31 07:06:52 -05:00
|
|
|
static void
|
|
|
|
frame_cb (CoglOnscreen *onscreen,
|
|
|
|
CoglFrameEvent event,
|
|
|
|
CoglFrameInfo *info,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
Data *data = user_data;
|
|
|
|
|
|
|
|
if (event == COGL_FRAME_EVENT_SYNC)
|
|
|
|
data->ready_to_draw = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-06-14 09:42:16 -04:00
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
CoglContext *ctx;
|
|
|
|
CoglOnscreen *onscreen;
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError *error = NULL;
|
2012-06-14 09:42:16 -04:00
|
|
|
CoglVertexP2C4 triangle_vertices[] = {
|
2013-04-19 12:55:29 -04:00
|
|
|
{0, 0.7, 0xff, 0x00, 0x00, 0xff},
|
2012-06-14 09:42:16 -04:00
|
|
|
{-0.7, -0.7, 0x00, 0xff, 0x00, 0xff},
|
|
|
|
{0.7, -0.7, 0x00, 0x00, 0xff, 0xff}
|
|
|
|
};
|
|
|
|
Data data;
|
|
|
|
SDL_Event event;
|
|
|
|
|
|
|
|
ctx = cogl_sdl_context_new (SDL_USEREVENT, &error);
|
|
|
|
if (!ctx)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "Failed to create context: %s\n", error->message);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
onscreen = cogl_onscreen_new (ctx, 800, 600);
|
|
|
|
data.fb = COGL_FRAMEBUFFER (onscreen);
|
|
|
|
|
2013-01-31 07:06:52 -05:00
|
|
|
cogl_onscreen_add_frame_callback (onscreen,
|
|
|
|
frame_cb,
|
|
|
|
&data,
|
|
|
|
NULL /* destroy callback */);
|
2013-05-14 08:41:29 -04:00
|
|
|
cogl_onscreen_add_dirty_callback (onscreen,
|
|
|
|
dirty_cb,
|
|
|
|
&data,
|
|
|
|
NULL /* destroy callback */);
|
2013-01-31 07:06:52 -05:00
|
|
|
|
2012-06-14 09:42:16 -04:00
|
|
|
data.center_x = 0.0f;
|
|
|
|
data.center_y = 0.0f;
|
|
|
|
data.quit = FALSE;
|
|
|
|
|
2012-06-27 10:49:38 -04:00
|
|
|
/* In SDL2, setting resizable only works before allocating the
|
|
|
|
* onscreen */
|
|
|
|
cogl_onscreen_set_resizable (onscreen, TRUE);
|
|
|
|
|
2012-06-14 09:42:16 -04:00
|
|
|
cogl_onscreen_show (onscreen);
|
|
|
|
|
|
|
|
data.triangle = cogl_primitive_new_p2c4 (ctx, COGL_VERTICES_MODE_TRIANGLES,
|
|
|
|
3, triangle_vertices);
|
|
|
|
data.pipeline = cogl_pipeline_new (ctx);
|
|
|
|
|
2013-05-14 08:41:29 -04:00
|
|
|
data.redraw_queued = FALSE;
|
2013-01-31 07:06:52 -05:00
|
|
|
data.ready_to_draw = TRUE;
|
|
|
|
|
2012-06-14 09:42:16 -04:00
|
|
|
while (!data.quit)
|
|
|
|
{
|
2013-01-31 07:06:52 -05:00
|
|
|
if (!SDL_PollEvent (&event))
|
2012-06-14 09:42:16 -04:00
|
|
|
{
|
2013-01-31 07:06:52 -05:00
|
|
|
if (data.redraw_queued && data.ready_to_draw)
|
2012-06-14 09:42:16 -04:00
|
|
|
{
|
2013-01-31 07:06:52 -05:00
|
|
|
redraw (&data);
|
|
|
|
data.redraw_queued = FALSE;
|
|
|
|
data.ready_to_draw = FALSE;
|
|
|
|
continue;
|
2012-06-14 09:42:16 -04:00
|
|
|
}
|
|
|
|
|
2013-01-31 07:06:52 -05:00
|
|
|
cogl_sdl_idle (ctx);
|
|
|
|
if (!SDL_WaitEvent (&event))
|
|
|
|
{
|
|
|
|
fprintf (stderr, "Error waiting for SDL events");
|
|
|
|
return 1;
|
|
|
|
}
|
2012-06-14 09:42:16 -04:00
|
|
|
}
|
|
|
|
|
2013-01-31 07:06:52 -05:00
|
|
|
handle_event (&data, &event);
|
|
|
|
cogl_sdl_handle_event (ctx, &event);
|
2012-06-14 09:42:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
cogl_object_unref (ctx);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|