removed range.c

It's now a game-layer specific concept (for now, while I battle test it more in gameplay code)
This commit is contained in:
randy 2024-08-05 12:18:45 +07:00
parent d89ef01fa6
commit 5b636bd986
2 changed files with 0 additions and 62 deletions

View file

@ -286,7 +286,6 @@ typedef u8 bool;
#include "hash.c"
#include "path_utils.c"
#include "linmath.c"
#include "range.c"
#include "utility.c"
#include "hash_table.c"

View file

@ -1,61 +0,0 @@
// randy: we might wanna remove the f by default, similar to the Vector2 ?
// I know that we'll have a Range2i at some point, so maybe it's better to be explicit for less confusion?
// I'll leave this decision up to u charlie just delete this whenever u see it
// charlie:
// Is this range stuff really necessary?
// Why not just:
// typedef Vector2 Range1f;
// typedef Vector4 Range2f;
// Vector4 also already have alias for x1, y1, x2, y2 and we could add an alias for min & max vectors (see linmath.c)
// This feels like introducing unnecessary complexity and vocabulary when it's really just
// another way to say Vector2 and Vector4.
typedef DEPRECATED(struct Range1f Range1f, "Range2f & Range1f will be removed. If you are using this, you should yoink it into your game code (from oogabooga/range.c).");
typedef DEPRECATED(struct Range2f Range2f, "Range2f & Range1f will be removed. If you are using this, you should yoink it into your game code (from oogabooga/range.c).");
typedef struct Range1f {
float min;
float max;
} Range1f;
// ...
typedef struct Range2f {
Vector2 min;
Vector2 max;
} Range2f;
DEPRECATED(Range2f range2f_make(Vector2 min, Vector2 max), "Range2f & Range1f will be removed. If you are using this, you should yoink it into your game code (from oogabooga/range.c).");
DEPRECATED(Range2f range2f_shift(Range2f r, Vector2 shift), "Range2f & Range1f will be removed. If you are using this, you should yoink it into your game code (from oogabooga/range.c).");
DEPRECATED(Range2f range2f_make_bottom_center(Vector2 size), "Range2f & Range1f will be removed. If you are using this, you should yoink it into your game code (from oogabooga/range.c).");
DEPRECATED(Vector2 range2f_size(Range2f range), "Range2f & Range1f will be removed. If you are using this, you should yoink it into your game code (from oogabooga/range.c).");
DEPRECATED(bool range2f_contains(Range2f range, Vector2 v), "Range2f & Range1f will be removed. If you are using this, you should yoink it into your game code (from oogabooga/range.c).");
inline Range2f range2f_make(Vector2 min, Vector2 max) { return (Range2f) { min, max }; }
Range2f range2f_shift(Range2f r, Vector2 shift) {
r.min = v2_add(r.min, shift);
r.max = v2_add(r.max, shift);
return r;
}
Range2f range2f_make_bottom_center(Vector2 size) {
Range2f range = {0};
range.max = size;
range = range2f_shift(range, v2(size.x * -0.5, 0.0));
return range;
}
Vector2 range2f_size(Range2f range) {
Vector2 size = {0};
size = v2_sub(range.min, range.max);
size.x = fabsf(size.x);
size.y = fabsf(size.y);
return size;
}
bool range2f_contains(Range2f range, Vector2 v) {
return v.x >= range.min.x && v.x <= range.max.x && v.y >= range.min.y && v.y <= range.max.y;
}