76 lines
2.3 KiB
Java
76 lines
2.3 KiB
Java
/*
|
|
* This file is part of the L2J Mobius project.
|
|
*
|
|
* 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.l2jmobius.gameserver.model;
|
|
|
|
import java.util.concurrent.ScheduledFuture;
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
|
|
import com.l2jmobius.Config;
|
|
import com.l2jmobius.gameserver.ThreadPoolManager;
|
|
import com.l2jmobius.gameserver.model.actor.L2Character;
|
|
import com.l2jmobius.gameserver.model.actor.L2Npc;
|
|
import com.l2jmobius.gameserver.model.actor.templates.L2NpcTemplate;
|
|
|
|
/**
|
|
* @author UnAfraid
|
|
*/
|
|
public class MpRewardTask
|
|
{
|
|
private final AtomicInteger _count;
|
|
private final double _value;
|
|
private final ScheduledFuture<?> _task;
|
|
private final L2Character _creature;
|
|
|
|
public MpRewardTask(L2Character creature, L2Npc npc)
|
|
{
|
|
final L2NpcTemplate template = npc.getTemplate();
|
|
_creature = creature;
|
|
_count = new AtomicInteger(template.getMpRewardTicks());
|
|
_value = calculateBaseValue(npc, creature);
|
|
_task = ThreadPoolManager.getInstance().scheduleEffectAtFixedRate(this::run, Config.EFFECT_TICK_RATIO, Config.EFFECT_TICK_RATIO);
|
|
}
|
|
|
|
/**
|
|
* @param npc
|
|
* @param creature
|
|
* @return
|
|
*/
|
|
private double calculateBaseValue(L2Npc npc, L2Character creature)
|
|
{
|
|
final L2NpcTemplate template = npc.getTemplate();
|
|
switch (template.getMpRewardType())
|
|
{
|
|
case PER:
|
|
{
|
|
return (creature.getMaxMp() * (template.getMpRewardValue() / 100)) / template.getMpRewardTicks();
|
|
}
|
|
}
|
|
return template.getMpRewardValue() / template.getMpRewardTicks();
|
|
}
|
|
|
|
private void run()
|
|
{
|
|
if ((_count.decrementAndGet() <= 0) || (_creature.isPlayer() && !_creature.getActingPlayer().isOnline()))
|
|
{
|
|
_task.cancel(false);
|
|
return;
|
|
}
|
|
|
|
_creature.setCurrentMp(_creature.getCurrentMp() + _value);
|
|
}
|
|
}
|