123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /*
- * Copyright (C) 2004-2013 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.holders;
- import java.util.List;
- import javolution.util.FastList;
- import com.l2jserver.gameserver.datatables.ClanTable;
- import com.l2jserver.gameserver.model.Location;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- /**
- * Player event holder, meant for restoring player after event has finished.<br>
- * Allows you to restore following information about player:
- * <ul>
- * <li>Name</li>
- * <li>Title</li>
- * <li>Clan</li>
- * <li>Location</li>
- * <li>PvP Kills</li>
- * <li>PK Kills</li>
- * <li>Karma</li>
- * </ul>
- * @author Nik, xban1x
- */
- public final class PlayerEventHolder
- {
- private final L2PcInstance _player;
- private final String _name;
- private final String _title;
- private final int _clanId;
- private final Location _loc;
- private final int _pvpKills;
- private final int _pkKills;
- private final int _karma;
-
- private final List<L2PcInstance> _kills;
- private boolean _sitForced;
-
- public PlayerEventHolder(L2PcInstance player)
- {
- this(player, false);
- }
-
- public PlayerEventHolder(L2PcInstance player, boolean sitForced)
- {
- _player = player;
- _name = player.getName();
- _title = player.getTitle();
- _clanId = player.getClanId();
- _loc = new Location(player);
- _pvpKills = player.getPvpKills();
- _pkKills = player.getPkKills();
- _karma = player.getKarma();
- _kills = new FastList<>();
- _sitForced = sitForced;
- }
-
- public void restorePlayerStats()
- {
- _player.setName(_name);
- _player.setTitle(_title);
- _player.setClan(ClanTable.getInstance().getClan(_clanId));
- _player.teleToLocation(_loc, true);
- _player.setPvpKills(_pvpKills);
- _player.setPkKills(_pkKills);
- _player.setKarma(_karma);
-
- }
-
- public void setSitForced(boolean sitForced)
- {
- _sitForced = sitForced;
- }
-
- public boolean isSitForced()
- {
- return _sitForced;
- }
-
- public List<L2PcInstance> getKills()
- {
- return _kills;
- }
- }
|