Skip to content

Commit

Permalink
Added more clamping operations to cCuboid.
Browse files Browse the repository at this point in the history
  • Loading branch information
madmaxoft committed Aug 10, 2019
1 parent e7016b1 commit d0b095a
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 6 deletions.
22 changes: 22 additions & 0 deletions Server/Plugins/APIDump/Classes/Geometry.lua
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,28 @@ return
Notes = "Assigns all the coords to the specified values. Sort-state is ignored.",
},
},
Clamp =
{
Params =
{
{
Name = "Limits",
Type = "cCuboid",
},
},
Notes = "Clamps this cuboid, so that it doesn't reach outside of Limits in any direction. Assumes both cuboids are sorted.",
},
ClampSize =
{
Params =
{
{
Name = "MaxSize",
Type = "Vector3i",
},
},
Notes = "Clamps this cuboid's p2 so that the cuboid's size doesn't exceed the specified max size. Assumes the cuboid is sorted.",
},
ClampX =
{
Params =
Expand Down
51 changes: 45 additions & 6 deletions src/Cuboid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,49 @@ void cCuboid::Expand(int a_SubMinX, int a_AddMaxX, int a_SubMinY, int a_AddMaxY,



void cCuboid::Clamp(const cCuboid & a_Limits)
{
ASSERT(IsSorted());
ASSERT(a_Limits.IsSorted());

p1.x = ::Clamp(p1.x, a_Limits.p1.x, a_Limits.p2.x);
p1.y = ::Clamp(p1.y, a_Limits.p1.y, a_Limits.p2.y);
p1.z = ::Clamp(p1.z, a_Limits.p1.z, a_Limits.p2.z);
p2.x = ::Clamp(p2.x, a_Limits.p1.x, a_Limits.p2.x);
p2.y = ::Clamp(p2.y, a_Limits.p1.y, a_Limits.p2.y);
p2.z = ::Clamp(p2.z, a_Limits.p1.z, a_Limits.p2.z);
}





void cCuboid::ClampSize(Vector3i a_MaxSize)
{
ASSERT(IsSorted());

if (p2.x - p1.x > a_MaxSize.x)
{
p2.x = p1.x + a_MaxSize.x;
}
if (p2.y - p1.y > a_MaxSize.y)
{
p2.y = p1.y + a_MaxSize.y;
}
if (p2.z - p1.z > a_MaxSize.z)
{
p2.z = p1.z + a_MaxSize.z;
}
}





void cCuboid::ClampX(int a_MinX, int a_MaxX)
{
p1.x = Clamp(p1.x, a_MinX, a_MaxX);
p2.x = Clamp(p2.x, a_MinX, a_MaxX);
p1.x = ::Clamp(p1.x, a_MinX, a_MaxX);
p2.x = ::Clamp(p2.x, a_MinX, a_MaxX);
}


Expand All @@ -133,8 +172,8 @@ void cCuboid::ClampX(int a_MinX, int a_MaxX)

void cCuboid::ClampY(int a_MinY, int a_MaxY)
{
p1.y = Clamp(p1.y, a_MinY, a_MaxY);
p2.y = Clamp(p2.y, a_MinY, a_MaxY);
p1.y = ::Clamp(p1.y, a_MinY, a_MaxY);
p2.y = ::Clamp(p2.y, a_MinY, a_MaxY);
}


Expand All @@ -143,8 +182,8 @@ void cCuboid::ClampY(int a_MinY, int a_MaxY)

void cCuboid::ClampZ(int a_MinZ, int a_MaxZ)
{
p1.z = Clamp(p1.z, a_MinZ, a_MaxZ);
p2.z = Clamp(p2.z, a_MinZ, a_MaxZ);
p1.z = ::Clamp(p1.z, a_MinZ, a_MaxZ);
p2.z = ::Clamp(p2.z, a_MinZ, a_MaxZ);
}


Expand Down
8 changes: 8 additions & 0 deletions src/Cuboid.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,14 @@ class cCuboid
Note that this function doesn't check for underflows when using negative amounts. */
void Expand(int a_SubMinX, int a_AddMaxX, int a_SubMinY, int a_AddMaxY, int a_SubMinZ, int a_AddMaxZ);

/** Clamps this cuboid, so that it doesn't reach outside of a_Limits in any direction.
Assumes both this and a_Limits are sorted. */
void Clamp(const cCuboid & a_Limits);

/** Clamps this cuboid's p2 so that the cuboid's size doesn't exceed the specified max size.
Assumes this cuboid is sorted. */
void ClampSize(Vector3i a_MaxSize);

/** Clamps both X coords to the specified range. Works on unsorted cuboids, too. */
void ClampX(int a_MinX, int a_MaxX);

Expand Down

0 comments on commit d0b095a

Please sign in to comment.