12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355 |
- /*
- * 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.Level;
- 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.FortManager;
- 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>();
- private Map<Integer,CastleFunction> _function;
- /** Castle Functions */
- public static final int FUNC_TELEPORT = 1;
- public static final int FUNC_RESTORE_HP = 2;
- public static final int FUNC_RESTORE_MP = 3;
- public static final int FUNC_RESTORE_EXP = 4;
- public static final int FUNC_SUPPORT = 5;
- public class CastleFunction
- {
- private int _type;
- private int _lvl;
- protected int _fee;
- protected int _tempFee;
- private long _rate;
- private long _endDate;
- protected boolean _inDebt;
- public boolean _cwh;
- public CastleFunction(int type, int lvl, int lease, int tempLease, long rate, long time, boolean cwh)
- {
- _type = type;
- _lvl = lvl;
- _fee = lease;
- _tempFee = tempLease;
- _rate = rate;
- _endDate = time;
- initializeTask(cwh);
- }
- public int getType(){ return _type;}
- public int getLvl(){ return _lvl;}
- public int getLease(){return _fee;}
- public long getRate(){return _rate;}
- public long getEndTime(){ return _endDate;}
- public void setLvl(int lvl){_lvl = lvl;}
- public void setLease(int lease){_fee = lease;}
- public void setEndTime(long time){_endDate = time;}
- private void initializeTask(boolean cwh)
- {
- if (getOwnerId() <= 0)
- return;
- long currentTime = System.currentTimeMillis();
- if(_endDate>currentTime)
- ThreadPoolManager.getInstance().scheduleGeneral(new FunctionTask(cwh), _endDate-currentTime);
- else
- ThreadPoolManager.getInstance().scheduleGeneral(new FunctionTask(cwh), 0);
- }
- private class FunctionTask implements Runnable
- {
- public FunctionTask(boolean cwh)
- {
- _cwh = cwh;
- }
- public void run()
- {
- try
- {
- if (getOwnerId() <= 0)
- return;
- if(ClanTable.getInstance().getClan(getOwnerId()).getWarehouse().getAdena() >= _fee || !_cwh)
- {
- int fee = _fee;
- boolean newfc = true;
- if(getEndTime() == 0 || getEndTime() == -1)
- {
- if(getEndTime() == -1)
- {
- newfc = false;
- fee = _tempFee;
- }
- }else
- newfc = false;
- setEndTime(System.currentTimeMillis()+getRate());
- dbSave(newfc);
- if (_cwh)
- {
- ClanTable.getInstance().getClan(getOwnerId()).getWarehouse().destroyItemByItemId("CS_function_fee", 57, fee, null, null);
- if (Config.DEBUG)
- _log.warning("deducted "+fee+" adena from "+getName()+" owner's cwh for function id : "+getType());
- }
- ThreadPoolManager.getInstance().scheduleGeneral(new FunctionTask(true), getRate());
- }else
- removeFunction(getType());
- } catch (Throwable t) { }
- }
- }
- public void dbSave(boolean newFunction)
- {
- java.sql.Connection con = null;
- try
- {
- PreparedStatement statement;
- con = L2DatabaseFactory.getInstance().getConnection();
- if (newFunction)
- {
- statement = con.prepareStatement("INSERT INTO castle_functions (castle_id, type, lvl, lease, rate, endTime) VALUES (?,?,?,?,?,?)");
- statement.setInt(1, getCastleId());
- statement.setInt(2, getType());
- statement.setInt(3, getLvl());
- statement.setInt(4, getLease());
- statement.setLong(5, getRate());
- statement.setLong(6, getEndTime());
- }
- else
- {
- statement = con.prepareStatement("UPDATE castle_functions SET lvl=?, lease=?, endTime=? WHERE castle_id=? AND type=?");
- statement.setInt(1, getLvl());
- statement.setInt(2, getLease());
- statement.setLong(3, getEndTime());
- statement.setInt(4, getCastleId());
- statement.setInt(5, getType());
- }
- statement.execute();
- statement.close();
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "Exception: Castle.updateFunctions(int type, int lvl, int lease, long rate, long time, boolean addNew): " + e.getMessage(),e);
- }
- finally {try { con.close(); } catch (Exception e) {}}
- }
- }
- // =========================================================
- // Constructor
- public Castle(int castleId)
- {
- _castleId = castleId;
- if(_castleId == 7 || castleId == 9) // Goddard and Schuttgart
- _nbArtifact = 2;
- load();
- loadDoor();
- _function = new FastMap<Integer,CastleFunction>();
- if (getOwnerId() != 0)
- {
- loadFunctions();
- }
- }
- // =========================================================
- // Method - Public
- /** Return function with id */
- public CastleFunction getFunction(int type)
- {
- if(_function.get(type) != null)
- return _function.get(type);
- return null;
- }
- 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();
- for (Map.Entry<Integer, CastleFunction> fc : _function.entrySet())
- removeFunction(fc.getKey());
- _function.clear();
- }
- // 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 clan have fortress, remove it
- if (clan.getHasFort() > 0)
- FortManager.getInstance().getFortByOwner(clan).removeOwner(clan);
- 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();
- for (Map.Entry<Integer, CastleFunction> fc : _function.entrySet())
- removeFunction(fc.getKey());
- _function.clear();
- }
- // 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) {}}
- }
- /** Load All Functions */
- private void loadFunctions()
- {
- java.sql.Connection con = null;
- try
- {
- PreparedStatement statement;
- ResultSet rs;
- con = L2DatabaseFactory.getInstance().getConnection();
- statement = con.prepareStatement("Select * from castle_functions where castle_id = ?");
- statement.setInt(1, getCastleId());
- rs = statement.executeQuery();
- while (rs.next())
- {
- _function.put(rs.getInt("type"), new CastleFunction(rs.getInt("type"), rs.getInt("lvl"), rs.getInt("lease"),0, rs.getLong("rate"), rs.getLong("endTime"), true));
- }
- statement.close();
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "Exception: Castle.loadFunctions(): " + e.getMessage(),e);
- }
- finally {try { con.close(); } catch (Exception e) {}}
- }
- /** Remove function In List and in DB */
- public void removeFunction(int functionType)
- {
- _function.remove(functionType);
- java.sql.Connection con = null;
- try
- {
- PreparedStatement statement;
- con = L2DatabaseFactory.getInstance().getConnection();
- statement = con.prepareStatement("DELETE FROM castle_functions WHERE castle_id=? AND type=?");
- statement.setInt(1, getCastleId());
- statement.setInt(2, functionType);
- statement.execute();
- statement.close();
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "Exception: Castle.removeFunctions(int functionType): " + e.getMessage(),e);
- }
- finally {try { con.close(); } catch (Exception e) {}}
- }
- public boolean updateFunctions(L2PcInstance player,int type, int lvl, int lease, long rate, boolean addNew)
- {
- if (player == null)
- return false;
- if (Config.DEBUG)
- _log.warning("Called Castle.updateFunctions(int type, int lvl, int lease, long rate, boolean addNew) Owner : "+getOwnerId());
- if (lease > 0)
- if (!player.destroyItemByItemId("Consume", 57, lease, null, true))
- return false;
- if (addNew)
- {
- _function.put(type,new CastleFunction(type, lvl, lease,0, rate, 0, false));
- }
- else
- {
- if(lvl == 0 && lease == 0)
- removeFunction(type);
- else
- {
- int diffLease = lease-_function.get(type).getLease();
- if (Config.DEBUG)
- _log.warning("Called Castle.updateFunctions diffLease : "+diffLease);
- if(diffLease>0)
- {
- _function.remove(type);
- _function.put(type,new CastleFunction(type, lvl, lease,0, rate, -1,false));
- }
- else
- {
- _function.get(type).setLease(lease);
- _function.get(type).setLvl(lvl);
- _function.get(type).dbSave(false);
- }
- }
- }
- return true;
- }
- // 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));
- }
- }
- }
- }
|