//////////////////////////////////////////////////////////////////////////////// // npcact_h_logic - NPC ACTIVITIES 6.0 Logic Functions //------------------------------------------------------------------------------ // by Deva Bryson Winblood. //------------------------------------------------------------------------------ // Last Modified by: Deva Bryson Winblood // Last Modified Date: 06/16/2004 //////////////////////////////////////////////////////////////////////////////// #include "npcactivitiesh" ///////////////////////////// // PROTOTYPES ///////////////////////////// // FILE: npcact_h_logic FUNCTION: fnNPCACTLogicCore() // This is the control function for ALL NPC ACTIVIIES 6.0 logic // tests. It will call the other functions in this header file. float fnNPCACTLogicCore(string sCom); ///////////////////////////// // FUNCTIONS ///////////////////////////// ///////////////////// INTERNAL HEADER FILE USED FUNCTIONS ///////////////////// void NPCACTAbortCommands() { // PURPOSE: To trigger the end of commands for this waypoint if a logic check returns FALSE // LAST MODIFIED BY: Deva Bryson Winblood fnDebug(" NPCACTAbortCommands()",TRUE); DeleteLocalString(OBJECT_SELF,"sAct"); } // NPCACTAbortCommands() void fnLOGICHasRelated(string sCmd,string sP) { // PURPOSE: To handle has and has not item situations // LAST MODIFIED BY: Deva Bryson Winblood int bHas=FALSE; int bDesired=FALSE; object oItem=GetItemPossessedBy(OBJECT_SELF,sP); if (sCmd=="T") bDesired=TRUE; if (GetIsObjectValid(oItem)) bHas=TRUE; if (bDesired!=bHas) NPCACTAbortCommands(); } // fnLOGICHasRelated() void fnLOGICInteger(string sCmd,string sP) { // PURPOSE: To handle integer related logic // LAST MODIFIED BY: Deva Bryson Winblood string sParm1=fnParse(sP,"/"); string sParm2=fnRemoveParsed(sP,sParm1,"/"); int bResults=FALSE; if (sCmd=="E"&&GetLocalInt(OBJECT_SELF,sParm1)==StringToInt(sParm2)) bResults=TRUE; else if (sCmd=="e"&&GetLocalInt(OBJECT_SELF,sParm1)==GetLocalInt(OBJECT_SELF,sParm2)) bResults=TRUE; else if (sCmd=="G"&&GetLocalInt(OBJECT_SELF,sParm1)>StringToInt(sParm2)) bResults=TRUE; else if (sCmd=="g"&&GetLocalInt(OBJECT_SELF,sParm1)>GetLocalInt(OBJECT_SELF,sParm2)) bResults=TRUE; else if (sCmd=="L"&&GetLocalInt(OBJECT_SELF,sParm1)