Skip to content

Instantly share code, notes, and snippets.

@cstewart90
Last active August 23, 2016 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cstewart90/57b8bbaa754169ce85da to your computer and use it in GitHub Desktop.
Save cstewart90/57b8bbaa754169ce85da to your computer and use it in GitHub Desktop.
WeeChat script to show status of #ClanChill Quake Live servers.
# Copyright (c) 2016 Christopher Stewart
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
require 'rubygems'
require 'steam-condenser'
def weechat_init
Weechat.register('chill_servers', 'kanzo', '1.2', 'MIT',
'Show status of #ClanChill QL servers with !servers', '', '')
Weechat.hook_print('', 'notify_message', '!servers', 1, 'servers', '')
Weechat.hook_print('', 'notify_none', '!servers', 1, 'servers', '')
Weechat::WEECHAT_RC_OK
end
def servers(_data, buffer, _time, _tags, _displayed, _highlight, _prefix, message)
return Weechat::WEECHAT_RC_OK unless message.start_with?('!servers')
channel = Weechat.buffer_get_string(buffer, 'short_name').downcase
return Weechat::WEECHAT_RC_OK unless channel.start_with?('#clanchill') ||
channel == '#deflaxia'
chill_servers = { FT: 27_960, Dools: 27_961, Duel: 27_962, kozoFT: 27_963 }
servers = []
chill_servers.each do |name, port|
servers << "#{name}(#{port}): #{get_server_info(port)}"
end
Weechat.command(buffer, "ql.clanchill.net: #{servers.join(', ')}")
end
def get_server_info(port)
server = SourceServer.new('ql.clanchill.net', port)
info = server.server_info
return "#{info[:number_of_players]}/#{info[:max_players]}"
rescue SocketError, Errno::ECONNREFUSED, SteamCondenser::TimeoutError
return 'Error'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment