2012-02-16 15:40:58 +01:00
|
|
|
#include <allegro5/allegro.h>
|
|
|
|
#include <allegro5/allegro_font.h>
|
|
|
|
#include "loading.h"
|
|
|
|
|
|
|
|
void Loading_Draw(struct Game *game) {
|
2012-02-16 15:46:58 +01:00
|
|
|
ALLEGRO_EVENT ev;
|
2012-02-16 15:40:58 +01:00
|
|
|
for(int fadeloop=0; fadeloop<256; fadeloop+=10){
|
2012-02-16 15:46:58 +01:00
|
|
|
al_wait_for_event(game->event_queue, &ev);
|
2012-02-16 15:40:58 +01:00
|
|
|
al_draw_tinted_bitmap(game->loading.loading_bitmap,al_map_rgba_f(fadeloop/255.0,fadeloop/255.0,fadeloop/255.0,1),0,0,0);
|
2012-02-17 13:25:06 +01:00
|
|
|
DrawConsole(game);
|
2012-02-16 15:40:58 +01:00
|
|
|
al_flip_display();
|
|
|
|
}
|
2012-02-17 13:25:06 +01:00
|
|
|
|
2012-02-16 15:40:58 +01:00
|
|
|
al_draw_bitmap(game->loading.loading_bitmap,0,0,0);
|
2012-02-17 13:25:06 +01:00
|
|
|
|
2012-02-20 20:37:14 +01:00
|
|
|
al_stop_timer(game->timer);
|
|
|
|
|
2012-02-16 15:40:58 +01:00
|
|
|
PreloadGameState(game);
|
2012-02-17 13:25:06 +01:00
|
|
|
|
2012-02-20 20:37:14 +01:00
|
|
|
al_start_timer(game->timer);
|
|
|
|
|
2012-02-16 15:40:58 +01:00
|
|
|
for(int fadeloop=255; fadeloop>0; fadeloop-=10){
|
2012-02-16 15:46:58 +01:00
|
|
|
al_wait_for_event(game->event_queue, &ev);
|
2012-02-16 15:40:58 +01:00
|
|
|
al_draw_tinted_bitmap(game->loading.loading_bitmap,al_map_rgba_f(fadeloop/255.0,fadeloop/255.0,fadeloop/255.0,1),0,0,0);
|
2012-02-17 13:25:06 +01:00
|
|
|
DrawConsole(game);
|
2012-02-16 15:40:58 +01:00
|
|
|
al_flip_display();
|
|
|
|
}
|
|
|
|
al_clear_to_color(al_map_rgb(0,0,0));
|
2012-02-19 22:20:05 +01:00
|
|
|
DrawConsole(game);
|
2012-02-16 15:40:58 +01:00
|
|
|
al_flip_display();
|
|
|
|
//al_rest(0.2);
|
|
|
|
LoadGameState(game);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Loading_Load(struct Game *game) {
|
2012-02-19 18:10:08 +01:00
|
|
|
game->loading.image = al_load_bitmap( "data/loading.png" );
|
2012-02-16 15:40:58 +01:00
|
|
|
|
|
|
|
// Scale "Loading" bitmap
|
|
|
|
game->loading.loading_bitmap = al_create_bitmap(al_get_display_width(game->display), al_get_display_height(game->display));
|
|
|
|
al_set_target_bitmap(game->loading.loading_bitmap);
|
|
|
|
al_draw_scaled_bitmap(game->loading.image,0, 0, al_get_bitmap_width(game->loading.image), al_get_bitmap_height(game->loading.image), 0, 0, al_get_display_width(game->display), al_get_display_height(game->display),0);
|
2012-02-16 17:56:16 +01:00
|
|
|
al_draw_text(game->font, al_map_rgb(255,255,255), al_get_display_width(game->display)*0.0234, al_get_display_height(game->display)*0.85, ALLEGRO_ALIGN_LEFT, "Loading...");
|
2012-02-16 15:40:58 +01:00
|
|
|
al_set_target_bitmap(al_get_backbuffer(game->display));
|
|
|
|
al_destroy_bitmap(game->loading.image);
|
2012-02-16 23:36:25 +01:00
|
|
|
}
|
|
|
|
|
2012-02-17 00:19:21 +01:00
|
|
|
int Loading_Keydown(struct Game *game, ALLEGRO_EVENT *ev) { return 0; }
|
|
|
|
void Loading_Preload(struct Game *game) {}
|
|
|
|
void Loading_Unload(struct Game *game) {}
|