2023-09-07 12:51:48 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* Orca
|
|
|
|
* Copyright 2023 Martin Fouilleul and the Orca project contributors
|
|
|
|
* See LICENSE.txt for licensing information
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
#include "orca.h"
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_surface surface = { 0 };
|
|
|
|
oc_canvas canvas = { 0 };
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-07-31 04:21:25 +00:00
|
|
|
i32 render_thread(void* user)
|
2023-06-21 17:14:56 +00:00
|
|
|
{
|
2023-08-24 22:30:20 +00:00
|
|
|
while(!oc_should_quit())
|
2023-08-19 12:49:23 +00:00
|
|
|
{
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_event* event = 0;
|
|
|
|
while((event = oc_next_event(oc_scratch())) != 0)
|
2023-08-19 12:49:23 +00:00
|
|
|
{
|
|
|
|
switch(event->type)
|
|
|
|
{
|
2023-08-24 22:30:20 +00:00
|
|
|
case OC_EVENT_WINDOW_CLOSE:
|
2023-08-19 12:49:23 +00:00
|
|
|
{
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_request_quit();
|
2023-08-19 12:49:23 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_surface_select(surface);
|
2023-09-07 18:51:05 +00:00
|
|
|
oc_canvas_select(canvas);
|
2023-08-19 12:49:23 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_set_color_rgba(0, 0, 0.5, 0.5);
|
|
|
|
oc_clear();
|
2023-08-19 12:49:23 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_set_color_rgba(1, 0, 0, 1);
|
|
|
|
oc_rectangle_fill(100, 100, 300, 150);
|
2023-08-19 12:49:23 +00:00
|
|
|
|
2023-09-10 13:21:11 +00:00
|
|
|
oc_render(canvas);
|
2023-08-19 12:49:23 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_surface_present(surface);
|
2023-08-19 12:49:23 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_arena_clear(oc_scratch());
|
2023-08-19 12:49:23 +00:00
|
|
|
}
|
|
|
|
return (0);
|
2023-06-21 17:14:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_init();
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_rect windowRect = { .x = 100, .y = 100, .w = 810, .h = 610 };
|
|
|
|
oc_window window = oc_window_create(windowRect, OC_STR8("test"), 0);
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_rect contentRect = oc_window_get_content_rect(window);
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: create surface
|
2023-08-24 22:30:20 +00:00
|
|
|
surface = oc_surface_create_for_window(window, OC_CANVAS);
|
|
|
|
if(oc_surface_is_nil(surface))
|
2023-08-19 12:49:23 +00:00
|
|
|
{
|
|
|
|
printf("Error: couldn't create surface 1\n");
|
|
|
|
return (-1);
|
|
|
|
}
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_surface_swap_interval(surface, 0);
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
canvas = oc_canvas_create();
|
|
|
|
if(oc_canvas_is_nil(canvas))
|
2023-08-19 12:49:23 +00:00
|
|
|
{
|
|
|
|
printf("Error: couldn't create canvas 1\n");
|
|
|
|
return (-1);
|
|
|
|
}
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_surface dummy = oc_surface_create_for_window(window, OC_CANVAS);
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
// start app
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_window_center(window);
|
|
|
|
oc_window_bring_to_front(window);
|
|
|
|
oc_window_focus(window);
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_thread* renderThread = oc_thread_create(render_thread, NULL);
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
while(!oc_should_quit())
|
2023-08-19 12:49:23 +00:00
|
|
|
{
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_pump_events(0);
|
2023-08-19 12:49:23 +00:00
|
|
|
}
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_thread_join(renderThread, NULL);
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_canvas_destroy(canvas);
|
|
|
|
oc_surface_destroy(surface);
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_window_destroy(window);
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_terminate();
|
2023-06-21 17:14:56 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
return (0);
|
2023-06-21 17:14:56 +00:00
|
|
|
}
|