package com.planet_ink.coffee_mud.Commands;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.core.collections.*;
import com.planet_ink.coffee_mud.Abilities.interfaces.*;
import com.planet_ink.coffee_mud.Areas.interfaces.*;
import com.planet_ink.coffee_mud.Behaviors.interfaces.*;
import com.planet_ink.coffee_mud.CharClasses.interfaces.*;
import com.planet_ink.coffee_mud.Commands.interfaces.*;
import com.planet_ink.coffee_mud.Common.interfaces.*;
import com.planet_ink.coffee_mud.Exits.interfaces.*;
import com.planet_ink.coffee_mud.Items.interfaces.*;
import com.planet_ink.coffee_mud.Libraries.interfaces.*;
import com.planet_ink.coffee_mud.Locales.interfaces.*;
import com.planet_ink.coffee_mud.MOBS.interfaces.*;
import com.planet_ink.coffee_mud.Races.interfaces.*;
import java.util.*;
/*
Copyright 2004-2019 Bo Zimmerman
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
public class Score extends Affect
{
public Score()
{
}
private final String[] access = I(new String[] { "SCORE", "SC" });
@Override
public String[] getAccessWords()
{
return access;
}
public StringBuilder getScore(final MOB mob)
{
return getScore(mob, "");
}
protected String getExtremeValue(final int extreme)
{
final StringBuilder str=new StringBuilder("");
for(final char c : CMath.convertToRoman(extreme).toCharArray())
{
switch(c)
{
case 'I':
str.append(CMProps.getListFileChoiceFromIndexedList(CMProps.ListFile.EXTREME_ADVS,0)).append(" ");
break;
case 'V':
str.append(CMProps.getListFileChoiceFromIndexedList(CMProps.ListFile.EXTREME_ADVS,1)).append(" ");
break;
case 'X':
str.append(CMProps.getListFileChoiceFromIndexedList(CMProps.ListFile.EXTREME_ADVS,2)).append(" ");
break;
case 'L':
str.append(CMProps.getListFileChoiceFromIndexedList(CMProps.ListFile.EXTREME_ADVS,3)).append(" ");
break;
case 'C':
str.append(CMProps.getListFileChoiceFromIndexedList(CMProps.ListFile.EXTREME_ADVS,4)).append(" ");
break;
case 'D':
str.append(CMProps.getListFileChoiceFromIndexedList(CMProps.ListFile.EXTREME_ADVS,5)).append(" ");
break;
case 'M':
str.append(CMProps.getListFileChoiceFromIndexedList(CMProps.ListFile.EXTREME_ADVS,6)).append(" ");
break;
}
}
return str.toString();
}
public StringBuilder getScore(final MOB mob, final String parm)
{
final int prowessCode = CMProps.getIntVar(CMProps.Int.COMBATPROWESS);
final StringBuilder msg=new StringBuilder("^N");
final int classLevel=mob.charStats().getClassLevel(mob.charStats().getCurrentClass());
if((!CMSecurity.isDisabled(CMSecurity.DisFlag.CLASSES))
&&(!mob.charStats().getMyRace().classless())
&&(!CMSecurity.isDisabled(CMSecurity.DisFlag.LEVELS))
&&(!mob.charStats().getMyRace().leveless())
&&(!mob.charStats().getCurrentClass().leveless()))
{
String levelStr=null;
if(classLevel>=mob.phyStats().level())
levelStr=L("level ")+mob.phyStats().level()+" "+mob.charStats().getCurrentClass().name(mob.charStats().getCurrentClassLevel());
else
levelStr=mob.charStats().getCurrentClass().name(mob.charStats().getCurrentClassLevel())+" "+classLevel+"/"+mob.phyStats().level();
msg.append(L("You are ^H@x1^? the ^H@x2^?.\n\r",mob.Name(),levelStr));
}
else
if((!CMSecurity.isDisabled(CMSecurity.DisFlag.LEVELS))
&&(!mob.charStats().getCurrentClass().leveless())
&&(!mob.charStats().getMyRace().leveless()))
{
String levelStr=null;
if(classLevel>=mob.phyStats().level())
levelStr=L(", level ")+mob.phyStats().level();
else
levelStr=L(", level ")+classLevel+"/"+mob.phyStats().level();
msg.append(L("You are ^H@x1^?^H@x2^?.\n\r",mob.Name(),levelStr));
}
else
if((!CMSecurity.isDisabled(CMSecurity.DisFlag.CLASSES))
&&(!mob.charStats().getMyRace().classless()))
msg.append(L("You are ^H@x1^? the ^H@x2^?.\n\r",mob.Name(),mob.charStats().getCurrentClass().name(mob.charStats().getCurrentClassLevel())));
else
msg.append(L("You are ^H@x1^?.\n\r",mob.Name()));
if((!CMSecurity.isDisabled(CMSecurity.DisFlag.CLASSES))
&&(classLevel<mob.phyStats().level()))
{
msg.append(L("You also have levels in: "));
final StringBuilder classList=new StringBuilder("");
for(int c=0;c<mob.charStats().numClasses()-1;c++)
{
final CharClass C=mob.charStats().getMyClass(c);
if(C!=mob.charStats().getCurrentClass())
{
if(classList.length()>0)
if(c==mob.charStats().numClasses()-2)
classList.append(L(", and "));
else
classList.append(", ");
classList.append(C.name(mob.charStats().getClassLevel(C))+" ("+mob.charStats().getClassLevel(C)+") ");
}
}
msg.append(classList.toString()+".\n\r");
}
if(CMProps.getBoolVar(CMProps.Bool.ACCOUNTEXPIRATION)&&(mob.playerStats()!=null))
msg.append(L("Your account is Registered and Active until: @x1!\n\r",CMLib.time().date2String(mob.playerStats().getAccountExpiration())));
String genderName=L("^!neuter");
if(mob.charStats().getStat(CharStats.STAT_GENDER)=='M')
genderName=L("^!male");
else
if(mob.charStats().getStat(CharStats.STAT_GENDER)=='F')
genderName=L("^!female");
msg.append(L("You are a "));
if((mob.baseCharStats().getStat(CharStats.STAT_AGE)>0)&&(!CMSecurity.isDisabled(CMSecurity.DisFlag.ALL_AGEING)))
msg.append(L("^!@x1^? year old ",""+mob.baseCharStats().getStat(CharStats.STAT_AGE)));
msg.append(genderName);
if((!CMSecurity.isDisabled(CMSecurity.DisFlag.RACES))
&&(!mob.charStats().getCurrentClass().raceless()))
msg.append(" "+mob.charStats().getMyRace().name() + "^?");
else
msg.append("^?");
if(mob.getLiegeID().length()>0)
{
if(mob.isMarriedToLiege())
msg.append(L(" who is married to ^H@x1^?",mob.getLiegeID()));
else
msg.append(L(" who serves ^H@x1^?",mob.getLiegeID()));
}
if(mob.getWorshipCharID().length()>0)
msg.append(L(" worshipping ^H@x1^?",mob.getWorshipCharID()));
msg.append(".\n\r");
if(mob.clans().iterator().hasNext())
{
msg.append(L("You are "));
for(final Iterator<Pair<Clan,Integer>> c = mob.clans().iterator();c.hasNext();)
{
final Pair<Clan,Integer> p=c.next();
final Clan C=p.first;
String role=C.getRoleName(p.second.intValue(),true,false);
role=CMLib.english().startWithAorAn(role);
msg.append(L("@x1 of ^H@x2^?^.",role,C.getName()));
if(c.hasNext())
msg.append(", ");
}
msg.append("\n\r");
}
if(!CMSecurity.isDisabled(CMSecurity.DisFlag.ATTRIBS))
{
msg.append(L("\n\r^NYour stats are: "));
msg.append(CMLib.protocol().mxpImage(mob," ALIGN=RIGHT H=70 W=70"));
msg.append("\n\r");
CharStats CT=mob.charStats();
if(parm.equalsIgnoreCase("BASE"))
CT=mob.baseCharStats();
msg.append("^N^!");
final int longest=CharStats.CODES.LONNGEST_BASECODE_NAME();
final boolean useWords=CMProps.Int.Prowesses.STAT_PROFICIENCY.is(prowessCode);
final String[] charStatList = CMProps.getListFileStringList(CMProps.ListFile.CHARSTAT_CHART);
for(final int i : CharStats.CODES.BASECODES())
{
final String statDesc;
if(useWords)
{
final int val=CT.getStat(i);
if(val < 0)
statDesc=CMStrings.capitalizeAndLower(charStatList[0]);
else
if(val < charStatList.length)
statDesc=CMStrings.capitalizeAndLower(charStatList[val]);
else
statDesc=CMStrings.capitalizeAndLower(getExtremeValue(val-charStatList.length+1))+" "+CMStrings.capitalizeAndLower(charStatList[charStatList.length-1]);
}
else
statDesc=CMStrings.padRight(Integer.toString(CT.getStat(i)),2)+"/"+(CT.getMaxStat(i));
msg.append(CMStrings.padRight("^<HELP^>^N^!" + CMStrings.capitalizeAndLower(CharStats.CODES.NAME(i))+"^</HELP^>",longest)
+"^N: ^H"+statDesc+"^?\n\r");
}
msg.append("^N\n\r");
}
msg.append(L("You have ^H@x1^? ^<HELP^>hit points^</HELP^>, ^H",mob.curState().getHitPoints()+"/"+mob.maxState().getHitPoints()));
msg.append(L("@x1^? ^<HELP^>mana^</HELP^>, and ^H",mob.curState().getMana()+"/"+mob.maxState().getMana()));
msg.append(L("@x1^? ^<HELP^>movement^</HELP^>.\n\r",mob.curState().getMovement()+"/"+mob.maxState().getMovement()));
if(mob.phyStats().height()<0)
msg.append(L("You are incorporeal, but still weigh ^!@x1^? pounds.\n\r",""+mob.baseWeight()));
else
msg.append(L("You are ^!@x1^? inches tall and weigh ^!@x2^? pounds.\n\r",""+mob.phyStats().height(),""+mob.baseWeight()));
if(CMSecurity.isAllowed(mob,mob.location(),CMSecurity.SecFlag.CARRYALL))
msg.append(L("You are carrying ^!@x1^? items weighing ^!@x2^? pounds.\n\r",""+mob.numItems(),""+mob.phyStats().weight()));
else
msg.append(L("You are carrying ^!@x1^?/^!@x2^? items weighing ^!@x3^? pounds.\n\r",""+mob.numItems(),""+mob.maxItems(),mob.phyStats().weight()+"^?/^!"+mob.maxCarry()));
msg.append(L("You have ^!@x1^? ^<HELP^>practices^</HELP^>, ^!@x2^? ^<HELP^>training sessions^</HELP^>, and ^!@x3^? ^<HELP^>quest points^</HELP^>.\n\r",""+mob.getPractices(),""+mob.getTrains(),""+mob.getQuestPoint()));
if((!CMSecurity.isDisabled(CMSecurity.DisFlag.EXPERIENCE))
&&(!CMSecurity.isDisabled(CMSecurity.DisFlag.SHOWXP))
&&!mob.charStats().getCurrentClass().expless()
&&!mob.charStats().getMyRace().expless())
{
if((!CMSecurity.isDisabled(CMSecurity.DisFlag.LEVELS))
&&(!mob.charStats().getCurrentClass().leveless())
&&(!mob.charStats().getMyRace().leveless()))
{
if(((CMProps.get(mob.session()).getInt(CMProps.Int.LASTPLAYERLEVEL)>0)
&&(mob.basePhyStats().level()>CMProps.get(mob.session()).getInt(CMProps.Int.LASTPLAYERLEVEL)))
||(mob.getExpNeededLevel()==Integer.MAX_VALUE)
||(mob.charStats().isLevelCapped(mob.charStats().getCurrentClass())))
msg.append(L("You have scored ^!@x1^? ^<HELP^>experience points^</HELP^>, ^!@x2^? over your last level.\n\r",""+mob.getExperience(),""+mob.getExpNeededDelevel()));
else
msg.append(L("You have scored ^!@x1^? ^<HELP^>experience points^</HELP^>, and need ^!@x2^? to advance.\n\r",""+mob.getExperience(),""+mob.getExpNeededLevel()));
}
else
msg.append(L("You have scored ^!@x1^? ^<HELP^>experience points^</HELP^>.\n\r",""+mob.getExperience()));
}
msg.append(L("You have been online for ^!@x1^? hours.\n\r",""+Math.round(CMath.div(mob.getAgeMinutes(),60.0))));
final FactionManager fac=CMLib.factions();
final boolean useFactionWords=CMProps.Int.Prowesses.FACTION_RANGE.is(prowessCode);
for(final Enumeration<String> e=mob.factions();e.hasMoreElements();)
{
final String factionID=e.nextElement();
final Faction F=fac.getFaction(factionID);
if(F!=null)
{
final int factionAmt=mob.fetchFaction(factionID);
final Faction.FRange FR=fac.getRange(factionID,factionAmt);
if((FR!=null)
&&(F.showInScore()))
{
if(useFactionWords)
msg.append(L("^NYour ")+CMStrings.padRight(L("^<HELP^>@x1^</HELP^>",F.name()),15)+": ^H"+FR.name()+" ^.\n\r");
else
msg.append(L("^NYour ")+CMStrings.padRight(L("^<HELP^>@x1^</HELP^>",F.name()),15)+": ^H"+FR.name()+" ^.("+factionAmt+")\n\r");
}
}
}
if((CMProps.getIntVar(CMProps.Int.COMBATPROWESS)&CMProps.Int.ANY_ARMOR_PROWESS)!=0)
msg.append(L("Your ^<HELP^>armored defence^</HELP^>: ^H@x1^.^N\n\r",CMLib.combat().armorStr(mob)));
if((CMProps.getIntVar(CMProps.Int.COMBATPROWESS)&CMProps.Int.ANY_COMBAT_PROWESS)!=0)
msg.append(L("Your ^<HELP^>combat prowess^</HELP^> : ^H@x1^.^N\n\r",CMLib.combat().fightingProwessStr(mob)));
if((CMProps.getIntVar(CMProps.Int.COMBATPROWESS)&CMProps.Int.ANY_DAMAGE_PROWESS)!=0)
msg.append(L("Your ^<HELP^>damage threat^</HELP^> : ^H@x1^.^N\n\r",CMLib.combat().damageProwessStr(mob)));
//if(CMLib.flags().canSeeHidden(mob))
// msg.append(L("Your ^<HELP^>observation score^</HELP^> : ^H@x1^?.\n\r",CMLib.flags().getDetectScore(mob)));
msg.append(L("Wimpy is set to ^!@x1^? hit points.\n\r",""+mob.getWimpHitPoint()));
msg.append(getMOBState(mob));
msg.append(getAffects(mob.session(),mob,false,false));
return msg;
}
@Override
public boolean execute(final MOB mob, final List<String> commands, final int metaFlags)
throws java.io.IOException
{
String parm="";
if(commands.size()>1)
parm=CMParms.combine(commands,1);
final StringBuilder msg=getScore(mob,parm);
if(commands.size()==0)
{
commands.add(msg.toString());
return false;
}
if(!mob.isMonster())
mob.session().wraplessPrintln(msg.toString());
return false;
}
@Override
public boolean canBeOrdered()
{
return true;
}
}