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.
Files changed (161) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +228 -0
  3. data/CONTRIBUTING.md +59 -0
  4. data/Gemfile.lock +12 -13
  5. data/README.md +9 -4
  6. data/lib/steam-condenser/version.rb +1 -1
  7. data/lib/steam/community/alien_swarm/alien_swarm_mission.rb +10 -9
  8. data/lib/steam/community/alien_swarm/alien_swarm_stats.rb +74 -72
  9. data/lib/steam/community/css/css_map.rb +2 -2
  10. data/lib/steam/community/css/css_stats.rb +54 -56
  11. data/lib/steam/community/css/css_weapon.rb +4 -4
  12. data/lib/steam/community/game_item.rb +2 -3
  13. data/lib/steam/community/game_leaderboard.rb +22 -15
  14. data/lib/steam/community/l4d/abstract_l4d_stats.rb +64 -61
  15. data/lib/steam/community/l4d/l4d2_stats.rb +26 -21
  16. data/lib/steam/community/steam_id.rb +8 -11
  17. data/lib/steam/community/web_api.rb +19 -14
  18. data/lib/steam/packets/s2a_info2_packet.rb +16 -14
  19. data/lib/steam/packets/s2a_info_detailed_packet.rb +24 -19
  20. data/lib/steam/packets/steam_packet_factory.rb +7 -2
  21. data/lib/steam/servers/game_server.rb +3 -2
  22. data/lib/steam/servers/master_server.rb +1 -1
  23. data/lib/steam/sockets/source_socket.rb +4 -9
  24. data/pkg/steam-condenser-1.3.5.gem +0 -0
  25. data/pkg/steam-condenser-1.3.5/Gemfile +7 -0
  26. data/pkg/steam-condenser-1.3.5/Gemfile.lock +45 -0
  27. data/pkg/steam-condenser-1.3.5/LICENSE +25 -0
  28. data/pkg/steam-condenser-1.3.5/README.md +70 -0
  29. data/pkg/steam-condenser-1.3.5/Rakefile +46 -0
  30. data/pkg/steam-condenser-1.3.5/lib/core_ext/stringio.rb +91 -0
  31. data/pkg/steam-condenser-1.3.5/lib/errors/packet_format_error.rb +13 -0
  32. data/pkg/steam-condenser-1.3.5/lib/errors/rcon_ban_error.rb +22 -0
  33. data/pkg/steam-condenser-1.3.5/lib/errors/rcon_no_auth_error.rb +21 -0
  34. data/pkg/steam-condenser-1.3.5/lib/errors/steam_condenser_error.rb +26 -0
  35. data/pkg/steam-condenser-1.3.5/lib/errors/timeout_error.rb +28 -0
  36. data/pkg/steam-condenser-1.3.5/lib/errors/web_api_error.rb +57 -0
  37. data/pkg/steam-condenser-1.3.5/lib/steam-condenser.rb +18 -0
  38. data/pkg/steam-condenser-1.3.5/lib/steam-condenser/community.rb +24 -0
  39. data/pkg/steam-condenser-1.3.5/lib/steam-condenser/servers.rb +24 -0
  40. data/pkg/steam-condenser-1.3.5/lib/steam-condenser/version.rb +11 -0
  41. data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_mission.rb +119 -0
  42. data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_stats.rb +186 -0
  43. data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_weapon.rb +49 -0
  44. data/pkg/steam-condenser-1.3.5/lib/steam/community/app_news.rb +133 -0
  45. data/pkg/steam-condenser-1.3.5/lib/steam/community/cacheable.rb +199 -0
  46. data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_map.rb +61 -0
  47. data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_stats.rb +142 -0
  48. data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_weapon.rb +69 -0
  49. data/pkg/steam-condenser-1.3.5/lib/steam/community/defense_grid/defense_grid_stats.rb +238 -0
  50. data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_class.rb +90 -0
  51. data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_stats.rb +62 -0
  52. data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_weapon.rb +67 -0
  53. data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_beta_inventory.rb +30 -0
  54. data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_inventory.rb +30 -0
  55. data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_item.rb +33 -0
  56. data/pkg/steam-condenser-1.3.5/lib/steam/community/game_achievement.rb +109 -0
  57. data/pkg/steam-condenser-1.3.5/lib/steam/community/game_class.rb +22 -0
  58. data/pkg/steam-condenser-1.3.5/lib/steam/community/game_inventory.rb +171 -0
  59. data/pkg/steam-condenser-1.3.5/lib/steam/community/game_item.rb +156 -0
  60. data/pkg/steam-condenser-1.3.5/lib/steam/community/game_item_schema.rb +131 -0
  61. data/pkg/steam-condenser-1.3.5/lib/steam/community/game_leaderboard.rb +205 -0
  62. data/pkg/steam-condenser-1.3.5/lib/steam/community/game_leaderboard_entry.rb +43 -0
  63. data/pkg/steam-condenser-1.3.5/lib/steam/community/game_stats.rb +175 -0
  64. data/pkg/steam-condenser-1.3.5/lib/steam/community/game_weapon.rb +41 -0
  65. data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/abstract_l4d_stats.rb +185 -0
  66. data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/abstract_l4d_weapon.rb +56 -0
  67. data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_map.rb +90 -0
  68. data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_stats.rb +174 -0
  69. data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_weapon.rb +38 -0
  70. data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_explosive.rb +34 -0
  71. data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_map.rb +65 -0
  72. data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_stats.rb +73 -0
  73. data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_weapon.rb +26 -0
  74. data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_inventory.rb +30 -0
  75. data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_item.rb +55 -0
  76. data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_stats.rb +33 -0
  77. data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_game.rb +193 -0
  78. data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_group.rb +129 -0
  79. data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_id.rb +498 -0
  80. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_beta_inventory.rb +28 -0
  81. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_class.rb +92 -0
  82. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_class_factory.rb +40 -0
  83. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_engineer.rb +43 -0
  84. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_golden_wrench.rb +70 -0
  85. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_inventory.rb +30 -0
  86. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_item.rb +55 -0
  87. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_medic.rb +35 -0
  88. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_sniper.rb +28 -0
  89. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_spy.rb +41 -0
  90. data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_stats.rb +77 -0
  91. data/pkg/steam-condenser-1.3.5/lib/steam/community/web_api.rb +130 -0
  92. data/pkg/steam-condenser-1.3.5/lib/steam/community/xml_data.rb +27 -0
  93. data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2m_get_servers_batch2_packet.rb +59 -0
  94. data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_info_packet.rb +24 -0
  95. data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_player_packet.rb +31 -0
  96. data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_rules_packet.rb +32 -0
  97. data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_serverquery_getchallenge_packet.rb +25 -0
  98. data/pkg/steam-condenser-1.3.5/lib/steam/packets/c2m_checkmd5_packet.rb +31 -0
  99. data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2a_server_batch_packet.rb +52 -0
  100. data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2c_isvalidmd5_packet.rb +34 -0
  101. data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2s_requestrestart_packet.rb +34 -0
  102. data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_auth_request.rb +28 -0
  103. data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_auth_response.rb +30 -0
  104. data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_exec_request.rb +28 -0
  105. data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_exec_response.rb +37 -0
  106. data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_goldsrc_request.rb +35 -0
  107. data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_goldsrc_response.rb +34 -0
  108. data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_packet.rb +57 -0
  109. data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_packet_factory.rb +43 -0
  110. data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_terminator.rb +29 -0
  111. data/pkg/steam-condenser-1.3.5/lib/steam/packets/request_with_challenge.rb +19 -0
  112. data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info2_packet.rb +74 -0
  113. data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info_base_packet.rb +25 -0
  114. data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info_detailed_packet.rb +59 -0
  115. data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_logstring_packet.rb +30 -0
  116. data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_player_packet.rb +44 -0
  117. data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_rules_packet.rb +48 -0
  118. data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2c_challenge_packet.rb +35 -0
  119. data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2m_heartbeat2_packet.rb +72 -0
  120. data/pkg/steam-condenser-1.3.5/lib/steam/packets/steam_packet.rb +52 -0
  121. data/pkg/steam-condenser-1.3.5/lib/steam/packets/steam_packet_factory.rb +108 -0
  122. data/pkg/steam-condenser-1.3.5/lib/steam/servers/game_server.rb +392 -0
  123. data/pkg/steam-condenser-1.3.5/lib/steam/servers/goldsrc_server.rb +74 -0
  124. data/pkg/steam-condenser-1.3.5/lib/steam/servers/master_server.rb +188 -0
  125. data/pkg/steam-condenser-1.3.5/lib/steam/servers/server.rb +115 -0
  126. data/pkg/steam-condenser-1.3.5/lib/steam/servers/source_server.rb +117 -0
  127. data/pkg/steam-condenser-1.3.5/lib/steam/sockets/goldsrc_socket.rb +142 -0
  128. data/pkg/steam-condenser-1.3.5/lib/steam/sockets/master_server_socket.rb +34 -0
  129. data/pkg/steam-condenser-1.3.5/lib/steam/sockets/rcon_socket.rb +103 -0
  130. data/pkg/steam-condenser-1.3.5/lib/steam/sockets/source_socket.rb +78 -0
  131. data/pkg/steam-condenser-1.3.5/lib/steam/sockets/steam_socket.rb +91 -0
  132. data/pkg/steam-condenser-1.3.5/lib/steam/steam_player.rb +143 -0
  133. data/pkg/steam-condenser-1.3.5/steam-condenser.gemspec +26 -0
  134. data/pkg/steam-condenser-1.3.5/test/core_ext/test_stringio.rb +59 -0
  135. data/pkg/steam-condenser-1.3.5/test/fixtures/invalid.xml +2 -0
  136. data/pkg/steam-condenser-1.3.5/test/fixtures/sonofthor.xml +882 -0
  137. data/pkg/steam-condenser-1.3.5/test/fixtures/status_goldsrc +3 -0
  138. data/pkg/steam-condenser-1.3.5/test/fixtures/status_source +3 -0
  139. data/pkg/steam-condenser-1.3.5/test/fixtures/valve-members.xml +231 -0
  140. data/pkg/steam-condenser-1.3.5/test/helper.rb +48 -0
  141. data/pkg/steam-condenser-1.3.5/test/steam/community/test_cacheable.rb +100 -0
  142. data/pkg/steam-condenser-1.3.5/test/steam/community/test_steam_group.rb +83 -0
  143. data/pkg/steam-condenser-1.3.5/test/steam/community/test_steam_id.rb +144 -0
  144. data/pkg/steam-condenser-1.3.5/test/steam/community/test_web_api.rb +98 -0
  145. data/pkg/steam-condenser-1.3.5/test/steam/packets/test_steam_packet.rb +37 -0
  146. data/pkg/steam-condenser-1.3.5/test/steam/servers/test_game_server.rb +296 -0
  147. data/pkg/steam-condenser-1.3.5/test/steam/servers/test_goldsrc_server.rb +59 -0
  148. data/pkg/steam-condenser-1.3.5/test/steam/servers/test_master_server.rb +131 -0
  149. data/pkg/steam-condenser-1.3.5/test/steam/servers/test_server.rb +72 -0
  150. data/pkg/steam-condenser-1.3.5/test/steam/servers/test_source_server.rb +134 -0
  151. data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_goldsrc_socket.rb +127 -0
  152. data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_master_server_socket.rb +42 -0
  153. data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_rcon_socket.rb +118 -0
  154. data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_source_socket.rb +77 -0
  155. data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_steam_socket.rb +97 -0
  156. data/steam-condenser.gemspec +2 -3
  157. data/test/steam/community/test_cacheable.rb +3 -0
  158. data/test/steam/community/test_web_api.rb +15 -2
  159. data/test/steam/packets/test_steam_packet.rb +1 -1
  160. data/test/steam/sockets/test_source_socket.rb +1 -1
  161. metadata +151 -27
