hytale-server/com/hypixel/hytale/builtin/adventure/npcobjectives/assets/KillSpawnBeaconObjectiveTas...

144 lines
5.8 KiB
Java

package com.hypixel.hytale.builtin.adventure.npcobjectives.assets;
import com.hypixel.hytale.builtin.adventure.objectives.config.task.ObjectiveTaskAsset;
import com.hypixel.hytale.builtin.adventure.objectives.config.taskcondition.TaskConditionAsset;
import com.hypixel.hytale.builtin.adventure.objectives.config.worldlocationproviders.WorldLocationProvider;
import com.hypixel.hytale.codec.Codec;
import com.hypixel.hytale.codec.KeyedCodec;
import com.hypixel.hytale.codec.builder.BuilderCodec;
import com.hypixel.hytale.codec.codecs.array.ArrayCodec;
import com.hypixel.hytale.codec.validation.Validators;
import com.hypixel.hytale.math.vector.Vector3d;
import com.hypixel.hytale.math.vector.Vector3i;
import com.hypixel.hytale.server.spawning.assets.spawns.config.BeaconNPCSpawn;
import java.util.Arrays;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class KillSpawnBeaconObjectiveTaskAsset extends KillObjectiveTaskAsset {
public static final BuilderCodec<KillSpawnBeaconObjectiveTaskAsset> CODEC = BuilderCodec.builder(
KillSpawnBeaconObjectiveTaskAsset.class, KillSpawnBeaconObjectiveTaskAsset::new, KillObjectiveTaskAsset.CODEC
)
.append(
new KeyedCodec<>(
"SpawnBeacons",
new ArrayCodec<>(KillSpawnBeaconObjectiveTaskAsset.ObjectiveSpawnBeacon.CODEC, KillSpawnBeaconObjectiveTaskAsset.ObjectiveSpawnBeacon[]::new)
),
(killSpawnBeaconObjectiveTaskAsset, objectiveSpawnBeacons) -> killSpawnBeaconObjectiveTaskAsset.spawnBeacons = objectiveSpawnBeacons,
killSpawnBeaconObjectiveTaskAsset -> killSpawnBeaconObjectiveTaskAsset.spawnBeacons
)
.addValidator(Validators.nonEmptyArray())
.add()
.build();
protected KillSpawnBeaconObjectiveTaskAsset.ObjectiveSpawnBeacon[] spawnBeacons;
public KillSpawnBeaconObjectiveTaskAsset(
String descriptionId,
TaskConditionAsset[] taskConditions,
Vector3i[] mapMarkers,
int count,
String npcGroupId,
KillSpawnBeaconObjectiveTaskAsset.ObjectiveSpawnBeacon[] spawnBeacons
) {
super(descriptionId, taskConditions, mapMarkers, count, npcGroupId);
this.spawnBeacons = spawnBeacons;
}
protected KillSpawnBeaconObjectiveTaskAsset() {
}
public KillSpawnBeaconObjectiveTaskAsset.ObjectiveSpawnBeacon[] getSpawnBeacons() {
return this.spawnBeacons;
}
@Override
protected boolean matchesAsset0(ObjectiveTaskAsset task) {
if (!super.matchesAsset0(task)) {
return false;
} else {
return !(task instanceof KillSpawnBeaconObjectiveTaskAsset)
? false
: Arrays.equals((Object[])((KillSpawnBeaconObjectiveTaskAsset)task).spawnBeacons, (Object[])this.spawnBeacons);
}
}
@Nonnull
@Override
public String toString() {
return "KillSpawnBeaconObjectiveTaskAsset{spawnBeacons=" + Arrays.toString((Object[])this.spawnBeacons) + "} " + super.toString();
}
public static class ObjectiveSpawnBeacon {
public static final BuilderCodec<KillSpawnBeaconObjectiveTaskAsset.ObjectiveSpawnBeacon> CODEC = BuilderCodec.builder(
KillSpawnBeaconObjectiveTaskAsset.ObjectiveSpawnBeacon.class, KillSpawnBeaconObjectiveTaskAsset.ObjectiveSpawnBeacon::new
)
.append(
new KeyedCodec<>("SpawnBeaconId", Codec.STRING),
(objectiveSpawnBeacon, s) -> objectiveSpawnBeacon.spawnBeaconId = s,
objectiveSpawnBeacon -> objectiveSpawnBeacon.spawnBeaconId
)
.addValidator(Validators.nonNull())
.addValidator(BeaconNPCSpawn.VALIDATOR_CACHE.getValidator())
.add()
.append(
new KeyedCodec<>("Offset", Vector3d.CODEC),
(objectiveSpawnBeacon, vector3d) -> objectiveSpawnBeacon.offset = vector3d,
objectiveSpawnBeacon -> objectiveSpawnBeacon.offset
)
.add()
.append(
new KeyedCodec<>("WorldLocationCondition", WorldLocationProvider.CODEC),
(objectiveSpawnBeacon, worldLocationCondition) -> objectiveSpawnBeacon.worldLocationProvider = worldLocationCondition,
objectiveSpawnBeacon -> objectiveSpawnBeacon.worldLocationProvider
)
.add()
.build();
protected String spawnBeaconId;
protected Vector3d offset;
protected WorldLocationProvider worldLocationProvider;
public String getSpawnBeaconId() {
return this.spawnBeaconId;
}
public Vector3d getOffset() {
return this.offset;
}
public WorldLocationProvider getWorldLocationProvider() {
return this.worldLocationProvider;
}
@Override
public boolean equals(@Nullable Object o) {
if (this == o) {
return true;
} else if (o != null && this.getClass() == o.getClass()) {
KillSpawnBeaconObjectiveTaskAsset.ObjectiveSpawnBeacon that = (KillSpawnBeaconObjectiveTaskAsset.ObjectiveSpawnBeacon)o;
if (!this.spawnBeaconId.equals(that.spawnBeaconId)) {
return false;
} else if (this.offset != null ? this.offset.equals(that.offset) : that.offset == null) {
return this.worldLocationProvider != null ? this.worldLocationProvider.equals(that.worldLocationProvider) : that.worldLocationProvider == null;
} else {
return false;
}
} else {
return false;
}
}
@Override
public int hashCode() {
int result = this.spawnBeaconId.hashCode();
result = 31 * result + (this.offset != null ? this.offset.hashCode() : 0);
return 31 * result + (this.worldLocationProvider != null ? this.worldLocationProvider.hashCode() : 0);
}
@Nonnull
@Override
public String toString() {
return "ObjectiveSpawnBeacon{spawnBeaconId='" + this.spawnBeaconId + "', offset=" + this.offset + "}";
}
}
}