2023-09-07 12:51:48 +00:00
|
|
|
/*************************************************************************
|
2023-02-27 14:43:41 +00:00
|
|
|
*
|
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-02-27 14:43:41 +00:00
|
|
|
*
|
2023-09-07 12:51:48 +00:00
|
|
|
**************************************************************************/
|
2023-08-19 12:49:23 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.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-08-19 12:49:23 +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-08-19 12:49:23 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_rect contentRect = oc_window_get_content_rect(window);
|
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-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);
|
|
|
|
}
|
|
|
|
|
|
|
|
//NOTE: create image
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_str8 imagePath = oc_path_executable_relative(oc_scratch(), OC_STR8("../../resources/triceratops.png"));
|
|
|
|
oc_image image = oc_image_create_from_file(surface, imagePath, false);
|
|
|
|
oc_vec2 imageSize = oc_image_size(image);
|
2023-08-19 12:49:23 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_str8 imagePath2 = oc_path_executable_relative(oc_scratch(), OC_STR8("../../resources/Top512.png"));
|
|
|
|
oc_image image2 = oc_image_create_from_file(surface, imagePath2, false);
|
|
|
|
oc_vec2 imageSize2 = oc_image_size(image2);
|
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-08-19 12:49:23 +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;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_surface_select(surface);
|
2023-08-19 12:49:23 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_set_color_rgba(0, 1, 1, 1);
|
|
|
|
oc_clear();
|
2023-08-19 12:49:23 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_set_color_rgba(1, 1, 1, 1);
|
2023-08-19 12:49:23 +00:00
|
|
|
/*
|
2023-09-11 18:02:46 +00:00
|
|
|
oc_matrix_multiply_push((oc_mat2x3){0.707, -0.707, 200,
|
2023-02-27 14:43:41 +00:00
|
|
|
0.707, 0.707, 100});
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_set_image(image);
|
|
|
|
oc_set_image_source_region((oc_rect){500, 500, 2000, 1400});
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_move_to(0, 0);
|
|
|
|
oc_line_to(200, 0);
|
|
|
|
oc_line_to(300, 100);
|
|
|
|
oc_line_to(200, 200);
|
|
|
|
oc_line_to(0, 200);
|
|
|
|
oc_line_to(100, 100);
|
|
|
|
oc_close_path();
|
|
|
|
oc_fill();
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_matrix_pop();
|
2023-02-27 14:43:41 +00:00
|
|
|
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_image_draw(image2, (oc_rect){300, 200, 300, 300});
|
2023-07-04 15:24:41 +00:00
|
|
|
*/
|
2023-08-24 22:30:20 +00:00
|
|
|
oc_image_draw(image, (oc_rect){ 100, 100, 300, 300 });
|
|
|
|
oc_image_draw(image2, (oc_rect){ 300, 200, 300, 300 });
|
2023-07-02 10:49:45 +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_destroy(image);
|
|
|
|
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
|
|
|
}
|