public class QuestConfigurationUtils
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
private static WauzCore |
core
A direct reference to the main class.
|
Constructor and Description |
---|
QuestConfigurationUtils() |
Modifier and Type | Method and Description |
---|---|
protected static java.util.List<java.lang.String> |
getQuestNameList()
Finds all quest names by iterating through all quest configs.
|
protected static double |
questConfigGetDouble(java.lang.String quest,
java.lang.String path)
Gets a double from a quest config.
|
protected static int |
questConfigGetInt(java.lang.String quest,
java.lang.String path)
Gets an int from a quest config.
|
protected static java.lang.String |
questConfigGetString(java.lang.String quest,
java.lang.String path)
Gets a string from a quest config.
|
protected static java.util.List<java.lang.String> |
questConfigGetStringList(java.lang.String quest,
java.lang.String path)
Gets a string list from a quest config.
|
private static WauzCore core
protected static java.util.List<java.lang.String> getQuestNameList()
protected static java.lang.String questConfigGetString(java.lang.String quest, java.lang.String path)
quest
- The name of the quest config file.path
- The key path of the value to get.protected static java.util.List<java.lang.String> questConfigGetStringList(java.lang.String quest, java.lang.String path)
quest
- The name of the quest config file.path
- The key path of the value to get.protected static int questConfigGetInt(java.lang.String quest, java.lang.String path)
quest
- The name of the quest config file.path
- The key path of the value to get.protected static double questConfigGetDouble(java.lang.String quest, java.lang.String path)
quest
- The name of the quest config file.path
- The key path of the value to get.