2018-03-27 16:48:24 -07:00
|
|
|
//
|
|
|
|
|
// Matrix2.h
|
2018-04-22 23:11:50 -07:00
|
|
|
// Kraken Engine / Hydra
|
2018-03-27 16:48:24 -07:00
|
|
|
//
|
2022-04-03 21:53:41 -07:00
|
|
|
// Copyright 2022 Kearwood Gilbert. All rights reserved.
|
2018-03-27 16:48:24 -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.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#include "vector2.h"
|
|
|
|
|
|
2023-08-05 21:00:37 -07:00
|
|
|
#pragma once
|
2018-03-27 16:48:24 -07:00
|
|
|
|
2023-08-05 21:00:37 -07:00
|
|
|
namespace hydra {
|
2018-03-27 16:48:24 -07:00
|
|
|
|
2022-08-08 00:20:45 -07:00
|
|
|
class Matrix2
|
|
|
|
|
{
|
2018-03-27 16:48:24 -07:00
|
|
|
public:
|
|
|
|
|
|
2022-08-08 00:20:45 -07:00
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
struct
|
|
|
|
|
{
|
2018-03-27 16:48:24 -07:00
|
|
|
Vector2 axis_x, axis_y;
|
|
|
|
|
};
|
|
|
|
|
// Matrix components, in column-major order
|
|
|
|
|
float c[4];
|
|
|
|
|
};
|
2022-08-08 00:20:45 -07:00
|
|
|
|
2018-03-27 16:48:24 -07:00
|
|
|
// Default initializer - Creates an identity matrix
|
|
|
|
|
void init();
|
|
|
|
|
|
2022-08-08 00:20:45 -07:00
|
|
|
void init(float* pMat);
|
|
|
|
|
|
|
|
|
|
void init(const Vector2& new_axis_x, const Vector2& new_axis_y);
|
|
|
|
|
|
|
|
|
|
void init(const Matrix2& m);
|
|
|
|
|
|
2018-03-27 16:48:24 -07:00
|
|
|
// Overload comparison operator
|
2022-08-08 00:20:45 -07:00
|
|
|
bool operator==(const Matrix2& m) const;
|
|
|
|
|
|
2018-03-27 16:48:24 -07:00
|
|
|
// Overload compound multiply operator
|
2022-08-08 00:20:45 -07:00
|
|
|
Matrix2& operator*=(const Matrix2& m);
|
|
|
|
|
|
2018-03-27 16:48:24 -07:00
|
|
|
float& operator[](unsigned i);
|
|
|
|
|
float operator[](unsigned i) const;
|
2022-08-08 00:20:45 -07:00
|
|
|
|
2018-03-27 16:48:24 -07:00
|
|
|
// Overload multiply operator
|
|
|
|
|
//Matrix4& operator*(const Matrix4 &m);
|
2022-08-08 00:20:45 -07:00
|
|
|
Matrix2 operator*(const Matrix2& m) const;
|
|
|
|
|
|
|
|
|
|
float* getPointer();
|
|
|
|
|
|
2018-03-27 16:48:24 -07:00
|
|
|
void scale(float x, float y);
|
2022-08-08 00:20:45 -07:00
|
|
|
void scale(const Vector2& v);
|
2018-03-27 16:48:24 -07:00
|
|
|
void scale(float s);
|
|
|
|
|
void rotate(float angle);
|
|
|
|
|
bool invert();
|
|
|
|
|
void transpose();
|
2022-08-08 00:20:45 -07:00
|
|
|
|
|
|
|
|
static Matrix2 Invert(const Matrix2& m);
|
|
|
|
|
static Matrix2 Transpose(const Matrix2& m);
|
|
|
|
|
static Vector2 Dot(const Matrix2& m, const Vector2& v);
|
2018-03-27 16:48:24 -07:00
|
|
|
|
|
|
|
|
static Matrix2 Rotation(float);
|
2022-08-08 00:20:45 -07:00
|
|
|
static Matrix2 Scaling(const Vector2& v);
|
2018-03-27 16:48:24 -07:00
|
|
|
static Matrix2 Identity();
|
|
|
|
|
};
|
2023-08-05 21:00:37 -07:00
|
|
|
static_assert(std::is_pod<Matrix2>::value, "hydra::Matrix2 must be a POD type.");
|
2018-03-27 16:48:24 -07:00
|
|
|
|
2023-08-05 21:00:37 -07:00
|
|
|
} // namespace hydra
|
2018-03-27 16:48:24 -07:00
|
|
|
|
|
|
|
|
namespace std {
|
2022-08-08 00:20:45 -07:00
|
|
|
template<>
|
2023-08-05 21:00:37 -07:00
|
|
|
struct hash<hydra::Matrix2>
|
2022-08-08 00:20:45 -07:00
|
|
|
{
|
|
|
|
|
public:
|
2023-08-05 21:00:37 -07:00
|
|
|
size_t operator()(const hydra::Matrix2& s) const
|
2022-08-08 00:20:45 -07:00
|
|
|
{
|
2023-08-05 21:00:37 -07:00
|
|
|
size_t h1 = hash<hydra::Vector2>()(s.axis_x);
|
|
|
|
|
size_t h2 = hash<hydra::Vector2>()(s.axis_y);
|
2022-08-08 00:20:45 -07:00
|
|
|
return h1 ^ (h2 << 1);
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-03-27 16:48:24 -07:00
|
|
|
} // namespace std
|