12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /*
- * 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 javolution.util.FastList;
- import com.l2jserver.gameserver.datatables.SpawnTable;
- import com.l2jserver.gameserver.model.L2Spawn;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.network.NpcStringId;
- import com.l2jserver.gameserver.network.clientpackets.Say2;
- import com.l2jserver.gameserver.network.serverpackets.NpcSay;
- /**
- *
- * @author DS
- *
- */
- public final class OlympiadAnnouncer implements Runnable
- {
- private static final int OLY_MANAGER = 31688;
- private List<L2Spawn> _managers = new FastList<L2Spawn>();
- private int _currentStadium = 0;
- public OlympiadAnnouncer()
- {
- for (L2Spawn spawn : SpawnTable.getInstance().getSpawnTable())
- {
- if (spawn != null && spawn.getNpcid() == OLY_MANAGER)
- _managers.add(spawn);
- }
- }
- @Override
- public void run()
- {
- OlympiadGameTask task;
- for (int i = OlympiadGameManager.getInstance().getNumberOfStadiums(); --i >= 0; _currentStadium++)
- {
- if (_currentStadium >= OlympiadGameManager.getInstance().getNumberOfStadiums())
- _currentStadium = 0;
- task = OlympiadGameManager.getInstance().getOlympiadTask(_currentStadium);
- if (task != null && task.getGame() != null && task.needAnnounce())
- {
- NpcStringId npcString;
- final String arenaId = String.valueOf(task.getGame().getStadiumId() + 1);
- switch (task.getGame().getType())
- {
- case NON_CLASSED:
- npcString = NpcStringId.OLYMPIAD_CLASS_FREE_INDIVIDUAL_MATCH_IS_GOING_TO_BEGIN_IN_ARENA_S1_IN_A_MOMENT;
- break;
- case CLASSED:
- npcString = NpcStringId.OLYMPIAD_CLASS_INDIVIDUAL_MATCH_IS_GOING_TO_BEGIN_IN_ARENA_S1_IN_A_MOMENT;
- break;
- case TEAMS:
- npcString = NpcStringId.OLYMPIAD_CLASS_FREE_TEAM_MATCH_IS_GOING_TO_BEGIN_IN_ARENA_S1_IN_A_MOMENT;
- break;
- default:
- continue;
- }
- L2Npc manager;
- NpcSay packet;
- for (L2Spawn spawn : _managers)
- {
- manager = spawn.getLastSpawn();
- if (manager != null)
- {
- packet = new NpcSay(manager.getObjectId(), Say2.SHOUT, manager.getNpcId(), npcString);
- packet.addStringParameter(arenaId);
- manager.broadcastPacket(packet);
- }
- }
- break;
- }
- }
- }
- }
|