2023-08-19 12:49:23 +00:00
|
|
|
/************************************************************/ /**
|
2023-02-27 14:43:41 +00:00
|
|
|
*
|
|
|
|
* @file: main.cpp
|
|
|
|
* @author: Martin Fouilleul
|
|
|
|
* @date: 30/07/2022
|
|
|
|
* @revision:
|
|
|
|
*
|
|
|
|
*****************************************************************/
|
2023-08-19 12:49:23 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2023-02-27 14:43:41 +00:00
|
|
|
|
|
|
|
#define _USE_MATH_DEFINES //NOTE: necessary for MSVC
|
2023-08-19 12:49:23 +00:00
|
|
|
#include <math.h>
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
#include "orca.h"
|
2023-02-27 14:43:41 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_init();
|
2023-02-27 14:43:41 +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-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_rect contentRect = oc_window_get_content_rect(window);
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: create surface
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_surface surface = oc_surface_create_for_window(window, OC_CANVAS);
|
|
|
|
if(oc_surface_is_nil(surface))
|
2023-08-19 12:49:23 +00:00
|
|
|
{
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_log_error("couldn't create surface\n");
|
2023-08-19 12:49:23 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_surface_swap_interval(surface, 0);
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: create canvas
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_canvas canvas = oc_canvas_create();
|
|
|
|
if(oc_canvas_is_nil(canvas))
|
2023-08-19 12:49:23 +00:00
|
|
|
{
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_log_error("Error: couldn't create canvas\n");
|
2023-08-19 12:49:23 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: create atlas
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_arena permanentArena = { 0 };
|
|
|
|
oc_arena_init(&permanentArena);
|
2023-02-28 15:54:39 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_rect_atlas* atlas = oc_rect_atlas_create(&permanentArena, 16000, 16000);
|
|
|
|
oc_image atlasImage = oc_image_create(surface, 16000, 16000);
|
2023-02-28 15:54:39 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_str8 path1 = oc_path_executable_relative(oc_scratch(), OC_STR8("../../../sketches/resources/triceratops.png"));
|
|
|
|
oc_str8 path2 = oc_path_executable_relative(oc_scratch(), OC_STR8("../../../sketches/resources/Top512.png"));
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_image_region image1 = oc_image_atlas_alloc_from_file(atlas, atlasImage, path1, false);
|
|
|
|
oc_image_region image2 = oc_image_atlas_alloc_from_file(atlas, atlasImage, path2, false);
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
// start app
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_window_bring_to_front(window);
|
|
|
|
oc_window_focus(window);
|
2023-02-27 14:43:41 +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);
|
|
|
|
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;
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_surface_select(surface);
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_set_color_rgba(0, 1, 1, 1);
|
|
|
|
oc_clear();
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_set_color_rgba(1, 1, 1, 1);
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_image_draw_region(image1.image, image1.rect, (oc_rect){ 100, 100, 300, 300 });
|
|
|
|
oc_image_draw_region(image2.image, image2.rect, (oc_rect){ 300, 200, 300, 300 });
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-09-10 13:21:11 +00:00
|
|
|
oc_render(canvas);
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_surface_present(surface);
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_arena_clear(oc_scratch());
|
2023-08-19 12:49:23 +00:00
|
|
|
}
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_image_atlas_recycle(atlas, image1);
|
|
|
|
oc_image_atlas_recycle(atlas, image2);
|
2023-02-28 15:54:39 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_canvas_destroy(canvas);
|
|
|
|
oc_surface_destroy(surface);
|
|
|
|
oc_window_destroy(window);
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_terminate();
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
return (0);
|
2023-02-27 14:43:41 +00:00
|
|
|
}
|