71 lines
2.1 KiB
Java
71 lines
2.1 KiB
Java
package com.hypixel.hytale.math.vector.relative;
|
|
|
|
import com.hypixel.hytale.codec.Codec;
|
|
import com.hypixel.hytale.codec.KeyedCodec;
|
|
import com.hypixel.hytale.codec.builder.BuilderCodec;
|
|
import com.hypixel.hytale.codec.validation.Validators;
|
|
import com.hypixel.hytale.math.vector.Vector2d;
|
|
import java.util.Objects;
|
|
import javax.annotation.Nonnull;
|
|
import javax.annotation.Nullable;
|
|
|
|
public class RelativeVector2d {
|
|
@Nonnull
|
|
public static final BuilderCodec<RelativeVector2d> CODEC = BuilderCodec.builder(RelativeVector2d.class, RelativeVector2d::new)
|
|
.append(new KeyedCodec<>("Vector", Vector2d.CODEC), (o, i) -> o.vector = i, RelativeVector2d::getVector)
|
|
.addValidator(Validators.nonNull())
|
|
.add()
|
|
.<Boolean>append(new KeyedCodec<>("Relative", Codec.BOOLEAN), (o, i) -> o.relative = i, RelativeVector2d::isRelative)
|
|
.addValidator(Validators.nonNull())
|
|
.add()
|
|
.build();
|
|
private Vector2d vector;
|
|
private boolean relative;
|
|
|
|
public RelativeVector2d(@Nonnull Vector2d vector, boolean relative) {
|
|
this.vector = vector;
|
|
this.relative = relative;
|
|
}
|
|
|
|
protected RelativeVector2d() {
|
|
}
|
|
|
|
@Nonnull
|
|
public Vector2d getVector() {
|
|
return this.vector;
|
|
}
|
|
|
|
public boolean isRelative() {
|
|
return this.relative;
|
|
}
|
|
|
|
@Nonnull
|
|
public Vector2d resolve(@Nonnull Vector2d vector) {
|
|
return this.relative ? vector.clone().add(vector) : vector.clone();
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(@Nullable Object o) {
|
|
if (this == o) {
|
|
return true;
|
|
} else if (o != null && this.getClass() == o.getClass()) {
|
|
RelativeVector2d that = (RelativeVector2d)o;
|
|
return this.relative != that.relative ? false : Objects.equals(this.vector, that.vector);
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
int result = this.vector != null ? this.vector.hashCode() : 0;
|
|
return 31 * result + (this.relative ? 1 : 0);
|
|
}
|
|
|
|
@Nonnull
|
|
@Override
|
|
public String toString() {
|
|
return "RelativeVector2d{vector=" + this.vector + ", relative=" + this.relative + "}";
|
|
}
|
|
}
|