mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-22 20:03:21 +00:00
parent
22e953b636
commit
eb17d65330
@ -4,9 +4,10 @@ import com.google.gson.annotations.SerializedName;
|
||||
import emu.grasscutter.data.common.DynamicFloat;
|
||||
import emu.grasscutter.game.props.ElementType;
|
||||
import emu.grasscutter.utils.objects.DropType;
|
||||
import java.io.Serializable;
|
||||
import lombok.ToString;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AbilityModifier implements Serializable {
|
||||
private static final long serialVersionUID = -2001232313615923575L;
|
||||
|
||||
|
@ -8,10 +8,11 @@ import emu.grasscutter.game.world.*;
|
||||
import emu.grasscutter.utils.objects.DropType;
|
||||
import it.unimi.dsi.fastutil.floats.FloatArrayList;
|
||||
import it.unimi.dsi.fastutil.ints.*;
|
||||
import lombok.val;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.lang.reflect.Field;
|
||||
import java.util.*;
|
||||
import lombok.val;
|
||||
|
||||
public interface JsonAdapters {
|
||||
class DynamicFloatAdapter extends TypeAdapter<DynamicFloat> {
|
||||
@ -55,7 +56,8 @@ public interface JsonAdapters {
|
||||
class DropTypeAdapter extends TypeAdapter<DropType> {
|
||||
@Override
|
||||
public void write(JsonWriter out, DropType value) throws IOException {
|
||||
if (value.isString()) out.value(value.getAsString());
|
||||
if (value.isString())
|
||||
out.value(value.getAsString());
|
||||
else out.value(value.getAsInt());
|
||||
}
|
||||
|
||||
|
@ -7,6 +7,7 @@ import emu.grasscutter.game.world.*;
|
||||
import emu.grasscutter.utils.JsonAdapters.*;
|
||||
import emu.grasscutter.utils.objects.*;
|
||||
import it.unimi.dsi.fastutil.ints.IntList;
|
||||
|
||||
import java.io.*;
|
||||
import java.lang.reflect.Type;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
|
@ -14,11 +14,10 @@ public final class DropType {
|
||||
|
||||
public DropType(String value) {
|
||||
this.raw = value;
|
||||
this.value =
|
||||
switch (value) {
|
||||
default -> Integer.parseInt(value);
|
||||
case "ForceDrop" -> 2;
|
||||
};
|
||||
this.value = switch (value) {
|
||||
default -> Integer.parseInt(value);
|
||||
case "ForceDrop" -> 2;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
@ -32,7 +31,8 @@ public final class DropType {
|
||||
* @return The drop type value as a string.
|
||||
*/
|
||||
public String getAsString() {
|
||||
if (this.raw instanceof String) return (String) this.raw;
|
||||
if (this.raw instanceof String)
|
||||
return (String) this.raw;
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@ -40,7 +40,8 @@ public final class DropType {
|
||||
* @return The drop type value as an integer.
|
||||
*/
|
||||
public int getAsInt() {
|
||||
if (this.raw instanceof Integer) return (int) this.raw;
|
||||
if (this.raw instanceof Integer)
|
||||
return (int) this.raw;
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user