Class: SpeakTextAction

Inherits:
DeviceAction show all
Defined in:
lib/ruby-macrodroid/actions.rb

Overview

Category: Device Actions

Instance Attribute Summary

Attributes inherited from Action

#constraints

Attributes inherited from MacroObject

#options, #siguid, #type

Instance Method Summary collapse

Methods included from ObjectX

#action_to_object, #object_create, #varify

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(obj = nil) ⇒ SpeakTextAction

Returns a new instance of SpeakTextAction.



1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
# File 'lib/ruby-macrodroid/actions.rb', line 1127

def initialize(obj=nil)
  
  h = if obj.is_a? Hash then
    obj
  elsif obj.is_a? Array
    e, macro = obj
    txt = e.text('item/description')
    {text: (txt || e.text)}
  end     

  options = {
    text_to_say: h[:text] || '',
    queue: false,
    read_numbers_individually: false,
    specify_audio_stream: false,
    speed: 0.99,
    pitch: 0.99,
    wait_to_finish: false,
    audio_stream: 0
  }

  super(options.merge h)

end

Instance Method Details

#invokeObject



1152
1153
1154
# File 'lib/ruby-macrodroid/actions.rb', line 1152

def invoke()
  super(text: @h[:text_to_say])
end

#to_s(colour: false, indent: 0) ⇒ Object



1156
1157
1158
1159
# File 'lib/ruby-macrodroid/actions.rb', line 1156

def to_s(colour: false, indent: 0)
  @s = "Speak Text (%s)" % @h[:text_to_say]
  super()
end