Esempio n. 1
0
 def _start_viewer(self):
     """
     Starts the SoccerWindow visualizer. Note the viewer may also be
     used with a *.rcg logfile to replay a game. See details at
     https://github.com/LARG/HFO/blob/master/doc/manual.pdf.
     """
     cmd = hfo_py.get_viewer_path() +\
           " --connect --port %d" % (self.server_port)
     self.viewer = subprocess.Popen(cmd.split(' '), shell=False)
Esempio n. 2
0
 def _start_viewer(self):
     """
     Starts the SoccerWindow visualizer. Note the viewer may also be
     used with a *.rcg logfile to replay a game. See details at
     https://github.com/LARG/HFO/blob/master/doc/manual.pdf.
     """
     cmd = hfo_py.get_viewer_path() +\
           " --connect --port %d" % (self.server_port)
     self.viewer = subprocess.Popen(cmd.split(' '), shell=False)
Esempio n. 3
0
 def _start_viewer(self):
 
     cmd = hfo_py.get_viewer_path() +\
             " --connect --port %d" % (self.server_port)
     self.viewer = subprocess.Popen(cmd.split(' '), shell=False)