skip to content
Frictional Game Wiki
User Tools
Register
Log In
Site Tools
Search
Tools
Show page
Old revisions
Backlinks
Recent Changes
Media Manager
Sitemap
Log In
Register
>
Recent Changes
Media Manager
Sitemap
Trace:
hpl3:game:eventdb
<h1>Event Database</h1> <div class="level1"> </div> <h1>Overview</h1> <div class="level1"> <p> The event database is a sort of hidden system inside the game that can be used to trigger all kinds of stuff. The current main usage is with the <a href="/doku.php?id=hpl3:game:voicehandler" class="wikilink1" title="hpl3:game:voicehandler">voicesystem</a>, where it is used to trigger different voices and handles dynamic dialog flow. </p> <p> Most of the stuff below is not scene directly and handled internally, but all info is provided for the sake of completion. Normally the system implementing it refers to the sections here as needed. </p> <p> Note that for the standard facts and triggers to work, EventDatabase/UseStandardTriggers must be set to true in game.cfg. </p> </div> <h1>Properties</h1> <div class="level1"> </div> <h2>Command String Formatting</h2> <div class="level2"> <p> For both Criteria and Actions (see below), a simple syntax must be used when setting up the values. The basic syntax is:<br/> [varname][operator][value]<br/> Examples: </p> <pre class="code">Velocity>32 Velocity==3 MyName=Dennis Street='Downtown 78b' </pre><p> </p> <p> <span class='np_break'> </span> Two important things to note here:<br/> - You can use both "=" and "==" for comparing values.<br/> - When writing strings you can skip ' or " if there are no spaces in the string.<br/> </p> <p> Another way writing is:<br/> </p> <pre class="code">MyVariable </pre><p> </p> <p> <span class='np_break'> </span> <br/> This checks if the variable exists and is set to 1. If using it for an actions, it creates the variable and sets it to 1.<br/> this means that the follow statements are equal:<br/> </p> <pre class="code">IsAtHome IsAtHome=1 </pre><p> </p> <p> Any variables that do not exist get the value 0 at a check, so <br/> </p> <pre class="code">IsAtHome=0 </pre><p> </p> <p> <span class='np_break'> </span> <br/> is true even if the variable has never been set.<br/> </p> <p> To have many statements, simple just sepperate them by spaces, like: </p> <pre class="code">IsAtHome=0 Fuel>25 LastNote='In the woods' </pre><p> </p> </div> <h2>Owner</h2> <div class="level2"> <p> Owner is where an event belongs. Is basically only there to easily subdivide and sort the events. </p> </div> <h4>ID</h4> <div class="level4"> <p> The id of the owner, this must be unique and mostly only be set by the tool and never exposed. </p> </div> <h4>Name</h4> <div class="level4"> <p> Name of the owner. </p> </div> <h4>GroupFlags</h4> <div class="level4"> <p> This is a bitflag container that can be used to set different owners into groups (and make it possible to send queries to owners of belonging to certain groups only). </p> </div> <h2>Scene</h2> <div class="level2"> <p> Scene is basically like owner, and yet another way to subdivide events. </p> </div> <h4>ID</h4> <div class="level4"> <p> The id of the scene, this must be unique and mostly only be set by the tool and never exposed. </p> </div> <h4>Name</h4> <div class="level4"> <p> Name of the scene. </p> </div> <h2>Event</h2> <div class="level2"> <p> The event is basically the important payload of the database. The following is a list of all properties of an event and what they do. </p> </div> <h4>Owner</h4> <div class="level4"> <p> The id of the owner connected to this event. Normally always set internally<br/> </p> </div> <h4>Scene</h4> <div class="level4"> <p> The id of the scene connected to this event. If -1 then this is a global event that will be check in every scene. Normally always set internally<br/> </p> </div> <h4>Trigger</h4> <div class="level4"> <p> This is the trigger for this event. See below for some standard triggers. Triggers can also be user defined though (for instance as callback whena voice line is over). </p> </div> <h4>Name</h4> <div class="level4"> <p> The name of the event, only used to easier track-keeping. </p> </div> <h4>Criteria</h4> <div class="level4"> <p> This outlines the facts that need to be true for the event to happen. See <span class="curid"><a href="/doku.php?id=hpl3:game:eventdb#command_string_formatting" class="wikilink1" title="hpl3:game:eventdb">Command String Formatting</a></span> above for general info. Available operators are:<br/> </p> <pre class="code">== (=), >, >=, <, <=, != </pre><p> </p> <p> <span class='np_break'> </span> <br/> Also, it is possible to check intervals using the syntax:<br/> [varname] ( [min] [max] )<br/> and <br/> [varname] [ [min] [max] ]<br/> "()" includes the min/max into the interval (an open interval), and "[]" excludes the min,max (a closed interval). So for instances if the value is 0, then (0 10) is true, but [0 10] i false.<br/> Examples:<br/> </p> <pre class="code">Prisoners(1 4) Health[0.1 0.75] </pre><p> </p> </div> <h4>Actions</h4> <div class="level4"> <p> This outlines the actions made to the facts when the event is chosen in a query and after the time set byt OutputDelay. See <span class="curid"><a href="/doku.php?id=hpl3:game:eventdb#command_string_formatting" class="wikilink1" title="hpl3:game:eventdb">Command String Formatting</a></span> above for general info. Available operators are:<br/> </p> <pre class="code">=, +=, -=, /=, *= </pre><p> </p> </div> <h4>Output</h4> <div class="level4"> <p> The output string, depends on the type of output. </p> </div> <h4>OutputType</h4> <div class="level4"> <p> This type is user defined, but the default types are:<br/> 0: Script callback function. <em>Syntax: "[Output](const tString& in asEventName)"</em><br/> 1: A voice subject<br/> 2 and above are application dependant. Change "EventDatabaseHandler.hps" to specify. </p> </div> <h4>OutputDelay</h4> <div class="level4"> <p> How long (in sec) the output of the event happens. This includes the actions </p> </div> <h4>MaxRepetitions</h4> <div class="level4"> <p> The number of times an event can be repeated. 0 means unlimted number of times. Max number is 255. </p> </div> <h1>Standard Triggers</h1> <div class="level1"> <p> Standard trigger types that can be checked for in any map. Below the name are the facts that are related to the triggers. Note that these must be enabled (in Player or any other module that triggers them for them to happpen). </p> <p> <b>PlayerCollide</b> <code>(NOTE: Currently not in use!)</code><br/> <em>CollideEntity:</em> Entity that is collided with.<br/> If the player collides with an entity. Note that this one is not checked every update and might miss very brief collisions. Mostly useful to check if player is in an area. </p> <p> <b>PlayerLeaveCollide</b><code>(NOTE: Currently not in use!)</code><br/> <em>CollideEntity:</em> Entity that player has collided with.<br/> Triggered when player stops colliding with an entity. Mostly useful to check if player leaves an area. </p> <p> <b>PlayerInteract</b><br/> <em>InteractEntity:</em> Entity that is interacted with.<br/> If the player interacts with an entity. Note that this is triggered through the basic script. </p> <p> <b>PlayerLookAt</b> <code>(NOTE: Currently not in use!)</code><br/> <em>LookAtEntity:</em> Entity that is look upon.<br/> <em>LookAtDistance:</em> The distance to the entity that is looked upon.<br/> <em>LookAtDuration:</em> The amount of time the player has looked at the entity.<br/> If the player looks at an entity. Note that this is called about every 0.5 secs or so while inside the gaze of the player. This the first time it was triggered it might have been out of range.<br/> Note that if you want to do this check on an area, make sure it has BlocksLineOfSight set to true! </p> <p> <b>VoiceLineOver</b><code>(NOTE: Currently not in use!)</code><br/> <em>VoiceSubject:</em> The name of the subject, syntax = [Character]_[Scene]_[Subject], eg "Simon_00_01_Apartment_Greeting".<br/> <em>VoiceLineIndex:</em> The index of the line.<br/> When a voice line is over. </p> <p> <b>VoiceSoundOver</b><code>(NOTE: Currently not in use!)</code><br/> <em>VoiceSubject:</em> The name of the subject, syntax = [Character]_[Scene]_[Subject], eg "Simon_00_01_Apartment_Greeting".<br/> <em>VoiceLineIndex:</em> The name of the line, note that if line name is _ckgedit_QUOT<u>ckgedit>, then this will be the index, eg "0", "1", etc.<br/> <em>VoiceSoundIndex:</em> The index of the sound that was just completed.<br/> When a voice sound file is over. <b>VoiceIdle</b><br/> <em>VoiceIdleDuration:</em> The time the voice has been idle.<br/> <em>VoiceCharacterIdleDuration_[character]:</em> The idle time for a specific character.<br/> Called every 3rd seconds when there is no voice playing. ====== Standard Global Facts ====== The following are facts that are always accessible. Note that some of this are related to specific triggers, and should only use for these.<br/> <b>CollideEntity</b><br/> Contains the entity that spawned a <em>PlayerCollide</em> trigger. Also used by <em>PlayerLeaveCollide</em> and contain what the player used to collide with then. If player is not colliding with anything, it is _ckgedit_QUOT</u>ckgedit> (it is reset after the PlayerLeaveCollide trigger).<br/> Additional facts: <em>CollideEntityTag</em>, <em>CollideEntityInstanceTag</em>. These are the tag values from the entity. </p> <p> <b>InteractEntity</b><br/> Contains the latest entity that spawned a <em>PlayerInteract</em> (see above).<br/> Additional facts: <em>InteractEntityTag</em>, <em>InteractEntityInstanceTag</em>. These are the tag values from the entity. </p> <p> <b>LookAtEntity</b><br/> Contains the entity that spawned a <em>PlayerLookAt</em> trigger. If player is not looking at anything, it is "".<br/> Additional facts: <em>LookAtEntityTag</em>, <em>LookAtEntityInstanceTag</em>, these are the tag values from the entity. <em>LookAtDistance</em>, this is the distance to the viewed object. <em>LookAtDuration</em>, how long the player has looked at the object. </p> <p> <b>VoiceSubject</b><br/> The last sound line that was over. Used by <em>VoiceLineOver</em> and <em>VoiceSoundOver</em> triggers. syntax = [Character]_[Scene]_[Subject], eg "Simon_00_01_Apartment_Greeting". </p> <p> <b>VoiceLineIndex</b><br/> The index of the last sound line that was over. Used by <em>VoiceLineOver</em> and <em>VoiceSoundOver</em> triggers. </p> <p> <b>VoiceSoundIndex</b><br/> The index of the sound that was over. Used by <em>VoiceSoundOver</em> trigger. </p> <p> <b>VoiceIsPlaying</b><br/> Is 1 if a voice is currently playing, else it is 0. </p> <p> <b>VoiceIdleDuration</b><br/> The amount of time since there was a voice playing (messured in whole seconds only). </p> <p> <b>VoiceCharacterIdleDuration_[charater]</b><br/> How long it has been since a certain character has spoken. [character] is simply the name of the character, eg: "VoiceCharacterIdleDuration_Jack". </p> <p> <b>EventIsQueued</b><br/> If an event has been chosen but has not be been activated (meaning outputdelay time is not yet reached) this will be 1, else 0. </p> </div> <h1>Custom Facts and Triggers</h1> <div class="level1"> <p> Custom triggers can currently be made in two ways: </p> <ol> <li class="level1"> To call the Query or QuertToAll in the EventDatabase. This will let you choose the name any name at all for a trigger.</li> <li class="level1"> Using the EventCallbackTrigger property for a Voice Line, this will query the event database when the line has finshsed playing.</li> </ol> <p> To set your own facts (apart from setting them in action part of an event), you can call the SetFactXXX functions that exist in either cMap or in the cEventDatabaseHandler. If set in cMap, the fact will be local and only last the current map. Else it will be global and last for the entire game. </p> <p> The helper file "helper_eventdb.hps" contains helper functions for all of the above. </p> </div>
hpl3/game/eventdb.1348591265.txt.gz
· Last modified: 2012/09/25 16:41 by
thomas
Page Tools
Show page
Old revisions
Backlinks
Export to PDF
Back to top