Browse Source

now uses arrays

pull/1378/head
Daniel Gibbs 8 years ago
parent
commit
4b79e89507
  1. 40
      lgsm/functions/gsquery.py

40
lgsm/functions/gsquery.py

@ -1,16 +1,15 @@
#! /usr/bin/env python #! /usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Game Server Query # PythonGSQ
# Author: Anonymous & Daniel Gibbs # Author: Anonymous & Daniel Gibbs
# Website: https://gameservermanagers.com # Website: https://gameservermanagers.com
# Description: Handles querying of . # Description: Allows querying of various game servers.
import optparse import optparse
import socket import socket
import sys import sys
class PythonGSQ:
class GameServer:
def __init__(self, options, arguments): def __init__(self, options, arguments):
self.option = options self.option = options
self.argument = arguments self.argument = arguments
@ -18,32 +17,17 @@ class GameServer:
self.server_response_timeout = 5 self.server_response_timeout = 5
self.default_buffer_length = 1024 self.default_buffer_length = 1024
# #
if self.option.engine == 'avalanche': sourcequery=['quakelive','realvirtuality','refractor','source','goldsource','spark','unity3d']
self.query_prompt_string = b'\xFE\xFD\x09\x10\x20\x30\x40' idtech2query=['idtech3','quake','iw3.0']
elif self.option.engine == 'goldsource': idtech3query=['idtech2','iw2.0']
if self.option.engine in sourcequery:
self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0'
elif self.option.engine == 'idtech2': elif self.option.engine in idtech2query:
self.query_prompt_string = b'\xff\xff\xff\xffstatus\x00' self.query_prompt_string = b'\xff\xff\xff\xffstatus\x00'
elif self.option.engine == 'idtech3': elif self.option.engine in idtech3query:
self.query_prompt_string = b'\xff\xff\xff\xffgetstatus'
elif self.option.engine == 'iw2.0':
self.query_prompt_string = b'\xff\xff\xff\xffgetstatus' self.query_prompt_string = b'\xff\xff\xff\xffgetstatus'
elif self.option.engine == 'iw3.0': elif self.option.engine == 'avalanche':
self.query_prompt_string = b'\xff\xff\xff\xffgetstatus' self.query_prompt_string = b'\xFE\xFD\x09\x10\x20\x30\x40'
elif self.option.engine == 'quake':
self.query_prompt_string = b'\xff\xff\xff\xffstatus\x00'
elif self.option.engine == 'quakelive':
self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0'
elif self.option.engine == 'realvirtuality':
self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0'
elif self.option.engine == 'refractor':
self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0'
elif self.option.engine == 'source':
self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0'
elif self.option.engine == 'spark':
self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0'
elif self.option.engine == 'unity3d':
self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0'
elif self.option.engine == 'unreal': elif self.option.engine == 'unreal':
self.query_prompt_string = b'\x5C\x69\x6E\x66\x6F\x5C' self.query_prompt_string = b'\x5C\x69\x6E\x66\x6F\x5C'
elif self.option.engine == 'unreal2': elif self.option.engine == 'unreal2':
@ -135,5 +119,5 @@ if __name__ == '__main__':
) )
options, arguments = parser.parse_args() options, arguments = parser.parse_args()
# #
server = GameServer(options, arguments) server = PythonGSQ(options, arguments)
server.responding() server.responding()

Loading…
Cancel
Save