obsws-ruby/lib/obsws/mixin.rb

56 lines
976 B
Ruby

require_relative "util"
module OBSWS
module Mixin
module Meta
include Util
def make_field_methods(*params)
params.each do |param|
define_singleton_method(param.to_s.to_snake) { @resp[param] }
end
end
end
class MetaObject
include Mixin::Meta
def initialize(resp, fields)
@resp = resp
@fields = fields
make_field_methods(*fields)
end
def empty? = @fields.empty?
def attrs = @fields.map { |f| f.to_s.to_snake }
end
class Response < MetaObject
end
class Data < MetaObject
end
module TearDown
def stop_driver
@base_client.stop_driver
end
alias_method :close, :stop_driver
end
module OPCodes
HELLO = 0
IDENTIFY = 1
IDENTIFIED = 2
REIDENTIFY = 3
EVENT = 5
REQUEST = 6
REQUESTRESPONSE = 7
REQUESTBATCH = 8
REQUESTBATCHRESPONSE = 9
end
end
end