WZIMGEntry.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.wz;
  19. import java.util.ArrayList;
  20. import java.util.Collections;
  21. import java.util.Iterator;
  22. import java.util.List;
  23. import net.sf.odinms.provider.MapleData;
  24. import net.sf.odinms.provider.MapleDataEntity;
  25. public class WZIMGEntry implements MapleData {
  26. private String name;
  27. private MapleDataType type;
  28. private List<MapleData> children = new ArrayList<MapleData>(10);
  29. private Object data;
  30. private MapleDataEntity parent;
  31. public WZIMGEntry(MapleDataEntity parent) {
  32. this.parent = parent;
  33. }
  34. @Override
  35. public String getName() {
  36. return name;
  37. }
  38. @Override
  39. public MapleDataType getType() {
  40. return type;
  41. }
  42. @Override
  43. public List<MapleData> getChildren() {
  44. // List<MapleData> mapleDataChildren = (List) children;
  45. return Collections.unmodifiableList(children);
  46. }
  47. @Override
  48. public MapleData getChildByPath(String path) {
  49. String segments[] = path.split("/");
  50. if (segments[0].equals("..")) {
  51. return ((MapleData) getParent()).getChildByPath(path.substring(path.indexOf("/") + 1));
  52. }
  53. MapleData ret = this;
  54. for (int x = 0; x < segments.length; x++) {
  55. boolean foundChild = false;
  56. for (MapleData child : ret.getChildren()) {
  57. if (child.getName().equals(segments[x])) {
  58. ret = child;
  59. foundChild = true;
  60. break;
  61. }
  62. }
  63. if (!foundChild) {
  64. return null;
  65. }
  66. }
  67. return ret;
  68. }
  69. @Override
  70. public Object getData() {
  71. return data;
  72. }
  73. public void setName(String name) {
  74. this.name = name;
  75. }
  76. public void setType(MapleDataType type) {
  77. this.type = type;
  78. }
  79. public void setData(Object data) {
  80. this.data = data;
  81. }
  82. public void addChild(WZIMGEntry entry) {
  83. children.add(entry);
  84. }
  85. @Override
  86. public Iterator<MapleData> iterator() {
  87. return getChildren().iterator();
  88. }
  89. @Override
  90. public String toString() {
  91. return getName() + ":" + getData();
  92. }
  93. public MapleDataEntity getParent() {
  94. return parent;
  95. }
  96. public void finish() {
  97. ((ArrayList<MapleData>) children).trimToSize();
  98. }
  99. }