/* * Copyright (C) 2018 Ortega Froysa, Nicolás * Author: Ortega Froysa, Nicolás * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "globals.h" #include "event_manager.h" #include "ship.h" int run; int redraw; int show_help; int show_info; #include #include #include int main() { printf("SpaceShipSim v%s\n", VERSION); if(!al_init()) { fprintf(stderr, "alleg5: failed to initialize Allegro.\n"); return 1; } #ifdef DEBUG puts("Initialized allegro system."); #endif if(!al_init_primitives_addon()) { fprintf(stderr, "alleg5: failed to initialize primitives addon.\n"); return 1; } #ifdef DEBUG puts("Initialized primitives addon."); #endif ALLEGRO_DISPLAY *display = al_create_display(800, 600); if(!display) { fprintf(stderr, "alleg5: failed to initialize display.\n"); return 1; } #ifdef DEBUG puts("Created display."); #endif if(!evnt_mngr_init(display)) { fprintf(stderr, "alleg5: failed to initialize event queue.\n"); al_destroy_display(display); return 1; } // initialize the spaceship at the center of the screen struct ship ship; ship_init(&ship, 400, 300); // begin running the simulation run = 1; redraw = 1; show_help = 1; show_info = 1; while(run) { handle_event(); // only redraw or run simulation if the timer event has occurred if(redraw) { /* * We only run the simulation when the timer goes off so it's * running at a consistent rate, rather than dependent on random * events. */ ship_update(&ship); al_clear_to_color(al_map_rgb(0, 0, 0)); ship_draw(&ship); if(show_info) { // TODO: draw simulation stats } if(show_help) { // TODO: draw help information } al_flip_display(); redraw = 0; } } evnt_mngr_deinit(); al_destroy_display(display); al_shutdown_primitives_addon(); #ifdef DEBUG puts("Shutdown primitives addon."); #endif return 0; }