Class: Australium::PlayerSay

Inherits:
Event
  • Object
show all
Defined in:
lib/australium/events/player_say.rb

Constant Summary collapse

LOG_REGEX =
/"(?<player>.+)" say(?<team>_team)? "(?<message>.+)"/

Constants inherited from Event

Event::PROPERTY_REGEX, Event::TIMESTAMP_REGEX

Instance Attribute Summary collapse

Attributes inherited from Event

#raw

Instance Method Summary collapse

Methods inherited from Event

inherited, #to_s

Constructor Details

#initialize(data) ⇒ PlayerSay

Returns a new instance of PlayerSay.



11
12
13
14
# File 'lib/australium/events/player_say.rb', line 11

def initialize(data)
  super(data)
  self[:team] = team.eql?('_team')
end

Instance Attribute Details

#messageString

Returns the message spoken.

Returns:

  • (String)

    the message spoken.



11
12
13
14
# File 'lib/australium/events/player_say.rb', line 11

def initialize(data)
  super(data)
  self[:team] = team.eql?('_team')
end

#playerPlayer

Returns the Australium::Player who spoke in chat.

Returns:



11
12
13
14
# File 'lib/australium/events/player_say.rb', line 11

def initialize(data)
  super(data)
  self[:team] = team.eql?('_team')
end

Instance Method Details

#team?Boolean

Checks if the message was a team-only message.

Returns:

  • (Boolean)

    true if the message was a team message.



18
# File 'lib/australium/events/player_say.rb', line 18

def team? ; team end