Minecraft-Console-Client/MinecraftClient/Mapping/Location.cs

259 lines
8.1 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MinecraftClient.Mapping
{
/// <summary>
/// Represents a location into a Minecraft world
/// </summary>
public struct Location
{
/// <summary>
/// The X Coordinate
/// </summary>
public double X;
/// <summary>
/// The Y Coordinate (vertical)
/// </summary>
public double Y;
/// <summary>
/// The Z coordinate
/// </summary>
public double Z;
/// <summary>
/// Get location with zeroed coordinates
/// </summary>
public static Location Zero
{
get
{
return new Location(0, 0, 0);
}
}
/// <summary>
/// Create a new location
/// </summary>
public Location(double x, double y, double z)
{
X = x;
Y = y;
Z = z;
}
/// <summary>
/// Create a new location
/// </summary>
/// <param name="chunkX">Location of the chunk into the world</param>
/// <param name="chunkZ">Location of the chunk into the world</param>
/// <param name="blockX">Location of the block into the chunk</param>
/// <param name="blockY">Location of the block into the world</param>
/// <param name="blockZ">Location of the block into the chunk</param>
public Location(int chunkX, int chunkZ, int blockX, int blockY, int blockZ)
{
X = chunkX * Chunk.SizeX + blockX;
Y = blockY;
Z = chunkZ * Chunk.SizeZ + blockZ;
}
/// <summary>
/// The X index of the corresponding chunk in the world
/// </summary>
public int ChunkX
{
get
{
return (int)Math.Floor(X / Chunk.SizeX);
}
}
/// <summary>
/// The Y index of the corresponding chunk in the world
/// </summary>
public int ChunkY
{
get
{
return (int)Math.Floor(Y / Chunk.SizeY);
}
}
/// <summary>
/// The Z index of the corresponding chunk in the world
/// </summary>
public int ChunkZ
{
get
{
return (int)Math.Floor(Z / Chunk.SizeZ);
}
}
/// <summary>
/// The X index of the corresponding block in the corresponding chunk of the world
/// </summary>
public int ChunkBlockX
{
get
{
return ((int)Math.Floor(X) % Chunk.SizeX + Chunk.SizeX) % Chunk.SizeX;
}
}
/// <summary>
/// The Y index of the corresponding block in the corresponding chunk of the world
/// </summary>
public int ChunkBlockY
{
get
{
return ((int)Math.Floor(Y) % Chunk.SizeY + Chunk.SizeY) % Chunk.SizeY;
}
}
/// <summary>
/// The Z index of the corresponding block in the corresponding chunk of the world
/// </summary>
public int ChunkBlockZ
{
get
{
return ((int)Math.Floor(Z) % Chunk.SizeZ + Chunk.SizeZ) % Chunk.SizeZ;
}
}
/// <summary>
/// Compare two locations. Locations are equals if the integer part of their coordinates are equals.
/// </summary>
/// <param name="obj">Object to compare to</param>
/// <returns>TRUE if the locations are equals</returns>
public override bool Equals(object obj)
{
if (obj == null)
return false;
if (obj is Location)
{
return ((int)this.X) == ((int)((Location)obj).X)
&& ((int)this.Y) == ((int)((Location)obj).Y)
&& ((int)this.Z) == ((int)((Location)obj).Z);
}
return false;
}
/// <summary>
/// Get a representation of the location as unsigned long
/// </summary>
/// <remarks>
/// A modulo will be applied if the location is outside the following ranges:
/// X: -33,554,432 to +33,554,431
/// Y: -2,048 to +2,047
/// Z: -33,554,432 to +33,554,431
/// </remarks>
/// <returns>Location representation as ulong</returns>
public ulong GetLongRepresentation()
{
return ((((ulong)X) & 0x3FFFFFF) << 38) | ((((ulong)Y) & 0xFFF) << 26) | (((ulong)Z) & 0x3FFFFFF);
}
/// <summary>
/// Get a location from an unsigned long.
/// </summary>
/// <returns>Location represented by the ulong</returns>
public static Location FromLongRepresentation(ulong location)
{
int x = (int)(location >> 38);
int y = (int)((location >> 26) & 0xFFF);
int z = (int)(location << 38 >> 38);
if (x >= 33554432)
x -= 67108864;
if (y >= 2048)
y -= 4096;
if (z >= 33554432)
z -= 67108864;
return new Location(x, y, z);
}
/// <summary>
/// Compare two locations. Locations are equals if the integer part of their coordinates are equals.
/// </summary>
/// <param name="loc1">First location to compare</param>
/// <param name="loc2">Second location to compare</param>
/// <returns>TRUE if the locations are equals</returns>
public static bool operator == (Location loc1, Location loc2)
{
if (loc1 == null && loc2 == null)
return true;
if (loc1 == null || loc2 == null)
return false;
return loc1.Equals(loc2);
}
/// <summary>
/// Compare two locations. Locations are not equals if the integer part of their coordinates are not equals.
/// </summary>
/// <param name="loc1">First location to compare</param>
/// <param name="loc2">Second location to compare</param>
/// <returns>TRUE if the locations are equals</returns>
public static bool operator != (Location loc1, Location loc2)
{
if (loc1 == null && loc2 == null)
return true;
if (loc1 == null || loc2 == null)
return false;
return !loc1.Equals(loc2);
}
/// <summary>
/// Sums two locations and returns the result.
/// </summary>
/// <exception cref="NullReferenceException">
/// Thrown if one of the provided location is null
/// </exception>
/// <param name="loc1">First location to sum</param>
/// <param name="loc2">Second location to sum</param>
/// <returns>Sum of the two locations</returns>
public static Location operator + (Location loc1, Location loc2)
{
return new Location
(
loc1.X + loc2.X,
loc1.Y + loc2.Y,
loc1.Z + loc2.Z
);
}
/// <summary>
/// DO NOT USE. Defined to comply with C# requirements requiring a GetHashCode() when overriding Equals() or ==
/// </summary>
/// <remarks>
/// A modulo will be applied if the location is outside the following ranges:
/// X: -4096 to +4095
/// Y: -32 to +31
/// Z: -4096 to +4095
/// </remarks>
/// <returns>A simplified version of the location</returns>
public override int GetHashCode()
{
return (((int)X) & ~((~0) << 13)) << 19
| (((int)Y) & ~((~0) << 13)) << 13
| (((int)Z) & ~((~0) << 06)) << 00;
}
/// <summary>
/// Convert the location into a string representation
/// </summary>
/// <returns>String representation of the location</returns>
public override string ToString()
{
return String.Format("X:{0} Y:{1} Z:{2}", X, Y, Z);
}
}
}