1
0
Fork 0
Nibriboard/Nibriboard/RippleSpace/LocationReference.cs

72 lines
1.8 KiB
C#

using System;
using System.Configuration;
using System.IO;
namespace Nibriboard.RippleSpace
{
/// <summary>
/// Represents a location in absolute plane-space.
/// </summary>
public class LocationReference : Reference
{
/// <summary>
/// The chunk that this location reference fall inside.
/// </summary>
public ChunkReference ContainingChunk {
get {
return new ChunkReference(
Plane,
X / Plane.ChunkSize,
Y / Plane.ChunkSize
);
}
}
public LocationReference(Plane inPlane, int inX, int inY) : base(inPlane, inX, inY)
{
}
public override bool Equals(object obj)
{
LocationReference otherLocationReference = obj as LocationReference;
if (otherLocationReference == null)
return false;
if(X == otherLocationReference.X && Y == otherLocationReference.Y &&
Plane == otherLocationReference.Plane)
{
return true;
}
return false;
}
public override int GetHashCode()
{
return $"({Plane.Name})+{X}+{Y}".GetHashCode();
}
public override string ToString()
{
return $"LocationReference: {base.ToString()}";
}
public static LocationReference Parse(Plane plane, string source)
{
// TODO: Decide if this is the format that we want to use for location references
if (!source.StartsWith("LocationReference:"))
throw new InvalidDataException($"Error: That isn't a valid location reference. Location references start with 'ChunkReference:'.");
// Trim the extras off the reference
source = source.Substring("LocationReference:".Length);
source = source.Trim("() \v\t\r\n".ToCharArray());
int x = int.Parse(source.Substring(0, source.IndexOf(",")));
int y = int.Parse(source.Substring(source.IndexOf(",") + 1));
return new LocationReference(
plane,
x,
y
);
}
}
}