Public Repository for the Magicbane Shadowbane Emulator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.9 KiB

// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
// Magicbane Emulator Project © 2013 - 2024
// www.magicbane.com
package engine.ConfigParsing;
9 months ago
import engine.ConfigParsing.EffectEntry.EffectEntry;
import engine.gameManager.ConfigManager;
import java.io.IOException;
9 months ago
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.HashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class EffectsParser {
9 months ago
public static String EffectsPath = ConfigManager.DEFAULT_DATA_DIR + "wpak/Effects.cfg";
public static HashMap<String, EffectEntry> effect_data = new HashMap<>();
8 months ago
private static final Pattern EFFECT_REGEX = Pattern.compile("EFFECTBEGIN(.+?)EFFECTEND", Pattern.DOTALL);
private static final Pattern SOURCE_REGEX = Pattern.compile("SOURCEBEGIN(.+?)SOURCEEND", Pattern.DOTALL);
private static final Pattern MODS_REGEX = Pattern.compile("MODSBEGIN(.+?)MODSEND", Pattern.DOTALL);
9 months ago
public static void init() throws IOException {
9 months ago
byte[] fileData = Files.readAllBytes(Paths.get(EffectsPath));
String fileContents = new String(fileData);
8 months ago
Matcher matcher = EFFECT_REGEX.matcher(fileContents);
9 months ago
8 months ago
// Iterate effect entries from .wpak config data
9 months ago
while (matcher.find()) {
8 months ago
EffectEntry effectEntry = parseEffectEntry(matcher.group(1));
9 months ago
8 months ago
if (effectEntry != null)
effect_data.put(effectEntry.id, effectEntry);
}
}
8 months ago
private static EffectEntry parseEffectEntry(String effectData) {
EffectEntry effectEntry = new EffectEntry();
// Remove all lines that contain a #
8 months ago
effectData = effectData.replaceAll("(?m)^.*#.*$", "");
// Parse effect entry description
String firstLine = effectData.substring(0, effectData.indexOf('\n'));
String[] effectDescription = firstLine.split(" ");
effectEntry.id = effectDescription[0];
effectEntry.name = effectDescription[1];
effectEntry.icon = Integer.parseInt(effectDescription[2]);
// Parse source entries
Matcher matcher = SOURCE_REGEX.matcher(effectData);
while (matcher.find())
effectEntry.sources.add(matcher.group(1).trim());
// Parse modifier entries
8 months ago
return effectEntry;
}
}