summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-09-04 01:22:04 +0200
committerarchshift <admin@archshift.com>2014-09-04 01:23:03 +0200
commite1206568ec71c0e7017c1f764fdc146ba86ce30a (patch)
treef3e6dcfd16d1d1dc4cea4717efc30e04857a1111
parentIn 1.8, carrots and potatoes yield one less hunger point. (diff)
downloadcuberite-e1206568ec71c0e7017c1f764fdc146ba86ce30a.tar
cuberite-e1206568ec71c0e7017c1f764fdc146ba86ce30a.tar.gz
cuberite-e1206568ec71c0e7017c1f764fdc146ba86ce30a.tar.bz2
cuberite-e1206568ec71c0e7017c1f764fdc146ba86ce30a.tar.lz
cuberite-e1206568ec71c0e7017c1f764fdc146ba86ce30a.tar.xz
cuberite-e1206568ec71c0e7017c1f764fdc146ba86ce30a.tar.zst
cuberite-e1206568ec71c0e7017c1f764fdc146ba86ce30a.zip
-rw-r--r--src/Entities/Entity.h6
-rw-r--r--src/Globals.h40
-rw-r--r--src/Mobs/SnowGolem.cpp12
-rw-r--r--src/Vector3.h33
4 files changed, 29 insertions, 62 deletions
diff --git a/src/Entities/Entity.h b/src/Entities/Entity.h
index 73e8a0d8b..b9c280b6b 100644
--- a/src/Entities/Entity.h
+++ b/src/Entities/Entity.h
@@ -27,9 +27,9 @@
return super::GetClass(); \
}
-#define POSX_TOINT FloorD(GetPosX())
-#define POSY_TOINT FloorD(GetPosY())
-#define POSZ_TOINT FloorD(GetPosZ())
+#define POSX_TOINT (int)floor(GetPosX())
+#define POSY_TOINT (int)floor(GetPosY())
+#define POSZ_TOINT (int)floor(GetPosZ())
#define POS_TOINT Vector3i(POSXTOINT, POSYTOINT, POSZTOINT)
#define GET_AND_VERIFY_CURRENT_CHUNK(ChunkVarName, X, Z) cChunk * ChunkVarName = a_Chunk.GetNeighborChunk(X, Z); if ((ChunkVarName == NULL) || !ChunkVarName->IsValid()) { return; }
diff --git a/src/Globals.h b/src/Globals.h
index a782de325..de1024010 100644
--- a/src/Globals.h
+++ b/src/Globals.h
@@ -217,10 +217,10 @@ template class SizeChecker<UInt16, 2>;
// CRT stuff:
#include <sys/stat.h>
-#include <cassert>
-#include <cstdio>
-#include <cmath>
-#include <cstdarg>
+#include <assert.h>
+#include <stdio.h>
+#include <math.h>
+#include <stdarg.h>
@@ -370,38 +370,6 @@ T Clamp(T a_Value, T a_Min, T a_Max)
-/** Floors a_Value, then casts it to C (an int by default) */
-template <typename C = int>
-C FloorD(double a_Value)
-{
- return static_cast<C>(std::floor(a_Value));
-}
-
-/** Floors a_Value, then casts it to C (an int by default) */
-template <typename C = int>
-C FloorF(double a_Value)
-{
- return static_cast<C>(std::floorf(a_Value));
-}
-
-/** Ciels a_Value, then casts it to C (an int by default) */
-template <typename C = int>
-C CeilD(double a_Value)
-{
- return static_cast<C>(std::ceil(a_Value));
-}
-
-/** Ciels a_Value, then casts it to C (an int by default) */
-template <typename C = int>
-C CeilF(double a_Value)
-{
- return static_cast<C>(std::ceilf(a_Value));
-}
-
-
-
-
-
#ifndef TOLUA_TEMPLATE_BIND
#define TOLUA_TEMPLATE_BIND(x)
#endif
diff --git a/src/Mobs/SnowGolem.cpp b/src/Mobs/SnowGolem.cpp
index 43ce16ee4..76334d970 100644
--- a/src/Mobs/SnowGolem.cpp
+++ b/src/Mobs/SnowGolem.cpp
@@ -30,19 +30,17 @@ void cSnowGolem::GetDrops(cItems & a_Drops, cEntity * a_Killer)
void cSnowGolem::Tick(float a_Dt, cChunk & a_Chunk)
{
super::Tick(a_Dt, a_Chunk);
- if (IsBiomeNoDownfall(m_World->GetBiomeAt(POSX_TOINT, POSZ_TOINT)))
+ if (IsBiomeNoDownfall(m_World->GetBiomeAt((int) floor(GetPosX()), (int) floor(GetPosZ()))))
{
TakeDamage(*this);
}
else
{
- BLOCKTYPE BlockBelow = m_World->GetBlock(POSX_TOINT, POSY_TOINT - 1, POSZ_TOINT);
- BLOCKTYPE Block = m_World->GetBlock(POSX_TOINT, POSY_TOINT, POSZ_TOINT);
- if (Block == E_BLOCK_AIR
- && cBlockInfo::IsSolid(BlockBelow)
- && GetPosY() >= 64) // Must be at at least 64Y for snow to form
+ BLOCKTYPE BlockBelow = m_World->GetBlock((int) floor(GetPosX()), (int) floor(GetPosY()) - 1, (int) floor(GetPosZ()));
+ BLOCKTYPE Block = m_World->GetBlock((int) floor(GetPosX()), (int) floor(GetPosY()), (int) floor(GetPosZ()));
+ if (Block == E_BLOCK_AIR && cBlockInfo::IsSolid(BlockBelow))
{
- m_World->SetBlock(POSX_TOINT, POSY_TOINT, POSZ_TOINT, E_BLOCK_SNOW, 0);
+ m_World->SetBlock((int) floor(GetPosX()), (int) floor(GetPosY()), (int) floor(GetPosZ()), E_BLOCK_SNOW, 0);
}
}
}
diff --git a/src/Vector3.h b/src/Vector3.h
index 782b0d1c9..1dcb38f64 100644
--- a/src/Vector3.h
+++ b/src/Vector3.h
@@ -4,6 +4,7 @@
#define _USE_MATH_DEFINES // Enable non-standard math defines (MSVC)
+#include <math.h>
#include <list>
#include <vector>
@@ -28,9 +29,9 @@ public:
// Hardcoded copy constructors (tolua++ does not support function templates .. yet)
- Vector3(const Vector3<float> & a_Rhs) : x(static_cast<T>(a_Rhs.x)), y(static_cast<T>(a_Rhs.y)), z(static_cast<T>(a_Rhs.z)) {}
- Vector3(const Vector3<double> & a_Rhs) : x(static_cast<T>(a_Rhs.x)), y(static_cast<T>(a_Rhs.y)), z(static_cast<T>(a_Rhs.z)) {}
- Vector3(const Vector3<int> & a_Rhs) : x(static_cast<T>(a_Rhs.x)), y(static_cast<T>(a_Rhs.y)), z(static_cast<T>(a_Rhs.z)) {}
+ Vector3(const Vector3<float> & a_Rhs) : x((T) a_Rhs.x), y((T) a_Rhs.y), z((T) a_Rhs.z) {}
+ Vector3(const Vector3<double> & a_Rhs) : x((T) a_Rhs.x), y((T) a_Rhs.y), z((T) a_Rhs.z) {}
+ Vector3(const Vector3<int> & a_Rhs) : x((T) a_Rhs.x), y((T) a_Rhs.y), z((T) a_Rhs.z) {}
// tolua_end
@@ -52,9 +53,9 @@ public:
{
double Len = 1.0 / Length();
- x = static_cast<T>(x * Len);
- y = static_cast<T>(y * Len);
- z = static_cast<T>(z * Len);
+ x = (T)(x * Len);
+ y = (T)(y * Len);
+ z = (T)(z * Len);
}
inline Vector3<T> NormalizeCopy(void) const
@@ -62,9 +63,9 @@ public:
double Len = 1.0 / Length();
return Vector3<T>(
- static_cast<T>(x * Len),
- static_cast<T>(y * Len),
- static_cast<T>(z * Len)
+ (T)(x * Len),
+ (T)(y * Len),
+ (T)(z * Len)
);
}
@@ -73,15 +74,15 @@ public:
double Len = 1.0 / Length();
a_Rhs.Set(
- static_cast<T>(x * Len),
- static_cast<T>(y * Len),
- static_cast<T>(z * Len)
+ (T)(x * Len),
+ (T)(y * Len),
+ (T)(z * Len)
);
}
inline double Length(void) const
{
- return sqrt(static_cast<double>(x * x + y * y + z * z));
+ return sqrt((double)(x * x + y * y + z * z));
}
inline double SqrLength(void) const
@@ -137,9 +138,9 @@ public:
inline Vector3<int> Floor(void) const
{
return Vector3<int>(
- static_cast<int>(floor(x)),
- static_cast<int>(floor(y)),
- static_cast<int>(floor(z))
+ (int)floor(x),
+ (int)floor(y),
+ (int)floor(z)
);
}