MapleReactorStats.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.server.maps;
  19. import java.awt.Point;
  20. import java.util.HashMap;
  21. import java.util.Map;
  22. import net.sf.odinms.tools.Pair;
  23. /**
  24.  * @author Lerk
  25.  */
  26. public class MapleReactorStats {
  27. private Point tl;
  28. private Point br;
  29. private Map<Byte, StateData> stateInfo = new HashMap<Byte, StateData>();
  30. /*public int getInfoId() {
  31. return infoId;
  32. }
  33. public void setInfoId(int infoId) {
  34. this.infoId = infoId;
  35. }
  36. public void setType(int type) {
  37. this.type = type;
  38. }
  39. public int getType() {
  40. return type;
  41. }*/
  42. public void setTL(Point tl) {
  43. this.tl = tl;
  44. }
  45. public void setBR(Point br) {
  46. this.br = br;
  47. }
  48. public Point getTL() {
  49. return tl;
  50. }
  51. public Point getBR() {
  52. return br;
  53. }
  54. public void addState(byte state, int type, Pair<Integer, Integer> reactItem, byte nextState) {
  55. StateData newState = new StateData(type, reactItem, nextState);
  56. stateInfo.put(state, newState);
  57. }
  58. public byte getNextState(byte state) {
  59. StateData nextState = stateInfo.get(state);
  60. if (nextState != null)
  61. return nextState.getNextState();
  62. else
  63. return -1;
  64. }
  65. public int getType(byte state) {
  66. StateData nextState = stateInfo.get(state);
  67. if (nextState != null)
  68. return nextState.getType();
  69. else
  70. return -1;
  71. }
  72. public Pair<Integer, Integer> getReactItem(byte state) {
  73. StateData nextState = stateInfo.get(state);
  74. if (nextState != null)
  75. return nextState.getReactItem();
  76. else
  77. return null;
  78. }
  79. private class StateData {
  80. private int type;
  81. private Pair<Integer, Integer> reactItem;
  82. private byte nextState;
  83. private StateData(int type, Pair<Integer, Integer> reactItem, byte nextState) {
  84. this.type = type;
  85. this.reactItem = reactItem;
  86. this.nextState = nextState;
  87. }
  88. private int getType() {
  89. return type;
  90. }
  91. private byte getNextState() {
  92. return nextState;
  93. }
  94. private Pair<Integer, Integer> getReactItem() {
  95. return reactItem;
  96. }
  97. }
  98. }