279 lines
9.3 KiB
Plaintext
279 lines
9.3 KiB
Plaintext
/*
|
||
|
||
NWNX Events plugin (version 1.3.3)
|
||
(requires NWNX Core version 2.7-beta2 or higher)
|
||
|
||
Provides hooks for the following events:
|
||
* PickPocket (can be blocked from script)
|
||
- OBJECT_SELF = Thief
|
||
- GetEventTarget() = Victim
|
||
* Attack
|
||
- OBJECT_SELF = Attacker
|
||
- GetEventTarget() = Target
|
||
* UseItem (can be blocked from script)
|
||
- OBJECT_SELF = Item user
|
||
- GetEventTarget() = Item target
|
||
- GetEventItem() = Item used
|
||
- GetEventPosition() = Target position (as a vector)
|
||
* QuickChat (can be blocked from script)
|
||
- OBJECT_SELF = Talker
|
||
- GetEventSubType() = QuickChat ID
|
||
* Examine (can be blocked from script except OnExamineItem)
|
||
- OBJECT_SELF = Examiner
|
||
- GetEventTarget() = Thing to be examined
|
||
* UseSkill (can be blocked from script)
|
||
- OBJECT_SELF = Skill user
|
||
- GetEventSubType() = Skill ID (SKILL_*)
|
||
- GetEventTarget() = Skill target
|
||
- GetEventPosition() = Skill target position (as a vector)
|
||
- GetEventItem() = Item associated with the skill
|
||
* UseFeat (can be blocked from script)
|
||
- OBJECT_SELF = Feat user
|
||
- GetEventSubType() = Feat ID (FEAT_*)
|
||
- GetEventTarget() = Feat target
|
||
- GetEventPosition() = Feat target position (as a vector)
|
||
* ToggleMode (can be blocked from script)
|
||
- OBJECT_SELF = Creature toggling
|
||
- GetEventSubType() = Action mode toggled (ACTION_MODE_*)
|
||
* CastSpell (can be blocked from script)
|
||
- OBJECT_SELF = Spell user
|
||
- GetEventSubType() = Spell ID (SPELL_*) - mask with '& 0xFFFF'
|
||
- GetEventTarget() = Spell target
|
||
- GetEventPosition() = Spell target position (as a vector)
|
||
* TogglePause (can be blocked from script)
|
||
- GetEventSubType() = Pause state
|
||
* PossessFamiliar (can be blocked from script)
|
||
- OBJECT_SELF = Player character
|
||
* ValidateCharacter (can be overriden by script)
|
||
- OBJECT_SELF = Player character
|
||
* BypassEvent() = Override default ELC check
|
||
* SetReturnValue() = Return value to override
|
||
0 - valid character
|
||
<any number> - StrRef (TLK string) of the error message (the character won't be able to enter)
|
||
* DestroyObject (unsafe)
|
||
- OBJECT_SELF = The object being destroyed
|
||
|
||
Provides functions for conditional and action scripts:
|
||
int GetCurrentNodeType();
|
||
int GetCurrentNodeID();
|
||
int GetCurrentAbsoluteNodeID();
|
||
string GetCurrentNodeText(int nLangID, int nGender);
|
||
void SetCurrentNodeText(string sText, int nLangID, int nGender);
|
||
int GetSelectedNodeID();
|
||
int GetSelectedAbsoluteNodeID();
|
||
string GetSelectedNodeText(int nLangID, int nGender);
|
||
See the Demo module for examples.
|
||
|
||
By default, the 'vir_events' script will be called. To set a custom script for a
|
||
given event, call the SetGlobalEventHandler() function as follows:
|
||
SetGlobalEventHandler(EVENT_TYPE_ATTACK, "vir_ev_attack");
|
||
|
||
You can also use the following lines in your nwnx2.ini file:
|
||
[EVENTS]
|
||
event_script=<your script name>
|
||
enable_unsafe_events=0
|
||
|
||
Example script and demo module are included.
|
||
|
||
---
|
||
virusman, 19.06.2011
|
||
*/
|
||
|
||
|
||
|
||
const int EVENT_TYPE_ALL = 0;
|
||
const int EVENT_TYPE_SAVE_CHAR = 1;
|
||
const int EVENT_TYPE_PICKPOCKET = 2;
|
||
const int EVENT_TYPE_ATTACK = 3;
|
||
const int EVENT_TYPE_USE_ITEM = 4;
|
||
const int EVENT_TYPE_QUICKCHAT = 5;
|
||
const int EVENT_TYPE_EXAMINE = 6;
|
||
const int EVENT_TYPE_USE_SKILL = 7;
|
||
const int EVENT_TYPE_USE_FEAT = 8;
|
||
const int EVENT_TYPE_TOGGLE_MODE = 9;
|
||
const int EVENT_TYPE_CAST_SPELL = 10;
|
||
const int EVENT_TYPE_TOGGLE_PAUSE = 11;
|
||
const int EVENT_TYPE_POSSESS_FAMILIAR = 12;
|
||
const int EVENT_TYPE_VALIDATE_CHARACTER = 13;
|
||
const int EVENT_TYPE_DESTROY_OBJECT = 14;
|
||
|
||
// DEPRECATED
|
||
// For backwards compatibility only - use above constants instead
|
||
const int EVENT_SAVE_CHAR = 1;
|
||
const int EVENT_PICKPOCKET = 2;
|
||
const int EVENT_ATTACK = 3;
|
||
const int EVENT_USE_ITEM = 4;
|
||
const int EVENT_QUICKCHAT = 5;
|
||
const int EVENT_EXAMINE = 6;
|
||
const int EVENT_USE_SKILL = 7;
|
||
const int EVENT_USE_FEAT = 8;
|
||
const int EVENT_TOGGLE_MODE = 9;
|
||
|
||
const int NODE_TYPE_STARTING_NODE = 0;
|
||
const int NODE_TYPE_ENTRY_NODE = 1;
|
||
const int NODE_TYPE_REPLY_NODE = 2;
|
||
|
||
const int LANGUAGE_ENGLISH = 0;
|
||
const int LANGUAGE_FRENCH = 1;
|
||
const int LANGUAGE_GERMAN = 2;
|
||
const int LANGUAGE_ITALIAN = 3;
|
||
const int LANGUAGE_SPANISH = 4;
|
||
const int LANGUAGE_POLISH = 5;
|
||
const int LANGUAGE_KOREAN = 128;
|
||
const int LANGUAGE_CHINESE_TRADITIONAL = 129;
|
||
const int LANGUAGE_CHINESE_SIMPLIFIED = 130;
|
||
const int LANGUAGE_JAPANESE = 131;
|
||
|
||
int GetEventType();
|
||
int GetEventSubType();
|
||
object GetEventTarget();
|
||
object GetEventItem();
|
||
vector GetEventPosition();
|
||
void BypassEvent();
|
||
void SetReturnValue(int nRetVal);
|
||
void SetGlobalEventHandler(int nEventID, string sHandler);
|
||
|
||
int GetCurrentNodeType();
|
||
int GetCurrentNodeID();
|
||
int GetCurrentAbsoluteNodeID();
|
||
string GetCurrentNodeText(int nLangID = LANGUAGE_ENGLISH, int nGender = GENDER_MALE);
|
||
void SetCurrentNodeText(string sText, int nLangID = LANGUAGE_ENGLISH, int nGender = GENDER_MALE);
|
||
int GetSelectedNodeID();
|
||
int GetSelectedAbsoluteNodeID();
|
||
string GetSelectedNodeText(int nLangID = LANGUAGE_ENGLISH, int nGender = GENDER_MALE);
|
||
int GetScriptReturnValue();
|
||
|
||
int GetEventType()
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_EVENT_ID", " ");
|
||
return StringToInt(GetLocalString(GetModule(), "NWNX!EVENTS!GET_EVENT_ID"));
|
||
}
|
||
|
||
int GetEventSubType()
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_EVENT_SUBID", " ");
|
||
return StringToInt(GetLocalString(GetModule(), "NWNX!EVENTS!GET_EVENT_SUBID"));
|
||
}
|
||
|
||
object GetEventTarget()
|
||
{
|
||
return GetLocalObject(GetModule(), "NWNX!EVENTS!TARGET");
|
||
}
|
||
|
||
// DEPRECATED
|
||
// For backwards compatibility only - use GetEventTarget instead
|
||
object GetActionTarget()
|
||
{
|
||
return GetEventTarget();
|
||
}
|
||
|
||
object GetEventItem()
|
||
{
|
||
return GetLocalObject(GetModule(), "NWNX!EVENTS!ITEM");
|
||
}
|
||
|
||
vector GetEventPosition()
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_EVENT_POSITION", " ");
|
||
string sVector = GetLocalString(GetModule(), "NWNX!EVENTS!GET_EVENT_POSITION");
|
||
float x, y, z;
|
||
|
||
//Get X
|
||
int nPos = FindSubString(sVector, "<22>");
|
||
if(nPos == -1) return Vector();
|
||
x = StringToFloat(GetStringLeft(sVector, nPos));
|
||
sVector = GetStringRight(sVector, GetStringLength(sVector) - nPos - 1);
|
||
|
||
//Get Y
|
||
nPos = FindSubString(sVector, "<22>");
|
||
if(nPos == -1) return Vector();
|
||
y = StringToFloat(GetStringLeft(sVector, nPos));
|
||
sVector = GetStringRight(sVector, GetStringLength(sVector) - nPos - 1);
|
||
|
||
//Get Z
|
||
nPos = FindSubString(sVector, "<22>");
|
||
if(nPos == -1)
|
||
{
|
||
z = StringToFloat(sVector);
|
||
}
|
||
else return Vector();
|
||
return Vector(x, y, z);
|
||
}
|
||
|
||
void BypassEvent()
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!BYPASS", "1");
|
||
}
|
||
|
||
void SetReturnValue(int nRetVal)
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!RETURN", IntToString(nRetVal));
|
||
}
|
||
|
||
void SetGlobalEventHandler(int nEventID, string sHandler)
|
||
{
|
||
if (sHandler == "")
|
||
sHandler = "-";
|
||
|
||
string sKey = "NWNX!EVENTS!SET_EVENT_HANDLER_" + IntToString(nEventID);
|
||
SetLocalString(GetModule(), sKey, sHandler);
|
||
DeleteLocalString(GetModule(), sKey);
|
||
}
|
||
|
||
int GetCurrentNodeType()
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_NODE_TYPE", " ");
|
||
return StringToInt(GetLocalString(GetModule(), "NWNX!EVENTS!GET_NODE_TYPE"));
|
||
}
|
||
|
||
int GetCurrentNodeID()
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_NODE_ID", " ");
|
||
return StringToInt(GetLocalString(GetModule(), "NWNX!EVENTS!GET_NODE_ID"));
|
||
}
|
||
|
||
int GetCurrentAbsoluteNodeID()
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_ABSOLUTE_NODE_ID", " ");
|
||
return StringToInt(GetLocalString(GetModule(), "NWNX!EVENTS!GET_ABSOLUTE_NODE_ID"));
|
||
}
|
||
|
||
int GetSelectedNodeID()
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_SELECTED_NODE_ID", " ");
|
||
return StringToInt(GetLocalString(GetModule(), "NWNX!EVENTS!GET_SELECTED_NODE_ID"));
|
||
}
|
||
|
||
int GetSelectedAbsoluteNodeID()
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_SELECTED_ABSOLUTE_NODE_ID", " ");
|
||
return StringToInt(GetLocalString(GetModule(), "NWNX!EVENTS!GET_SELECTED_ABSOLUTE_NODE_ID"));
|
||
}
|
||
|
||
string GetSelectedNodeText(int nLangID, int nGender)
|
||
{
|
||
if (nGender != GENDER_FEMALE) nGender = GENDER_MALE;
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_SELECTED_NODE_TEXT", IntToString(nLangID*2 + nGender));
|
||
return GetLocalString(GetModule(), "NWNX!EVENTS!GET_SELECTED_NODE_TEXT");
|
||
}
|
||
|
||
string GetCurrentNodeText(int nLangID, int nGender)
|
||
{
|
||
if (nGender != GENDER_FEMALE) nGender = GENDER_MALE;
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_NODE_TEXT", IntToString(nLangID*2 + nGender));
|
||
return GetLocalString(GetModule(), "NWNX!EVENTS!GET_NODE_TEXT");
|
||
}
|
||
|
||
void SetCurrentNodeText(string sText, int nLangID, int nGender)
|
||
{
|
||
if (nGender != GENDER_FEMALE) nGender = GENDER_MALE;
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!SET_NODE_TEXT", IntToString(nLangID*2 + nGender)+"<22>"+sText);
|
||
}
|
||
|
||
int GetScriptReturnValue()
|
||
{
|
||
SetLocalString(GetModule(), "NWNX!EVENTS!GET_SCRIPT_RETURN_VALUE", " ");
|
||
return StringToInt(GetLocalString(GetModule(), "NWNX!EVENTS!GET_SCRIPT_RETURN_VALUE"));
|
||
}
|
||
|