2018-02-24 07:13:28 +01:00
|
|
|
/*
|
|
|
|
* BreakHack - A dungeone crawler RPG
|
|
|
|
* Copyright (C) 2018 Linus Probert <linus.probert@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SKILL_H_
|
|
|
|
#define SKILL_H_
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "roommatrix.h"
|
|
|
|
#include "sprite.h"
|
2018-02-28 15:28:45 +01:00
|
|
|
#include "vector2d.h"
|
2018-02-24 07:13:28 +01:00
|
|
|
|
2018-02-28 22:31:38 +01:00
|
|
|
// Forward declaration
|
2018-09-11 15:49:58 +02:00
|
|
|
typedef struct Player Player;
|
2018-02-28 22:31:38 +01:00
|
|
|
|
2018-02-24 07:13:28 +01:00
|
|
|
enum SkillType {
|
2018-02-28 22:31:38 +01:00
|
|
|
FLURRY,
|
2018-08-04 23:52:52 +02:00
|
|
|
BASH,
|
2018-03-01 13:48:03 +01:00
|
|
|
CHARGE,
|
2018-03-10 22:04:03 +01:00
|
|
|
DAGGER_THROW,
|
2018-09-11 15:49:58 +02:00
|
|
|
SIP_HEALTH,
|
|
|
|
BACKSTAB,
|
|
|
|
TRIP,
|
2018-09-28 14:57:43 +02:00
|
|
|
PHASE
|
2018-02-24 07:13:28 +01:00
|
|
|
};
|
|
|
|
|
2018-02-28 15:28:45 +01:00
|
|
|
typedef struct SkillData_t {
|
2018-09-11 15:49:58 +02:00
|
|
|
Player *player;
|
2018-02-28 15:28:45 +01:00
|
|
|
RoomMatrix *matrix;
|
|
|
|
Vector2d direction;
|
|
|
|
} SkillData;
|
|
|
|
|
2018-02-24 07:13:28 +01:00
|
|
|
typedef struct Skill_t {
|
|
|
|
char label[20];
|
|
|
|
Sprite *icon;
|
2018-02-28 15:28:45 +01:00
|
|
|
unsigned int resetTime;
|
|
|
|
unsigned int resetCountdown;
|
2018-03-23 22:03:34 +01:00
|
|
|
unsigned int levelcap;
|
2018-02-28 22:31:38 +01:00
|
|
|
bool actionRequired;
|
|
|
|
bool instantUse;
|
2018-02-24 07:13:28 +01:00
|
|
|
bool active;
|
2018-03-13 16:13:54 +01:00
|
|
|
bool (*available)(Player*);
|
2018-02-28 15:28:45 +01:00
|
|
|
bool (*use)(struct Skill_t*, SkillData*);
|
2018-08-20 14:30:31 +02:00
|
|
|
Sprite *tooltip;
|
2018-02-24 07:13:28 +01:00
|
|
|
} Skill;
|
|
|
|
|
|
|
|
Skill*
|
2018-08-20 14:30:31 +02:00
|
|
|
skill_create(enum SkillType, Camera *cam);
|
2018-02-24 07:13:28 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
skill_destroy(Skill*);
|
|
|
|
|
|
|
|
#endif // SKILL_H_
|