XMLWZFile.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:3k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.provider.xmlwz;
  19. import java.io.File;
  20. import java.io.FileInputStream;
  21. import java.io.FileNotFoundException;
  22. import java.io.IOException;
  23. import net.sf.odinms.provider.MapleData;
  24. import net.sf.odinms.provider.MapleDataDirectoryEntry;
  25. import net.sf.odinms.provider.MapleDataProvider;
  26. import net.sf.odinms.provider.wz.WZDirectoryEntry;
  27. import net.sf.odinms.provider.wz.WZFileEntry;
  28. public class XMLWZFile implements MapleDataProvider {
  29. private File root;
  30. private WZDirectoryEntry rootForNavigation;
  31. public XMLWZFile(File fileIn) {
  32. root = fileIn;
  33. rootForNavigation = new WZDirectoryEntry(fileIn.getName(), 0, 0, null);
  34. fillMapleDataEntitys(root, rootForNavigation);
  35. }
  36. private void fillMapleDataEntitys(File lroot, WZDirectoryEntry wzdir) {
  37. for (File file : lroot.listFiles()) {
  38. String fileName = file.getName();
  39. if (file.isDirectory() && !fileName.endsWith(".img")) {
  40. WZDirectoryEntry newDir = new WZDirectoryEntry(fileName, 0, 0, wzdir);
  41. wzdir.addDirectory(newDir);
  42. fillMapleDataEntitys(file, newDir);
  43. } else if (fileName.endsWith(".xml")) {
  44. // get the real size here?
  45. wzdir.addFile(new WZFileEntry(fileName.substring(0, fileName.length() - 4), 0, 0, wzdir));
  46. }
  47. }
  48. }
  49. @Override
  50. public MapleData getData(String path) {
  51. File dataFile = new File(root, path + ".xml");
  52. File imageDataDir = new File(root, path);
  53. if (!dataFile.exists()) {
  54. throw new RuntimeException("Datafile " + path + " does not exist in " + root.getAbsolutePath());
  55. }
  56. FileInputStream fis;
  57. try {
  58. fis = new FileInputStream(dataFile);
  59. } catch (FileNotFoundException e) {
  60. throw new RuntimeException("Datafile " + path + " does not exist in " + root.getAbsolutePath());
  61. }
  62. final XMLDomMapleData domMapleData;
  63. try {
  64. domMapleData = new XMLDomMapleData(fis, imageDataDir.getParentFile());
  65. } finally {
  66. try {
  67. fis.close();
  68. } catch (IOException e) {
  69. throw new RuntimeException(e);
  70. }
  71. }
  72. return domMapleData;
  73. }
  74. @Override
  75. public MapleDataDirectoryEntry getRoot() {
  76. return rootForNavigation;
  77. }
  78. }