Added implementation of parsing data from quest files

Added methods for checking if a quest is completed and if they have a
quest.
Updated SWGList to account for the special format of Quest list deltas.
Added method that shows a quest in a window
This commit is contained in:
Waverunner
2014-08-12 19:03:19 -04:00
parent 8dfe4a55c9
commit b581118ad3
11 changed files with 862 additions and 18 deletions
@@ -161,7 +161,7 @@ public class PlayerObject extends IntangibleObject implements Serializable {
baseline.put("currentFSQuestList", new SWGList<Byte>(this, 8, 4, false));
baseline.put("completedFSQuestList", new SWGList<Byte>(this, 8, 5, false));
baseline.put("activeQuest", 0);
baseline.put("questJournal", new SWGList<Quest>(this, 8, 7, false));
baseline.put("questJournal", new SWGList<Quest>(this, 8, 7, false, true));
baseline.put("professionWheelPosition", "");
return baseline;
}