2012-05-19 18:28:19 +02:00
|
|
|
/*! \file allegro_utils.h
|
|
|
|
* \brief Headers of helper functions for Allegro.
|
|
|
|
*/
|
2012-05-18 13:12:58 +02: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-05-09 10:58:45 +02:00
|
|
|
#include <allegro5/allegro.h>
|
|
|
|
#include <allegro5/allegro_font.h>
|
2012-12-24 19:41:12 +01:00
|
|
|
#include "main.h"
|
2012-05-09 10:58:45 +02:00
|
|
|
|
2012-05-19 18:09:20 +02:00
|
|
|
/*! \brief Draws rectangle filled with vertical gradient. */
|
2012-12-24 19:41:12 +01:00
|
|
|
void DrawVerticalGradientRect(float x, float y, float w, float h, ALLEGRO_COLOR top, ALLEGRO_COLOR bottom);
|
2012-05-19 18:09:20 +02:00
|
|
|
/*! \brief Draws rectangle filled with horizontal gradient. */
|
2012-12-24 19:41:12 +01:00
|
|
|
void DrawHorizontalGradientRect(float x, float y, float w, float h, ALLEGRO_COLOR left, ALLEGRO_COLOR right);
|
2012-05-19 18:09:20 +02:00
|
|
|
/*! \brief Draws text with shadow.
|
|
|
|
*
|
|
|
|
* Draws given text two times: once with color (0,0,0,128) and 1px off in both x and y axis,
|
|
|
|
* and second time with actual given color and position.
|
|
|
|
*/
|
2012-12-24 19:41:12 +01:00
|
|
|
void DrawTextWithShadow(ALLEGRO_FONT *font, ALLEGRO_COLOR color, float x, float y, int flags, char const *text);
|
|
|
|
|
|
|
|
/*! \brief Loads bitmap into memory and scales it with software linear filtering. */
|
|
|
|
ALLEGRO_BITMAP* LoadScaledBitmap(struct Game *game, char* filename, int width, int height);
|
|
|
|
|
|
|
|
/*! \brief Displays fade in or fade out animation on current gamestate. */
|
2012-12-26 02:25:56 +01:00
|
|
|
void FadeGamestate(struct Game *game, bool in);
|
2012-12-24 19:41:12 +01:00
|
|
|
|
|
|
|
/*! \brief Finds path for data file. */
|
|
|
|
char* GetDataFilePath(char* filename);
|
|
|
|
|
|
|
|
/*! \brief Print some message on game console.
|
|
|
|
*
|
|
|
|
* Draws message on console bitmap, so it'll be displayed when calling DrawConsole.
|
|
|
|
* If game->debug is true, then it also prints given message on stdout.
|
|
|
|
* It needs to be called in printf style.
|
|
|
|
*/
|
|
|
|
void PrintConsole(struct Game *game, char* format, ...);
|