/
tofu
/
l2interlude
Обзор
Документация
Войти
/
tofu
/
l2interlude
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/main/java/com/l2jserver/gameserver/dao/impl/mysql/ItemReuseDAOMySQLImpl.java
123 строки
4 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.dao.impl.mysql; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.l2jserver.commons.database.ConnectionFactory; import com.l2jserver.gameserver.dao.ItemReuseDAO; import com.l2jserver.gameserver.model.TimeStamp; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.items.instance.L2ItemInstance; import com.l2jserver.gameserver.network.serverpackets.ExUseSharedGroupItem; /** * Item Reuse DAO MySQL implementation. * @author Zoey76 */ public class ItemReuseDAOMySQLImpl implements ItemReuseDAO { private static final Logger LOG = LoggerFactory.getLogger(ItemReuseDAOMySQLImpl.class); private static final String INSERT = "INSERT INTO character_item_reuse_save (charId,itemId,itemObjId,reuseDelay,systime) VALUES (?,?,?,?,?)"; private static final String SELECT = "SELECT charId,itemId,itemObjId,reuseDelay,systime FROM character_item_reuse_save WHERE charId=?"; private static final String DELETE = "DELETE FROM character_item_reuse_save WHERE charId=?"; @Override public void delete(L2PcInstance player) { try (var con = ConnectionFactory.getInstance().getConnection(); var ps = con.prepareStatement(DELETE)) { ps.setInt(1, player.getObjectId()); ps.execute(); } catch (Exception e) { LOG.warn("Could not delete player's {} item reuse data!", player, e); } } @Override public void insert(L2PcInstance player) { delete(player); try (var con = ConnectionFactory.getInstance().getConnection(); var ps = con.prepareStatement(INSERT)) { final var itemReuseTimeStamps = player.getItemReuseTimeStamps(); if (itemReuseTimeStamps != null) { for (TimeStamp ts : itemReuseTimeStamps.values()) { if ((ts != null) && ts.hasNotPassed()) { ps.setInt(1, player.getObjectId()); ps.setInt(2, ts.getItemId()); ps.setInt(3, ts.getItemObjectId()); ps.setLong(4, ts.getReuse()); ps.setLong(5, ts.getStamp()); ps.addBatch(); } } ps.executeBatch(); } } catch (Exception e) { LOG.warn("Could not store player's {} item reuse data!", player, e); } } @Override public void load(L2PcInstance player) { try (var con = ConnectionFactory.getInstance().getConnection(); var ps = con.prepareStatement(SELECT)) { ps.setInt(1, player.getObjectId()); try (var rs = ps.executeQuery()) { while (rs.next()) { final int itemId = rs.getInt("itemId"); final long reuseDelay = rs.getLong("reuseDelay"); final long systime = rs.getLong("systime"); boolean isInInventory = true; // Using item Id L2ItemInstance item = player.getInventory().getItemByItemId(itemId); if (item == null) { item = player.getWarehouse().getItemByItemId(itemId); isInInventory = false; } if ((item != null) && (item.getId() == itemId) && (item.getReuseDelay() > 0)) { long remainingTime = systime - System.currentTimeMillis(); // Hardcoded to 10 seconds. if (remainingTime > 10) { player.addTimeStampItem(item, reuseDelay, systime); if (isInInventory && item.isEtcItem()) { final int group = item.getSharedReuseGroup(); if (group > 0) { player.sendPacket(new ExUseSharedGroupItem(itemId, group, (int) remainingTime, (int) reuseDelay)); } } } } } } // Deletes item reuse. delete(player); } catch (Exception e) { LOG.error("Could not restore {} Item Reuse data: {}", player, e); } } }