コード例 #1
0
 def __init__(self, host, port, sock=None):
     Handler.__init__(self, host, port, sock=sock)
     # ip_port is set when the peer connects to me and sends a 'join' message
     # or when I open the connection to that peer (I know the peer's ip_port)
     self.ip_port = None
     self.box = None  # updated when that player moves
     peers.add(self)
コード例 #2
0
ファイル: peer.py プロジェクト: crista/swarch
 def __init__(self, host, port, sock=None):
     Handler.__init__(self, host, port, sock=sock)
     # ip_port is set when the peer connects to me and sends a 'join' message
     # or when I open the connection to that peer (I know the peer's ip_port)
     self.ip_port = None
     self.box = None  # updated when that player moves
     peers.add(self)
コード例 #3
0
ファイル: bot.py プロジェクト: ronvenna/INF123
 def __init__(self):
     Handler.__init__(self,'localhost', 8888)
     print "Connected!"
     self.borders = []
     self.pellets = []
     self.players = {}
     self.myname = None
     self.game_over = False
コード例 #4
0
ファイル: controller.py プロジェクト: heathsias/Chat_Agent
 def __init__(self, model, view, port):
     self.host = HOST
     self.port = port
     self.model = model
     self.view = view
     self.file_writer = fileWriter.FileWriter()
     self.quit_requested = False
     self.conversation_started = False
     Handler.__init__(self, self.host, self.port) ##old style Class can't use super() constructor
コード例 #5
0
ファイル: bot.py プロジェクト: dhumes/Informatics123
 def __init__(self):
     Handler.__init__(self,'localhost', 8888)
     print "Server is connected."
     self.players = {}
     self.borders = [[0, 0, 2, 300],
                     [0, 0, 400, 2],
                     [398, 0, 2, 300],
                     [0, 298, 400, 2]]
     self.pellets = [ [randint(10, 380), randint(10, 280), 5, 5] 
                     for _ in range(4) ]
     self.myname = None
     self.game_over = False
     self.mydir = self.cmd_directions['down']  # start direction: down
     self.mybox = [200, 150, 10, 10]  # start in middle of the screen
コード例 #6
0
 def __init__(self, host, port):
     self.directory_received = False
     Handler.__init__(self, host, port)
コード例 #7
0
ファイル: client.py プロジェクト: ronnienv/WerewolfTag
 def __init__(self, model, host, port):
     Handler.__init__(self, host, port)
     self.m = model
コード例 #8
0
 def __init__(self, m):
     Handler.__init__(self,'localhost', 8888)
     self.m = m
コード例 #9
0
ファイル: client.py プロジェクト: bpaff/WerewolfTag
 def __init__(self, model, host, port):
     Handler.__init__(self, host, port)
     self.m = model
コード例 #10
0
 def __init__(self, manager):
     host, port = 'localhost', 8888
     Handler.__init__(self, host, port)
     self.manager = manager
     self.do_send({'join': myname})
コード例 #11
0
ファイル: peer.py プロジェクト: chelseealee/swarch
 def __init__(self, host, port):
     self.directory_received = False
     Handler.__init__(self, host, port)
コード例 #12
0
 def __init__(self, m):
     self.m = m
     host, port = 'localhost', 8888
     Handler.__init__(self, host, port)
コード例 #13
0
ファイル: peer.py プロジェクト: chelseealee/swarch
 def __init__(self, host, port, sock=None):
     self.ip_port = None # set when that player sends a 'join' message
     self.box = None # updated when that player moves
     Handler.__init__(self, host, port, sock=sock)
コード例 #14
0
ファイル: Client.py プロジェクト: usercngit/INF123_TeamCSS
	def __init__(self, host, port):
		Handler.__init__(self, host, port)
コード例 #15
0
ファイル: agent.py プロジェクト: delian7/inf124-irc
	def __init__(self, host, port, sock=None):
		Handler.__init__(self, host, port, sock)
		self.log = []
コード例 #16
0
ファイル: bot.py プロジェクト: jeffs5/INFX123
 def __init__(self, model):
     Handler.__init__(self, 'localhost', 8888)   # connect asynchronously
     self.model = model
コード例 #17
0
ファイル: TempClient.py プロジェクト: bpaff/INF123_TeamCSS
	def __init__(self, host, port):
	    Handler.__init__(self, host, port)
	    print 'client built'