1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-05 00:49:09 +02:00
Files
vcmi/lib/rmg/float3.h

174 lines
4.1 KiB
C
Raw Permalink Normal View History

2014-05-24 12:42:06 +02:00
/*
* float3.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
2014-05-24 12:42:06 +02:00
// FIXME: Class doesn't contain three float values. Update name and description.
2014-05-24 12:42:06 +02:00
/// Class which consists of three float values. Represents position virtual RMG (0;1) area.
class float3
{
public:
float x, y;
si32 z;
float3()
: x(0), y(0), z(0) {}
float3(const float X, const float Y, const si32 Z)
: x(X), y(Y), z(Z) {}
float3(const float3 & copy)
: x(copy.x), y(copy.y), z(copy.z) {}
float3 & operator=(const float3 & copy) { x = copy.x; y = copy.y; z = copy.z; return *this; }
// returns float3 with coordinates increased by corresponding coordinate of given float3
float3 operator+(const float3 & i) const { return float3(x + i.x, y + i.y, z + i.z); }
// returns float3 with coordinates increased by given numer
float3 operator+(const float i) const { return float3(x + i, y + i, z + (si32)i); }
// returns float3 with coordinates decreased by corresponding coordinate of given float3
float3 operator-(const float3 & i) const { return float3(x - i.x, y - i.y, z - i.z); }
// returns float3 with coordinates decreased by given numer
float3 operator-(const float i) const { return float3(x - i, y - i, z - (si32)i); }
// returns float3 with plane coordinates decreased by given numer
float3 operator*(const float i) const {return float3(x * i, y * i, z);}
// returns float3 with plane coordinates decreased by given numer
float3 operator/(const float i) const {return float3(x / i, y / i, z);}
// returns opposite position
float3 operator-() const { return float3(-x, -y, -z); }
// returns squared distance on Oxy plane (z coord is not used)
double dist2dSQ(const float3 & o) const
{
const double dx = (x - o.x);
const double dy = (y - o.y);
return dx * dx + dy * dy;
}
double mag() const
{
return sqrt(x * x + y * y);
}
float3 unitVector() const
{
return float3(x, y, z) / mag();
}
// returns distance on Oxy plane (z coord is not used)
double dist2d(const float3 & other) const { return std::sqrt(dist2dSQ(other)); }
bool areNeighbours(const float3 & other) const { return (dist2dSQ(other) < 4.0) && z == other.z; }
float3 & operator+=(const float3 & i)
2014-05-24 12:42:06 +02:00
{
x += i.x;
y += i.y;
z += i.z;
return *this;
2014-05-24 12:42:06 +02:00
}
float3 & operator+=(const float & i)
2014-05-24 12:42:06 +02:00
{
x += i;
y += i;
z += (si32)i;
return *this;
2014-05-24 12:42:06 +02:00
}
float3 & operator-=(const float3 & i)
2014-05-24 12:42:06 +02:00
{
x -= i.x;
y -= i.y;
z -= i.z;
return *this;
2014-05-24 12:42:06 +02:00
}
float3 & operator-=(const float & i)
2014-05-24 12:42:06 +02:00
{
x += i;
y += i;
z += (si32)i;
return *this;
2014-05-24 12:42:06 +02:00
}
// scale on plane
float3 & operator*=(const float & i)
2014-05-24 12:42:06 +02:00
{
x *= i;
y *= i;
return *this;
2014-05-24 12:42:06 +02:00
}
// scale on plane
float3 & operator/=(const float & i)
2014-05-24 12:42:06 +02:00
{
x /= i;
y /= i;
return *this;
2014-05-24 12:42:06 +02:00
}
bool operator==(const float3 & i) const { return (x == i.x) && (y == i.y) && (z == i.z); }
bool operator!=(const float3 & i) const { return (x != i.x) || (y != i.y) || (z != i.z); }
bool operator<(const float3 & i) const
2014-05-24 12:42:06 +02:00
{
if(z < i.z)
2014-05-24 12:42:06 +02:00
return true;
if(z > i.z)
2014-05-24 12:42:06 +02:00
return false;
if(y < i.y)
2014-05-24 12:42:06 +02:00
return true;
if(y > i.y)
2014-05-24 12:42:06 +02:00
return false;
if(x < i.x)
2014-05-24 12:42:06 +02:00
return true;
if(x > i.x)
2014-05-24 12:42:06 +02:00
return false;
2014-05-24 12:42:06 +02:00
return false;
}
std::string operator()() const
2014-05-24 12:42:06 +02:00
{
return "(" + boost::lexical_cast<std::string>(x) +
" " + boost::lexical_cast<std::string>(y) +
" " + boost::lexical_cast<std::string>(z) + ")";
2014-05-24 12:42:06 +02:00
}
bool valid() const
2014-05-24 12:42:06 +02:00
{
return z >= 0; //minimal condition that needs to be fulfilled for tiles in the map
}
template<typename Handler> void serialize(Handler & h, const float version)
2014-05-24 12:42:06 +02:00
{
h & x & y & z;
}
};
2014-05-24 12:42:06 +02:00
inline std::istream & operator>>(std::istream & str, float3 & dest)
{
return str >> dest.x >> dest.y >> dest.z;
2014-05-24 12:42:06 +02:00
}
inline std::ostream & operator<<(std::ostream & str, const float3 & sth)
{
return str << sth.x << ' ' << sth.y << ' ' << sth.z;
2014-05-24 12:42:06 +02:00
}
struct Shashfloat3
{
size_t operator()(float3 const & pos) const
2014-05-24 12:42:06 +02:00
{
size_t ret = std::hash<float>()(pos.x);
vstd::hash_combine(ret, pos.y);
vstd::hash_combine(ret, pos.z);
return ret;
}
};