1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117 |
- /*
- * 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 net.sf.l2j.gameserver.model.entity;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.util.Calendar;
- import java.util.List;
- import java.util.Map;
- import java.util.logging.Logger;
- import javolution.util.FastList;
- import javolution.util.FastMap;
- import net.sf.l2j.Config;
- import net.sf.l2j.L2DatabaseFactory;
- import net.sf.l2j.gameserver.Announcements;
- import net.sf.l2j.gameserver.CastleUpdater;
- import net.sf.l2j.gameserver.SevenSigns;
- import net.sf.l2j.gameserver.ThreadPoolManager;
- import net.sf.l2j.gameserver.datatables.ClanTable;
- import net.sf.l2j.gameserver.datatables.DoorTable;
- import net.sf.l2j.gameserver.instancemanager.CastleManager;
- import net.sf.l2j.gameserver.instancemanager.CastleManorManager;
- import net.sf.l2j.gameserver.instancemanager.CastleManorManager.CropProcure;
- import net.sf.l2j.gameserver.instancemanager.CastleManorManager.SeedProduction;
- import net.sf.l2j.gameserver.model.L2Clan;
- import net.sf.l2j.gameserver.model.L2Manor;
- import net.sf.l2j.gameserver.model.L2Object;
- import net.sf.l2j.gameserver.model.actor.instance.L2DoorInstance;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- import net.sf.l2j.gameserver.model.zone.type.L2CastleTeleportZone;
- import net.sf.l2j.gameserver.model.zone.type.L2CastleZone;
- import net.sf.l2j.gameserver.serverpackets.PlaySound;
- import net.sf.l2j.gameserver.serverpackets.PledgeShowInfoUpdate;
- public class Castle
- {
- protected static final Logger _log = Logger.getLogger(Castle.class.getName());
- // =========================================================
- // Data Field
- private FastList<CropProcure> _procure = new FastList<CropProcure>();
- private FastList<SeedProduction> _production = new FastList<SeedProduction>();
- private FastList<CropProcure> _procureNext = new FastList<CropProcure>();
- private FastList<SeedProduction> _productionNext = new FastList<SeedProduction>();
- private boolean _isNextPeriodApproved = false;
- private static final String CASTLE_MANOR_DELETE_PRODUCTION =
- "DELETE FROM castle_manor_production WHERE castle_id=?;";
- private static final String CASTLE_MANOR_DELETE_PRODUCTION_PERIOD =
- "DELETE FROM castle_manor_production WHERE castle_id=? AND period=?;";
- private static final String CASTLE_MANOR_DELETE_PROCURE =
- "DELETE FROM castle_manor_procure WHERE castle_id=?;";
- private static final String CASTLE_MANOR_DELETE_PROCURE_PERIOD =
- "DELETE FROM castle_manor_procure WHERE castle_id=? AND period=?;";
- private static final String CASTLE_UPDATE_CROP =
- "UPDATE castle_manor_procure SET can_buy=? WHERE crop_id=? AND castle_id=? AND period=?";
- private static final String CASTLE_UPDATE_SEED =
- "UPDATE castle_manor_production SET can_produce=? WHERE seed_id=? AND castle_id=? AND period=?";
- // =========================================================
- // Data Field
- private int _castleId = 0;
- private List<L2DoorInstance> _doors = new FastList<L2DoorInstance>();
- private List<String> _doorDefault = new FastList<String>();
- private String _name = "";
- private int _ownerId = 0;
- private Siege _siege = null;
- private Calendar _siegeDate;
- private int _siegeDayOfWeek = 7; // Default to saturday
- private int _siegeHourOfDay = 20; // Default to 8 pm server time
- private int _taxPercent = 0;
- private double _taxRate = 0;
- private int _treasury = 0;
- private L2CastleZone _zone;
- private L2CastleTeleportZone _teleZone;
- private L2Clan _formerOwner = null;
- private int _nbArtifact = 1;
- private Map<Integer, Integer> _engrave = new FastMap<Integer, Integer>();
- // =========================================================
- // Constructor
- public Castle(int castleId)
- {
- _castleId = castleId;
- if(_castleId == 7 || castleId == 9) // Goddard and Schuttgart
- _nbArtifact = 2;
- load();
- loadDoor();
- }
- // =========================================================
- // Method - Public
- public void Engrave(L2Clan clan, int objId)
- {
- _engrave.put(objId, clan.getClanId());
- if (_engrave.size() == _nbArtifact)
- {
- boolean rst = true;
- for (int id : _engrave.values())
- {
- if (id != clan.getClanId())
- rst = false;
- }
- if(rst)
- {
- _engrave.clear();
- setOwner(clan);
- }
- else
- getSiege().announceToPlayer("Clan " + clan.getName() + " has finished to engrave one of the rulers.", true);
- }
- else
- getSiege().announceToPlayer("Clan " + clan.getName() + " has finished to engrave one of the rulers.", true);
- }
- // This method add to the treasury
- /** Add amount to castle instance's treasury (warehouse). */
- public void addToTreasury(int amount)
- {
- // check if owned
- if (getOwnerId() <= 0)
- {
- return;
- }
- if (_name.equalsIgnoreCase("Schuttgart") || _name.equalsIgnoreCase("Goddard"))
- {
- Castle rune = CastleManager.getInstance().getCastle("rune");
- if (rune != null )
- {
- int runeTax = (int)(amount * rune.getTaxRate());
- if (rune.getOwnerId() > 0 ) rune.addToTreasury(runeTax);
- amount -= runeTax;
- }
- }
- if (!_name.equalsIgnoreCase("aden") && !_name.equalsIgnoreCase("Rune") && !_name.equalsIgnoreCase("Schuttgart") && !_name.equalsIgnoreCase("Goddard")) // If current castle instance is not Aden, Rune, Goddard or Schuttgart.
- {
- Castle aden = CastleManager.getInstance().getCastle("aden");
- if (aden != null)
- {
- int adenTax = (int)(amount * aden.getTaxRate()); // Find out what Aden gets from the current castle instance's income
- if (aden.getOwnerId() > 0) aden.addToTreasury(adenTax); // Only bother to really add the tax to the treasury if not npc owned
- amount -= adenTax; // Subtract Aden's income from current castle instance's income
- }
- }
- addToTreasuryNoTax(amount);
- }
- /** Add amount to castle instance's treasury (warehouse), no tax paying. */
- public boolean addToTreasuryNoTax(int amount)
- {
- if (getOwnerId() <= 0) return false;
- if (amount < 0) {
- amount *= -1;
- if (_treasury < amount) return false;
- _treasury -= amount;
- } else {
- if ((long)_treasury + amount > Integer.MAX_VALUE) _treasury = Integer.MAX_VALUE;
- else _treasury += amount;
- }
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("Update castle set treasury = ? where id = ?");
- statement.setInt(1, getTreasury());
- statement.setInt(2, getCastleId());
- statement.execute();
- statement.close();
- }
- catch (Exception e) {}
- finally {try { con.close(); } catch (Exception e) {}}
- return true;
- }
- /**
- * Move non clan members off castle area and to nearest town.<BR><BR>
- */
- public void banishForeigners()
- {
- _zone.banishForeigners(getOwnerId());
- }
- /**
- * Return true if object is inside the zone
- */
- public boolean checkIfInZone(int x, int y, int z)
- {
- return _zone.isInsideZone(x, y, z);
- }
- /**
- * Sets this castles zone
- * @param zone
- */
- public void setZone(L2CastleZone zone)
- {
- _zone = zone;
- }
- public L2CastleZone getZone()
- {
- return _zone;
- }
- public void setTeleZone(L2CastleTeleportZone zone)
- {
- _teleZone = zone;
- }
- public L2CastleTeleportZone getTeleZone()
- {
- return _teleZone;
- }
- public void oustAllPlayers()
- {
- _teleZone.oustAllPlayers();
- }
- /**
- * Get the objects distance to this castle
- * @param obj
- * @return
- */
- public double getDistance(L2Object obj)
- {
- return _zone.getDistanceToZone(obj);
- }
- public void closeDoor(L2PcInstance activeChar, int doorId)
- {
- openCloseDoor(activeChar, doorId, false);
- }
- public void openDoor(L2PcInstance activeChar, int doorId)
- {
- openCloseDoor(activeChar, doorId, true);
- }
- public void openCloseDoor(L2PcInstance activeChar, int doorId, boolean open)
- {
- if (activeChar.getClanId() != getOwnerId())
- return;
- L2DoorInstance door = getDoor(doorId);
- if (door != null)
- {
- if (open)
- door.openMe();
- else
- door.closeMe();
- }
- }
- // This method is used to begin removing all castle upgrades
- public void removeUpgrade()
- {
- removeDoorUpgrade();
- }
- // This method updates the castle tax rate
- public void setOwner(L2Clan clan)
- {
- // Remove old owner
- if (getOwnerId() > 0 && (clan == null || clan.getClanId() != getOwnerId()))
- {
- L2Clan oldOwner = ClanTable.getInstance().getClan(getOwnerId()); // Try to find clan instance
- if (oldOwner != null)
- {
- if (_formerOwner == null)
- {
- _formerOwner = oldOwner;
- if (Config.REMOVE_CASTLE_CIRCLETS)
- {
- CastleManager.getInstance().removeCirclet(_formerOwner,getCastleId());
- }
- }
- oldOwner.setHasCastle(0); // Unset has castle flag for old owner
- Announcements.getInstance().announceToAll(oldOwner.getName() + " has lost " + getName() + " castle!");
- }
- }
- updateOwnerInDB(clan); // Update in database
- if (getSiege().getIsInProgress()) // If siege in progress
- getSiege().midVictory(); // Mid victory phase of siege
- updateClansReputation();
- }
- public void removeOwner(L2Clan clan)
- {
- if (clan != null)
- {
- _formerOwner = clan;
- if (Config.REMOVE_CASTLE_CIRCLETS)
- {
- CastleManager.getInstance().removeCirclet(_formerOwner,getCastleId());
- }
- clan.setHasCastle(0);
- Announcements.getInstance().announceToAll(clan.getName() + " has lost " +getName() + " castle");
- clan.broadcastToOnlineMembers(new PledgeShowInfoUpdate(clan));
- }
- updateOwnerInDB(null);
- if (getSiege().getIsInProgress())
- getSiege().midVictory();
- updateClansReputation();
- }
- // This method updates the castle tax rate
- public void setTaxPercent(L2PcInstance activeChar, int taxPercent)
- {
- int maxTax;
- switch(SevenSigns.getInstance().getSealOwner(SevenSigns.SEAL_STRIFE))
- {
- case SevenSigns.CABAL_DAWN:
- maxTax = 25;
- break;
- case SevenSigns.CABAL_DUSK:
- maxTax = 5;
- break;
- default: // no owner
- maxTax = 15;
- }
- if (taxPercent < 0 || taxPercent > maxTax)
- {
- activeChar.sendMessage("Tax value must be between 0 and "+maxTax+".");
- return;
- }
- setTaxPercent(taxPercent);
- activeChar.sendMessage(getName() + " castle tax changed to " + taxPercent + "%.");
- }
- public void setTaxPercent(int taxPercent)
- {
- _taxPercent = taxPercent;
- _taxRate = _taxPercent / 100.0;
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("Update castle set taxPercent = ? where id = ?");
- statement.setInt(1, taxPercent);
- statement.setInt(2, getCastleId());
- statement.execute();
- statement.close();
- }
- catch (Exception e) {}
- finally {try { con.close(); } catch (Exception e) {}}
- }
- /**
- * Respawn all doors on castle grounds<BR><BR>
- */
- public void spawnDoor()
- {
- spawnDoor(false);
- }
- /**
- * Respawn all doors on castle grounds<BR><BR>
- */
- public void spawnDoor(boolean isDoorWeak)
- {
- for (int i = 0; i < getDoors().size(); i++)
- {
- L2DoorInstance door = getDoors().get(i);
- if (door.getCurrentHp() <= 0)
- {
- door.decayMe(); // Kill current if not killed already
- door = DoorTable.parseList(_doorDefault.get(i));
- if (isDoorWeak)
- door.setCurrentHp(door.getMaxHp() / 2);
- door.spawnMe(door.getX(), door.getY(),door.getZ());
- getDoors().set(i, door);
- }
- else if (door.getOpen() == 0)
- door.closeMe();
- }
- loadDoorUpgrade(); // Check for any upgrade the doors may have
- }
- // This method upgrade door
- public void upgradeDoor(int doorId, int hp, int pDef, int mDef)
- {
- L2DoorInstance door = getDoor(doorId);
- if (door == null)
- return;
- if (door != null && door.getDoorId() == doorId)
- {
- door.setCurrentHp(door.getMaxHp() + hp);
- saveDoorUpgrade(doorId, hp, pDef, mDef);
- return;
- }
- }
- // =========================================================
- // Method - Private
- // This method loads castle
- private void load()
- {
- java.sql.Connection con = null;
- try
- {
- PreparedStatement statement;
- ResultSet rs;
- con = L2DatabaseFactory.getInstance().getConnection();
- statement = con.prepareStatement("Select * from castle where id = ?");
- statement.setInt(1, getCastleId());
- rs = statement.executeQuery();
- while (rs.next())
- {
- _name = rs.getString("name");
- //_OwnerId = rs.getInt("ownerId");
- _siegeDate = Calendar.getInstance();
- _siegeDate.setTimeInMillis(rs.getLong("siegeDate"));
- _siegeDayOfWeek = rs.getInt("siegeDayOfWeek");
- if (_siegeDayOfWeek < 1 || _siegeDayOfWeek > 7)
- _siegeDayOfWeek = 7;
- _siegeHourOfDay = rs.getInt("siegeHourOfDay");
- if (_siegeHourOfDay < 0 || _siegeHourOfDay > 23)
- _siegeHourOfDay = 20;
- _taxPercent = rs.getInt("taxPercent");
- _treasury = rs.getInt("treasury");
- }
- statement.close();
- _taxRate = _taxPercent / 100.0;
- statement = con.prepareStatement("Select clan_id from clan_data where hasCastle = ?");
- statement.setInt(1, getCastleId());
- rs = statement.executeQuery();
- while (rs.next())
- {
- _ownerId = rs.getInt("clan_id");
- }
- if (getOwnerId() > 0)
- {
- L2Clan clan = ClanTable.getInstance().getClan(getOwnerId()); // Try to find clan instance
- ThreadPoolManager.getInstance().scheduleGeneral(new CastleUpdater(clan, 1), 3600000); // Schedule owner tasks to start running
- }
- statement.close();
- }
- catch (Exception e)
- {
- _log.warning("Exception: loadCastleData(): " + e.getMessage());
- e.printStackTrace();
- }
- finally {try { con.close(); } catch (Exception e) {}}
- }
- // This method loads castle door data from database
- private void loadDoor()
- {
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("Select * from castle_door where castleId = ?");
- statement.setInt(1, getCastleId());
- ResultSet rs = statement.executeQuery();
- while (rs.next())
- {
- // Create list of the door default for use when respawning dead doors
- _doorDefault.add(rs.getString("name")
- + ";" + rs.getInt("id")
- + ";" + rs.getInt("x")
- + ";" + rs.getInt("y")
- + ";" + rs.getInt("z")
- + ";" + rs.getInt("range_xmin")
- + ";" + rs.getInt("range_ymin")
- + ";" + rs.getInt("range_zmin")
- + ";" + rs.getInt("range_xmax")
- + ";" + rs.getInt("range_ymax")
- + ";" + rs.getInt("range_zmax")
- + ";" + rs.getInt("hp")
- + ";" + rs.getInt("pDef")
- + ";" + rs.getInt("mDef"));
- L2DoorInstance door = DoorTable.parseList(_doorDefault.get(_doorDefault.size() - 1));
- door.spawnMe(door.getX(), door.getY(),door.getZ());
- _doors.add(door);
- DoorTable.getInstance().putDoor(door);
- }
- statement.close();
- }
- catch (Exception e)
- {
- _log.warning("Exception: loadCastleDoor(): " + e.getMessage());
- e.printStackTrace();
- }
- finally {try { con.close(); } catch (Exception e) {}}
- }
- // This method loads castle door upgrade data from database
- private void loadDoorUpgrade()
- {
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("Select * from castle_doorupgrade where doorId in (Select Id from castle_door where castleId = ?)");
- statement.setInt(1, getCastleId());
- ResultSet rs = statement.executeQuery();
- while (rs.next())
- {
- upgradeDoor(rs.getInt("id"), rs.getInt("hp"), rs.getInt("pDef"), rs.getInt("mDef"));
- }
- statement.close();
- }
- catch (Exception e)
- {
- _log.warning("Exception: loadCastleDoorUpgrade(): " + e.getMessage());
- e.printStackTrace();
- }
- finally {try { con.close(); } catch (Exception e) {}}
- }
- private void removeDoorUpgrade()
- {
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("delete from castle_doorupgrade where doorId in (select id from castle_door where castleId=?)");
- statement.setInt(1, getCastleId());
- statement.execute();
- statement.close();
- }
- catch (Exception e)
- {
- _log.warning("Exception: removeDoorUpgrade(): " + e.getMessage());
- e.printStackTrace();
- }
- finally {try { con.close(); } catch (Exception e) {}}
- }
- private void saveDoorUpgrade(int doorId, int hp, int pDef, int mDef)
- {
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("INSERT INTO castle_doorupgrade (doorId, hp, pDef, mDef) values (?,?,?,?)");
- statement.setInt(1, doorId);
- statement.setInt(2, hp);
- statement.setInt(3, pDef);
- statement.setInt(4, mDef);
- statement.execute();
- statement.close();
- }
- catch (Exception e)
- {
- _log.warning("Exception: saveDoorUpgrade(int doorId, int hp, int pDef, int mDef): " + e.getMessage());
- e.printStackTrace();
- }
- finally
- {
- try { con.close(); } catch (Exception e) {}
- }
- }
- private void updateOwnerInDB(L2Clan clan)
- {
- if (clan != null)
- _ownerId = clan.getClanId(); // Update owner id property
- else
- _ownerId = 0; // Remove owner
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement;
- // ============================================================================
- // NEED TO REMOVE HAS CASTLE FLAG FROM CLAN_DATA
- // SHOULD BE CHECKED FROM CASTLE TABLE
- statement = con.prepareStatement("UPDATE clan_data SET hasCastle=0 WHERE hasCastle=?");
- statement.setInt(1, getCastleId());
- statement.execute();
- statement.close();
- statement = con.prepareStatement("UPDATE clan_data SET hasCastle=? WHERE clan_id=?");
- statement.setInt(1, getCastleId());
- statement.setInt(2, getOwnerId());
- statement.execute();
- statement.close();
- // ============================================================================
- // Announce to clan memebers
- if (clan != null)
- {
- clan.setHasCastle(getCastleId()); // Set has castle flag for new owner
- Announcements.getInstance().announceToAll(clan.getName() + " has taken " + getName() + " castle!");
- clan.broadcastToOnlineMembers(new PledgeShowInfoUpdate(clan));
- clan.broadcastToOnlineMembers(new PlaySound(1, "Siege_Victory", 0, 0, 0, 0, 0));
- ThreadPoolManager.getInstance().scheduleGeneral(new CastleUpdater(clan, 1), 3600000); // Schedule owner tasks to start running
- }
- }
- catch (Exception e)
- {
- _log.warning("Exception: updateOwnerInDB(L2Clan clan): " + e.getMessage());
- e.printStackTrace();
- }
- finally
- {
- try { con.close(); } catch (Exception e) {}
- }
- }
- // =========================================================
- // Property
- public final int getCastleId()
- {
- return _castleId;
- }
- public final L2DoorInstance getDoor(int doorId)
- {
- if (doorId <= 0)
- return null;
- for (int i = 0; i < getDoors().size(); i++)
- {
- L2DoorInstance door = getDoors().get(i);
- if (door.getDoorId() == doorId)
- return door;
- }
- return null;
- }
- public final List<L2DoorInstance> getDoors()
- {
- return _doors;
- }
- public final String getName()
- {
- return _name;
- }
- public final int getOwnerId()
- {
- return _ownerId;
- }
- public final Siege getSiege()
- {
- if (_siege == null) _siege = new Siege(new Castle[] {this});
- return _siege;
- }
- public final Calendar getSiegeDate() { return _siegeDate; }
- public final int getSiegeDayOfWeek() { return _siegeDayOfWeek; }
- public final int getSiegeHourOfDay() { return _siegeHourOfDay; }
- public final int getTaxPercent()
- {
- return _taxPercent;
- }
- public final double getTaxRate()
- {
- return _taxRate;
- }
- public final int getTreasury()
- {
- return _treasury;
- }
- public FastList<SeedProduction> getSeedProduction(int period)
- {
- return (period == CastleManorManager.PERIOD_CURRENT ? _production : _productionNext);
- }
- public FastList<CropProcure> getCropProcure(int period)
- {
- return (period == CastleManorManager.PERIOD_CURRENT ? _procure : _procureNext);
- }
- public void setSeedProduction(FastList<SeedProduction> seed, int period)
- {
- if (period == CastleManorManager.PERIOD_CURRENT)
- _production = seed;
- else
- _productionNext = seed;
- }
- public void setCropProcure(FastList<CropProcure> crop, int period)
- {
- if (period == CastleManorManager.PERIOD_CURRENT)
- _procure = crop;
- else
- _procureNext = crop;
- }
- public synchronized SeedProduction getSeed(int seedId, int period)
- {
- for (SeedProduction seed : getSeedProduction(period))
- {
- if (seed.getId() == seedId)
- {
- return seed;
- }
- }
- return null;
- }
- public synchronized CropProcure getCrop(int cropId, int period)
- {
- for (CropProcure crop : getCropProcure(period) )
- {
- if (crop.getId() == cropId)
- {
- return crop;
- }
- }
- return null;
- }
- public int getManorCost (int period)
- {
- FastList<CropProcure> procure;
- FastList<SeedProduction> production;
- if (period == CastleManorManager.PERIOD_CURRENT)
- {
- procure = _procure;
- production = _production;
- } else {
- procure = _procureNext;
- production = _productionNext;
- }
- int total = 0;
- if (production != null)
- {
- for (SeedProduction seed : production)
- {
- total += L2Manor.getInstance().getSeedBuyPrice(seed.getId()) * seed.getStartProduce();
- }
- }
- if (procure != null)
- {
- for (CropProcure crop: procure)
- {
- total += crop.getPrice() * crop.getStartAmount();
- }
- }
- return total;
- }
- //save manor production data
- public void saveSeedData()
- {
- java.sql.Connection con = null;
- PreparedStatement statement;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- statement = con.prepareStatement(CASTLE_MANOR_DELETE_PRODUCTION);
- statement.setInt(1, getCastleId());
- statement.execute();
- statement.close();
- if (_production != null)
- {
- int count = 0;
- String query = "INSERT INTO castle_manor_production VALUES ";
- String values[] = new String[_production.size()];
- for(SeedProduction s : _production)
- {
- values[count] = "("+getCastleId()+","+s.getId()+","+s.getCanProduce()+","+s.getStartProduce()+","+s.getPrice()+","+CastleManorManager.PERIOD_CURRENT+")";
- count++;
- }
- if (values.length > 0)
- {
- query += values[0];
- for (int i=1; i<values.length; i++)
- {
- query += "," + values[i];
- }
- statement = con.prepareStatement(query);
- statement.execute();
- statement.close();
- }
- }
- if (_productionNext != null)
- {
- int count = 0;
- String query = "INSERT INTO castle_manor_production VALUES ";
- String values[] = new String[_productionNext.size()];
- for(SeedProduction s : _productionNext)
- {
- values[count] = "("+getCastleId()+","+s.getId()+","+s.getCanProduce()+","+s.getStartProduce()+","+s.getPrice()+","+CastleManorManager.PERIOD_NEXT+")";
- count++;
- }
- if (values.length > 0)
- {
- query += values[0];
- for (int i=1;i<values.length;i++)
- {
- query += "," + values[i];
- }
- statement = con.prepareStatement(query);
- statement.execute();
- statement.close();
- }
- }
- } catch (Exception e)
- {
- _log.info("Error adding seed production data for castle " + getName() +": " + e.getMessage());
- } finally {
- try { con.close(); } catch (Exception e) {}
- }
- }
- //save manor production data for specified period
- public void saveSeedData(int period)
- {
- java.sql.Connection con = null;
- PreparedStatement statement;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- statement = con.prepareStatement(CASTLE_MANOR_DELETE_PRODUCTION_PERIOD);
- statement.setInt(1, getCastleId());
- statement.setInt(2, period);
- statement.execute();
- statement.close();
- FastList<SeedProduction> prod = null;
- prod = getSeedProduction(period);
- if (prod != null)
- {
- int count = 0;
- String query = "INSERT INTO castle_manor_production VALUES ";
- String values[] = new String[prod.size()];
- for(SeedProduction s : prod)
- {
- values[count] = "("+getCastleId()+","+s.getId()+","+s.getCanProduce()+","+s.getStartProduce()+","+s.getPrice()+","+period+")";
- count++;
- }
- if (values.length > 0)
- {
- query += values[0];
- for (int i=1;i<values.length;i++)
- {
- query += "," + values[i];
- }
- statement = con.prepareStatement(query);
- statement.execute();
- statement.close();
- }
- }
- } catch (Exception e)
- {
- _log.info("Error adding seed production data for castle " + getName() +": " + e.getMessage());
- } finally {
- try { con.close(); } catch (Exception e) {}
- }
- }
- //save crop procure data
- public void saveCropData()
- {
- java.sql.Connection con = null;
- PreparedStatement statement;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- statement = con.prepareStatement(CASTLE_MANOR_DELETE_PROCURE);
- statement.setInt(1, getCastleId());
- statement.execute();
- statement.close();
- if (_procure != null)
- {
- int count = 0;
- String query = "INSERT INTO castle_manor_procure VALUES ";
- String values[] = new String[_procure.size()];
- for (CropProcure cp : _procure)
- {
- values[count] = "("+getCastleId()+","+cp.getId()+","+cp.getAmount()+","+cp.getStartAmount()+","+cp.getPrice()+","+cp.getReward()+","+CastleManorManager.PERIOD_CURRENT+")";
- count++;
- }
- if (values.length > 0)
- {
- query += values[0];
- for (int i=1;i<values.length;i++)
- {
- query += "," + values[i];
- }
- statement = con.prepareStatement(query);
- statement.execute();
- statement.close();
- }
- }
- if (_procureNext != null)
- {
- int count = 0;
- String query = "INSERT INTO castle_manor_procure VALUES ";
- String values[] = new String[_procureNext.size()];
- for (CropProcure cp : _procureNext)
- {
- values[count] = "("+getCastleId()+","+cp.getId()+","+cp.getAmount()+","+cp.getStartAmount()+","+cp.getPrice()+","+cp.getReward()+","+CastleManorManager.PERIOD_NEXT+")";
- count++;
- }
- if (values.length > 0)
- {
- query += values[0];
- for (int i=1;i<values.length;i++)
- {
- query += "," + values[i];
- }
- statement = con.prepareStatement(query);
- statement.execute();
- statement.close();
- }
- }
- } catch (Exception e) {
- _log.info("Error adding crop data for castle " + getName() +": " + e.getMessage());
- } finally {
- try {
- con.close();
- } catch (Exception e) { }
- }
- }
- // save crop procure data for specified period
- public void saveCropData(int period) {
- java.sql.Connection con = null;
- PreparedStatement statement;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- statement = con.prepareStatement(CASTLE_MANOR_DELETE_PROCURE_PERIOD);
- statement.setInt(1, getCastleId());
- statement.setInt(2, period);
- statement.execute();
- statement.close();
- FastList<CropProcure> proc = null;
- proc = getCropProcure(period);
- if (proc != null)
- {
- int count = 0;
- String query = "INSERT INTO castle_manor_procure VALUES ";
- String values[] = new String[proc.size()];
- for (CropProcure cp : proc)
- {
- values[count] = "("+getCastleId()+","+cp.getId()+","+cp.getAmount()+","+cp.getStartAmount()+","+cp.getPrice()+","+cp.getReward()+","+period+")";
- count++;
- }
- if (values.length > 0)
- {
- query += values[0];
- for (int i=1;i<values.length;i++)
- {
- query += "," + values[i];
- }
- statement = con.prepareStatement(query);
- statement.execute();
- statement.close();
- }
- }
- } catch (Exception e) {
- _log.info("Error adding crop data for castle " + getName() +": " + e.getMessage());
- } finally {
- try {
- con.close();
- } catch (Exception e) { }
- }
- }
- public void updateCrop (int cropId, int amount, int period)
- {
- java.sql.Connection con = null;
- PreparedStatement statement;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- statement = con.prepareStatement(CASTLE_UPDATE_CROP);
- statement.setInt(1, amount);
- statement.setInt(2, cropId);
- statement.setInt(3, getCastleId());
- statement.setInt(4, period);
- statement.execute();
- statement.close();
- } catch (Exception e) {
- _log.info("Error adding crop data for castle " + getName() +": " + e.getMessage());
- } finally {
- try {
- con.close();
- } catch (Exception e) { }
- }
- }
- public void updateSeed (int seedId, int amount, int period)
- {
- java.sql.Connection con = null;
- PreparedStatement statement;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- statement = con.prepareStatement(CASTLE_UPDATE_SEED);
- statement.setInt(1, amount);
- statement.setInt(2, seedId);
- statement.setInt(3, getCastleId());
- statement.setInt(4, period);
- statement.execute();
- statement.close();
- } catch (Exception e) {
- _log.info("Error adding seed production data for castle " + getName() +": " + e.getMessage());
- } finally {
- try {
- con.close();
- } catch (Exception e) { }
- }
- }
- public boolean isNextPeriodApproved()
- {
- return _isNextPeriodApproved;
- }
- public void setNextPeriodApproved(boolean val)
- {
- _isNextPeriodApproved = val;
- }
- public void updateClansReputation()
- {
- if (_formerOwner != null )
- {
- if (_formerOwner != ClanTable.getInstance().getClan(getOwnerId()))
- {
- int maxreward = Math.max(0,_formerOwner.getReputationScore());
- _formerOwner.setReputationScore(_formerOwner.getReputationScore()-1000, true);
- L2Clan owner = ClanTable.getInstance().getClan(getOwnerId());
- if (owner != null)
- {
- owner.setReputationScore(owner.getReputationScore()+Math.min(1000,maxreward), true);
- owner.broadcastToOnlineMembers(new PledgeShowInfoUpdate(owner));
- }
- }
- else
- _formerOwner.setReputationScore(_formerOwner.getReputationScore()+500, true);
- _formerOwner.broadcastToOnlineMembers(new PledgeShowInfoUpdate(_formerOwner));
- }
- else
- {
- L2Clan owner = ClanTable.getInstance().getClan(getOwnerId());
- if (owner != null)
- {
- owner.setReputationScore(owner.getReputationScore()+1000, true);
- owner.broadcastToOnlineMembers(new PledgeShowInfoUpdate(owner));
- }
- }
- }
- }
|