/************************************************************/ /**
*
*	@file: main.cpp
*	@author: Martin Fouilleul
*	@date: 30/07/2022
*	@revision:
*
*****************************************************************/
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define _USE_MATH_DEFINES //NOTE: necessary for MSVC
#include <math.h>

#include "orca.h"

int main()
{
    oc_init();

    oc_rect windowRect = { .x = 100, .y = 100, .w = 810, .h = 610 };
    oc_window window = oc_window_create(windowRect, OC_STR8("test"), 0);

    oc_rect contentRect = oc_window_get_content_rect(window);

    //NOTE: create surface
    oc_surface surface = oc_surface_create_for_window(window, OC_CANVAS);
    if(oc_surface_is_nil(surface))
    {
        oc_log_error("couldn't create surface\n");
        return (-1);
    }
    oc_surface_swap_interval(surface, 0);

    //NOTE: create canvas
    oc_canvas canvas = oc_canvas_create();
    if(oc_canvas_is_nil(canvas))
    {
        oc_log_error("Error: couldn't create canvas\n");
        return (-1);
    }

    //NOTE: create image
    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);

    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);

    // start app
    oc_window_bring_to_front(window);
    oc_window_focus(window);

    while(!oc_should_quit())
    {
        oc_pump_events(0);
        oc_event* event = 0;
        while((event = oc_next_event(oc_scratch())) != 0)
        {
            switch(event->type)
            {
                case OC_EVENT_WINDOW_CLOSE:
                {
                    oc_request_quit();
                }
                break;

                default:
                    break;
            }
        }

        oc_surface_select(surface);

        oc_set_color_rgba(0, 1, 1, 1);
        oc_clear();

        oc_set_color_rgba(1, 1, 1, 1);
        /*
			oc_matrix_push((oc_mat2x3){0.707, -0.707, 200,
			                           0.707, 0.707, 100});
			oc_set_image(image);
			oc_set_image_source_region((oc_rect){500, 500, 2000, 1400});

			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();

			oc_matrix_pop();

			oc_image_draw(image2, (oc_rect){300, 200, 300, 300});
*/
        oc_image_draw(image, (oc_rect){ 100, 100, 300, 300 });
        oc_image_draw(image2, (oc_rect){ 300, 200, 300, 300 });

        oc_render(surface, canvas);
        oc_surface_present(surface);

        oc_arena_clear(oc_scratch());
    }

    oc_image_destroy(image);
    oc_canvas_destroy(canvas);
    oc_surface_destroy(surface);
    oc_window_destroy(window);

    oc_terminate();

    return (0);
}