@@ -0,0 +1,38 @@
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) 2009-2011, Sebastian Staudt
5
+
6
+ require 'steam/community/l4d/abstract_l4d_weapon'
7
+
8
+ # This class represents the statistics of a single weapon for a user in
9
+ # Left4Dead 2
10
+ #
11
+ # @author Sebastian Staudt
12
+ class L4D2Weapon
13
+
14
+ include AbstractL4DWeapon
15
+
16
+ # Returns the amount of damage done by the player with this weapon
17
+ #
18
+ # @return [Fixnum] The damage done by this weapon
19
+ attr_reader :damage
20
+
21
+ # Returns the weapon group this weapon belongs to
22
+ #
23
+ # @return [String] The group this weapon belongs to
24
+ attr_reader :weapon_group
25
+
26
+ # Creates a new instance of a weapon based on the given XML data
27
+ #
28
+ # @param [String] weapon_name The name of this weapon
29
+ # @param [Hash<String, Object>] weapon_data The XML data of this weapon
30
+ def initialize(weapon_name, weapon_data)
31
+ super
32
+
33
+ @damage = weapon_data['damage'].to_i
34
+ @kill_percentage = weapon_data['pctkills'].to_f * 0.01
35
+ @weapon_group = weapon_data['group']
36
+ end
37
+
38
+ end
@@ -0,0 +1,34 @@
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) 2009-2011, Sebastian Staudt
5
+
6
+ require 'steam/community/game_weapon'
7
+
8
+ # This class represents the statistics of a single explosive weapon for a user
9
+ # in Left4Dead
10
+ #
11
+ # @author Sebastian Staudt
12
+ class L4DExplosive
13
+
14
+ include GameWeapon
15
+
16
+ # Creates a new instance of an explosivve based on the given XML data
17
+ #
18
+ # @param [String] weapon_name The name of this weapon
19
+ # @param [Hash<String, Object>] weapon_data The XML data of this weapon
20
+ def initialize(weapon_name, weapon_data)
21
+ super weapon_data
22
+
23
+ @id = weapon_name
24
+ @shots = weapon_data['thrown'].to_i
25
+ end
26
+
27
+ # Returns the average number of killed zombies for one shot of this explosive
28
+ #
29
+ # @return [Float] The average number of kills per shot
30
+ def avg_kills_per_shot
31
+ 1 / avg_shots_per_kill
32
+ end
33
+
34
+ end
@@ -0,0 +1,65 @@
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) 2009-2011, Sebastian Staudt
5
+
6
+ # This class holds statistical information about a map played by a player in
7
+ # Survival mode of Left4Dead
8
+ #
9
+ # @author Sebastian Staudt
10
+ class L4DMap
11
+
12
+ # Returns the best survival time of this player on this map
13
+ #
14
+ # @return [Float] The best survival time of this player on this map
15
+ attr_reader :best_time
16
+
17
+ # Returns the ID of this map
18
+ #
19
+ # @return [String] The ID of this map
20
+ attr_reader :id
21
+
22
+ # Returns the highest medal this player has won on this map
23
+ #
24
+ # @return [Fixnum] The highest medal won by this player on this map
25
+ attr_reader :medal
26
+
27
+ # Returns the name of the map
28
+ #
29
+ # @return [String] The name of the map
30
+ attr_reader :name
31
+
32
+ # Returns the number of times this map has been played by this player
33
+ #
34
+ # @return [Fixnum] The number of times this map has been played
35
+ attr_reader :times_played
36
+
37
+ GOLD = 1
38
+ SILVER = 2
39
+ BRONZE = 3
40
+ NONE = 0
41
+
42
+ # Creates a new instance of a Left4Dead Survival map based on the given
43
+ # XML data
44
+ #
45
+ # @param [String] map_name The name of this map
46
+ # @param [Hash<String, Object>] map_data The XML data for this map
47
+ def initialize(map_name, map_data)
48
+ @best_time = map_data['besttimeseconds'].to_f
49
+ @id = map_name
50
+ @name = map_data['name']
51
+ @times_played = map_data['timesplayed'].to_i
52
+
53
+ case map_data['medal']
54
+ when 'gold'
55
+ @medal = L4DMap::GOLD
56
+ when 'silver'
57
+ @medal = L4DMap::SILVER
58
+ when 'bronze'
59
+ @medal = L4DMap::BRONZE
60
+ else
61
+ @medal = L4DMap::NONE
62
+ end
63
+ end
64
+
65
+ end
@@ -0,0 +1,73 @@
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) 2009-2011, Sebastian Staudt
5
+
6
+ require 'steam/community/l4d/abstract_l4d_stats'
7
+ require 'steam/community/l4d/l4d_explosive'
8
+ require 'steam/community/l4d/l4d_map'
9
+ require 'steam/community/l4d/l4d_weapon'
10
+
11
+ # This class represents the game statistics for a single user in Left4Dead
12
+ #
13
+ # @author Sebastian Staudt
14
+ class L4DStats < GameStats
15
+
16
+ include AbstractL4DStats
17
+
18
+ # Creates a `L4DStats` object by calling the super constructor
19
+ # with the game name `'l4d'`
20
+ #
21
+ # @param [String, Fixnum] steam_id The custom URL or 64bit Steam ID of the
22
+ # user
23
+ # @macro cacheable
24
+ def initialize(steam_id)
25
+ super steam_id, 'l4d'
26
+ end
27
+
28
+ # Returns a hash of Survival statistics for this user like revived teammates
29
+ #
30
+ # If the Survival statistics haven't been parsed already, parsing is done
31
+ # now.
32
+ #
33
+ # @return [Hash<String, Object>] The stats for the Survival mode
34
+ def survival_stats
35
+ return unless public?
36
+
37
+ if @survival_stats.nil?
38
+ super
39
+ @survival_stats[:maps] = {}
40
+ @xml_data['stats']['survival']['maps'].each do |map_data|
41
+ @survival_stats[:maps][map_data[0]] = L4DMap.new *map_data
42
+ end
43
+ end
44
+
45
+ @survival_stats
46
+ end
47
+
48
+ # Returns a hash of `L4DWeapon` for this user containing all Left4Dead
49
+ # weapons
50
+ #
51
+ # If the weapons haven't been parsed already, parsing is done now.
52
+ #
53
+ # @return [Hash<String, Object>] The weapon statistics
54
+ def weapon_stats
55
+ return unless public?
56
+
57
+ if @weapon_stats.nil?
58
+ @weapon_stats = {}
59
+ @xml_data['stats']['weapons'].each do |weapon_data|
60
+ unless %w{molotov pipes}.include? weapon_data[0]
61
+ weapon = L4DWeapon.new *weapon_data
62
+ else
63
+ weapon = L4DExplosive.new *weapon_data
64
+ end
65
+
66
+ @weapon_stats[weapon_data[0]] = weapon
67
+ end
68
+ end
69
+
70
+ @weapon_stats
71
+ end
72
+
73
+ end
@@ -0,0 +1,26 @@
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) 2009-2011, Sebastian Staudt
5
+
6
+ require 'steam/community/l4d/abstract_l4d_weapon'
7
+
8
+ # This class represents the statistics of a single weapon for a user in
9
+ # Left4Dead
10
+ #
11
+ # @author Sebastian Staudt
12
+ class L4DWeapon
13
+
14
+ include AbstractL4DWeapon
15
+
16
+ # Creates a new instance of a weapon based on the given XML data
17
+ #
18
+ # @param [String] weapon_name The name of this weapon
19
+ # @param [Hash<String, Object>] weapon_data The XML data of this weapon
20
+ def initialize(weapon_name, weapon_data)
21
+ super
22
+
23
+ @kill_percentage = weapon_data['killpct'].to_f * 0.01
24
+ end
25
+
26
+ 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) 2011-2012, Sebastian Staudt
5
+
6
+ require 'steam/community/game_inventory'
7
+ require 'steam/community/portal2/portal2_item'
8
+
9
+ # Represents the inventory (a.k.a. Robot Enrichment) of a Portal 2 player
10
+ #
11
+ # @author Sebastian Staudt
12
+ class Portal2Inventory < GameInventory
13
+
14
+ # The Steam application ID of Portal 2
15
+ APP_ID = 620
16
+
17
+ # Creates a new inventory object for the given SteamID64 in Portal 2 (App ID
18
+ # 620)
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 Portal 2 items
28
+ @@item_class = Portal2Item
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) 2011, Sebastian Staudt
5
+
6
+ require 'steam/community/game_item'
7
+
8
+ # Represents a Portal 2 item
9
+ #
10
+ # @author Sebastian Staudt
11
+ class Portal2Item
12
+
13
+ include GameItem
14
+
15
+ # The names of the bots available in Portal 2
16
+ BOTS = [ :pbody, :atlas ]
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 Portal 2 item with the given data
25
+ #
26
+ # @param [Portal2Inventory] 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
+ BOTS.each_index do |class_id|
36
+ @equipped[BOTS[class_id]] = (item_data[:inventory] & (1 << 16 + class_id) != 0)
37
+ end
38
+ end
39
+
40
+ # Returns the symbols for each bot this player has equipped this item
41
+ #
42
+ # @return [Array<String>] The names of the bots this player has equipped this
43
+ # item
44
+ def bots_equipped?
45
+ @equipped.reject { |bot_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,33 @@
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_stats'
7
+ require 'steam/community/portal2/portal2_inventory'
8
+
9
+ # This class represents the game statistics for a single user in Portal 2
10
+ #
11
+ # @author Sebastian Staudt
12
+ class Portal2Stats < GameStats
13
+
14
+ # Creates a `Portal2Stats` object by calling the super constructor with the
15
+ # game name `'portal2'`
16
+ #
17
+ # @param [String, Fixnum] steam_id The custom URL or 64bit Steam ID of the
18
+ # user
19
+ # @macro cacheable
20
+ def initialize(steam_id)
21
+ super steam_id, 'portal2'
22
+ end
23
+
24
+ # Returns the current Portal 2 inventory (a.k.a Robot Enrichment) of this
25
+ # player
26
+ #
27
+ # @return [Portal2Inventory] This player's Portal 2 inventory
28
+ def inventory
29
+ @inventory = Portal2Inventory.new(user.steam_id64) if @inventory.nil?
30
+ @inventory
31
+ end
32
+
33
+ end
@@ -0,0 +1,193 @@
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/cacheable'
7
+ require 'steam/community/game_leaderboard'
8
+ require 'steam/community/game_stats'
9
+ require 'steam/community/web_api'
10
+
11
+ # This class represents a game available on Steam
12
+ #
13
+ # @author Sebastian Staudt
14
+ class SteamGame
15
+
16
+ include Cacheable
17
+ cacheable_with_ids :app_id
18
+
19
+ # Returns the Steam application ID of this game
20
+ #
21
+ # @return [Fixnum] The Steam application ID of this game
22
+ attr_reader :app_id
23
+
24
+ # Returns the URL for the icon image of this game
25
+ #
26
+ # @return [String] The URL for the game icon
27
+ attr_reader :icon_url
28
+
29
+ # Returns the full name of this game
30
+ #
31
+ # @return [String] The full name of this game
32
+ attr_reader :name
33
+
34
+ # Returns the short name of this game (also known as "friendly name")
35
+ #
36
+ # @return [String] The short name of this game
37
+ attr_reader :short_name
38
+
39
+ # Checks if a game is up-to-date by reading information from a `steam.inf`
40
+ # file and comparing it using the Web API
41
+ #
42
+ # @param [String] path The file system path of the `steam.inf` file
43
+ # @return [Boolean] `true` if the game is up-to-date
44
+ def self.check_steam_inf(path)
45
+ steam_inf = File.read path
46
+ begin
47
+ app_id = steam_inf.match(/^\s*appID=(\d+)\s*$/im)[1].to_i
48
+ version = steam_inf.match(/^\s*PatchVersion=([\d\.]+)\s*$/im)[1].gsub('.', '').to_i
49
+ rescue
50
+ raise SteamCondenserError, "The steam.inf file at \"#{path}\" is invalid."
51
+ end
52
+ uptodate? app_id, version
53
+ end
54
+
55
+ # Creates a new instance of a game with the given data and caches it
56
+ #
57
+ # @param [Fixnum] app_id The application ID of the game
58
+ # @param [Hash<String, Object>] game_data The XML data of the game
59
+ def self.new(app_id, game_data = nil)
60
+ if cached? app_id
61
+ class_variable_get(:@@cache)[app_id]
62
+ else
63
+ game = SteamGame.allocate
64
+ game.send :initialize, app_id, game_data
65
+ game
66
+ end
67
+ end
68
+
69
+ # Returns whether the given version of the game with the given application ID
70
+ # is up-to-date
71
+ #
72
+ # @param [Fixnum] app_id The application ID of the game to check
73
+ # @param [Fixnum] version The version to check against the Web API
74
+ # @return [Boolean] `true` if the given version is up-to-date
75
+ def self.uptodate?(app_id, version)
76
+ params = { :appid => app_id, :version => version }
77
+ result = WebApi.json 'ISteamApps', 'UpToDateCheck', 1, params
78
+ result = MultiJson.load(result, { :symbolize_keys => true})[:response]
79
+ raise SteamCondenserError, result[:error] unless result[:success]
80
+ result[:up_to_date]
81
+ end
82
+
83
+ # Returns the overall number of players currently playing this game
84
+ #
85
+ # @return [Fixnum] The number of players playing this game
86
+ def player_count
87
+ params = { :appid => @app_id }
88
+ result = WebApi.json 'ISteamUserStats', 'GetNumberOfCurrentPlayers', 1, params
89
+ result = MultiJson.load(result, { :symbolize_keys => true})[:response]
90
+ result[:player_count]
91
+ end
92
+
93
+ # Returns whether this game has statistics available
94
+ #
95
+ # @return [Boolean] `true` if this game has stats
96
+ def has_stats?
97
+ !@short_name.nil?
98
+ end
99
+
100
+ # Returns a unique identifier for this game
101
+ #
102
+ # This is either the numeric application ID or the unique short name
103
+ #
104
+ # @return [Fixnum, String] The application ID or short name of the game
105
+ def id
106
+ @short_name == @app_id.to_s ? @app_id : @short_name
107
+ end
108
+
109
+ # Returns the leaderboard for this game and the given leaderboard ID or name
110
+ #
111
+ # @param [Fixnum, String] id The ID or name of the leaderboard to return
112
+ # @return [GameLeaderboard] The matching leaderboard if available
113
+ def leaderboard(id)
114
+ GameLeaderboard.leaderboard @short_name, id
115
+ end
116
+
117
+ # Returns an array containing all of this game's leaderboards
118
+ #
119
+ # @return [Array<GameLeaderboard>] The leaderboards for this game
120
+ def leaderboards
121
+ GameLeaderboard.leaderboards @short_name
122
+ end
123
+
124
+ # Returns the URL for the logo image of this game
125
+ #
126
+ # @return [String] The URL for the game logo
127
+ def logo_url
128
+ return nil if @logo_hash.nil?
129
+ "http://media.steampowered.com/steamcommunity/public/images/apps/#@app_id/#@logo_hash.jpg"
130
+ end
131
+
132
+ # Returns the URL for the logo thumbnail image of this game
133
+ #
134
+ # @return [String] The URL for the game logo thumbnail
135
+ def logo_thumbnail_url
136
+ return nil if @logo_hash.nil?
137
+ "http://media.steampowered.com/steamcommunity/public/images/apps/#@app_id/#{@logo_hash}_thumb.jpg"
138
+ end
139
+
140
+ # Returns the URL of this game's page in the Steam Store
141
+ #
142
+ # @return [String] This game's store page
143
+ def store_url
144
+ "http://store.steampowered.com/app/#@app_id"
145
+ end
146
+
147
+ # Returns whether the given version of this game is up-to-date
148
+ #
149
+ # @param [Fixnum] version The version to check against the Web API
150
+ # @return [Boolean] `true` if the given version is up-to-date
151
+ def uptodate?(version)
152
+ self.class.uptodate? @app_id, version
153
+ end
154
+
155
+ # Creates a stats object for the given user and this game
156
+ #
157
+ # @param [String, Fixnum] steam_id The custom URL or the 64bit Steam ID of
158
+ # the user
159
+ # @return [GameStats] The stats of this game for the given user
160
+ def user_stats(steam_id)
161
+ return unless has_stats?
162
+
163
+ GameStats.create_game_stats steam_id, @short_name
164
+ end
165
+
166
+ private
167
+
168
+ # Creates a new instance of a game with the given data and caches it
169
+ #
170
+ # @note The real constructor of `SteamGame` is {.new}
171
+ # @param [Fixnum] app_id The application ID of the game
172
+ # @param [Hash<String, Object>] game_data The XML data of the game
173
+ def initialize(app_id, game_data)
174
+ @app_id = app_id
175
+
176
+ if game_data.key? 'name'
177
+ hash = game_data['logo'].match /\/#{app_id}\/([0-9a-f]+).jpg/
178
+ @logo_hash = hash[1] unless hash.nil?
179
+ @name = game_data['name']
180
+
181
+ if game_data.key? 'globalStatsLink'
182
+ @short_name = game_data['globalStatsLink'].match(/http:\/\/steamcommunity.com\/stats\/([^?\/]+)\/achievements\//)[1].downcase
183
+ end
184
+ else
185
+ @icon_url = game_data['gameIcon']
186
+ @logo_hash = game_data['gameLogo'].match(/\/#{app_id}\/([0-9a-f]+).jpg/)[1]
187
+ @name = game_data['gameName']
188
+ @short_name = game_data['gameFriendlyName'].downcase
189
+ @short_name = @app_id if @short_name == @app_id.to_s
190
+ end
191
+ end
192
+
193
+ end