mirror of
https://github.com/moparisthebest/MoparClassic
synced 2024-12-21 23:18:52 -05:00
Added save methods to DataStore interface. Implemented save methods in
XMLUsingXStream DataStore.
This commit is contained in:
parent
6634a8d22a
commit
c381918731
@ -310,4 +310,218 @@ public class XMLUsingXStream implements DataStore {
|
|||||||
public void dispose() {
|
public void dispose() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void savePacketHandlerDefs(PacketHandlerDef[] defs) throws Exception {
|
||||||
|
write("PacketHandlers.xml", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveLSPacketHandlerDefs(PacketHandlerDef[] defs)
|
||||||
|
throws Exception {
|
||||||
|
write("LSPacketHanlders.xml", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveNpcHandlers(NpcHandlerDef[] defs) throws Exception {
|
||||||
|
write("NpcHandlers.xml", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveTelePoints(Map<Point, TelePoint> points) throws Exception {
|
||||||
|
write("locs/extras/ObjectTelePoints.xml.gz", points);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveShops(List<Shop> shops) throws Exception {
|
||||||
|
write("locs/Shops.xml.gz", shops);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveCerterDefs(Map<Integer, CerterDef> certers)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/NpcCerters.xml.gz", certers);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveGameObjectLocs(List<GameObjectLoc> locs) throws Exception {
|
||||||
|
write("locs/GameObjectLocs.xml.gz", locs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemLocs(List<ItemLoc> locs) throws Exception {
|
||||||
|
write("locs/ItemLoc.xml.gz", locs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveNPCLocs(List<NPCLoc> locs) throws Exception {
|
||||||
|
write("locs/NpcLoc.xml.gz", locs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveTileDefs(TileDef[] defs) throws Exception {
|
||||||
|
write("defs/TileDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveGameObjectDefs(GameObjectDef[] defs) throws Exception {
|
||||||
|
write("defs/GameObjectDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveDoorDefs(DoorDef[] defs) throws Exception {
|
||||||
|
write("defs/DoorDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemDefs(ItemDef[] defs) throws Exception {
|
||||||
|
write("defs/ItemDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void savePrayerDefs(PrayerDef[] defs) throws Exception {
|
||||||
|
write("defs/PrayerDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveSpellDefs(SpellDef[] defs) throws Exception {
|
||||||
|
write("defs/SpellDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveNPCDefs(NPCDef[] defs) throws Exception {
|
||||||
|
write("defs/NPCDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemCraftingDefs(ItemCraftingDef[] defs) throws Exception {
|
||||||
|
write("defs/extras/ItemCraftingDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemHerbSeconds(ItemHerbSecond[] seconds) throws Exception {
|
||||||
|
write("defs/extras/ItemHerbSecond.xml.gz", seconds);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemDartTipDefs(Map<Integer, ItemDartTipDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ItemDartTipDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveGemDefs(Map<Integer, ItemGemDef> defs) throws Exception {
|
||||||
|
write("def/extras/ItemGemDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemLogCutDefs(Map<Integer, ItemLogCutDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("def/extras/ItemLogCutDefs.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemBowStringDefs(Map<Integer, ItemBowStringDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ItemBowStringDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemArrowHeadDefs(Map<Integer, ItemArrowHeadDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ItemArrowHeadDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveFiremakingDefs(Map<Integer, FiremakingDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/FiremakingDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemAffectedTypes(Map<Integer, int[]> types)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ItemAffectedTypes.xml.gz", types);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemWieldableDefs(Map<Integer, ItemWieldableDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ItemWieldableDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemUnIdentHerbDefs(Map<Integer, ItemUnIdentHerbDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/Item.UnIdentHerbDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemHerbDefs(Map<Integer, ItemHerbDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ItemHerbDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemEdibleHeals(Map<Integer, Integer> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ItemEdibleHeals.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemCookingDefs(Map<Integer, ItemCookingDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ItemCookingDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemSmeltingDefs(Map<Integer, ItemSmeltingDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ItemSmeltingDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveItemSmithingDefs(ItemSmithingDef[] defs) throws Exception {
|
||||||
|
write("defs/extras/ItemSmithingDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveObjectMiningDefs(Map<Integer, ObjectMiningDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ObjectMiningDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveObjectWoodcuttingDefs(
|
||||||
|
Map<Integer, ObjectWoodcuttingDef> defs) throws Exception {
|
||||||
|
write("defs/extras/ObjectWoodcuttingDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveObjectFishingDefs(Map<Integer, ObjectFishingDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/ObjectFishingDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveSpellAgressiveLevel(Map<Integer, Integer> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/SpellAgressiveLvl.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveAgilityDefs(Map<Integer, AgilityDef> defs) throws Exception {
|
||||||
|
write("defs/extras/AgilityDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveAgilityCourseDef(Map<Integer, AgilityCourseDef> defs)
|
||||||
|
throws Exception {
|
||||||
|
write("defs/extras/AgilityCourseDef.xml.gz", defs);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveKeyChestLoots(List<InvItem>[] loots) throws Exception {
|
||||||
|
write("defs/extras/KeyChestLoot.xml.gz", loots);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,93 +16,187 @@ import org.moparscape.msc.gs.phandler.PacketHandlerDef;
|
|||||||
* Any retrieval of unchanging data should be done through this interface. All
|
* Any retrieval of unchanging data should be done through this interface. All
|
||||||
* implementations should be only accessable by the
|
* implementations should be only accessable by the
|
||||||
* org.moparscape.msc.gs.persistence.impl package.<br>
|
* org.moparscape.msc.gs.persistence.impl package.<br>
|
||||||
* Implementations should also use JCIP annotations to specify their degree of thread
|
* Implementations should also use JCIP annotations to specify their degree of
|
||||||
* saftey.
|
* thread saftey.
|
||||||
*
|
*
|
||||||
* @author Joe Pritzel
|
* @author Joe Pritzel
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public abstract interface DataStore {
|
public abstract interface DataStore {
|
||||||
|
|
||||||
public PacketHandlerDef[] loadPacketHandlerDefs();
|
public PacketHandlerDef[] loadPacketHandlerDefs() throws Exception;
|
||||||
|
|
||||||
public PacketHandlerDef[] loadLSPacketHandlerDefs();
|
public void savePacketHandlerDefs(PacketHandlerDef[] defs) throws Exception;
|
||||||
|
|
||||||
public NpcHandlerDef[] loadNpcHandlers();
|
public PacketHandlerDef[] loadLSPacketHandlerDefs() throws Exception;
|
||||||
|
|
||||||
public Map<Point, TelePoint> loadTelePoints();
|
public void saveLSPacketHandlerDefs(PacketHandlerDef[] defs)
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
public List<Shop> loadShops();
|
public NpcHandlerDef[] loadNpcHandlers() throws Exception;
|
||||||
|
|
||||||
public Map<Integer, CerterDef> loadCerterDefs();
|
public void saveNpcHandlers(NpcHandlerDef[] defs) throws Exception;
|
||||||
|
|
||||||
public List<GameObjectLoc> loadGameObjectLocs();
|
public Map<Point, TelePoint> loadTelePoints() throws Exception;
|
||||||
|
|
||||||
public List<ItemLoc> loadItemLocs();
|
public void saveTelePoints(Map<Point, TelePoint> points) throws Exception;
|
||||||
|
|
||||||
public List<NPCLoc> loadNPCLocs();
|
public List<Shop> loadShops() throws Exception;
|
||||||
|
|
||||||
public TileDef[] loadTileDefs();
|
public void saveShops(List<Shop> shops) throws Exception;
|
||||||
|
|
||||||
public GameObjectDef[] loadGameObjectDefs();
|
public Map<Integer, CerterDef> loadCerterDefs() throws Exception;
|
||||||
|
|
||||||
public DoorDef[] loadDoorDefs();
|
public void saveCerterDefs(Map<Integer, CerterDef> certers)
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
public ItemDef[] loadItemDefs();
|
public List<GameObjectLoc> loadGameObjectLocs() throws Exception;
|
||||||
|
|
||||||
public PrayerDef[] loadPrayerDefs();
|
public void saveGameObjectLocs(List<GameObjectLoc> locs) throws Exception;
|
||||||
|
|
||||||
public SpellDef[] loadSpellDefs();
|
public List<ItemLoc> loadItemLocs() throws Exception;
|
||||||
|
|
||||||
public NPCDef[] loadNPCDefs();
|
public void saveItemLocs(List<ItemLoc> locs) throws Exception;
|
||||||
|
|
||||||
public ItemCraftingDef[] loadItemCraftingDefs();
|
public List<NPCLoc> loadNPCLocs() throws Exception;
|
||||||
|
|
||||||
public ItemHerbSecond[] loadItemHerbSeconds();
|
public void saveNPCLocs(List<NPCLoc> locs) throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ItemDartTipDef> loadItemDartTipDefs();
|
public TileDef[] loadTileDefs() throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ItemGemDef> loadGemDefs();
|
public void saveTileDefs(TileDef[] defs) throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ItemLogCutDef> loadItemLogCutDefs();
|
public GameObjectDef[] loadGameObjectDefs() throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ItemBowStringDef> loadItemBowStringDefs();
|
public void saveGameObjectDefs(GameObjectDef[] defs) throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ItemArrowHeadDef> loadItemArrowHeadDefs();
|
public DoorDef[] loadDoorDefs() throws Exception;
|
||||||
|
|
||||||
public Map<Integer, FiremakingDef> loadFiremakingDefs();
|
public void saveDoorDefs(DoorDef[] defs) throws Exception;
|
||||||
|
|
||||||
public Map<Integer, int[]> loadItemAffectedTypes();
|
public ItemDef[] loadItemDefs() throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ItemWieldableDef> loadItemWieldableDefs();
|
public void saveItemDefs(ItemDef[] defs) throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ItemUnIdentHerbDef> loadItemUnIdentHerbDefs();
|
public PrayerDef[] loadPrayerDefs() throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ItemHerbDef> loadItemHerbDefs();
|
public void savePrayerDefs(PrayerDef[] defs) throws Exception;
|
||||||
|
|
||||||
public Map<Integer, Integer> loadItemEdibleHeals();
|
public SpellDef[] loadSpellDefs() throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ItemCookingDef> loadItemCookingDefs();
|
public void saveSpellDefs(SpellDef[] defs) throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ItemSmeltingDef> loadItemSmeltingDefs();
|
public NPCDef[] loadNPCDefs() throws Exception;
|
||||||
|
|
||||||
public ItemSmithingDef[] loadItemSmithingDefs();
|
public void saveNPCDefs(NPCDef[] defs) throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ObjectMiningDef> loadObjectMiningDefs();
|
public ItemCraftingDef[] loadItemCraftingDefs() throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ObjectWoodcuttingDef> loadObjectWoodcuttingDefs();
|
public void saveItemCraftingDefs(ItemCraftingDef[] defs) throws Exception;
|
||||||
|
|
||||||
public Map<Integer, ObjectFishingDef[]> loadObjectFishDefs();
|
public ItemHerbSecond[] loadItemHerbSeconds() throws Exception;
|
||||||
|
|
||||||
public Map<Integer, Integer> loadSpellAgressiveLevel();
|
public void saveItemHerbSeconds(ItemHerbSecond[] seconds) throws Exception;
|
||||||
|
|
||||||
public Map<Integer, AgilityDef> loadAgilityDefs();
|
public Map<Integer, ItemDartTipDef> loadItemDartTipDefs() throws Exception;
|
||||||
|
|
||||||
public Map<Integer, AgilityCourseDef> loadAgilityCourseDefs();
|
public void saveItemDartTipDefs(Map<Integer, ItemDartTipDef> defs)
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
public List<InvItem>[] loadKeyChestLoots();
|
public Map<Integer, ItemGemDef> loadGemDefs() throws Exception;
|
||||||
|
|
||||||
public HashMap<Integer, ItemDartTipDef> loadDartTips();
|
public void saveGemDefs(Map<Integer, ItemGemDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ItemLogCutDef> loadItemLogCutDefs() throws Exception;
|
||||||
|
|
||||||
|
public void saveItemLogCutDefs(Map<Integer, ItemLogCutDef> defs)
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ItemBowStringDef> loadItemBowStringDefs()
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public void saveItemBowStringDefs(Map<Integer, ItemBowStringDef> defs)
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ItemArrowHeadDef> loadItemArrowHeadDefs()
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public void saveItemArrowHeadDefs(Map<Integer, ItemArrowHeadDef> defs)
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, FiremakingDef> loadFiremakingDefs() throws Exception;
|
||||||
|
|
||||||
|
public void saveFiremakingDefs(Map<Integer, FiremakingDef> defs)
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, int[]> loadItemAffectedTypes() throws Exception;
|
||||||
|
|
||||||
|
public void saveItemAffectedTypes(Map<Integer, int[]> types) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ItemWieldableDef> loadItemWieldableDefs()
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public void saveItemWieldableDefs(Map<Integer, ItemWieldableDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ItemUnIdentHerbDef> loadItemUnIdentHerbDefs()
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public void saveItemUnIdentHerbDefs(Map<Integer, ItemUnIdentHerbDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ItemHerbDef> loadItemHerbDefs() throws Exception;
|
||||||
|
|
||||||
|
public void saveItemHerbDefs(Map<Integer, ItemHerbDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, Integer> loadItemEdibleHeals() throws Exception;
|
||||||
|
|
||||||
|
public void saveItemEdibleHeals(Map<Integer, Integer> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ItemCookingDef> loadItemCookingDefs() throws Exception;
|
||||||
|
|
||||||
|
public void saveItemCookingDefs(Map<Integer, ItemCookingDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ItemSmeltingDef> loadItemSmeltingDefs()
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public void saveItemSmeltingDefs(Map<Integer, ItemSmeltingDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public ItemSmithingDef[] loadItemSmithingDefs() throws Exception;
|
||||||
|
|
||||||
|
public void saveItemSmithingDefs(ItemSmithingDef[] defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ObjectMiningDef> loadObjectMiningDefs()
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public void saveObjectMiningDefs(Map<Integer, ObjectMiningDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ObjectWoodcuttingDef> loadObjectWoodcuttingDefs()
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public void saveObjectWoodcuttingDefs(Map<Integer, ObjectWoodcuttingDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, ObjectFishingDef[]> loadObjectFishDefs()
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public void saveObjectFishingDefs(Map<Integer, ObjectFishingDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, Integer> loadSpellAgressiveLevel() throws Exception;
|
||||||
|
|
||||||
|
public void saveSpellAgressiveLevel(Map<Integer, Integer> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, AgilityDef> loadAgilityDefs() throws Exception;
|
||||||
|
|
||||||
|
public void saveAgilityDefs(Map<Integer, AgilityDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public Map<Integer, AgilityCourseDef> loadAgilityCourseDefs()
|
||||||
|
throws Exception;
|
||||||
|
|
||||||
|
public void saveAgilityCourseDef(Map<Integer, AgilityCourseDef> defs) throws Exception;
|
||||||
|
|
||||||
|
public List<InvItem>[] loadKeyChestLoots() throws Exception;
|
||||||
|
|
||||||
|
public void saveKeyChestLoots(List<InvItem>[] loots) throws Exception;
|
||||||
|
|
||||||
|
public HashMap<Integer, ItemDartTipDef> loadDartTips() throws Exception;
|
||||||
|
|
||||||
public void dispose();
|
public void dispose();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user