2012-02-28 13:09:12 +01:00
|
|
|
/*! \file level.c
|
|
|
|
* \brief Playable Level code.
|
|
|
|
*/
|
2012-03-04 13:32:42 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) Sebastian Krzyszkowiak <dos@dosowisko.net>
|
|
|
|
*
|
|
|
|
* 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 2 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
2012-02-22 12:43:14 +01:00
|
|
|
#include <stdio.h>
|
2012-04-06 17:28:38 +02:00
|
|
|
#include "moonwalk.h"
|
2012-02-22 12:43:14 +01:00
|
|
|
#include "level.h"
|
|
|
|
|
|
|
|
void Level_Draw(struct Game *game) {
|
2012-04-06 17:28:38 +02:00
|
|
|
Moonwalk_Draw(game);
|
2012-02-22 12:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Level_Load(struct Game *game) {
|
2012-04-06 17:28:38 +02:00
|
|
|
Moonwalk_Load(game);
|
2012-02-22 12:43:14 +01:00
|
|
|
}
|
2012-02-25 22:26:31 +01:00
|
|
|
|
2012-02-22 12:43:14 +01:00
|
|
|
int Level_Keydown(struct Game *game, ALLEGRO_EVENT *ev) {
|
2012-04-06 17:28:38 +02:00
|
|
|
return Moonwalk_Keydown(game, ev);
|
2012-03-08 22:21:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Level_Preload(struct Game *game) {
|
2012-04-06 17:28:38 +02:00
|
|
|
Moonwalk_Preload(game);
|
|
|
|
}
|
2012-03-08 22:21:02 +01:00
|
|
|
|
2012-04-06 17:28:38 +02:00
|
|
|
void Level_Unload(struct Game *game) {
|
|
|
|
Moonwalk_Unload(game);
|
2012-02-22 12:43:14 +01:00
|
|
|
}
|
2012-02-25 22:26:31 +01:00
|
|
|
|
2012-03-08 22:21:02 +01:00
|
|
|
void Level_UnloadBitmaps(struct Game *game) {
|
2012-04-06 17:28:38 +02:00
|
|
|
Moonwalk_UnloadBitmaps(game);
|
2012-03-08 22:21:02 +01:00
|
|
|
}
|
|
|
|
|
2012-04-06 17:28:38 +02:00
|
|
|
void Level_PreloadBitmaps(struct Game *game) {
|
|
|
|
Moonwalk_PreloadBitmaps(game);
|
2012-02-22 12:43:14 +01:00
|
|
|
}
|