Class: TF2LineParser::Events::PointCapture

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

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, cap_number, cap_name) ⇒ PointCapture

Returns a new instance of PointCapture.



14
15
16
17
18
19
# File 'lib/tf2_line_parser/events/point_capture.rb', line 14

def initialize(time, team, cap_number, cap_name)
  @time = parse_time(time)
  @team = team
  @cap_number = cap_number
  @cap_name = cap_name
end

Class Method Details

.attributesObject



10
11
12
# File 'lib/tf2_line_parser/events/point_capture.rb', line 10

def self.attributes
  @attributes ||= %i[time team cp_number cp_name]
end

.regexObject



6
7
8
# File 'lib/tf2_line_parser/events/point_capture.rb', line 6

def self.regex
  @regex ||= /#{regex_time} Team "(?'team'Red|Blue)" triggered "pointcaptured" \(cp "(?'cp_number'\d+)"\) \(cpname "(?'cp_name'.*)"\) \(numcappers/.freeze
end