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

游戏

开发平台:

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;
  19. import java.io.File;
  20. import java.io.IOException;
  21. import net.sf.odinms.provider.wz.WZFile;
  22. import net.sf.odinms.provider.xmlwz.XMLWZFile;
  23. public class MapleDataProviderFactory {
  24. private final static String wzPath = System.getProperty("net.sf.odinms.wzpath");
  25. private static MapleDataProvider getWZ(Object in, boolean provideImages) {
  26. if (in instanceof File) {
  27. File fileIn = (File) in;
  28. if (fileIn.getName().endsWith("wz") && !fileIn.isDirectory()) {
  29. try {
  30. return new WZFile(fileIn, provideImages);
  31. } catch (IOException e) {
  32. throw new RuntimeException("Loading WZ File failed", e);
  33. }
  34. } else {
  35. // always provides images as we do this lazily and it's
  36. // therefore cheap (assuming that the images don't get loaded
  37. // for fun)
  38. return new XMLWZFile(fileIn);
  39. }
  40. }
  41. throw new IllegalArgumentException("Can't create data provider for input " + in);
  42. }
  43. public static MapleDataProvider getDataProvider(Object in) {
  44. return getWZ(in, false);
  45. }
  46. public static MapleDataProvider getImageProvidingDataProvider(Object in) {
  47. return getWZ(in, true);
  48. }
  49. public static File fileInWZPath(String filename) {
  50. return new File(wzPath, filename);
  51. }
  52. }