2018-02-16 18:11:26 +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/>.
|
|
|
|
*/
|
|
|
|
|
2018-02-03 23:39:49 +01:00
|
|
|
#ifndef VECTOR2D_H_
|
|
|
|
#define VECTOR2D_H_
|
|
|
|
|
2018-03-08 00:58:26 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2018-02-28 22:31:38 +01:00
|
|
|
#define VECTOR2D_NODIR (Vector2d) { 0, 0 }
|
2018-02-28 15:28:45 +01:00
|
|
|
#define VECTOR2D_RIGHT (Vector2d) { 1, 0 }
|
|
|
|
#define VECTOR2D_LEFT (Vector2d) { -1, 0 }
|
|
|
|
#define VECTOR2D_UP (Vector2d) { 0, -1 }
|
|
|
|
#define VECTOR2D_DOWN (Vector2d) { 0, 1 }
|
|
|
|
|
2018-02-03 23:39:49 +01:00
|
|
|
typedef struct Vector2d_t {
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
} Vector2d;
|
|
|
|
|
2018-03-08 00:58:26 +01:00
|
|
|
bool
|
|
|
|
vector2d_equals(Vector2d, Vector2d);
|
|
|
|
|
2018-03-15 16:30:41 +01:00
|
|
|
bool
|
|
|
|
vector2d_is_opposite(Vector2d, Vector2d);
|
|
|
|
|
2018-02-03 23:39:49 +01:00
|
|
|
#endif // VECTOR2D_H_
|