123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527 |
- /*
- * 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.instancemanager;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.util.ArrayList;
- import java.util.Calendar;
- import java.util.List;
- import java.util.concurrent.ScheduledFuture;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javolution.util.FastList;
- import com.l2jserver.Config;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.ThreadPoolManager;
- import com.l2jserver.gameserver.datatables.ClanTable;
- import com.l2jserver.gameserver.datatables.ManorData;
- import com.l2jserver.gameserver.model.CropProcure;
- import com.l2jserver.gameserver.model.L2Clan;
- import com.l2jserver.gameserver.model.L2World;
- import com.l2jserver.gameserver.model.SeedProduction;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.entity.Castle;
- import com.l2jserver.gameserver.model.itemcontainer.ClanWarehouse;
- import com.l2jserver.gameserver.model.itemcontainer.ItemContainer;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.util.Rnd;
- /**
- * Class for Castle Manor Manager load manor data from DB update/reload/delete, handles all schedule for manor.
- * @author l3x
- */
- public final class CastleManorManager
- {
- protected static final Logger _log = Logger.getLogger(CastleManorManager.class.getName());
-
- public static final int PERIOD_CURRENT = 0;
- public static final int PERIOD_NEXT = 1;
-
- private static final String CASTLE_MANOR_LOAD_PROCURE = "SELECT * FROM castle_manor_procure WHERE castle_id=?";
- private static final String CASTLE_MANOR_LOAD_PRODUCTION = "SELECT * FROM castle_manor_production WHERE castle_id=?";
-
- private static final int NEXT_PERIOD_APPROVE = Config.ALT_MANOR_APPROVE_TIME; // 6:00
- private static final int NEXT_PERIOD_APPROVE_MIN = Config.ALT_MANOR_APPROVE_MIN; //
- private static final int MANOR_REFRESH = Config.ALT_MANOR_REFRESH_TIME; // 20:00
- private static final int MANOR_REFRESH_MIN = Config.ALT_MANOR_REFRESH_MIN; //
- protected static final long MAINTENANCE_PERIOD = Config.ALT_MANOR_MAINTENANCE_PERIOD; // 6 mins
-
- private Calendar _manorRefresh;
- private Calendar _periodApprove;
-
- private boolean _underMaintenance;
- private boolean _disabled;
-
- protected ScheduledFuture<?> _scheduledManorRefresh;
- protected ScheduledFuture<?> _scheduledMaintenanceEnd;
- protected ScheduledFuture<?> _scheduledNextPeriodapprove;
-
- protected CastleManorManager()
- {
- load(); // load data from database
- init(); // schedule all manor related events
- _underMaintenance = false;
- _disabled = !Config.ALLOW_MANOR;
-
- boolean isApproved;
- if (_periodApprove.getTimeInMillis() > _manorRefresh.getTimeInMillis())
- {
- // Next approve period already scheduled
- isApproved = (_manorRefresh.getTimeInMillis() > Calendar.getInstance().getTimeInMillis());
- }
- else
- {
- isApproved = ((_periodApprove.getTimeInMillis() < Calendar.getInstance().getTimeInMillis()) && (_manorRefresh.getTimeInMillis() > Calendar.getInstance().getTimeInMillis()));
- }
-
- for (Castle c : CastleManager.getInstance().getCastles())
- {
- c.setNextPeriodApproved(isApproved);
- }
- }
-
- private void load()
- {
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statementProduction = con.prepareStatement(CASTLE_MANOR_LOAD_PRODUCTION);
- PreparedStatement statementProcure = con.prepareStatement(CASTLE_MANOR_LOAD_PROCURE))
- {
- for (Castle castle : CastleManager.getInstance().getCastles())
- {
- FastList<SeedProduction> production = new FastList<>();
- FastList<SeedProduction> productionNext = new FastList<>();
- FastList<CropProcure> procure = new FastList<>();
- FastList<CropProcure> procureNext = new FastList<>();
-
- // restore seed production info
- statementProduction.setInt(1, castle.getResidenceId());
- try (ResultSet rs = statementProduction.executeQuery())
- {
- statementProduction.clearParameters();
- while (rs.next())
- {
- int seedId = rs.getInt("seed_id");
- int canProduce = rs.getInt("can_produce");
- int startProduce = rs.getInt("start_produce");
- int price = rs.getInt("seed_price");
- int period = rs.getInt("period");
- if (period == PERIOD_CURRENT)
- {
- production.add(new SeedProduction(seedId, canProduce, price, startProduce));
- }
- else
- {
- productionNext.add(new SeedProduction(seedId, canProduce, price, startProduce));
- }
- }
- }
-
- castle.setSeedProduction(production, PERIOD_CURRENT);
- castle.setSeedProduction(productionNext, PERIOD_NEXT);
-
- // restore procure info
-
- statementProcure.setInt(1, castle.getResidenceId());
- try (ResultSet rs = statementProcure.executeQuery())
- {
- statementProcure.clearParameters();
- while (rs.next())
- {
- int cropId = rs.getInt("crop_id");
- int canBuy = rs.getInt("can_buy");
- int startBuy = rs.getInt("start_buy");
- int rewardType = rs.getInt("reward_type");
- int price = rs.getInt("price");
- int period = rs.getInt("period");
- if (period == PERIOD_CURRENT)
- {
- procure.add(new CropProcure(cropId, canBuy, rewardType, startBuy, price));
- }
- else
- {
- procureNext.add(new CropProcure(cropId, canBuy, rewardType, startBuy, price));
- }
- }
- }
-
- castle.setCropProcure(procure, PERIOD_CURRENT);
- castle.setCropProcure(procureNext, PERIOD_NEXT);
-
- if (!procure.isEmpty() || !procureNext.isEmpty() || !production.isEmpty() || !productionNext.isEmpty())
- {
- _log.info(getClass().getSimpleName() + ": " + castle.getName() + ": Data loaded");
- }
- }
- }
- catch (Exception e)
- {
- _log.info("Error restoring manor data: " + e.getMessage());
- }
- }
-
- private void init()
- {
- _manorRefresh = Calendar.getInstance();
- _manorRefresh.set(Calendar.HOUR_OF_DAY, MANOR_REFRESH);
- _manorRefresh.set(Calendar.MINUTE, MANOR_REFRESH_MIN);
-
- _periodApprove = Calendar.getInstance();
- _periodApprove.set(Calendar.HOUR_OF_DAY, NEXT_PERIOD_APPROVE);
- _periodApprove.set(Calendar.MINUTE, NEXT_PERIOD_APPROVE_MIN);
-
- updateManorRefresh();
- updatePeriodApprove();
- }
-
- public void updateManorRefresh()
- {
- _log.info("Manor System: Manor refresh updated");
-
- _scheduledManorRefresh = ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
- {
- @Override
- public void run()
- {
- if (!isDisabled())
- {
- setUnderMaintenance(true);
- _log.info("Manor System: Under maintenance mode started");
-
- _scheduledMaintenanceEnd = ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
- {
- @Override
- public void run()
- {
- _log.info("Manor System: Next period started");
- setNextPeriod();
- try
- {
- save();
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "Manor System: Failed to save manor data: " + e.getMessage(), e);
- }
- setUnderMaintenance(false);
- }
- }, MAINTENANCE_PERIOD);
- }
- updateManorRefresh();
- }
- }, getMillisToManorRefresh());
- }
-
- public void updatePeriodApprove()
- {
- _log.info("Manor System: Manor period approve updated");
-
- _scheduledNextPeriodapprove = ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
- {
- @Override
- public void run()
- {
- if (!isDisabled())
- {
- approveNextPeriod();
- _log.info("Manor System: Next period approved");
- }
- updatePeriodApprove();
- }
- }, getMillisToNextPeriodApprove());
- }
-
- public long getMillisToManorRefresh()
- {
- // use safe interval 120s to prevent double run
- if ((_manorRefresh.getTimeInMillis() - Calendar.getInstance().getTimeInMillis()) < 120000)
- {
- setNewManorRefresh();
- }
-
- _log.info("Manor System: New Schedule for manor refresh @ " + _manorRefresh.getTime());
-
- return (_manorRefresh.getTimeInMillis() - Calendar.getInstance().getTimeInMillis());
- }
-
- public void setNewManorRefresh()
- {
- _manorRefresh = Calendar.getInstance();
- _manorRefresh.set(Calendar.HOUR_OF_DAY, MANOR_REFRESH);
- _manorRefresh.set(Calendar.MINUTE, MANOR_REFRESH_MIN);
- _manorRefresh.set(Calendar.SECOND, 0);
- _manorRefresh.add(Calendar.HOUR_OF_DAY, 24);
- }
-
- public long getMillisToNextPeriodApprove()
- {
- // use safe interval 120s to prevent double run
- if ((_periodApprove.getTimeInMillis() - Calendar.getInstance().getTimeInMillis()) < 120000)
- {
- setNewPeriodApprove();
- }
-
- _log.info("Manor System: New Schedule for period approve @ " + _periodApprove.getTime());
-
- return (_periodApprove.getTimeInMillis() - Calendar.getInstance().getTimeInMillis());
- }
-
- public void setNewPeriodApprove()
- {
- _periodApprove = Calendar.getInstance();
- _periodApprove.set(Calendar.HOUR_OF_DAY, NEXT_PERIOD_APPROVE);
- _periodApprove.set(Calendar.MINUTE, NEXT_PERIOD_APPROVE_MIN);
- _periodApprove.set(Calendar.SECOND, 0);
- _periodApprove.add(Calendar.HOUR_OF_DAY, 24);
- }
-
- public void setNextPeriod()
- {
- for (Castle c : CastleManager.getInstance().getCastles())
- {
- if (c.getOwnerId() <= 0)
- {
- continue;
- }
- L2Clan clan = ClanTable.getInstance().getClan(c.getOwnerId());
- if (clan == null)
- {
- continue;
- }
-
- ItemContainer cwh = clan.getWarehouse();
- if (!(cwh instanceof ClanWarehouse))
- {
- _log.info("Can't get clan warehouse for clan " + ClanTable.getInstance().getClan(c.getOwnerId()));
- continue;
- }
-
- for (CropProcure crop : c.getCropProcure(PERIOD_CURRENT))
- {
- if (crop.getStartAmount() == 0)
- {
- continue;
- }
- // adding bought crops to clan warehouse
- if ((crop.getStartAmount() - crop.getAmount()) > 0)
- {
- long count = crop.getStartAmount() - crop.getAmount();
- count = (count * 90) / 100;
- if (count < 1)
- {
- if (Rnd.nextInt(99) < 90)
- {
- count = 1;
- }
- }
- if (count > 0)
- {
- cwh.addItem("Manor", ManorData.getInstance().getMatureCrop(crop.getId()), count, null, null);
- }
- }
- // reserved and not used money giving back to treasury
- if (crop.getAmount() > 0)
- {
- c.addToTreasuryNoTax(crop.getAmount() * crop.getPrice());
- }
- }
-
- c.setSeedProduction(c.getSeedProduction(PERIOD_NEXT), PERIOD_CURRENT);
- c.setCropProcure(c.getCropProcure(PERIOD_NEXT), PERIOD_CURRENT);
-
- if (c.getTreasury() < c.getManorCost(PERIOD_CURRENT))
- {
- c.setSeedProduction(getNewSeedsList(c.getResidenceId()), PERIOD_NEXT);
- c.setCropProcure(getNewCropsList(c.getResidenceId()), PERIOD_NEXT);
- }
- else
- {
- FastList<SeedProduction> production = new FastList<>();
- for (SeedProduction s : c.getSeedProduction(PERIOD_CURRENT))
- {
- s.setCanProduce(s.getStartProduce());
- production.add(s);
- }
- c.setSeedProduction(production, PERIOD_NEXT);
-
- FastList<CropProcure> procure = new FastList<>();
- for (CropProcure cr : c.getCropProcure(PERIOD_CURRENT))
- {
- cr.setAmount(cr.getStartAmount());
- procure.add(cr);
- }
- c.setCropProcure(procure, PERIOD_NEXT);
- }
- if (Config.ALT_MANOR_SAVE_ALL_ACTIONS)
- {
- c.saveCropData();
- c.saveSeedData();
- }
-
- // Sending notification to a clan leader
- L2PcInstance clanLeader = null;
- clanLeader = L2World.getInstance().getPlayer(clan.getLeader().getName());
- if (clanLeader != null)
- {
- clanLeader.sendPacket(SystemMessageId.THE_MANOR_INFORMATION_HAS_BEEN_UPDATED);
- }
-
- c.setNextPeriodApproved(false);
- }
- }
-
- public void approveNextPeriod()
- {
- for (Castle c : CastleManager.getInstance().getCastles())
- {
- boolean notFunc = false;
-
- if (c.getOwnerId() <= 0)
- { // Castle has no owner
- c.setCropProcure(new FastList<CropProcure>(), PERIOD_NEXT);
- c.setSeedProduction(new FastList<SeedProduction>(), PERIOD_NEXT);
- }
- else if (c.getTreasury() < c.getManorCost(PERIOD_NEXT))
- {
- notFunc = true;
- _log.info("Manor for castle " + c.getName() + " disabled, not enough adena in treasury: " + c.getTreasury() + ", " + c.getManorCost(PERIOD_NEXT) + " required.");
- c.setSeedProduction(getNewSeedsList(c.getResidenceId()), PERIOD_NEXT);
- c.setCropProcure(getNewCropsList(c.getResidenceId()), PERIOD_NEXT);
- }
- else
- {
- ItemContainer cwh = ClanTable.getInstance().getClan(c.getOwnerId()).getWarehouse();
- if (!(cwh instanceof ClanWarehouse))
- {
- _log.info("Can't get clan warehouse for clan " + ClanTable.getInstance().getClan(c.getOwnerId()));
- continue;
- }
- int slots = 0;
- for (CropProcure crop : c.getCropProcure(PERIOD_NEXT))
- {
- if (crop.getStartAmount() > 0)
- {
- if (cwh.getItemByItemId(ManorData.getInstance().getMatureCrop(crop.getId())) == null)
- {
- slots++;
- }
- }
- }
- if (!cwh.validateCapacity(slots))
- {
- notFunc = true;
- _log.info("Manor for castle " + c.getName() + " disabled, not enough free slots in clan warehouse: " + (Config.WAREHOUSE_SLOTS_CLAN - cwh.getSize()) + ", but " + slots + " required.");
- c.setSeedProduction(getNewSeedsList(c.getResidenceId()), PERIOD_NEXT);
- c.setCropProcure(getNewCropsList(c.getResidenceId()), PERIOD_NEXT);
- }
- }
- c.setNextPeriodApproved(true);
- c.addToTreasuryNoTax((-1) * c.getManorCost(PERIOD_NEXT));
-
- if (notFunc)
- {
- L2Clan clan = ClanTable.getInstance().getClan(c.getOwnerId());
- L2PcInstance clanLeader = null;
- if (clan != null)
- {
- clanLeader = L2World.getInstance().getPlayer(clan.getLeaderId());
- }
- if (clanLeader != null)
- {
- clanLeader.sendPacket(SystemMessageId.THE_AMOUNT_IS_NOT_SUFFICIENT_AND_SO_THE_MANOR_IS_NOT_IN_OPERATION);
- }
- }
- }
- }
-
- private List<SeedProduction> getNewSeedsList(int castleId)
- {
- List<SeedProduction> seeds = new ArrayList<>();
- List<Integer> seedsIds = ManorData.getInstance().getSeedsForCastle(castleId);
- for (int sd : seedsIds)
- {
- seeds.add(new SeedProduction(sd));
- }
- return seeds;
- }
-
- private List<CropProcure> getNewCropsList(int castleId)
- {
- List<CropProcure> crops = new ArrayList<>();
- List<Integer> cropsIds = ManorData.getInstance().getCropsForCastle(castleId);
- for (int cr : cropsIds)
- {
- crops.add(new CropProcure(cr));
- }
-
- return crops;
- }
-
- public boolean isUnderMaintenance()
- {
- return _underMaintenance;
- }
-
- public void setUnderMaintenance(boolean mode)
- {
- _underMaintenance = mode;
- }
-
- public boolean isDisabled()
- {
- return _disabled;
- }
-
- public void setDisabled(boolean mode)
- {
- _disabled = mode;
- }
-
- public SeedProduction getNewSeedProduction(int id, long amount, long price, long sales)
- {
- return new SeedProduction(id, amount, price, sales);
- }
-
- public CropProcure getNewCropProcure(int id, long amount, int type, long price, long buy)
- {
- return new CropProcure(id, amount, type, buy, price);
- }
-
- public void save()
- {
- for (Castle c : CastleManager.getInstance().getCastles())
- {
- c.saveSeedData();
- c.saveCropData();
- }
- }
-
- public static final CastleManorManager getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private static class SingletonHolder
- {
- protected static final CastleManorManager _instance = new CastleManorManager();
- }
- }
|