2022-04-17 12:43:07 +00:00
|
|
|
package emu.grasscutter.data;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileReader;
|
2022-04-19 03:26:34 +00:00
|
|
|
import java.util.*;
|
2022-04-17 12:43:07 +00:00
|
|
|
import java.util.Map.Entry;
|
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
2022-05-06 20:39:37 +00:00
|
|
|
import com.google.gson.Gson;
|
2022-04-19 03:26:34 +00:00
|
|
|
import emu.grasscutter.utils.Utils;
|
2022-04-17 12:43:07 +00:00
|
|
|
import org.reflections.Reflections;
|
|
|
|
|
2022-04-20 20:45:38 +00:00
|
|
|
import com.google.gson.JsonElement;
|
2022-04-17 12:43:07 +00:00
|
|
|
import com.google.gson.reflect.TypeToken;
|
|
|
|
|
|
|
|
import emu.grasscutter.Grasscutter;
|
2022-04-20 20:45:38 +00:00
|
|
|
import emu.grasscutter.data.common.PointData;
|
|
|
|
import emu.grasscutter.data.common.ScenePointConfig;
|
2022-04-17 12:43:07 +00:00
|
|
|
import emu.grasscutter.data.custom.AbilityEmbryoEntry;
|
2022-05-08 11:40:01 +00:00
|
|
|
import emu.grasscutter.data.custom.AbilityModifier;
|
|
|
|
import emu.grasscutter.data.custom.AbilityModifier.AbilityConfigData;
|
|
|
|
import emu.grasscutter.data.custom.AbilityModifier.AbilityModifierAction;
|
|
|
|
import emu.grasscutter.data.custom.AbilityModifier.AbilityModifierActionType;
|
|
|
|
import emu.grasscutter.data.custom.AbilityModifierEntry;
|
2022-04-17 12:43:07 +00:00
|
|
|
import emu.grasscutter.data.custom.OpenConfigEntry;
|
2022-04-20 20:45:38 +00:00
|
|
|
import emu.grasscutter.data.custom.ScenePointEntry;
|
2022-04-25 08:50:58 +00:00
|
|
|
import emu.grasscutter.game.world.SpawnDataEntry;
|
|
|
|
import emu.grasscutter.game.world.SpawnDataEntry.SpawnGroupEntry;
|
2022-04-17 12:43:07 +00:00
|
|
|
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
|
|
|
|
|
|
|
|
public class ResourceLoader {
|
|
|
|
|
|
|
|
public static List<Class<?>> getResourceDefClasses() {
|
|
|
|
Reflections reflections = new Reflections(ResourceLoader.class.getPackage().getName());
|
2022-04-27 04:21:57 +00:00
|
|
|
Set<?> classes = reflections.getSubTypesOf(GameResource.class);
|
2022-04-17 12:43:07 +00:00
|
|
|
|
|
|
|
List<Class<?>> classList = new ArrayList<>(classes.size());
|
|
|
|
classes.forEach(o -> {
|
|
|
|
Class<?> c = (Class<?>) o;
|
|
|
|
if (c.getAnnotation(ResourceType.class) != null) {
|
|
|
|
classList.add(c);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-04-19 03:26:34 +00:00
|
|
|
classList.sort((a, b) -> b.getAnnotation(ResourceType.class).loadPriority().value() - a.getAnnotation(ResourceType.class).loadPriority().value());
|
2022-04-17 12:43:07 +00:00
|
|
|
|
|
|
|
return classList;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void loadAll() {
|
|
|
|
// Load ability lists
|
|
|
|
loadAbilityEmbryos();
|
|
|
|
loadOpenConfig();
|
2022-05-08 11:40:01 +00:00
|
|
|
loadAbilityModifiers();
|
2022-04-17 12:43:07 +00:00
|
|
|
// Load resources
|
|
|
|
loadResources();
|
|
|
|
// Process into depots
|
2022-04-27 04:21:57 +00:00
|
|
|
GameDepot.load();
|
2022-04-25 08:50:58 +00:00
|
|
|
// Load spawn data
|
|
|
|
loadSpawnData();
|
2022-04-29 21:29:34 +00:00
|
|
|
// Load scene points - must be done AFTER resources are loaded
|
|
|
|
loadScenePoints();
|
2022-04-17 12:43:07 +00:00
|
|
|
// Custom - TODO move this somewhere else
|
|
|
|
try {
|
2022-04-27 04:21:57 +00:00
|
|
|
GameData.getAvatarSkillDepotDataMap().get(504).setAbilities(
|
2022-04-17 12:43:07 +00:00
|
|
|
new AbilityEmbryoEntry(
|
|
|
|
"",
|
|
|
|
new String[] {
|
|
|
|
"Avatar_PlayerBoy_ExtraAttack_Wind",
|
|
|
|
"Avatar_Player_UziExplode_Mix",
|
|
|
|
"Avatar_Player_UziExplode",
|
|
|
|
"Avatar_Player_UziExplode_Strike_01",
|
|
|
|
"Avatar_Player_UziExplode_Strike_02",
|
|
|
|
"Avatar_Player_WindBreathe",
|
|
|
|
"Avatar_Player_WindBreathe_CameraController"
|
|
|
|
}
|
|
|
|
));
|
2022-04-27 04:21:57 +00:00
|
|
|
GameData.getAvatarSkillDepotDataMap().get(704).setAbilities(
|
2022-04-17 12:43:07 +00:00
|
|
|
new AbilityEmbryoEntry(
|
|
|
|
"",
|
|
|
|
new String[] {
|
|
|
|
"Avatar_PlayerGirl_ExtraAttack_Wind",
|
|
|
|
"Avatar_Player_UziExplode_Mix",
|
|
|
|
"Avatar_Player_UziExplode",
|
|
|
|
"Avatar_Player_UziExplode_Strike_01",
|
|
|
|
"Avatar_Player_UziExplode_Strike_02",
|
|
|
|
"Avatar_Player_WindBreathe",
|
|
|
|
"Avatar_Player_WindBreathe_CameraController"
|
|
|
|
}
|
|
|
|
));
|
|
|
|
} catch (Exception e) {
|
|
|
|
Grasscutter.getLogger().error("Error loading abilities", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void loadResources() {
|
|
|
|
for (Class<?> resourceDefinition : getResourceDefClasses()) {
|
|
|
|
ResourceType type = resourceDefinition.getAnnotation(ResourceType.class);
|
|
|
|
|
|
|
|
if (type == null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("rawtypes")
|
2022-04-27 04:21:57 +00:00
|
|
|
Int2ObjectMap map = GameData.getMapByResourceDef(resourceDefinition);
|
2022-04-17 12:43:07 +00:00
|
|
|
|
|
|
|
if (map == null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
loadFromResource(resourceDefinition, type, map);
|
|
|
|
} catch (Exception e) {
|
2022-04-19 03:26:34 +00:00
|
|
|
Grasscutter.getLogger().error("Error loading resource file: " + Arrays.toString(type.name()), e);
|
2022-04-17 12:43:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("rawtypes")
|
|
|
|
protected static void loadFromResource(Class<?> c, ResourceType type, Int2ObjectMap map) throws Exception {
|
|
|
|
for (String name : type.name()) {
|
|
|
|
loadFromResource(c, name, map);
|
|
|
|
}
|
|
|
|
Grasscutter.getLogger().info("Loaded " + map.size() + " " + c.getSimpleName() + "s.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings({"rawtypes", "unchecked"})
|
|
|
|
protected static void loadFromResource(Class<?> c, String fileName, Int2ObjectMap map) throws Exception {
|
2022-05-06 20:39:37 +00:00
|
|
|
FileReader fileReader = new FileReader(Grasscutter.getConfig().RESOURCE_FOLDER + "ExcelBinOutput/" + fileName);
|
|
|
|
Gson gson = Grasscutter.getGsonFactory();
|
|
|
|
List list = gson.fromJson(fileReader, List.class);
|
|
|
|
|
|
|
|
for (Object o : list) {
|
|
|
|
Map<String, Object> tempMap = Utils.switchPropertiesUpperLowerCase((Map<String, Object>) o, c);
|
|
|
|
GameResource res = gson.fromJson(gson.toJson(tempMap), TypeToken.get(c).getType());
|
|
|
|
res.onLoad();
|
|
|
|
map.put(res.getId(), res);
|
2022-04-17 12:43:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-20 20:45:38 +00:00
|
|
|
private static void loadScenePoints() {
|
|
|
|
Pattern pattern = Pattern.compile("(?<=scene)(.*?)(?=_point.json)");
|
2022-04-21 17:54:06 +00:00
|
|
|
File folder = new File(Grasscutter.getConfig().RESOURCE_FOLDER + "BinOutput/Scene/Point");
|
2022-04-21 02:37:24 +00:00
|
|
|
|
|
|
|
if (!folder.isDirectory() || !folder.exists() || folder.listFiles() == null) {
|
|
|
|
Grasscutter.getLogger().error("Scene point files cannot be found, you cannot use teleport waypoints!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-20 20:45:38 +00:00
|
|
|
List<ScenePointEntry> scenePointList = new ArrayList<>();
|
2022-04-26 21:44:30 +00:00
|
|
|
for (File file : Objects.requireNonNull(folder.listFiles())) {
|
2022-04-20 20:45:38 +00:00
|
|
|
ScenePointConfig config = null;
|
|
|
|
Integer sceneId = null;
|
|
|
|
|
|
|
|
Matcher matcher = pattern.matcher(file.getName());
|
|
|
|
if (matcher.find()) {
|
|
|
|
sceneId = Integer.parseInt(matcher.group(1));
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
try (FileReader fileReader = new FileReader(file)) {
|
|
|
|
config = Grasscutter.getGsonFactory().fromJson(fileReader, ScenePointConfig.class);
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config.points == null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Map.Entry<String, JsonElement> entry : config.points.entrySet()) {
|
|
|
|
PointData pointData = Grasscutter.getGsonFactory().fromJson(entry.getValue(), PointData.class);
|
2022-04-28 15:20:37 +00:00
|
|
|
pointData.setId(Integer.parseInt(entry.getKey()));
|
2022-04-20 20:45:38 +00:00
|
|
|
|
|
|
|
ScenePointEntry sl = new ScenePointEntry(sceneId + "_" + entry.getKey(), pointData);
|
|
|
|
scenePointList.add(sl);
|
2022-04-29 21:29:34 +00:00
|
|
|
GameData.getScenePointIdList().add(pointData.getId());
|
|
|
|
|
|
|
|
pointData.updateDailyDungeon();
|
2022-04-20 20:45:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (ScenePointEntry entry : scenePointList) {
|
2022-04-27 04:21:57 +00:00
|
|
|
GameData.getScenePointEntries().put(entry.getName(), entry);
|
2022-04-20 20:45:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
private static void loadAbilityEmbryos() {
|
|
|
|
// Read from cached file if exists
|
|
|
|
File embryoCache = new File(Grasscutter.getConfig().DATA_FOLDER + "AbilityEmbryos.json");
|
|
|
|
List<AbilityEmbryoEntry> embryoList = null;
|
|
|
|
|
|
|
|
if (embryoCache.exists()) {
|
|
|
|
// Load from cache
|
|
|
|
try (FileReader fileReader = new FileReader(embryoCache)) {
|
|
|
|
embryoList = Grasscutter.getGsonFactory().fromJson(fileReader, TypeToken.getParameterized(Collection.class, AbilityEmbryoEntry.class).getType());
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Load from BinOutput
|
|
|
|
Pattern pattern = Pattern.compile("(?<=ConfigAvatar_)(.*?)(?=.json)");
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
embryoList = new LinkedList<>();
|
2022-04-19 03:26:34 +00:00
|
|
|
File folder = new File(Utils.toFilePath(Grasscutter.getConfig().RESOURCE_FOLDER + "BinOutput/Avatar/"));
|
|
|
|
File[] files = folder.listFiles();
|
|
|
|
if(files == null) {
|
|
|
|
Grasscutter.getLogger().error("Error loading ability embryos: no files found in " + folder.getAbsolutePath());
|
|
|
|
return;
|
|
|
|
}
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-04-19 03:26:34 +00:00
|
|
|
for (File file : files) {
|
|
|
|
AvatarConfig config;
|
|
|
|
String avatarName;
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
Matcher matcher = pattern.matcher(file.getName());
|
|
|
|
if (matcher.find()) {
|
|
|
|
avatarName = matcher.group(0);
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
try (FileReader fileReader = new FileReader(file)) {
|
|
|
|
config = Grasscutter.getGsonFactory().fromJson(fileReader, AvatarConfig.class);
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
continue;
|
|
|
|
}
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
if (config.abilities == null) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
int s = config.abilities.size();
|
|
|
|
AbilityEmbryoEntry al = new AbilityEmbryoEntry(avatarName, config.abilities.stream().map(Object::toString).toArray(size -> new String[s]));
|
|
|
|
embryoList.add(al);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (embryoList == null || embryoList.isEmpty()) {
|
|
|
|
Grasscutter.getLogger().error("No embryos loaded!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (AbilityEmbryoEntry entry : embryoList) {
|
2022-04-27 04:21:57 +00:00
|
|
|
GameData.getAbilityEmbryoInfo().put(entry.getName(), entry);
|
2022-04-17 12:43:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-08 11:40:01 +00:00
|
|
|
private static void loadAbilityModifiers() {
|
|
|
|
// Load from BinOutput
|
|
|
|
File folder = new File(Utils.toFilePath(Grasscutter.getConfig().RESOURCE_FOLDER + "BinOutput/Ability/Temp/AvatarAbilities/"));
|
|
|
|
File[] files = folder.listFiles();
|
|
|
|
if (files == null) {
|
|
|
|
Grasscutter.getLogger().error("Error loading ability modifiers: no files found in " + folder.getAbsolutePath());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (File file : files) {
|
|
|
|
List<AbilityConfigData> abilityConfigList = null;
|
|
|
|
|
|
|
|
try (FileReader fileReader = new FileReader(file)) {
|
|
|
|
abilityConfigList = Grasscutter.getGsonFactory().fromJson(fileReader, TypeToken.getParameterized(Collection.class, AbilityConfigData.class).getType());
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (AbilityConfigData data : abilityConfigList) {
|
|
|
|
if (data.Default.modifiers == null || data.Default.modifiers.size() == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
AbilityModifierEntry modifierEntry = new AbilityModifierEntry(data.Default.abilityName);
|
|
|
|
|
|
|
|
for (Entry<String, AbilityModifier> entry : data.Default.modifiers.entrySet()) {
|
|
|
|
AbilityModifier modifier = entry.getValue();
|
|
|
|
|
|
|
|
// Stare.
|
|
|
|
if (modifier.onAdded != null) {
|
|
|
|
for (AbilityModifierAction action : modifier.onAdded) {
|
|
|
|
if (action.$type.contains("HealHP")) {
|
|
|
|
action.type = AbilityModifierActionType.HealHP;
|
|
|
|
modifierEntry.getOnAdded().add(action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (modifier.onThinkInterval != null) {
|
|
|
|
for (AbilityModifierAction action : modifier.onThinkInterval) {
|
|
|
|
if (action.$type.contains("HealHP")) {
|
|
|
|
action.type = AbilityModifierActionType.HealHP;
|
|
|
|
modifierEntry.getOnThinkInterval().add(action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (modifier.onRemoved != null) {
|
|
|
|
for (AbilityModifierAction action : modifier.onRemoved) {
|
|
|
|
if (action.$type.contains("HealHP")) {
|
|
|
|
action.type = AbilityModifierActionType.HealHP;
|
|
|
|
modifierEntry.getOnRemoved().add(action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GameData.getAbilityModifiers().put(modifierEntry.getName(), modifierEntry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-25 08:50:58 +00:00
|
|
|
private static void loadSpawnData() {
|
|
|
|
// Read from cached file if exists
|
|
|
|
File spawnDataEntries = new File(Grasscutter.getConfig().DATA_FOLDER + "Spawns.json");
|
|
|
|
List<SpawnGroupEntry> spawnEntryList = null;
|
|
|
|
|
|
|
|
if (spawnDataEntries.exists()) {
|
|
|
|
// Load from cache
|
|
|
|
try (FileReader fileReader = new FileReader(spawnDataEntries)) {
|
|
|
|
spawnEntryList = Grasscutter.getGsonFactory().fromJson(fileReader, TypeToken.getParameterized(Collection.class, SpawnGroupEntry.class).getType());
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (spawnEntryList == null || spawnEntryList.isEmpty()) {
|
|
|
|
Grasscutter.getLogger().error("No spawn data loaded!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (SpawnGroupEntry entry : spawnEntryList) {
|
|
|
|
entry.getSpawns().stream().forEach(s -> {
|
|
|
|
s.setGroup(entry);
|
|
|
|
});
|
2022-04-27 04:21:57 +00:00
|
|
|
GameDepot.getSpawnListById(entry.getSceneId()).insert(entry, entry.getPos().getX(), entry.getPos().getZ());
|
2022-04-25 08:50:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
private static void loadOpenConfig() {
|
|
|
|
// Read from cached file if exists
|
|
|
|
File openConfigCache = new File(Grasscutter.getConfig().DATA_FOLDER + "OpenConfig.json");
|
|
|
|
List<OpenConfigEntry> list = null;
|
|
|
|
|
|
|
|
if (openConfigCache.exists()) {
|
|
|
|
try (FileReader fileReader = new FileReader(openConfigCache)) {
|
|
|
|
list = Grasscutter.getGsonFactory().fromJson(fileReader, TypeToken.getParameterized(Collection.class, OpenConfigEntry.class).getType());
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Map<String, OpenConfigEntry> map = new TreeMap<>();
|
|
|
|
java.lang.reflect.Type type = new TypeToken<Map<String, OpenConfigData[]>>() {}.getType();
|
2022-04-19 16:21:14 +00:00
|
|
|
String[] folderNames = {"BinOutput/Talent/EquipTalents/", "BinOutput/Talent/AvatarTalents/"};
|
2022-04-17 12:43:07 +00:00
|
|
|
|
|
|
|
for (String name : folderNames) {
|
2022-04-19 03:26:34 +00:00
|
|
|
File folder = new File(Utils.toFilePath(Grasscutter.getConfig().RESOURCE_FOLDER + name));
|
|
|
|
File[] files = folder.listFiles();
|
|
|
|
if(files == null) {
|
|
|
|
Grasscutter.getLogger().error("Error loading open config: no files found in " + folder.getAbsolutePath()); return;
|
|
|
|
}
|
2022-04-17 12:43:07 +00:00
|
|
|
|
2022-04-19 03:26:34 +00:00
|
|
|
for (File file : files) {
|
2022-04-17 12:43:07 +00:00
|
|
|
if (!file.getName().endsWith(".json")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-04-19 03:26:34 +00:00
|
|
|
Map<String, OpenConfigData[]> config;
|
2022-04-17 12:43:07 +00:00
|
|
|
|
|
|
|
try (FileReader fileReader = new FileReader(file)) {
|
|
|
|
config = Grasscutter.getGsonFactory().fromJson(fileReader, type);
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Entry<String, OpenConfigData[]> e : config.entrySet()) {
|
2022-05-01 02:34:50 +00:00
|
|
|
OpenConfigEntry entry = new OpenConfigEntry(e.getKey(), e.getValue());
|
2022-04-17 12:43:07 +00:00
|
|
|
map.put(entry.getName(), entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
list = new ArrayList<>(map.values());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (list == null || list.isEmpty()) {
|
|
|
|
Grasscutter.getLogger().error("No openconfig entries loaded!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (OpenConfigEntry entry : list) {
|
2022-04-27 04:21:57 +00:00
|
|
|
GameData.getOpenConfigEntries().put(entry.getName(), entry);
|
2022-04-17 12:43:07 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
// BinOutput configs
|
|
|
|
|
|
|
|
private static class AvatarConfig {
|
|
|
|
public ArrayList<AvatarConfigAbility> abilities;
|
|
|
|
|
|
|
|
private static class AvatarConfigAbility {
|
|
|
|
public String abilityName;
|
|
|
|
public String toString() {
|
|
|
|
return abilityName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static class OpenConfig {
|
|
|
|
public OpenConfigData[] data;
|
|
|
|
}
|
|
|
|
|
2022-05-01 02:34:50 +00:00
|
|
|
public static class OpenConfigData {
|
2022-04-17 12:43:07 +00:00
|
|
|
public String $type;
|
|
|
|
public String abilityName;
|
|
|
|
public int talentIndex;
|
2022-05-01 02:34:50 +00:00
|
|
|
public int skillID;
|
|
|
|
public int pointDelta;
|
2022-04-17 12:43:07 +00:00
|
|
|
}
|
|
|
|
}
|