steam-condenser 1.3.5 → 1.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +228 -0
- data/CONTRIBUTING.md +59 -0
- data/Gemfile.lock +12 -13
- data/README.md +9 -4
- data/lib/steam-condenser/version.rb +1 -1
- data/lib/steam/community/alien_swarm/alien_swarm_mission.rb +10 -9
- data/lib/steam/community/alien_swarm/alien_swarm_stats.rb +74 -72
- data/lib/steam/community/css/css_map.rb +2 -2
- data/lib/steam/community/css/css_stats.rb +54 -56
- data/lib/steam/community/css/css_weapon.rb +4 -4
- data/lib/steam/community/game_item.rb +2 -3
- data/lib/steam/community/game_leaderboard.rb +22 -15
- data/lib/steam/community/l4d/abstract_l4d_stats.rb +64 -61
- data/lib/steam/community/l4d/l4d2_stats.rb +26 -21
- data/lib/steam/community/steam_id.rb +8 -11
- data/lib/steam/community/web_api.rb +19 -14
- data/lib/steam/packets/s2a_info2_packet.rb +16 -14
- data/lib/steam/packets/s2a_info_detailed_packet.rb +24 -19
- data/lib/steam/packets/steam_packet_factory.rb +7 -2
- data/lib/steam/servers/game_server.rb +3 -2
- data/lib/steam/servers/master_server.rb +1 -1
- data/lib/steam/sockets/source_socket.rb +4 -9
- data/pkg/steam-condenser-1.3.5.gem +0 -0
- data/pkg/steam-condenser-1.3.5/Gemfile +7 -0
- data/pkg/steam-condenser-1.3.5/Gemfile.lock +45 -0
- data/pkg/steam-condenser-1.3.5/LICENSE +25 -0
- data/pkg/steam-condenser-1.3.5/README.md +70 -0
- data/pkg/steam-condenser-1.3.5/Rakefile +46 -0
- data/pkg/steam-condenser-1.3.5/lib/core_ext/stringio.rb +91 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/packet_format_error.rb +13 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/rcon_ban_error.rb +22 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/rcon_no_auth_error.rb +21 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/steam_condenser_error.rb +26 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/timeout_error.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/web_api_error.rb +57 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser.rb +18 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser/community.rb +24 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser/servers.rb +24 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser/version.rb +11 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_mission.rb +119 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_stats.rb +186 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_weapon.rb +49 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/app_news.rb +133 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/cacheable.rb +199 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_map.rb +61 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_stats.rb +142 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_weapon.rb +69 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/defense_grid/defense_grid_stats.rb +238 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_class.rb +90 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_stats.rb +62 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_weapon.rb +67 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_beta_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_item.rb +33 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_achievement.rb +109 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_class.rb +22 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_inventory.rb +171 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_item.rb +156 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_item_schema.rb +131 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_leaderboard.rb +205 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_leaderboard_entry.rb +43 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_stats.rb +175 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_weapon.rb +41 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/abstract_l4d_stats.rb +185 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/abstract_l4d_weapon.rb +56 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_map.rb +90 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_stats.rb +174 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_weapon.rb +38 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_explosive.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_map.rb +65 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_stats.rb +73 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_weapon.rb +26 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_item.rb +55 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_stats.rb +33 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_game.rb +193 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_group.rb +129 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_id.rb +498 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_beta_inventory.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_class.rb +92 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_class_factory.rb +40 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_engineer.rb +43 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_golden_wrench.rb +70 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_item.rb +55 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_medic.rb +35 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_sniper.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_spy.rb +41 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_stats.rb +77 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/web_api.rb +130 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/xml_data.rb +27 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2m_get_servers_batch2_packet.rb +59 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_info_packet.rb +24 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_player_packet.rb +31 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_rules_packet.rb +32 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_serverquery_getchallenge_packet.rb +25 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/c2m_checkmd5_packet.rb +31 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2a_server_batch_packet.rb +52 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2c_isvalidmd5_packet.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2s_requestrestart_packet.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_auth_request.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_auth_response.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_exec_request.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_exec_response.rb +37 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_goldsrc_request.rb +35 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_goldsrc_response.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_packet.rb +57 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_packet_factory.rb +43 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_terminator.rb +29 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/request_with_challenge.rb +19 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info2_packet.rb +74 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info_base_packet.rb +25 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info_detailed_packet.rb +59 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_logstring_packet.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_player_packet.rb +44 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_rules_packet.rb +48 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2c_challenge_packet.rb +35 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2m_heartbeat2_packet.rb +72 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/steam_packet.rb +52 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/steam_packet_factory.rb +108 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/game_server.rb +392 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/goldsrc_server.rb +74 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/master_server.rb +188 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/server.rb +115 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/source_server.rb +117 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/goldsrc_socket.rb +142 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/master_server_socket.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/rcon_socket.rb +103 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/source_socket.rb +78 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/steam_socket.rb +91 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/steam_player.rb +143 -0
- data/pkg/steam-condenser-1.3.5/steam-condenser.gemspec +26 -0
- data/pkg/steam-condenser-1.3.5/test/core_ext/test_stringio.rb +59 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/invalid.xml +2 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/sonofthor.xml +882 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/status_goldsrc +3 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/status_source +3 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/valve-members.xml +231 -0
- data/pkg/steam-condenser-1.3.5/test/helper.rb +48 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_cacheable.rb +100 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_steam_group.rb +83 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_steam_id.rb +144 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_web_api.rb +98 -0
- data/pkg/steam-condenser-1.3.5/test/steam/packets/test_steam_packet.rb +37 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_game_server.rb +296 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_goldsrc_server.rb +59 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_master_server.rb +131 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_server.rb +72 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_source_server.rb +134 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_goldsrc_socket.rb +127 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_master_server_socket.rb +42 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_rcon_socket.rb +118 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_source_socket.rb +77 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_steam_socket.rb +97 -0
- data/steam-condenser.gemspec +2 -3
- data/test/steam/community/test_cacheable.rb +3 -0
- data/test/steam/community/test_web_api.rb +15 -2
- data/test/steam/packets/test_steam_packet.rb +1 -1
- data/test/steam/sockets/test_source_socket.rb +1 -1
- metadata +151 -27
@@ -0,0 +1,28 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2011-2012, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/community/game_inventory'
|
7
|
+
require 'steam/community/tf2/tf2_item'
|
8
|
+
|
9
|
+
# Represents the inventory (aka. Backpack) of a player of the public Team
|
10
|
+
# Fortress 2 beta
|
11
|
+
class TF2BetaInventory < GameInventory
|
12
|
+
|
13
|
+
# The Steam application ID of the Team Fortress 2 beta
|
14
|
+
APP_ID = 520
|
15
|
+
|
16
|
+
# Creates a new inventory object for the given SteamID64 in the Team Fortress
|
17
|
+
# 2 beta (App ID 520)
|
18
|
+
#
|
19
|
+
# @param [Fixnum] steam_id64 The 64bit SteamID of the player to get the
|
20
|
+
# inventory for
|
21
|
+
# @macro cacheable
|
22
|
+
def initialize(steam_id64)
|
23
|
+
super APP_ID, steam_id64
|
24
|
+
end
|
25
|
+
|
26
|
+
@@item_class = TF2Item
|
27
|
+
|
28
|
+
end
|
@@ -0,0 +1,92 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/community/game_class'
|
7
|
+
|
8
|
+
# Represents the stats for a Team Fortress 2 class for a specific user
|
9
|
+
#
|
10
|
+
# @author Sebastian Staudt
|
11
|
+
class TF2Class
|
12
|
+
|
13
|
+
include GameClass
|
14
|
+
|
15
|
+
# Returns the maximum number of buildings the player has destroyed in a
|
16
|
+
# single life with this class
|
17
|
+
#
|
18
|
+
# @return [Fixnum] Maximum number of buildings destroyed
|
19
|
+
attr_reader :max_buildings_destroyed
|
20
|
+
|
21
|
+
# Returns the maximum number of points captured by the player in a single
|
22
|
+
# life with this class
|
23
|
+
#
|
24
|
+
# @return [Fixnum] Maximum number of points captured
|
25
|
+
attr_reader :max_captures
|
26
|
+
|
27
|
+
# Returns the maximum damage dealt by the player in a single life with this
|
28
|
+
# class
|
29
|
+
#
|
30
|
+
# @return [Fixnum] Maximum damage dealt
|
31
|
+
attr_reader :max_damage
|
32
|
+
|
33
|
+
# Returns the maximum number of defenses by the player in a single life with
|
34
|
+
# this class
|
35
|
+
#
|
36
|
+
# @return [Fixnum] Maximum number of defenses
|
37
|
+
attr_reader :max_defenses
|
38
|
+
|
39
|
+
# Returns the maximum number of dominations by the player in a single life
|
40
|
+
# with this class
|
41
|
+
#
|
42
|
+
# @return [Fixnum] Maximum number of dominations
|
43
|
+
attr_reader :max_dominations
|
44
|
+
|
45
|
+
# Returns the maximum number of times the the player assisted a teammate with
|
46
|
+
# killing an enemy in a single life with this class
|
47
|
+
#
|
48
|
+
# @return [Fixnum] Maximum number of kill assists
|
49
|
+
attr_reader :max_kill_assists
|
50
|
+
|
51
|
+
# Returns the maximum number of enemies killed by the player in a single life
|
52
|
+
# with this class
|
53
|
+
#
|
54
|
+
# @return [Fixnum] Maximum number of kills
|
55
|
+
attr_reader :max_kills
|
56
|
+
|
57
|
+
# Returns the maximum number of revenges by the player in a single life with
|
58
|
+
# this class
|
59
|
+
#
|
60
|
+
# @return [Fixnum] Maximum number of revenges
|
61
|
+
attr_reader :max_revenges
|
62
|
+
|
63
|
+
# Returns the maximum number score achieved by the player in a single life
|
64
|
+
# with this class
|
65
|
+
#
|
66
|
+
# @return [Fixnum] Maximum score
|
67
|
+
attr_reader :max_score
|
68
|
+
|
69
|
+
# Returns the maximum lifetime by the player in a single life with this class
|
70
|
+
#
|
71
|
+
# @return [Fixnum] Maximum lifetime
|
72
|
+
attr_reader :max_time_alive
|
73
|
+
|
74
|
+
# Creates a new TF2 class instance based on the assigned XML data
|
75
|
+
#
|
76
|
+
# @param [Hash<String, Object>] class_data The XML data for this class
|
77
|
+
def initialize(class_data)
|
78
|
+
@name = class_data['className']
|
79
|
+
@max_buildings_destroyed = class_data['ibuildingsdestroyed'].to_i
|
80
|
+
@max_captures = class_data['ipointcaptures'].to_i
|
81
|
+
@max_damage = class_data['idamagedealt'].to_i
|
82
|
+
@max_defenses = class_data['ipointdefenses'].to_i
|
83
|
+
@max_dominations = class_data['idominations'].to_i
|
84
|
+
@max_kill_assists = class_data['ikillassists'].to_i
|
85
|
+
@max_kills = class_data['inumberofkills'].to_i
|
86
|
+
@max_revenges = class_data['irevenge'].to_i
|
87
|
+
@max_score = class_data['ipointsscored'].to_i
|
88
|
+
@max_time_alive = class_data['iplaytime'].to_i
|
89
|
+
@play_time = class_data['playtimeSeconds'].to_i
|
90
|
+
end
|
91
|
+
|
92
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/community/tf2/tf2_class'
|
7
|
+
require 'steam/community/tf2/tf2_engineer'
|
8
|
+
require 'steam/community/tf2/tf2_medic'
|
9
|
+
require 'steam/community/tf2/tf2_sniper'
|
10
|
+
require 'steam/community/tf2/tf2_spy'
|
11
|
+
|
12
|
+
# The `TF2ClassFactory` is used to created instances of `TF2Class` based on the
|
13
|
+
# XML input data
|
14
|
+
#
|
15
|
+
# @author Sebastian Staudt
|
16
|
+
module TF2ClassFactory
|
17
|
+
|
18
|
+
# Creates a new instance of a TF2 class instance based on the given XML data
|
19
|
+
#
|
20
|
+
# This returns an instance of `TF2Class` or its subclasses `TF2Engineer`,
|
21
|
+
# `TF2Medic`, `TF2Sniper` or `TF2Spy` depending on the given XML data.
|
22
|
+
#
|
23
|
+
# @param [Hash<String, Object>] class_data The XML data for the class
|
24
|
+
# @return [TF2Class] The statistics for the given class data
|
25
|
+
def self.tf2_class(class_data)
|
26
|
+
case class_data['className']
|
27
|
+
when 'Engineer' then
|
28
|
+
return TF2Engineer.new(class_data)
|
29
|
+
when 'Medic' then
|
30
|
+
return TF2Medic.new(class_data)
|
31
|
+
when 'Sniper' then
|
32
|
+
return TF2Sniper.new(class_data)
|
33
|
+
when 'Spy' then
|
34
|
+
return TF2Spy.new(class_data)
|
35
|
+
else
|
36
|
+
return TF2Class.new(class_data)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/community/tf2/tf2_class'
|
7
|
+
|
8
|
+
# Represents the stats for the Team Fortress 2 Engineer class for a specific
|
9
|
+
# user
|
10
|
+
#
|
11
|
+
# @author Sebastian Staudt
|
12
|
+
class TF2Engineer < TF2Class
|
13
|
+
|
14
|
+
# Returns the maximum number of buildings built by the player in a single
|
15
|
+
# life as an Engineer
|
16
|
+
#
|
17
|
+
# @return [Fixnum] Maximum number of buildings built
|
18
|
+
attr_reader :max_buildings_built
|
19
|
+
|
20
|
+
# Returns the maximum number of enemies killed by sentry guns built by the
|
21
|
+
# player in a single life as an Engineer
|
22
|
+
#
|
23
|
+
# @return [Fixnum] Maximum number of sentry kills
|
24
|
+
attr_reader :max_sentry_kills
|
25
|
+
|
26
|
+
# Returns the maximum number of teammates teleported by teleporters built by
|
27
|
+
# the player in a single life as an Engineer
|
28
|
+
#
|
29
|
+
# @return [Fixnum] Maximum number of teleports
|
30
|
+
attr_reader :max_teleports
|
31
|
+
|
32
|
+
# Creates a new instance of the Engineer class based on the given XML data
|
33
|
+
#
|
34
|
+
# @param [Hash<String, Object>] class_data The XML data for this Engineer
|
35
|
+
def initialize(class_data)
|
36
|
+
super class_data
|
37
|
+
|
38
|
+
@max_buildings_built = class_data['ibuildingsbuilt'].to_i
|
39
|
+
@max_teleports = class_data['inumteleports'].to_i
|
40
|
+
@max_sentry_kills = class_data['isentrykills'].to_i
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
@@ -0,0 +1,70 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2010-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'multi_json'
|
7
|
+
|
8
|
+
require 'steam/community/steam_id'
|
9
|
+
require 'steam/community/web_api'
|
10
|
+
|
11
|
+
# Represents the special Team Fortress 2 item Golden Wrench. It includes the
|
12
|
+
# ID of the item, the serial number of the wrench, a reference to the SteamID
|
13
|
+
# of the owner and the date this player crafted the wrench
|
14
|
+
#
|
15
|
+
# @author Sebastian Staudt
|
16
|
+
class TF2GoldenWrench
|
17
|
+
|
18
|
+
# Returns the date this Golden Wrench has been crafted
|
19
|
+
#
|
20
|
+
# @return [Time] The crafting date of this wrench
|
21
|
+
attr_reader :date
|
22
|
+
|
23
|
+
# Returns the unique item ID of this Golden Wrench
|
24
|
+
#
|
25
|
+
# @return [Fixnum] The ID of this wrench
|
26
|
+
attr_reader :id
|
27
|
+
|
28
|
+
# Returns the serial number of this Golden Wrench
|
29
|
+
#
|
30
|
+
# @return [Fixnum] The serial of this wrench
|
31
|
+
attr_reader :number
|
32
|
+
|
33
|
+
# Returns the SteamID of the owner of this Golden Wrench
|
34
|
+
#
|
35
|
+
# @return [SteamId] The owner of this wrench
|
36
|
+
attr_reader :owner
|
37
|
+
|
38
|
+
@@golden_wrenches = nil
|
39
|
+
|
40
|
+
# Returns all Golden Wrenches
|
41
|
+
#
|
42
|
+
# @raise [SteamCondenserError] if an error occurs querying the Web API or
|
43
|
+
# the Steam Community
|
44
|
+
# @return [Array<GoldenWrench>] All Golden Wrenches
|
45
|
+
def self.golden_wrenches
|
46
|
+
if @@golden_wrenches.nil?
|
47
|
+
@@golden_wrenches = []
|
48
|
+
|
49
|
+
data = MultiJson.load(WebApi.json('ITFItems_440', 'GetGoldenWrenches', 2), { :symbolize_keys => true })
|
50
|
+
data[:results][:wrenches].each do |wrench_data|
|
51
|
+
@@golden_wrenches << TF2GoldenWrench.new(wrench_data)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
@@golden_wrenches
|
56
|
+
end
|
57
|
+
|
58
|
+
private
|
59
|
+
|
60
|
+
# Creates a new instance of a Golden Wrench with the given data
|
61
|
+
#
|
62
|
+
# @param [Hash<Symbol, Object>] wrench_data The JSON data for this wrench
|
63
|
+
def initialize(wrench_data)
|
64
|
+
@date = Time.at(wrench_data[:timestamp])
|
65
|
+
@id = wrench_data[:itemID]
|
66
|
+
@number = wrench_data[:wrenchNumber]
|
67
|
+
@owner = SteamId.new(wrench_data[:steamID], false)
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2010-2012, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/community/game_inventory'
|
7
|
+
require 'steam/community/tf2/tf2_item'
|
8
|
+
|
9
|
+
# Represents the inventory (aka. Backpack) of a Team Fortress 2 player
|
10
|
+
#
|
11
|
+
# @author Sebastian Staudt
|
12
|
+
class TF2Inventory < GameInventory
|
13
|
+
|
14
|
+
# The Steam application ID of Team Fortress 2
|
15
|
+
APP_ID = 440
|
16
|
+
|
17
|
+
# Creates a new inventory object for the given SteamID64 in Team Fortress 2
|
18
|
+
# (App ID 440)
|
19
|
+
#
|
20
|
+
# @param [Fixnum] steam_id64 The 64bit SteamID of the player to get the
|
21
|
+
# inventory for
|
22
|
+
# @macro cacheable
|
23
|
+
def initialize(steam_id64)
|
24
|
+
super APP_ID, steam_id64
|
25
|
+
end
|
26
|
+
|
27
|
+
# The class representing Team Fortress 2 items
|
28
|
+
@@item_class = TF2Item
|
29
|
+
|
30
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2010-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/community/game_item'
|
7
|
+
|
8
|
+
# Represents a Team Fortress 2 item
|
9
|
+
#
|
10
|
+
# @author Sebastian Staudt
|
11
|
+
class TF2Item
|
12
|
+
|
13
|
+
include GameItem
|
14
|
+
|
15
|
+
# The names of the classes available in Team Fortress 2
|
16
|
+
CLASSES = [ :scout, :sniper, :soldier, :demoman, :medic, :heavy, :pyro, :spy ]
|
17
|
+
|
18
|
+
# Returns the slot where this item can be equipped in or `nil` if this item
|
19
|
+
# cannot be equipped
|
20
|
+
#
|
21
|
+
# @return [String, nil] The slot where this item can be equipped in
|
22
|
+
attr_reader :slot
|
23
|
+
|
24
|
+
# Creates a new instance of a TF2 item with the given data
|
25
|
+
#
|
26
|
+
# @param [TF2Inventory] inventory The inventory this item is contained in
|
27
|
+
# @param [Hash<Symbol, Object>] item_data The data specifying this item
|
28
|
+
# @raise [WebApiError] on Web API errors
|
29
|
+
def initialize(inventory, item_data)
|
30
|
+
super
|
31
|
+
|
32
|
+
@slot = schema_data[:item_slot]
|
33
|
+
|
34
|
+
@equipped = {}
|
35
|
+
CLASSES.each_index do |class_id|
|
36
|
+
@equipped[CLASSES[class_id]] = (item_data[:inventory] & (1 << 16 + class_id) != 0)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
# Returns the class symbols for each class this player has equipped this item
|
41
|
+
#
|
42
|
+
# @return [Array<String>] The names of the classes this player has equipped
|
43
|
+
# this item
|
44
|
+
def classes_equipped?
|
45
|
+
@equipped.reject { |class_id, equipped| !equipped }
|
46
|
+
end
|
47
|
+
|
48
|
+
# Returns whether this item is equipped by this player at all
|
49
|
+
#
|
50
|
+
# @return [Boolean] `true` if the player has equipped this item at all
|
51
|
+
def equipped?
|
52
|
+
@equipped.has_value? true
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/community/tf2/tf2_class'
|
7
|
+
|
8
|
+
# Represents the stats for the Team Fortress 2 Medic class for a specific user
|
9
|
+
#
|
10
|
+
# @author Sebastian Staudt
|
11
|
+
class TF2Medic < TF2Class
|
12
|
+
|
13
|
+
# Returns the maximum health healed for teammates by the player in a
|
14
|
+
# single life as a Medic
|
15
|
+
#
|
16
|
+
# @return [Fixnum] Maximum health healed
|
17
|
+
attr_reader :max_health_healed
|
18
|
+
|
19
|
+
# Returns the maximum number of ÜberCharges provided by the player in a
|
20
|
+
# single life as a Medic
|
21
|
+
#
|
22
|
+
# @return [Fixnum] Maximum number of ÜberCharges
|
23
|
+
attr_reader :max_ubercharges
|
24
|
+
|
25
|
+
# Creates a new instance of the Medic class based on the given XML data
|
26
|
+
#
|
27
|
+
# @param [Hash<String, Object>] class_data The XML data for this Medic
|
28
|
+
def initialize(class_data)
|
29
|
+
super class_data
|
30
|
+
|
31
|
+
@max_health_healed = class_data['ihealthpointshealed'].to_i
|
32
|
+
@max_ubercharges = class_data['inuminvulnerable'].to_i
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/community/tf2/tf2_class'
|
7
|
+
|
8
|
+
# Represents the stats for the Team Fortress 2 Sniper class for a specific user
|
9
|
+
#
|
10
|
+
# @author Sebastian Staudt
|
11
|
+
class TF2Sniper < TF2Class
|
12
|
+
|
13
|
+
# Returns the maximum number enemies killed with a headshot by the player in
|
14
|
+
# a single life as a Sniper
|
15
|
+
#
|
16
|
+
# @return [Fixnum] Maximum number of headshots
|
17
|
+
attr_reader :max_headshots
|
18
|
+
|
19
|
+
# Creates a new instance of the Sniper class based on the given XML data
|
20
|
+
#
|
21
|
+
# @param [Hash<String, Object>] class_data The XML data for this Sniper
|
22
|
+
def initialize(class_data)
|
23
|
+
super class_data
|
24
|
+
|
25
|
+
@max_headshots = class_data['iheadshots'].to_i
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/community/tf2/tf2_class'
|
7
|
+
|
8
|
+
# Represents the stats for the Team Fortress 2 Spy class for a specific user
|
9
|
+
#
|
10
|
+
# @author Sebastian Staudt
|
11
|
+
class TF2Spy < TF2Class
|
12
|
+
|
13
|
+
# Returns the maximum number enemies killed with a backstab by the player in
|
14
|
+
# a single life as a Spy
|
15
|
+
#
|
16
|
+
# @return [Fixnum] Maximum number of buildings built
|
17
|
+
attr_reader :max_backstabs
|
18
|
+
|
19
|
+
# Returns the head shots by the player in a single life as a Spy
|
20
|
+
#
|
21
|
+
# @return [Fixnum] Maximum number of head shots
|
22
|
+
attr_reader :max_head_shots
|
23
|
+
|
24
|
+
# Returns the maximum health leeched from enemies by the player in a single
|
25
|
+
# life as a Spy
|
26
|
+
#
|
27
|
+
# @return [Fixnum] Maximum health leeched
|
28
|
+
attr_reader :max_health_leeched
|
29
|
+
|
30
|
+
# Creates a new instance of the Spy class based on the given XML data
|
31
|
+
#
|
32
|
+
# @param [Hash<String, Object>] class_data The XML data for this Spy
|
33
|
+
def initialize(class_data)
|
34
|
+
super class_data
|
35
|
+
|
36
|
+
@max_backstabs = class_data['ibackstabs'].to_i
|
37
|
+
@max_head_shots = class_data['iheadshots'].to_i
|
38
|
+
@max_health_leeched = class_data['ihealthpointsleached'].to_i
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|