2021-04-18 00:16:08 +02:00
|
|
|
/*
|
|
|
|
* This file is a part of the SteamWar software.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2021 SteamWar.de-Serverteam
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package de.steamwar.bausystem.shared;
|
|
|
|
|
|
|
|
import org.bukkit.util.Vector;
|
|
|
|
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
public class RoundedPosition {
|
|
|
|
|
|
|
|
private static final int factor = 10;
|
|
|
|
|
|
|
|
private int x;
|
|
|
|
private int y;
|
|
|
|
private int z;
|
|
|
|
|
|
|
|
public RoundedPosition(Position position) {
|
|
|
|
this(position.getLocation().getX(), position.getLocation().getY(), position.getLocation().getZ());
|
|
|
|
}
|
|
|
|
|
2021-12-10 13:38:19 +01:00
|
|
|
public RoundedPosition(Position position, int factor) {
|
|
|
|
this(position.getLocation().getX(), position.getLocation().getY(), position.getLocation().getZ(), factor);
|
|
|
|
}
|
|
|
|
|
2021-04-18 00:16:08 +02:00
|
|
|
public RoundedPosition(Vector vector) {
|
|
|
|
this(vector.getX(), vector.getY(), vector.getZ());
|
|
|
|
}
|
|
|
|
|
2021-12-10 13:38:19 +01:00
|
|
|
public RoundedPosition(Vector vector, int factor) {
|
|
|
|
this(vector.getX(), vector.getY(), vector.getZ(), factor);
|
|
|
|
}
|
|
|
|
|
2021-04-18 00:16:08 +02:00
|
|
|
public RoundedPosition(double x, double y, double z) {
|
|
|
|
this.x = (int) (x * factor);
|
|
|
|
this.y = (int) (y * factor);
|
|
|
|
this.z = (int) (z * factor);
|
|
|
|
}
|
|
|
|
|
2021-12-10 13:38:19 +01:00
|
|
|
public RoundedPosition(double x, double y, double z, int factor) {
|
|
|
|
this.x = (int) (x * factor);
|
|
|
|
this.y = (int) (y * factor);
|
|
|
|
this.z = (int) (z * factor);
|
|
|
|
}
|
|
|
|
|
2021-04-18 00:16:08 +02:00
|
|
|
@Override
|
|
|
|
public boolean equals(Object o) {
|
|
|
|
if (this == o) return true;
|
|
|
|
if (!(o instanceof RoundedPosition)) return false;
|
|
|
|
RoundedPosition that = (RoundedPosition) o;
|
|
|
|
return x == that.x &&
|
|
|
|
y == that.y &&
|
|
|
|
z == that.z;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int hashCode() {
|
|
|
|
return Objects.hash(x, y, z);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|