Class: TF2LineParser::Events::Score

Inherits:
Event
  • Object
show all
Defined in:
lib/tf2_line_parser/events/score.rb

Direct Known Subclasses

CurrentScore, FinalScore

Instance Attribute Summary

Attributes inherited from Event

#airshot, #cap_name, #cap_number, #customkill, #healing, #item, #length, #message, #method, #player, #role, #score, #target, #team, #time, #type, #ubercharge, #unknown, #value, #weapon

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Event

#parse_time, regex_cap, regex_console, regex_message, regex_player, regex_results, regex_target, regex_time, time_format, types

Constructor Details

#initialize(time, team, score) ⇒ Score

Returns a new instance of Score.



19
20
21
22
23
# File 'lib/tf2_line_parser/events/score.rb', line 19

def initialize(time, team, score)
  @time = parse_time(time)
  @team = team
  @score = score
end

Class Method Details

.attributesObject



15
16
17
# File 'lib/tf2_line_parser/events/score.rb', line 15

def self.attributes
  @attributes ||= [:time, :team, :score]
end

.regex_scoreObject



7
8
9
# File 'lib/tf2_line_parser/events/score.rb', line 7

def self.regex_score
  @regex_score ||= '\"(?\'score\'\d+)\"'.freeze
end

.regex_teamObject



11
12
13
# File 'lib/tf2_line_parser/events/score.rb', line 11

def self.regex_team
  @regex_team ||= 'Team \"(?\'team\'Red|Blue)\"'.freeze
end