view src/main.c @ 7:fbb7101b7bd8

core: implement animations, closes #2439
author David Demelier <markand@malikania.fr>
date Mon, 06 Jan 2020 21:39:16 +0100
parents b5c649b6367b
children c91c3272101b
line wrap: on
line source

/*
 * main.c -- Molko's Adventure
 *
 * Copyright (c) 2020 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <stdio.h>

#include "animation.h"
#include "clock.h"
#include "image.h"
#include "sprite.h"
#include "texture.h"
#include "window.h"

#include <SDL.h>

int
main(int argc, char **argv)
{
	(void)argc;
	(void)argv;

	struct texture *logo;
	struct sprite sprite;
	struct clock clock;
	struct animation animation;

	window_init("Molko's Adventure", 640, 480);
	window_set_color(0x667788ff);

	clock_start(&clock);

	logo = image_openf("E:\\dev\\molko\\explosion.png");

	if (!logo)
		exit(1);

	sprite_init(&sprite, logo, 256, 256);
	animation_init(&animation, &sprite, 20);
	setvbuf(stdout, NULL, _IONBF, 0);

	for (;;) {
		uint64_t ticks = clock_elapsed(&clock);

		clock_start(&clock);

		SDL_Event ev;
		while (SDL_PollEvent(&ev)) {
			switch (ev.type) {
			case SDL_QUIT:
				return 0;
			}
		}

		//animation_update(&animation, ticks);
		window_clear();
		sprite_draw(&sprite, 4, 0, 10, 10);
		//animation_draw(&animation, 10, 10);
		window_present();
		printf("%llu\n", ticks);
		SDL_Delay(50);
	}

#if 0
	window_set_color(0xffffffff);
	window_draw_line(50, 50, 100, 100);
	window_draw_point(60, 60);
	window_draw_rectangle(true, 20, 20, 70, 10);
	logo = image_openf("E:\\Charactervector.png");
	sprite_init(&sprite, logo, 65, 100);
	sprite_draw(&sprite, 1, 2, 400, 400);
#endif

	return 0;
}