ConditionLogicAnd.java 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package net.sf.l2j.gameserver.skills.conditions;
  16. import net.sf.l2j.gameserver.skills.Env;
  17. /**
  18. * @author mkizub
  19. *
  20. * TODO To change the template for this generated type comment go to
  21. * Window - Preferences - Java - Code Style - Code Templates
  22. */
  23. public class ConditionLogicAnd extends Condition {
  24. private static Condition[] _emptyConditions = new Condition[0];
  25. public Condition[] conditions = _emptyConditions;
  26. public ConditionLogicAnd()
  27. {
  28. super();
  29. }
  30. public void add(Condition condition)
  31. {
  32. if (condition == null)
  33. return;
  34. if (getListener() != null)
  35. condition.setListener(this);
  36. final int len = conditions.length;
  37. final Condition[] tmp = new Condition[len+1];
  38. System.arraycopy(conditions, 0, tmp, 0, len);
  39. tmp[len] = condition;
  40. conditions = tmp;
  41. }
  42. @Override
  43. void setListener(ConditionListener listener)
  44. {
  45. if (listener != null) {
  46. for (Condition c : conditions)
  47. c.setListener(this);
  48. } else {
  49. for (Condition c : conditions)
  50. c.setListener(null);
  51. }
  52. super.setListener(listener);
  53. }
  54. @Override
  55. public boolean testImpl(Env env) {
  56. for (Condition c : conditions) {
  57. if (!c.test(env))
  58. return false;
  59. }
  60. return true;
  61. }
  62. }