/*
* 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 silentium.gameserver.model.entity;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import silentium.commons.database.DatabaseFactory;
import silentium.gameserver.idfactory.IdFactory;
import silentium.gameserver.instancemanager.CoupleManager;
import silentium.gameserver.model.actor.instance.L2PcInstance;
/**
* @author evill33t
*/
public class Couple
{
private static final Logger _log = LoggerFactory.getLogger(Couple.class.getName());
private int _Id = 0;
private int _player1Id = 0;
private int _player2Id = 0;
private static int _partnerId = 0;
private boolean _maried = false;
public Couple(int coupleId)
{
_Id = coupleId;
try (Connection con = DatabaseFactory.getConnection())
{
PreparedStatement statement = con.prepareStatement("SELECT * FROM mods_wedding WHERE id = ?");
statement.setInt(1, _Id);
ResultSet rs = statement.executeQuery();
while (rs.next())
{
_player1Id = rs.getInt("player1Id");
_player2Id = rs.getInt("player2Id");
_maried = rs.getBoolean("married");
}
statement.close();
}
catch (Exception e)
{
_log.warn("Exception: Couple.load(): " + e.getMessage(), e);
}
}
public Couple(L2PcInstance player1, L2PcInstance player2)
{
int _tempPlayer1Id = player1.getObjectId();
int _tempPlayer2Id = player2.getObjectId();
_player1Id = _tempPlayer1Id;
_player2Id = _tempPlayer2Id;
try (Connection con = DatabaseFactory.getConnection())
{
_Id = IdFactory.getInstance().getNextId();
PreparedStatement statement = con.prepareStatement("INSERT INTO mods_wedding (id, player1Id, player2Id, married) VALUES (?,?,?,?)");
statement.setInt(1, _Id);
statement.setInt(2, _player1Id);
statement.setInt(3, _player2Id);
statement.setBoolean(4, false);
statement.execute();
statement.close();
}
catch (Exception e)
{
_log.warn("", e);
}
}
public void marry()
{
try (Connection con = DatabaseFactory.getConnection())
{
PreparedStatement statement = con.prepareStatement("UPDATE mods_wedding SET married = ? WHERE id = ?");
statement.setBoolean(1, true);
statement.setInt(2, _Id);
statement.execute();
statement.close();
_maried = true;
}
catch (Exception e)
{
_log.warn("", e);
}
}
public void divorce()
{
try (Connection con = DatabaseFactory.getConnection())
{
PreparedStatement statement = con.prepareStatement("DELETE FROM mods_wedding WHERE id = ?");
statement.setInt(1, _Id);
statement.execute();
}
catch (Exception e)
{
_log.warn("Exception: Couple.divorce(): " + e.getMessage(), e);
}
}
public final int getId()
{
return _Id;
}
public final int getPlayer1Id()
{
return _player1Id;
}
public final int getPlayer2Id()
{
return _player2Id;
}
public static final int getPartnerId(int playerId)
{
for (Couple cl : CoupleManager.getInstance().getCouples())
{
if (cl.getPlayer1Id() == playerId || cl.getPlayer2Id() == playerId)
{
if (cl.getPlayer1Id() == playerId)
_partnerId = cl.getPlayer2Id();
else
_partnerId = cl.getPlayer1Id();
}
}
return _partnerId;
}
public final boolean getMaried()
{
return _maried;
}
}