Files
hydra/include/vector2i.h

125 lines
3.8 KiB
C
Raw Normal View History

2018-03-28 15:42:56 -07:00
//
// vector2i.h
2018-04-22 23:11:50 -07:00
// Kraken Engine / Hydra
2018-03-28 15:42:56 -07:00
//
2024-01-20 18:58:55 -08:00
// Copyright 2024 Kearwood Gilbert. All rights reserved.
2018-03-28 15:42:56 -07:00
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other materials
// provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY KEARWOOD GILBERT ''AS IS'' AND ANY EXPRESS OR IMPLIED
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
// FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KEARWOOD GILBERT OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
// ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// The views and conclusions contained in the software and documentation are those of the
// authors and should not be interpreted as representing official policies, either expressed
// or implied, of Kearwood Gilbert.
//
2022-07-07 23:02:07 -07:00
#pragma once
2018-03-28 15:42:56 -07:00
#include <functional> // for hash<>
#include <limits> // for std::numeric_limits<>
#include <math.h> // for sqrtf
2023-08-05 21:00:37 -07:00
namespace hydra {
2018-03-28 15:42:56 -07:00
class Vector2i
{
2018-03-28 15:42:56 -07:00
public:
union
{
struct
{
2018-03-28 15:42:56 -07:00
int x, y;
};
int c[2];
};
void init();
void init(int X, int Y);
void init(int v);
void init(int* v);
void init(const Vector2i& v);
2018-03-28 15:42:56 -07:00
static Vector2i Create();
static Vector2i Create(int X, int Y);
static Vector2i Create(int v);
static Vector2i Create(int* v);
static Vector2i Create(const Vector2i& v);
2018-03-28 15:42:56 -07:00
// Vector2 swizzle getters
Vector2i yx() const;
2018-03-28 15:42:56 -07:00
// Vector2 swizzle setters
void yx(const Vector2i& v);
2018-03-28 15:42:56 -07:00
Vector2i operator +(const Vector2i& b) const;
Vector2i operator -(const Vector2i& b) const;
Vector2i operator +() const;
Vector2i operator -() const;
Vector2i operator *(const int v) const;
Vector2i operator /(const int v) const;
2018-03-28 15:42:56 -07:00
Vector2i& operator +=(const Vector2i& b);
Vector2i& operator -=(const Vector2i& b);
Vector2i& operator *=(const int v);
Vector2i& operator /=(const int v);
2018-03-28 15:42:56 -07:00
// Comparison operators are implemented to allow insertion into sorted containers such as std::set
bool operator >(const Vector2i& b) const;
bool operator <(const Vector2i& b) const;
2018-03-28 15:42:56 -07:00
bool operator ==(const Vector2i& b) const;
bool operator !=(const Vector2i& b) const;
2018-03-28 15:42:56 -07:00
int& operator[](unsigned i);
int operator[](unsigned i) const;
2018-03-28 15:42:56 -07:00
int sqrMagnitude() const;
int magnitude() const;
void normalize();
static Vector2i Normalize(const Vector2i& v);
2018-03-28 15:42:56 -07:00
static int Cross(const Vector2i& v1, const Vector2i& v2);
static int Dot(const Vector2i& v1, const Vector2i& v2);
static Vector2i Min(const Vector2i& v1, const Vector2i& v2);
static Vector2i Max(const Vector2i& v1, const Vector2i& v2);
2018-03-28 15:42:56 -07:00
static Vector2i Min();
static Vector2i Max();
static Vector2i Zero();
static Vector2i One();
}; // class Vector2i
2023-08-05 21:00:37 -07:00
static_assert(std::is_pod<Vector2i>::value, "hydra::Vector2i must be a POD type.");
2018-03-28 15:42:56 -07:00
2023-08-05 21:00:37 -07:00
} // namespace hydra
2018-03-28 15:42:56 -07:00
namespace std {
template<>
2023-08-05 21:00:37 -07:00
struct hash<hydra::Vector2i>
{
public:
2023-08-05 21:00:37 -07:00
size_t operator()(const hydra::Vector2i& s) const
{
size_t h1 = hash<int>()(s.x);
size_t h2 = hash<int>()(s.y);
return h1 ^ (h2 << 1);
}
};
2018-03-28 15:42:56 -07:00
} // namespace std