Files
lakebane/src/engine/wpak/PowerActionParser.java
T

59 lines
2.2 KiB
Java
Raw Normal View History

2024-08-19 13:15:33 -04:00
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
// Magicbane Emulator Project © 2013 - 2024
// www.magicbane.com
package engine.wpak;
2024-08-19 20:41:30 -04:00
import engine.gameManager.ConfigManager;
2024-08-19 20:49:43 -04:00
import engine.wpak.data.PowerActionEntry;
import engine.wpak.data.PowerEntry;
2024-08-19 20:41:30 -04:00
2024-08-19 20:49:43 -04:00
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.regex.Matcher;
2024-08-19 20:41:30 -04:00
import java.util.regex.Pattern;
2024-08-19 13:17:44 -04:00
2024-08-19 20:41:30 -04:00
public class PowerActionParser {
private static final Pattern STRSPLIT_REGEX = Pattern.compile("([^\"]\\S*|\"[^\"]*\")\\s*");
private static final Pattern POWER_ACTION_REGEX = Pattern.compile("(?<=POWERACTIONBEGIN)(.+?)(?=POWERACTIONEND)", Pattern.DOTALL);
private static final String powerActionPath = ConfigManager.DEFAULT_DATA_DIR + "wpak/PowerActions.cfg";
2024-08-19 20:49:43 -04:00
public static void parseWpakFile() {
// Read .wpak file from disk
byte[] fileData;
try {
fileData = Files.readAllBytes(Paths.get(powerActionPath));
} catch (
IOException e) {
throw new RuntimeException(e);
}
String fileContents = new String(fileData);
// Iterate over power entries from .wpak data
Matcher matcher = POWER_ACTION_REGEX.matcher(fileContents);
while (matcher.find()) {
PowerEntry powerEntry = parsePowerActionEntry(matcher.group().trim());
}
}
private static PowerActionEntry parsePowerEntry(String powerData) {
PowerActionEntry powerActionEntry = new PowerActionEntry();
return powerActionEntry;
}
2024-08-19 13:15:33 -04:00
}