/
tofu
/
l2interlude
Обзор
Документация
Войти
/
tofu
/
l2interlude
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/main/java/com/l2jserver/gameserver/model/instancezone/InstanceWorld.java
120 строк
3 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.model.instancezone; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; import java.util.concurrent.atomic.AtomicInteger; import com.l2jserver.gameserver.instancemanager.InstanceManager; import com.l2jserver.gameserver.model.actor.L2Character; import com.l2jserver.gameserver.model.entity.Instance; import com.l2jserver.gameserver.network.SystemMessageId; import com.l2jserver.gameserver.network.serverpackets.SystemMessage; /** * Basic instance zone data transfer object. * @author Zoey76 */ public class InstanceWorld { private int _instanceId; private int _templateId = -1; private final List<Integer> _allowed = new CopyOnWriteArrayList<>(); private final AtomicInteger _status = new AtomicInteger(); public List<Integer> getAllowed() { return _allowed; } public void removeAllowed(int id) { _allowed.remove(Integer.valueOf(id)); } public void addAllowed(int id) { _allowed.add(id); } public boolean isAllowed(int id) { return _allowed.contains(id); } /** * Gets the dynamically generated instance ID. * @return the instance ID */ public int getInstanceId() { return _instanceId; } /** * Sets the instance ID. * @param instanceId the instance ID */ public void setInstanceId(int instanceId) { _instanceId = instanceId; } /** * Gets the client's template instance ID. * @return the template ID */ public int getTemplateId() { return _templateId; } /** * Sets the template ID. * @param templateId the template ID */ public void setTemplateId(int templateId) { _templateId = templateId; } public int getStatus() { return _status.get(); } public boolean isStatus(int status) { return _status.get() == status; } public void setStatus(int status) { _status.set(status); } public void incStatus() { _status.incrementAndGet(); } /** * @param killer * @param victim */ public void onDeath(L2Character killer, L2Character victim) { if ((victim != null) && victim.isPlayer()) { final Instance instance = InstanceManager.getInstance().getInstance(getInstanceId()); if (instance != null) { final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_WILL_BE_EXPELLED_IN_S1); sm.addInt(instance.getEjectTime() / 60 / 1000); victim.getActingPlayer().sendPacket(sm); instance.addEjectDeadTask(victim.getActingPlayer()); } } } }