/*
* Copyright (C) 2004-2014 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.model.actor.instance;
import com.l2jserver.gameserver.SevenSigns;
import com.l2jserver.gameserver.enums.InstanceType;
import com.l2jserver.gameserver.model.actor.templates.L2NpcTemplate;
import com.l2jserver.gameserver.network.serverpackets.ActionFailed;
import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
public class L2DawnPriestInstance extends L2SignsPriestInstance
{
public L2DawnPriestInstance(int objectId, L2NpcTemplate template)
{
super(objectId, template);
setInstanceType(InstanceType.L2DawnPriestInstance);
}
@Override
public void onBypassFeedback(L2PcInstance player, String command)
{
if (command.startsWith("Chat"))
{
showChatWindow(player);
}
else
{
super.onBypassFeedback(player, command);
}
}
@Override
public void showChatWindow(L2PcInstance player)
{
player.sendPacket(ActionFailed.STATIC_PACKET);
String filename = SevenSigns.SEVEN_SIGNS_HTML_PATH;
int sealGnosisOwner = SevenSigns.getInstance().getSealOwner(SevenSigns.SEAL_GNOSIS);
int playerCabal = SevenSigns.getInstance().getPlayerCabal(player.getObjectId());
boolean isSealValidationPeriod = SevenSigns.getInstance().isSealValidationPeriod();
boolean isCompResultsPeriod = SevenSigns.getInstance().isCompResultsPeriod();
int recruitPeriod = SevenSigns.getInstance().getCurrentPeriod();
int compWinner = SevenSigns.getInstance().getCabalHighestScore();
switch (playerCabal)
{
case SevenSigns.CABAL_DAWN:
if (isCompResultsPeriod)
{
filename += "dawn_priest_5.htm";
}
else if (recruitPeriod == 0)
{
filename += "dawn_priest_6.htm";
}
else if (isSealValidationPeriod)
{
if (compWinner == SevenSigns.CABAL_DAWN)
{
if (compWinner != sealGnosisOwner)
{
filename += "dawn_priest_2c.htm";
}
else
{
filename += "dawn_priest_2a.htm";
}
}
else if (compWinner == SevenSigns.CABAL_NULL)
{
filename += "dawn_priest_2d.htm";
}
else
{
filename += "dawn_priest_2b.htm";
}
}
else
{
filename += "dawn_priest_1b.htm";
}
break;
case SevenSigns.CABAL_DUSK:
if (isSealValidationPeriod)
{
filename += "dawn_priest_3a.htm";
}
else
{
filename += "dawn_priest_3b.htm";
}
break;
default:
if (isCompResultsPeriod)
{
filename += "dawn_priest_5.htm";
}
else if (recruitPeriod == 0)
{
filename += "dawn_priest_6.htm";
}
else if (isSealValidationPeriod)
{
if (compWinner == SevenSigns.CABAL_DAWN)
{
filename += "dawn_priest_4.htm";
}
else if (compWinner == SevenSigns.CABAL_NULL)
{
filename += "dawn_priest_2d.htm";
}
else
{
filename += "dawn_priest_2b.htm";
}
}
else
{
filename += "dawn_priest_1a.htm";
}
break;
}
final NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
html.setFile(player.getHtmlPrefix(), filename);
html.replace("%objectId%", String.valueOf(getObjectId()));
player.sendPacket(html);
}
}