/
tofu
/
l2interlude
Обзор
Документация
Войти
/
tofu
/
l2interlude
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/main/java/com/l2jserver/gameserver/instancemanager/TownManager.java
81 строка
2 KB
Zoey76
Copyright Update
01 янв 2025, 07:57
01 янв 2025, 07:57
16130a5
Код
Авторство
О чём код?
/* * Copyright © 2004-2025 L2J Server * * This file is part of L2J Server. * * L2J Server 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. * * L2J Server 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.instancemanager; import com.l2jserver.gameserver.model.entity.Castle; import com.l2jserver.gameserver.model.zone.L2ZoneType; import com.l2jserver.gameserver.model.zone.type.L2TownZone; public final class TownManager { public static int getTownCastle(int townId) { return switch (townId) { case 912 -> 1; case 916 -> 2; case 918 -> 3; case 922 -> 4; case 924 -> 5; case 926 -> 6; case 1538 -> 7; case 1537 -> 8; case 1714 -> 9; default -> 0; }; } public static boolean townHasCastleInSiege(int townId) { int castleIndex = getTownCastle(townId); if (castleIndex > 0) { Castle castle = CastleManager.getInstance().getCastles().get(CastleManager.getInstance().getCastleIndex(castleIndex)); if (castle != null) { return castle.getSiege().isInProgress(); } } return false; } public static boolean townHasCastleInSiege(int x, int y) { return townHasCastleInSiege(MapRegionManager.getInstance().getMapRegionLocId(x, y)); } public static L2TownZone getTown(int townId) { for (L2TownZone temp : ZoneManager.getInstance().getAllZones(L2TownZone.class)) { if (temp.getTownId() == townId) { return temp; } } return null; } /** * Returns the town at that position (if any) * @param x * @param y * @param z * @return */ public static L2TownZone getTown(int x, int y, int z) { for (L2ZoneType temp : ZoneManager.getInstance().getZones(x, y, z)) { if (temp instanceof L2TownZone) { return (L2TownZone) temp; } } return null; } }