Messing with log files
[progcomp2013.git] / qchess / src / main.py
1 #!/usr/bin/python -u
2
3 # Do you know what the -u does? It unbuffers stdin and stdout
4 # I can't remember why, but last year things broke without that
5
6 """
7         UCC::Progcomp 2013 Quantum Chess game
8         @author Sam Moore [SZM] "matches"
9         @copyright The University Computer Club, Incorporated
10                 (ie: You can copy it for not for profit purposes)
11 """
12
13 # system python modules or whatever they are called
14 import sys
15 import os
16 import time
17
18 turn_delay = 0.5
19 [game, graphics] = [None, None]
20
21 def make_player(name, colour):
22         if name[0] == '@':
23                 if name[1:] == "human":
24                         return HumanPlayer(name, colour)
25                 s = name[1:].split(":")
26                 if s[0] == "network":
27                         address = None
28                         if len(s) > 1:
29                                 address = s[1]
30                         return NetworkReceiver(colour, address)
31                 if s[0] == "internal":
32
33                         import inspect
34                         internal_agents = inspect.getmembers(sys.modules[__name__], inspect.isclass)
35                         internal_agents = [x for x in internal_agents if issubclass(x[1], InternalAgent)]
36                         internal_agents.remove(('InternalAgent', InternalAgent)) 
37                         
38                         if len(s) != 2:
39                                 sys.stderr.write(sys.argv[0] + " : '@internal' should be followed by ':' and an agent name\n")
40                                 sys.stderr.write(sys.argv[0] + " : Choices are: " + str(map(lambda e : e[0], internal_agents)) + "\n")
41                                 return None
42
43                         for a in internal_agents:
44                                 if s[1] == a[0]:
45                                         return a[1](name, colour)
46                         
47                         sys.stderr.write(sys.argv[0] + " : Can't find an internal agent matching \"" + s[1] + "\"\n")
48                         sys.stderr.write(sys.argv[0] + " : Choices are: " + str(map(lambda e : e[0], internal_agents)) + "\n")
49                         return None
50                         
51
52         else:
53                 return ExternalAgent(name, colour)
54                         
55
56
57 # The main function! It does the main stuff!
58 def main(argv):
59
60         # Apparently python will silently treat things as local unless you do this
61         # Anyone who says "You should never use a global variable" can die in a fire
62         global game
63         global graphics
64         
65         global turn_delay
66         global agent_timeout
67         global log_files
68         global src_file
69         global graphics_enabled
70         global always_reveal_states
71
72         max_moves = None
73         src_file = None
74         
75         style = "quantum"
76         colour = "white"
77
78         # Get the important warnings out of the way
79         if platform.system() == "Windows":
80                 sys.stderr.write(sys.argv[0] + " : Warning - You are using " + platform.system() + "\n")
81                 if platform.release() == "Vista":
82                         sys.stderr.write(sys.argv[0] + " : God help you.\n")
83         
84
85         players = []
86         i = 0
87         while i < len(argv)-1:
88                 i += 1
89                 arg = argv[i]
90                 if arg[0] != '-':
91                         p = make_player(arg, colour)
92                         if not isinstance(p, Player):
93                                 sys.stderr.write(sys.argv[0] + " : Fatal error creating " + colour + " player\n")
94                                 return 100
95                         players.append(p)
96                         if colour == "white":
97                                 colour = "black"
98                         elif colour == "black":
99                                 pass
100                         else:
101                                 sys.stderr.write(sys.argv[0] + " : Too many players (max 2)\n")
102                         continue
103
104                 # Option parsing goes here
105                 if arg[1] == '-' and arg[2:] == "classical":
106                         style = "classical"
107                 elif arg[1] == '-' and arg[2:] == "quantum":
108                         style = "quantum"
109                 elif arg[1] == '-' and arg[2:] == "reveal":
110                         always_reveal_states = True
111                 elif (arg[1] == '-' and arg[2:] == "graphics"):
112                         graphics_enabled = not graphics_enabled
113                 elif (arg[1] == '-' and arg[2:].split("=")[0] == "file"):
114                         # Load game from file
115                         if len(arg[2:].split("=")) == 1:
116                                 src_file = sys.stdin
117                         else:
118                                 f = arg[2:].split("=")[1]
119                                 if f[0:7] == "http://":
120                                         src_file = HttpReplay(f)
121                                 else:
122                                         src_file = open(f.split(":")[0], "r", 0)
123
124                                         if len(f.split(":")) == 2:
125                                                 max_moves = int(f.split(":")[1])
126
127                 elif (arg[1] == '-' and arg[2:].split("=")[0] == "log"):
128                         # Log file
129                         if len(arg[2:].split("=")) == 1:
130                                 log_files.append(LogFile(sys.stdout))
131                         else:
132                                 f = arg[2:].split("=")[1]
133                                 if f[0] == '@':
134                                         log_files.append(ShortLog(f[1:]))
135                                 else:
136                                         log_files.append(LogFile(open(f, "w", 0)))
137                 elif (arg[1] == '-' and arg[2:].split("=")[0] == "delay"):
138                         # Delay
139                         if len(arg[2:].split("=")) == 1:
140                                 turn_delay = 0
141                         else:
142                                 turn_delay = float(arg[2:].split("=")[1])
143
144                 elif (arg[1] == '-' and arg[2:].split("=")[0] == "timeout"):
145                         # Timeout
146                         if len(arg[2:].split("=")) == 1:
147                                 agent_timeout = -1
148                         else:
149                                 agent_timeout = float(arg[2:].split("=")[1])
150                                 
151                 elif (arg[1] == '-' and arg[2:] == "help"):
152                         # Help
153                         os.system("less data/help.txt") # The best help function
154                         return 0
155
156
157         # Create the board
158         
159         # Construct a GameThread! Make it global! Damn the consequences!
160                         
161         if src_file != None:
162                 # Hack to stop ReplayThread from exiting
163                 #if len(players) == 0:
164                 #       players = [HumanPlayer("dummy", "white"), HumanPlayer("dummy", "black")]
165
166                 # Normally the ReplayThread exits if there are no players
167                 # TODO: Decide which behaviour to use, and fix it
168                 end = (len(players) == 0)
169                 if end:
170                         players = [Player("dummy", "white"), Player("dummy", "black")]
171                 elif len(players) != 2:
172                         sys.stderr.write(sys.argv[0] + " : Usage " + sys.argv[0] + " white black\n")
173                         if graphics_enabled:
174                                 sys.stderr.write(sys.argv[0] + " : (You won't get a GUI, because --file was used, and the author is lazy)\n")
175                         return 44
176                 game = ReplayThread(players, src_file, end=end, max_moves=max_moves)
177         else:
178                 board = Board(style)
179                 board.max_moves = max_moves
180                 game = GameThread(board, players) 
181
182
183
184
185         # Initialise GUI
186         if graphics_enabled == True:
187                 try:
188                         graphics = GraphicsThread(game.board, grid_sz = [64,64]) # Construct a GraphicsThread!
189
190                 except Exception,e:
191                         graphics = None
192                         sys.stderr.write(sys.argv[0] + " : Got exception trying to initialise graphics\n"+str(e.message)+"\nDisabled graphics\n")
193                         graphics_enabled = False
194
195         # If there are no players listed, display a nice pretty menu
196         if len(players) != 2:
197                 if graphics != None:
198                         players = graphics.SelectPlayers(players)
199                 else:
200                         sys.stderr.write(sys.argv[0] + " : Usage " + sys.argv[0] + " white black\n")
201                         return 44
202
203         # If there are still no players, quit
204         if players == None or len(players) != 2:
205                 sys.stderr.write(sys.argv[0] + " : Graphics window closed before players chosen\n")
206                 return 45
207
208
209         # Wrap NetworkSender players around original players if necessary
210         for i in range(len(players)):
211                 if isinstance(players[i], NetworkReceiver):
212                         players[i].board = board # Network players need direct access to the board
213                         for j in range(len(players)):
214                                 if j == i:
215                                         continue
216                                 if isinstance(players[j], NetworkSender) or isinstance(players[j], NetworkReceiver):
217                                         continue
218                                 players[j] = NetworkSender(players[j], players[i].address)
219                                 players[j].board = board
220
221         # Connect the networked players
222         for p in players:
223                 if isinstance(p, NetworkSender) or isinstance(p, NetworkReceiver):
224                         if graphics != None:
225                                 graphics.board.display_grid(graphics.window, graphics.grid_sz)
226                                 graphics.message("Connecting to " + p.colour + " player...")
227                         p.connect()
228
229         
230         # If using windows, select won't work; use horrible TimeoutPlayer hack
231         if agent_timeout > 0:
232                 if platform.system() == "Windows":
233                         for i in range(len(players)):
234                                 if isinstance(players[i], ExternalAgent) or isinstance(players[i], InternalAgent):
235                                         players[i] = TimeoutPlayer(players[i], agent_timeout)
236
237                 else:
238                         warned = False
239                         # InternalAgents get wrapped to an ExternalAgent when there is a timeout
240                         # This is not confusing at all.
241                         for i in range(len(players)):
242                                 if isinstance(players[i], InternalAgent):
243                                                 players[i] = ExternalWrapper(players[i])
244
245
246                 
247
248
249
250
251         log_init(game.board, players)
252         
253         
254         if graphics != None:
255                 game.start() # This runs in a new thread
256                 graphics.run()
257                 if game.is_alive():
258                         game.join()
259         
260
261                 error = game.error + graphics.error
262         else:
263                 game.run()
264                 error = game.error
265         
266
267         for l in log_files:
268                 l.close()
269
270         if src_file != None and src_file != sys.stdin:
271                 src_file.close()
272
273         return error
274
275 # This is how python does a main() function...
276 if __name__ == "__main__":
277         try:
278                 sys.exit(main(sys.argv))
279         except KeyboardInterrupt:
280                 sys.stderr.write(sys.argv[0] + " : Got KeyboardInterrupt. Stopping everything\n")
281                 if isinstance(graphics, StoppableThread):
282                         graphics.stop()
283                         graphics.run() # Will clean up graphics because it is stopped, not run it (a bit dodgy)
284
285                 if isinstance(game, StoppableThread):
286                         game.stop()
287                         if game.is_alive():
288                                 game.join()
289
290                 sys.exit(102)
291

UCC git Repository :: git.ucc.asn.au