49 lines
786 B
Ruby
49 lines
786 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require_relative '../packer'
|
||
|
|
||
|
##
|
||
|
# SvEmoticon
|
||
|
#
|
||
|
# Server -> Client
|
||
|
class SvEmoticon
|
||
|
attr_accessor :client_id, :emoticon
|
||
|
|
||
|
def initialize(hash_or_raw)
|
||
|
if hash_or_raw.instance_of?(Hash)
|
||
|
init_hash(hash_or_raw)
|
||
|
else
|
||
|
init_raw(hash_or_raw)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def init_raw(data)
|
||
|
u = Unpacker.new(data)
|
||
|
@client_id = u.get_int
|
||
|
@emoticon = u.get_int
|
||
|
end
|
||
|
|
||
|
def init_hash(attr)
|
||
|
@client_id = attr[:client_id] || 0
|
||
|
@emoticon = attr[:emoticon] || 0
|
||
|
end
|
||
|
|
||
|
def to_h
|
||
|
{
|
||
|
client_id: @client_id,
|
||
|
emoticon: @emoticon
|
||
|
}
|
||
|
end
|
||
|
|
||
|
# basically to_network
|
||
|
# int array the Server sends to the Client
|
||
|
def to_a
|
||
|
Packer.pack_int(@client_id) +
|
||
|
Packer.pack_int(@emoticon)
|
||
|
end
|
||
|
|
||
|
def to_s
|
||
|
to_h
|
||
|
end
|
||
|
end
|