123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /*
- * Copyright (C) 2004-2015 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.taskmanager.tasks;
- import java.util.Calendar;
- import java.util.Map;
- import java.util.Map.Entry;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.data.sql.impl.ClanTable;
- import com.l2jserver.gameserver.instancemanager.RaidBossPointsManager;
- import com.l2jserver.gameserver.model.L2Clan;
- import com.l2jserver.gameserver.taskmanager.Task;
- import com.l2jserver.gameserver.taskmanager.TaskManager;
- import com.l2jserver.gameserver.taskmanager.TaskManager.ExecutedTask;
- import com.l2jserver.gameserver.taskmanager.TaskTypes;
- public class TaskRaidPointsReset extends Task
- {
- public static final String NAME = "raid_points_reset";
-
- @Override
- public String getName()
- {
- return NAME;
- }
-
- @Override
- public void onTimeElapsed(ExecutedTask task)
- {
- Calendar cal = Calendar.getInstance();
- if (cal.get(Calendar.DAY_OF_WEEK) == Calendar.MONDAY)
- {
- // reward clan reputation points
- Map<Integer, Integer> rankList = RaidBossPointsManager.getInstance().getRankList();
- for (L2Clan c : ClanTable.getInstance().getClans())
- {
- for (Entry<Integer, Integer> entry : rankList.entrySet())
- {
- if ((entry.getValue() <= 100) && c.isMember(entry.getKey()))
- {
- int reputation = 0;
- switch (entry.getValue())
- {
- case 1:
- reputation = Config.RAID_RANKING_1ST;
- break;
- case 2:
- reputation = Config.RAID_RANKING_2ND;
- break;
- case 3:
- reputation = Config.RAID_RANKING_3RD;
- break;
- case 4:
- reputation = Config.RAID_RANKING_4TH;
- break;
- case 5:
- reputation = Config.RAID_RANKING_5TH;
- break;
- case 6:
- reputation = Config.RAID_RANKING_6TH;
- break;
- case 7:
- reputation = Config.RAID_RANKING_7TH;
- break;
- case 8:
- reputation = Config.RAID_RANKING_8TH;
- break;
- case 9:
- reputation = Config.RAID_RANKING_9TH;
- break;
- case 10:
- reputation = Config.RAID_RANKING_10TH;
- break;
- default:
- if (entry.getValue() <= 50)
- {
- reputation = Config.RAID_RANKING_UP_TO_50TH;
- }
- else
- {
- reputation = Config.RAID_RANKING_UP_TO_100TH;
- }
- break;
- }
- c.addReputationScore(reputation, true);
- }
- }
- }
-
- RaidBossPointsManager.getInstance().cleanUp();
- _log.info("Raid Points Reset Global Task: launched.");
- }
- }
-
- @Override
- public void initializate()
- {
- super.initializate();
- TaskManager.addUniqueTask(NAME, TaskTypes.TYPE_GLOBAL_TASK, "1", "00:10:00", "");
- }
- }
|