2015-03-15 20:51:56 +01:00
|
|
|
/*! \file utils.h
|
|
|
|
* \brief Headers of helper functions.
|
2012-05-19 18:28:19 +02:00
|
|
|
*/
|
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.
|
|
|
|
*/
|
2016-07-03 00:43:32 +02:00
|
|
|
|
|
|
|
#ifndef LIBSUPERDERPY_UTILS_H
|
|
|
|
#define LIBSUPERDERPY_UTILS_H
|
|
|
|
|
2012-05-09 10:58:45 +02:00
|
|
|
#include <allegro5/allegro.h>
|
|
|
|
#include <allegro5/allegro_font.h>
|
2016-07-03 00:43:32 +02:00
|
|
|
#include "libsuperderpy.h"
|
2012-05-09 10:58:45 +02:00
|
|
|
|
2016-06-27 21:20:02 +02:00
|
|
|
#ifdef ALLEGRO_WINDOWS
|
2016-06-28 00:17:49 +02:00
|
|
|
#define LIBRARY_EXTENSION ".dll"
|
2016-07-03 20:34:31 +02:00
|
|
|
#elif ALLEGRO_MACOSX
|
2016-07-02 23:23:08 +02:00
|
|
|
#define LIBRARY_EXTENTION ".dylib"
|
2016-06-27 21:20:02 +02:00
|
|
|
#else
|
2016-06-28 00:17:49 +02:00
|
|
|
#define LIBRARY_EXTENSION ".so"
|
2016-06-27 21:20:02 +02:00
|
|
|
#endif
|
|
|
|
|
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 Finds path for data file. */
|
2012-12-28 02:55:52 +01:00
|
|
|
char* GetDataFilePath(struct Game *game, char* filename);
|
2012-12-24 19:41:12 +01:00
|
|
|
|
2016-07-03 22:38:36 +02:00
|
|
|
char* GetGameName(struct Game *game, char* format);
|
2016-06-27 21:20:02 +02:00
|
|
|
|
2012-12-24 19:41:12 +01:00
|
|
|
/*! \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, ...);
|
2012-12-28 02:55:52 +01:00
|
|
|
|
|
|
|
void FatalError(struct Game *game, bool exit, char* format, ...);
|
2016-06-27 21:20:02 +02:00
|
|
|
|
|
|
|
/*! \brief Structure representing one spritesheet for character animation. */
|
|
|
|
struct Spritesheet {
|
|
|
|
char* name; /*!< Name of the spritesheet (used in file paths). */
|
|
|
|
ALLEGRO_BITMAP* bitmap; /*!< Spritesheet bitmap. */
|
|
|
|
int rows; /*!< Number of rows in the spritesheet. */
|
|
|
|
int cols; /*!< Number of columns in the spritesheet. */
|
|
|
|
int blanks; /*!< Number of blank frames at the end of the spritesheet. */
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int delay;
|
|
|
|
bool kill;
|
|
|
|
float scale; /*!< Scale modifier of the frame. */
|
|
|
|
char* successor; /*!< Name of animation successor. If it's not blank, then animation will be played only once. */
|
|
|
|
struct Spritesheet* next; /*!< Next spritesheet in the queue. */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*! \brief Structure representing one visible character. */
|
|
|
|
struct Character {
|
|
|
|
char* name; /*!< Name of the character (used in file paths). */
|
|
|
|
struct Spritesheet *spritesheet; /*!< Current spritesheet used by character. */
|
|
|
|
struct Spritesheet *spritesheets; /*!< List of all spritesheets registered to character. */
|
|
|
|
char* successor;
|
|
|
|
ALLEGRO_BITMAP* bitmap;
|
|
|
|
int pos; /*!< Current spritesheet position. */
|
|
|
|
int pos_tmp; /*!< A counter used to slow down spritesheet animation. */
|
|
|
|
float x; /*!< Horizontal position of character. */
|
|
|
|
float y; /*!< Vertical position of character. */
|
|
|
|
float angle; /*!< Characters display angle (radians). */
|
|
|
|
void* data; /*!< Additional, custom character data (HP etc.). */
|
|
|
|
bool shared;
|
|
|
|
bool dead;
|
|
|
|
};
|
|
|
|
|
2016-07-03 00:43:32 +02:00
|
|
|
#endif
|