123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /*
- * 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.model.olympiad;
- import java.util.List;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import com.l2jserver.gameserver.datatables.DoorTable;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.util.L2FastList;
- /**
- * @author GodKratos
- */
- class OlympiadStadium
- {
- private static final Logger _log = Logger.getLogger(OlympiadStadium.class.getName());
-
- private boolean _freeToUse = true;
- private static DoorTable _doorTable;
- private int[] _coords = new int[3];
- private int[] _doors = new int[2];
- private List<L2PcInstance> _spectators;
-
- public boolean isFreeToUse()
- {
- return _freeToUse;
- }
-
- public void setStadiaBusy()
- {
- _freeToUse = false;
- }
-
- public void setStadiaFree()
- {
- _freeToUse = true;
- }
-
- public int[] getCoordinates()
- {
- return _coords;
- }
-
- public int[] getDoorID()
- {
- return _doors;
- }
-
- public OlympiadStadium(int x, int y, int z, int d1, int d2)
- {
- _coords[0] = x;
- _coords[1] = y;
- _coords[2] = z;
- _doors[0] = d1;
- _doors[1] = d2;
- _spectators = new L2FastList<L2PcInstance>().shared();
- }
-
- public void openDoors()
- {
- _doorTable = DoorTable.getInstance();
- try
- {
- _doorTable.getDoor(getDoorID()[0]).openMe();
- _doorTable.getDoor(getDoorID()[1]).openMe();
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "", e);
- }
- }
-
- public void closeDoors()
- {
- _doorTable = DoorTable.getInstance();
- try
- {
- _doorTable.getDoor(getDoorID()[0]).closeMe();
- _doorTable.getDoor(getDoorID()[1]).closeMe();
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "", e);
- }
- }
- protected void addSpectator(int id, L2PcInstance spec, boolean storeCoords)
- {
- spec.enterOlympiadObserverMode(getCoordinates()[0] + 1200, getCoordinates()[1], getCoordinates()[2], id, storeCoords);
- _spectators.add(spec);
- }
- protected List<L2PcInstance> getSpectators()
- {
- return _spectators;
- }
-
- protected void removeSpectator(L2PcInstance spec)
- {
- if (_spectators != null && _spectators.contains(spec))
- _spectators.remove(spec);
- }
- }
|