Class: S2A_PLAYER_Packet

Inherits:
Object
  • Object
show all
Includes:
SteamPacket
Defined in:
lib/steam/packets/s2a_player_packet.rb

Overview

The S2A_PLAYER_Packet class represents the response to a A2S_PLAYER request send to the server.

Constant Summary

Constants included from SteamPacket

SteamPacket::A2M_GET_SERVERS_BATCH2_HEADER, SteamPacket::A2S_INFO_HEADER, SteamPacket::A2S_PLAYER_HEADER, SteamPacket::A2S_RULES_HEADER, SteamPacket::A2S_SERVERQUERY_GETCHALLENGE_HEADER, SteamPacket::C2M_CHECKMD5_HEADER, SteamPacket::M2A_SERVER_BATCH_HEADER, SteamPacket::M2C_ISVALIDMD5_HEADER, SteamPacket::M2S_REQUESTRESTART_HEADER, SteamPacket::RCON_GOLDSRC_CHALLENGE_HEADER, SteamPacket::RCON_GOLDSRC_NO_CHALLENGE_HEADER, SteamPacket::RCON_GOLDSRC_RESPONSE_HEADER, SteamPacket::S2A_INFO2_HEADER, SteamPacket::S2A_INFO_DETAILED_HEADER, SteamPacket::S2A_LOGSTRING_HEADER, SteamPacket::S2A_PLAYER_HEADER, SteamPacket::S2A_RULES_HEADER, SteamPacket::S2C_CHALLENGE_HEADER, SteamPacket::S2C_CONNREJECT_HEADER, SteamPacket::S2M_HEARTBEAT2_HEADER

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SteamPacket

#to_s

Constructor Details

#initialize(content_data) ⇒ S2A_PLAYER_Packet

Creates a S2A_PLAYER response object based on the data received.

Raises:

  • (Exception)


17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/steam/packets/s2a_player_packet.rb', line 17

def initialize(content_data)
  raise Exception.new('Wrong formatted S2A_PLAYER packet.') if content_data.nil?

  super S2A_PLAYER_HEADER, content_data

  # Ignore player count
  @content_data.byte
  @player_hash = {}

  while @content_data.remaining > 0
    player_data = @content_data.byte, @content_data.cstring, @content_data.signed_long, @content_data.float
    @player_hash[player_data[1]] = SteamPlayer.new(*player_data[0..3])
  end
end

Instance Attribute Details

#player_hashObject (readonly)

Returns the value of attribute player_hash.



14
15
16
# File 'lib/steam/packets/s2a_player_packet.rb', line 14

def player_hash
  @player_hash
end