mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-27 06:52:56 +08:00
5db73d2849
* Fix QuestEncryptionKeys Path * Load resources QuestEncryptionKeys
147 lines
5.4 KiB
Java
147 lines
5.4 KiB
Java
package emu.grasscutter.data;
|
|
|
|
import emu.grasscutter.Grasscutter;
|
|
import emu.grasscutter.server.http.handlers.GachaHandler;
|
|
import emu.grasscutter.tools.Tools;
|
|
import emu.grasscutter.utils.FileUtils;
|
|
import emu.grasscutter.utils.JsonUtils;
|
|
import emu.grasscutter.utils.Utils;
|
|
|
|
import static emu.grasscutter.config.Configuration.DATA;
|
|
|
|
import java.io.FileInputStream;
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.InputStreamReader;
|
|
import java.nio.file.Path;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class DataLoader {
|
|
|
|
/**
|
|
* Load a data file by its name. If the file isn't found within the /data directory then it will fallback to the default within the jar resources
|
|
*
|
|
* @param resourcePath The path to the data file to be loaded.
|
|
* @return InputStream of the data file.
|
|
* @throws FileNotFoundException
|
|
* @see #load(String, boolean)
|
|
*/
|
|
public static InputStream load(String resourcePath) throws FileNotFoundException {
|
|
return load(resourcePath, true);
|
|
}
|
|
|
|
/**
|
|
* Creates an input stream reader for a data file. If the file isn't found within the /data directory then it will fallback to the default within the jar resources
|
|
*
|
|
* @param resourcePath The path to the data file to be loaded.
|
|
* @return InputStreamReader of the data file.
|
|
* @throws IOException
|
|
* @throws FileNotFoundException
|
|
* @see #load(String, boolean)
|
|
*/
|
|
public static InputStreamReader loadReader(String resourcePath) throws IOException, FileNotFoundException {
|
|
try {
|
|
InputStream is = load(resourcePath, true);
|
|
return new InputStreamReader(is);
|
|
} catch (FileNotFoundException exception) {
|
|
throw exception;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Load a data file by its name.
|
|
*
|
|
* @param resourcePath The path to the data file to be loaded.
|
|
* @param useFallback If the file does not exist in the /data directory, should it use the default file in the jar?
|
|
* @return InputStream of the data file.
|
|
* @throws FileNotFoundException
|
|
*/
|
|
public static InputStream load(String resourcePath, boolean useFallback) throws FileNotFoundException {
|
|
if (Utils.fileExists(DATA(resourcePath))) {
|
|
// Data is in the resource directory
|
|
return new FileInputStream(DATA(resourcePath));
|
|
} else {
|
|
if (useFallback) {
|
|
return FileUtils.readResourceAsStream("/defaults/data/" + resourcePath);
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public static <T> T loadClass(String resourcePath, Class<T> classType) throws IOException {
|
|
try (InputStreamReader reader = loadReader(resourcePath)) {
|
|
return JsonUtils.loadToClass(reader, classType);
|
|
}
|
|
}
|
|
|
|
public static <T> List<T> loadList(String resourcePath, Class<T> classType) throws IOException {
|
|
try (InputStreamReader reader = loadReader(resourcePath)) {
|
|
return JsonUtils.loadToList(reader, classType);
|
|
}
|
|
}
|
|
|
|
public static <T1,T2> Map<T1,T2> loadMap(String resourcePath, Class<T1> keyType, Class<T2> valueType) throws IOException {
|
|
try (InputStreamReader reader = loadReader(resourcePath)) {
|
|
return JsonUtils.loadToMap(reader, keyType, valueType);
|
|
}
|
|
}
|
|
|
|
public static void checkAllFiles() {
|
|
try {
|
|
List<Path> filenames = FileUtils.getPathsFromResource("/defaults/data/");
|
|
|
|
if (filenames == null) {
|
|
Grasscutter.getLogger().error("We were unable to locate your default data files.");
|
|
} else for (Path file : filenames) {
|
|
String relativePath = String.valueOf(file).split("defaults[\\\\\\/]data[\\\\\\/]")[1];
|
|
|
|
checkAndCopyData(relativePath);
|
|
}
|
|
} catch (Exception e) {
|
|
Grasscutter.getLogger().error("An error occurred while trying to check the data folder.", e);
|
|
}
|
|
|
|
generateGachaMappings();
|
|
}
|
|
|
|
private static void checkAndCopyData(String name) {
|
|
String filePath = Utils.toFilePath(DATA(name));
|
|
|
|
if (!Utils.fileExists(filePath)) {
|
|
// Check if file is in subdirectory
|
|
if (name.contains("/")) {
|
|
String[] path = name.split("/");
|
|
|
|
String folder = "";
|
|
for (int i = 0; i < (path.length - 1); i++) {
|
|
folder += path[i] + "/";
|
|
|
|
// Make sure the current folder exists
|
|
String folderToCreate = Utils.toFilePath(DATA(folder));
|
|
if (!Utils.fileExists(folderToCreate)) {
|
|
Grasscutter.getLogger().info("Creating data folder '" + folder + "'");
|
|
Utils.createFolder(folderToCreate);
|
|
}
|
|
}
|
|
}
|
|
|
|
Grasscutter.getLogger().info("Creating default '" + name + "' data");
|
|
FileUtils.copyResource("/defaults/data/" + name, filePath);
|
|
}
|
|
}
|
|
|
|
private static void generateGachaMappings() {
|
|
if (!Utils.fileExists(GachaHandler.gachaMappings)) {
|
|
try {
|
|
Grasscutter.getLogger().info("Creating default '" + GachaHandler.gachaMappings + "' data");
|
|
Tools.createGachaMapping(GachaHandler.gachaMappings);
|
|
} catch (Exception exception) {
|
|
Grasscutter.getLogger().warn("Failed to create gacha mappings. \n" + exception);
|
|
}
|
|
}
|
|
}
|
|
}
|