Class: ClientInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/messages/client_info.rb

Overview

ClientInfo

Server -> Client

Instance Method Summary collapse

Constructor Details

#initialize(hash_or_raw) ⇒ ClientInfo

Returns a new instance of ClientInfo.



12
13
14
15
16
17
18
# File 'lib/messages/client_info.rb', line 12

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

Instance Method Details

#init_hash(attr) ⇒ Object



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/messages/client_info.rb', line 49

def init_hash(attr)
  @client_id = attr[:client_id] || -1
  @local = attr[:local] || 0
  @team = attr[:team] || 0
  @name = attr[:name] || 'ruby gamer'
  @clan = attr[:clan] || ''
  @country = attr[:country] || -1
  @body = attr[:body] || 'spiky'
  @marking = attr[:marking] || 'duodonny'
  @decoration = attr[:decoration] || ''
  @hands = attr[:hands] || 'standard'
  @feet = attr[:feet] || 'standard'
  @eyes = attr[:eyes] || 'standard'
  @custom_color_body = attr[:custom_color_body] || 0
  @custom_color_marking = attr[:custom_color_marking] || 0
  @custom_color_decoration = attr[:custom_color_decoration] || 0
  @custom_color_hands = attr[:custom_color_hands] || 0
  @custom_color_feet = attr[:custom_color_feet] || 0
  @custom_color_eyes = attr[:custom_color_eyes] || 0
  @color_body = attr[:color_body] || 0
  @color_marking = attr[:color_marking] || 0
  @color_decoration = attr[:color_decoration] || 0
  @color_hands = attr[:color_hands] || 0
  @color_feet = attr[:color_feet] || 0
  @color_eyes = attr[:color_eyes] || 0
  @silent = attr[:silent] || 0
end

#init_raw(data) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/messages/client_info.rb', line 20

def init_raw(data)
  u = Unpacker.new(data)
  @client_id = u.get_int
  @local = u.get_int
  @team = u.get_int
  @name = u.get_string
  @clan = u.get_string
  @country = u.get_int
  @body = u.get_string
  @marking = u.get_string
  @decoration = u.get_string
  @hands = u.get_string
  @feet = u.get_string
  @eyes = u.get_string
  @custom_color_body = u.get_int
  @custom_color_marking = u.get_int
  @custom_color_decoration = u.get_int
  @custom_color_hands = u.get_int
  @custom_color_feet = u.get_int
  @custom_color_eyes = u.get_int
  @color_body = u.get_int
  @color_marking = u.get_int
  @color_decoration = u.get_int
  @color_hands = u.get_int
  @color_feet = u.get_int
  @color_eyes = u.get_int
  @silent = u.get_int
end

#to_aObject

basically to_network int array the server sends to the client



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/messages/client_info.rb', line 110

def to_a
  Packer.pack_int(@client_id) +
    Packer.pack_int(@local) +
    Packer.pack_int(@team) +
    Packer.pack_str(@name) +
    Packer.pack_str(@clan) +
    Packer.pack_int(@country) +
    Packer.pack_str(@body) +
    Packer.pack_str(@marking) +
    Packer.pack_str(@decoration) +
    Packer.pack_str(@hands) +
    Packer.pack_str(@feet) +
    Packer.pack_str(@eyes) +
    Packer.pack_int(@custom_color_body) +
    Packer.pack_int(@custom_color_marking) +
    Packer.pack_int(@custom_color_decoration) +
    Packer.pack_int(@custom_color_hands) +
    Packer.pack_int(@custom_color_feet) +
    Packer.pack_int(@custom_color_eyes) +
    Packer.pack_int(@color_body) +
    Packer.pack_int(@color_marking) +
    Packer.pack_int(@color_decoration) +
    Packer.pack_int(@color_hands) +
    Packer.pack_int(@color_feet) +
    Packer.pack_int(@color_eyes) +
    Packer.pack_int(@silent)
end

#to_hObject

TODO: do we need this?



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/messages/client_info.rb', line 78

def to_h
  {
    client_id: @client_id,
    local: @local,
    team: @team,
    name: @name,
    clan: @clan,
    country: @country,
    body: @body,
    marking: @marking,
    decoration: @decoration,
    hands: @hands,
    feet: @feet,
    eyes: @eyes,
    custom_color_body: @custom_color_body,
    custom_color_marking: @custom_color_marking,
    custom_color_decoration: @custom_color_decoration,
    custom_color_hands: @custom_color_hands,
    custom_color_feet: @custom_color_feet,
    custom_color_eyes: @custom_color_eyes,
    color_body: @color_body,
    color_marking: @color_marking,
    color_decoration: @color_decoration,
    color_hands: @color_hands,
    color_feet: @color_feet,
    color_eyes: @color_eyes,
    silent: @silent
  }
end

#to_sObject



138
139
140
# File 'lib/messages/client_info.rb', line 138

def to_s
  to_h
end