1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.gameserver.skills.conditions;
- //import java.util.logging.Logger;
- import com.l2jserver.gameserver.skills.Env;
- /**
- * @author mkizub
- *
- */
- public abstract class Condition implements ConditionListener
- {
-
- //private static final Logger _log = Logger.getLogger(Condition.class.getName());
- private ConditionListener _listener;
- private String _msg;
- private int _msgId;
- private boolean _addName = false;
- private boolean _result;
- public final void setMessage(String msg)
- {
- _msg = msg;
- }
- public final String getMessage()
- {
- return _msg;
- }
- public final void setMessageId(int msgId)
- {
- _msgId = msgId;
- }
- public final int getMessageId()
- {
- return _msgId;
- }
- public final void addName()
- {
- _addName = true;
- }
- public final boolean isAddName()
- {
- return _addName;
- }
- void setListener(ConditionListener listener)
- {
- _listener = listener;
- notifyChanged();
- }
- final ConditionListener getListener()
- {
- return _listener;
- }
- public final boolean test(Env env)
- {
- boolean res = testImpl(env);
- if (_listener != null && res != _result)
- {
- _result = res;
- notifyChanged();
- }
- return res;
- }
- abstract boolean testImpl(Env env);
- public void notifyChanged()
- {
- if (_listener != null)
- _listener.notifyChanged();
- }
- }
|