Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
170 lines
7.0 KiB
Plaintext
170 lines
7.0 KiB
Plaintext
//:://////////////////////////////////////////////
|
|
//:: Adaptive Style Recovery Conversation
|
|
//:: tob_swd_rcrcnv
|
|
//:://////////////////////////////////////////////
|
|
/** @file
|
|
This allows you to choose which maneuver to recover.
|
|
|
|
|
|
@author Stratovarius
|
|
@date Created - 21.9.2008
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "inc_dynconv"
|
|
#include "tob_inc_recovery"
|
|
|
|
//////////////////////////////////////////////////
|
|
/* Constant defintions */
|
|
//////////////////////////////////////////////////
|
|
|
|
const int STAGE_SELECT_MANEUVER = 0;
|
|
const int STAGE_CONFIRM_SELECTION = 1;
|
|
const int STAGE_ALL_MANEUVERS_SELECTED = 2;
|
|
|
|
const int CHOICE_BACK_TO_LSELECT = -1;
|
|
|
|
const int STRREF_BACK_TO_LSELECT = 16829723; // "Return to maneuver level selection."
|
|
const int STRREF_LEVELLIST_HEADER = 16829724; // "Select level of maneuver to gain.\n\nNOTE:\nThis may take a while when first browsing a particular level's maneuvers."
|
|
const int STRREF_MOVELIST_HEADER1 = 16829725; // "Select a maneuver to gain.\nYou can select"
|
|
const int STRREF_MOVELIST_HEADER2 = 16829726; // "more maneuvers"
|
|
const int STRREF_SELECTED_HEADER1 = 16824209; // "You have selected:"
|
|
const int STRREF_SELECTED_HEADER2 = 16824210; // "Is this correct?"
|
|
const int STRREF_END_HEADER = 16829727; // "You will be able to select more maneuvers after you gain another level in a blade magic initiator class."
|
|
const int STRREF_END_CONVO_SELECT = 16824212; // "Finish"
|
|
const int LEVEL_STRREF_START = 16824809;
|
|
const int STRREF_YES = 4752; // "Yes"
|
|
const int STRREF_NO = 4753; // "No"
|
|
const int STRREF_MOVESTANCE_HEADER = 16829729; // "Choose Maneuver or Stances."
|
|
const int STRREF_STANCE = 16829730; // "Stances"
|
|
const int STRREF_MANEUVER = 16829731; // "Maneuvers"
|
|
|
|
//////////////////////////////////////////////////
|
|
/* Function defintions */
|
|
//////////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nValue = GetLocalInt(oPC, DYNCONV_VARIABLE);
|
|
int nStage = GetStage(oPC);
|
|
|
|
int nClass = GetLocalInt(oPC, "nClass");
|
|
string sPsiFile = GetAMSKnownFileName(nClass);
|
|
string sManeuverFile = GetAMSDefinitionFileName(nClass);
|
|
|
|
// Check which of the conversation scripts called the scripts
|
|
if(nValue == 0) // All of them set the DynConv_Var to non-zero value, so something is wrong -> abort
|
|
{
|
|
if(DEBUG) DoDebug("tob_swd_rcrcnv: Aborting due to error.");
|
|
return;
|
|
}
|
|
|
|
if(nValue == DYNCONV_SETUP_STAGE)
|
|
{
|
|
if(DEBUG) DoDebug("tob_swd_rcrcnv: Running setup stage for stage " + IntToString(nStage));
|
|
// Check if this stage is marked as already set up
|
|
// This stops list duplication when scrolling
|
|
if(!GetIsStageSetUp(nStage, oPC))
|
|
{
|
|
if(DEBUG) DoDebug("tob_swd_rcrcnv: Stage was not set up already. nStage: " + IntToString(nStage));
|
|
// Maneuver selection stage
|
|
if(nStage == STAGE_SELECT_MANEUVER)
|
|
{
|
|
if(DEBUG) DoDebug("tob_swd_rcrcnv: Building maneuver selection");
|
|
int nMoveId;
|
|
string sToken = "Select a Maneuver to ready.";
|
|
SetHeader(sToken);
|
|
|
|
int i;
|
|
for(i = 1; i < 212; i++)
|
|
{ // Checks to see if its the appropriate level
|
|
int nMoveId = StringToInt(Get2DACache(sManeuverFile, "RealSpellID", i));
|
|
if (GetHasManeuver(nMoveId, nClass, oPC) && Get2DACache(sManeuverFile, "Type", i) != "1")
|
|
{
|
|
if (!GetIsManeuverReadied(oPC, nClass, nMoveId))
|
|
{
|
|
AddChoice(GetManeuverName(nMoveId), i);
|
|
}
|
|
}
|
|
}
|
|
AddChoice("Exit Conversation", -1, oPC);
|
|
|
|
MarkStageSetUp(STAGE_SELECT_MANEUVER, oPC);
|
|
}
|
|
}
|
|
|
|
// Do token setup
|
|
SetupTokens();
|
|
}
|
|
else if(nValue == DYNCONV_EXITED)
|
|
{
|
|
if(DEBUG) DoDebug("tob_swd_rcrcnv: Running exit handler");
|
|
// End of conversation cleanup
|
|
DeleteLocalInt(oPC, "nClass");
|
|
DeleteLocalInt(oPC, "nManeuver");
|
|
DeleteLocalInt(oPC, "nManeuverLevelToBrowse");
|
|
DeleteLocalInt(oPC, "ManeuverListChoiceOffset");
|
|
}
|
|
else if(nValue == DYNCONV_ABORTED)
|
|
{
|
|
// This section should never be run, since aborting this conversation should
|
|
// always be forbidden and as such, any attempts to abort the conversation
|
|
// should be handled transparently by the system
|
|
if(DEBUG) DoDebug("tob_swd_rcrcnv: ERROR: Conversation abort section run");
|
|
}
|
|
// Handle PC response
|
|
else
|
|
{
|
|
int nChoice = GetChoice(oPC);
|
|
if(DEBUG) DoDebug("tob_swd_rcrcnv: Handling PC response, stage = " + IntToString(nStage) + "; nChoice = " + IntToString(nChoice) + "; choice text = '" + GetChoiceText(oPC) + "'");
|
|
if(nStage == STAGE_SELECT_MANEUVER)
|
|
{
|
|
if(nChoice > 0)
|
|
{
|
|
if(DEBUG) DoDebug("tob_ft_rcncnv: Adding maneuver readied");
|
|
int nMoveId = StringToInt(Get2DACache(sManeuverFile, "RealSpellID", nChoice));
|
|
if(DEBUG) DoDebug("tob_ft_rcncnv: nReadyMoveId: " + IntToString(nMoveId));
|
|
ReadyManeuver(oPC, nClass, nMoveId);
|
|
|
|
// Delete the stored offset
|
|
DeleteLocalInt(oPC, "ManeuverListChoiceOffset");
|
|
}
|
|
|
|
// Determine whether they're missing maneuvers or stances
|
|
int nMaxReady = GetMaxReadiedCount(oPC, nClass);
|
|
int nMaxKnown = GetManeuverCount(oPC, nClass, MANEUVER_TYPE_MANEUVER);
|
|
if(nMaxReady > nMaxKnown)
|
|
nMaxReady = nMaxKnown;
|
|
int nCountReady = GetReadiedCount(oPC, nClass);
|
|
if(DEBUG) DoDebug("tob_ft_rcncnv: nCountReady: " + IntToString(nCountReady));
|
|
if(DEBUG) DoDebug("tob_ft_rcncnv: nMaxReady: " + IntToString(nMaxReady));
|
|
// Go to the end, and set all maneuvers as not expended
|
|
if(nCountReady >= nMaxReady)
|
|
{
|
|
RecoverExpendedManeuvers(oPC, nClass);
|
|
// And we're all done
|
|
AllowExit(DYNCONV_EXIT_FORCE_EXIT);
|
|
}
|
|
else
|
|
{
|
|
//MarkStageNotSetUp(STAGE_SELECT_MANEUVER, oPC);
|
|
nStage = STAGE_SELECT_MANEUVER;
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
//MarkStageNotSetUp(STAGE_SELECT_MANEUVER, oPC);
|
|
nStage = STAGE_SELECT_MANEUVER;
|
|
}
|
|
|
|
if(DEBUG) DoDebug("tob_swd_rcrcnv: New stage: " + IntToString(nStage));
|
|
|
|
// Store the stage value. If it has been changed, this clears out the choices
|
|
ClearCurrentStage(oPC);
|
|
SetStage(nStage, oPC);
|
|
}
|
|
}
|