User Tools

Site Tools


dragengine:modules:dragonscript:behavior_actortransmission

ECBehaviorActorTransmission

Behavior adding support for sub title transmission to actor.

For doing sub title text output conversation scripts have to be used. This allow for the highest control over the conversation. For first person only self conversation or receiving transmissions using conversation scripts can be cumbersome. For this situation this behavior provides a simpler solution.

The behavior acts similar to CActionActorSpeak.executeSubTitle() in that it supports creating and adding a series of sub titles for an actor as if a conversation is used. Since no conversation is used the actor is free to be controlled by the player.

This behavior uses ECBehaviorConversationActor. Calls createSubTitleText() to create sub title as if a conversation creates it. This way the same look and feel is used. Adds a listener to cause the actor to wait in conversations if such sub titles are running. This feature is by default disabled and can be enabled to avoid conversation script sub titles showing at the same time as sub titles driven by this behavior.

Instance Counts

This behavior can be added only once to an element class. While technically possible it there is no reason to use multiple transmissions since the sub titles can be styled.

Element Class Properties

Element class properties have the prefix transmission. if id is not empty.

waitInConversation

If enabled causes conversation scripts to wait for the transmission to end.

  • Full name: “transmission.waitInConversation”
  • Type boolean
  • Default Value false
  • Example (*.deeclass)
    <boolean name='transmission.waitInConversation'>true</boolean>

style

Style identifier to use. Same as style identifiers used in sub title boxes.

  • Full name: “transmission.style”
  • Type string
  • Default Value null
  • Example (*.deeclass)
    <string name='transmission.style'>think</string>

timeout

Timeout in seconds to display individual transmission parts.

  • Full name: “transmission.timeout”
  • Type float
  • Default Value 5
  • Example (*.deeclass)
    <string name='actorIK.controllerIKHeight'>ik.height</string>

Required Behaviors

Optional Behaviors

This behavior does not support optional behaviors.

Persistency

This behavior supports persistency. These parameters are persisted:

  • Wait in conversation flag
  • Remaining display time
  • Array of transmission parts remaining to be displayed
  • Sub title widget being displayed right now

API Documentation

ECBehaviorActorTransmission.

Since DragonScript Module Version 1.7

Use Cases

  • Display single-line shouts of actors examining objects
  • Display short notifications to player like touching a trigger
  • Display true NPC communications

Element Class Example

pin Dragengine.Scenery

class ObjectElementClass extends BaseActorClass
   public var ECBehaviorActorTransmission actorTransmission
   
   public func new() super("ExampleObject")
     // the base actor class creates a conversation actor behavior we can use
     
     // create actor transmission behavior. uses the BaseGameApp created subtitle box.
     actorTransmission = ECBehaviorActorTransmission.new(this, getConversationActor())
   end
end

class ExampleAction extends BAAFirstPerson
   public var ECBehaviorActorTransmission.Instance actorTransmission
   
   public func new()
   end
   
   // store the behavior so we can use it
   protected func void initBehaviors()
      super.initBehaviors()
      actorTransmission = ECBehaviorActorTransmission.getInstanceIn(actor)
   end
   
   // at some point trigger a transmission to the player. this example shows a
   // transmission with two parts. any number of parts can be used but shorter
   // is usually better. for longer transmissions better use conversation
   // scripts since there you have much more possibilities.
   public func void showTransmission(String text1, String text2)
      // clear transmission if one is running. you can use isRunning() to check
      actorTransmission.clear()
      
      // add two parts to the transmission. transmission starts as soon as one
      // part is present and ends once all parts have been shown
      actorTransmission.addPart(UnicodeString.newFromUTF8(text1))
      actorTransmission.addPart(UnicodeString.newFromUTF8(text2))
   end
end
You could leave a comment if you were logged in.
dragengine/modules/dragonscript/behavior_actortransmission.txt · Last modified: 2024/03/14 16:49 by dragonlord