It works!
[progcomp2013.git] / qchess / qchess.py
index 32e2c60..d2ec1bb 100755 (executable)
@@ -1204,15 +1204,19 @@ import datetime
 import urllib2
 
 class LogFile():
-       def __init__(self, file_name):  
+       def __init__(self, log):        
                
-               self.log = open(file_name, "w", 0)
+               self.log = log
+               self.logged = []
+               self.log.write("# Log starts " + str(datetime.datetime.now()) + "\n")
 
        def write(self, s):
-               self.log.write(str(datetime.datetime.now()) + " : " + s + "\n")
+               now = datetime.datetime.now()
+               self.log.write(str(now) + " : " + s + "\n")
+               self.logged.append((now, s))
 
        def setup(self, board, players):
-               self.log.write("# Log starts " + str(datetime.datetime.now()) + "\n")
+               
                for p in players:
                        self.log.write("# " + p.colour + " : " + p.name + "\n")
                
@@ -1224,54 +1228,100 @@ class LogFile():
 
                self.log.write("# Start game\n")
 
+       def close(self):
+               self.log.write("# EOF\n")
+               self.log.close()
+
 class HttpLog(LogFile):
        def __init__(self, file_name):
-               LogFile.__init__(self, file_name)
+               LogFile.__init__(self, open(file_name, "w", 0))
                self.file_name = file_name
+               self.phase = 0
 
        def write(self, s):
-               self.log.close()
-               self.log = open(self.file_name, "w", 0)
+               now = datetime.datetime.now()
+               self.logged.append((now, s))
+               
+               if self.phase == 0:
+                       self.log.close()
+                       self.log = open(self.file_name, "w", 0)
+                       self.log.write("# Short log updated " + str(datetime.datetime.now()) + "\n")    
+                       LogFile.setup(self, game.board, game.players)
 
-               LogFile.setup(self, game.board, game.players)
+               elif self.phase == 1:
+                       for message in self.logged[len(self.logged)-2:]:
+                               self.log.write(str(message[0]) + " : " + message[1] + "\n")
 
-               LogFile.write(self, s)
+               self.phase = (self.phase + 1) % 2               
+               
+       def close(self):
+               self.log.write("# EOF\n")
+               self.log.close()
                
 
 class HeadRequest(urllib2.Request):
        def get_method(self):
                return "HEAD"
-               
-class HttpReplay():
+
+class HttpGetter(StoppableThread):
        def __init__(self, address):
-               self.read_setup = False
-               self.log = urllib2.urlopen(address)
+               StoppableThread.__init__(self)
                self.address = address
+               self.log = urllib2.urlopen(address)
+               self.lines = []
+               self.lock = threading.RLock() #lock for access of self.state
+               self.cond = threading.Condition() # conditional
 
-       def readline(self):
-               
-               line = self.log.readline()
-               sys.stderr.write(sys.argv[0] + " : " + str(self.__class__.__name__) + " read \""+str(line.strip("\r\n")) + "\" from address " + str(self.address) + "\n")
-               if line == "":
-                       sys.stderr.write(sys.argv[0] + " : " + str(self.__class__.__name__) + " retrieving from address " + str(self.address) + "\n")
-                       date_mod = datetime.datetime.strptime(self.log.headers['last-modified'], "%a, %d %b %Y %H:%M:%S GMT")
-                       self.log.close()
-
-                       next_log = urllib2.urlopen(HeadRequest(self.address))
-                       date_new = datetime.datetime.strptime(next_log.headers['last-modified'], "%a, %d %b %Y %H:%M:%S GMT")
-                       while date_new <= date_mod:
+       def run(self):
+               while not self.stopped():
+                       line = self.log.readline()
+                       if line == "":
+                               date_mod = datetime.datetime.strptime(self.log.headers['last-modified'], "%a, %d %b %Y %H:%M:%S GMT")
+                               self.log.close()
+       
                                next_log = urllib2.urlopen(HeadRequest(self.address))
                                date_new = datetime.datetime.strptime(next_log.headers['last-modified'], "%a, %d %b %Y %H:%M:%S GMT")
+                               while date_new <= date_mod and not self.stopped():
+                                       next_log = urllib2.urlopen(HeadRequest(self.address))
+                                       date_new = datetime.datetime.strptime(next_log.headers['last-modified'], "%a, %d %b %Y %H:%M:%S GMT")
+                               if self.stopped():
+                                       break
 
-                       self.log = urllib2.urlopen(self.address)
-                       game.setup()
-                       line = self.log.readline()
+                               self.log = urllib2.urlopen(self.address)
+                               line = self.log.readline()
+
+                       self.cond.acquire()
+                       self.lines.append(line)
+                       self.cond.notifyAll()
+                       self.cond.release()
 
+                       #sys.stderr.write(" HttpGetter got \'" + str(line) + "\'\n")
+
+               self.log.close()
+                               
+                               
+       
+               
+               
+class HttpReplay():
+       def __init__(self, address):
+               self.getter = HttpGetter(address)
+               self.getter.start()
+               
+       def readline(self):
+               self.getter.cond.acquire()
+               while len(self.getter.lines) == 0:
+                       self.getter.cond.wait()
+                       
+               result = self.getter.lines[0]
+               self.getter.lines = self.getter.lines[1:]
+               self.getter.cond.release()
 
-               return line
+               return result
+                       
                        
        def close(self):
-               self.log.close()
+               self.getter.stop()
                                                
 def log(s):
        if log_file != None:
@@ -1356,12 +1406,15 @@ class GameThread(StoppableThread):
                                        if self.stopped():
                                                break
 
-                                       self.board.update_move(x, y, x2, y2)
                                        result = str(x) + " " + str(y) + " -> " + str(x2) + " " + str(y2)
+                                       log(result)
+
+                                       self.board.update_move(x, y, x2, y2)
+                                       
                                        for p2 in self.players:
                                                p2.update(result) # Inform players of what happened
 
-                                       log(result)
+                                                                               
 
                                        if isinstance(graphics, GraphicsThread):
                                                with graphics.lock:
@@ -1407,7 +1460,8 @@ class GameThread(StoppableThread):
 
                log(self.final_result)
 
-               graphics.stop()
+               if isinstance(graphics, GraphicsThread):
+                       graphics.stop()
 
        
 # A thread that replays a log file
@@ -1420,108 +1474,133 @@ class ReplayThread(GameThread):
                self.line_number = 0
                self.end = end
 
-               self.setup()
+               self.reset_board(self.src.readline())
 
-       def setup(self):
-               sys.stderr.write("setup called for ReplayThread\n")
-               if True:
-                       while self.src.readline().strip(" \r\n") != "# Initial board":
-                               self.line_number += 1
+       def reset_board(self, line):
+               pieces = {"white" : [], "black" : []}
+               king = {"white" : None, "black" : None}
+               grid = [[None] * w for _ in range(h)]
+               for x in range(w):
+                       for y in range(h):
+                               self.board.grid[x][y] = None
+               while line != "# Start game":
+                       if line[0] == "#":
+                               line = self.src.readline().strip(" \r\n")
+                               continue
+
+                       tokens = line.split(" ")
+                       [x, y] = map(int, tokens[len(tokens)-1].split(","))
+                       current_type = tokens[1]
+                       types = map(lambda e : e.strip("'[], "), (tokens[2]+tokens[3]).split(","))
+                       
+                       target = Piece(tokens[0], x, y, types)
+                       target.current_type = current_type
+                       
+                       try:
+                               target.choice = types.index(current_type)
+                       except:
+                               target.choice = -1
+
+                       pieces[tokens[0]].append(target)
+                       if target.current_type == "king":
+                               king[tokens[0]] = target
+                       grid[x][y] = target
                
                        line = self.src.readline().strip(" \r\n")
-                       
-                       while line != "# Start game":
-                               #print "Reading line " + str(line)
-                               self.line_number += 1
-                               [x,y] = map(int, line.split("at")[1].strip(" \r\n").split(","))
-                               colour = line.split(" ")[0]
-                               current_type = line.split(" ")[1]
-                               types = map(lambda e : e.strip(" [],'"), line.split(" ")[2:4])
-                               p = Piece(colour, x, y, types)
-                               if current_type != "unknown":
-                                       p.current_type = current_type
-                                       p.choice = types.index(current_type)
-
-                               self.board.pieces[colour].append(p)
-                               self.board.grid[x][y] = p
-                               if current_type == "king":
-                                       self.board.king[colour] = p
 
-                               line = self.src.readline().strip(" \r\n")
-                               
-               #except Exception, e:
-               #       raise Exception("FILE line: " + str(self.line_number) + " \""+str(line)+"\"") #\n" + e.message)
+               self.board.pieces = pieces
+               self.board.king = king
+               self.board.grid = grid
+
+               # Update the player's boards
        
        def run(self):
-               i = 0
-               phase = 0
-               count = 0
+               move_count = 0
                line = self.src.readline().strip(" \r\n")
                while line != "# EOF":
-                       sys.stderr.write(sys.argv[0] + " : " + str(self.__class__.__name__) + " read: " + str(line) + "\n")
-                       count += 1
-                       if self.max_lines != None and count > self.max_lines:
-                               self.stop()
-
                        if self.stopped():
                                break
 
-                       with self.lock:
-                               self.state["turn"] = self.players[i]
+                                       
 
-                       line = line.split(":")
-                       result = line[len(line)-1].strip(" \r\n")
-                       
+                       if line[0] == '#':
+                               line = self.src.readline().strip(" \r\n")
+                               continue
+
+                       tokens = line.split(" ")
+                       if tokens[0] == "white" or tokens[0] == "black":
+                               self.reset_board(line)
+                               line = self.src.readline().strip(" \r\n")
+                               continue
 
+                       move = line.split(":")
+                       move = move[len(move)-1].strip(" \r\n")
+                       tokens = move.split(" ")
+                       
+                       
                        try:
-                               self.board.update(result)
-                       except Exception, e:
-                               sys.stderr.write("Exception! " + str(e.message) + "\n")
-                               self.final_result = result
+                               [x,y] = map(int, tokens[0:2])
+                       except:
                                self.stop()
                                break
 
-                       log(result)
+                       log(move)
 
-                       [x,y] = map(int, result.split(" ")[0:2])
                        target = self.board.grid[x][y]
+                       with self.lock:
+                               if target.colour == "white":
+                                       self.state["turn"] = self.players[0]
+                               else:
+                                       self.state["turn"] = self.players[1]
+                       
+                       move_piece = (tokens[2] == "->")
+                       if move_piece:
+                               [x2,y2] = map(int, tokens[len(tokens)-2:])
 
                        if isinstance(graphics, GraphicsThread):
-                               if phase == 0:
+                               with graphics.lock:
+                                       graphics.state["select"] = target
+                                       
+                       if not move_piece:
+                               self.board.update_select(x, y, int(tokens[2]), tokens[len(tokens)-1])
+                               if isinstance(graphics, GraphicsThread):
                                        with graphics.lock:
                                                graphics.state["moves"] = self.board.possible_moves(target)
-                                               graphics.state["select"] = target
-
-                                       if self.end:
-                                               time.sleep(turn_delay)
-
-                               elif phase == 1:
-                                       [x2,y2] = map(int, result.split(" ")[3:5])
+                                       time.sleep(turn_delay)
+                       else:
+                               self.board.update_move(x, y, x2, y2)
+                               if isinstance(graphics, GraphicsThread):
                                        with graphics.lock:
                                                graphics.state["moves"] = [[x2,y2]]
-
-                                       if self.end:
-                                               time.sleep(turn_delay)
-
+                                       time.sleep(turn_delay)
                                        with graphics.lock:
                                                graphics.state["select"] = None
-                                               graphics.state["dest"] = None
                                                graphics.state["moves"] = None
-                                               
+                                               graphics.state["dest"] = None
+                       
 
+                       
+                       
+                       
+                       for p in self.players:
+                               p.update(move)
 
+                       line = self.src.readline().strip(" \r\n")
                        
+                       
+                                       
+                                       
+                                               
+                                               
 
-                       for p in self.players:
-                               p.update(result)
                        
-                       phase = (phase + 1) % 2
-                       if phase == 0:
-                               i = (i + 1) % 2
+                                       
+
+
                        
-                       line = self.src.readline().strip(" \r\n")
 
-               sys.stderr.write(sys.argv[0] + " : " + str(self.__class__.__name__) + " finished...\n")
+                               
+                       
 
                if self.max_lines != None and self.max_lines > count:
                        sys.stderr.write(sys.argv[0] + " : Replaying from file; stopping at last line (" + str(count) + ")\n")
@@ -2168,13 +2247,13 @@ def main(argv):
                elif (arg[1] == '-' and arg[2:].split("=")[0] == "log"):
                        # Log file
                        if len(arg[2:].split("=")) == 1:
-                               log_file = sys.stdout
+                               log_file = LogFile(sys.stdout)
                        else:
                                f = arg[2:].split("=")[1]
                                if f[0] == '@':
                                        log_file = HttpLog(f[1:])
                                else:
-                                       log_file = LogFile(f)
+                                       log_file = LogFile(open(f, "w", 0))
                elif (arg[1] == '-' and arg[2:].split("=")[0] == "delay"):
                        # Delay
                        if len(arg[2:].split("=")) == 1:
@@ -2304,7 +2383,6 @@ def main(argv):
        
 
        if log_file != None and log_file != sys.stdout:
-               log_file.write("# EOF\n")
                log_file.close()
 
        if src_file != None and src_file != sys.stdin:
@@ -2330,4 +2408,4 @@ if __name__ == "__main__":
                sys.exit(102)
 
 # --- main.py --- #
-# EOF - created from make on Wed Jan 30 17:20:26 WST 2013
+# EOF - created from make on Wed Jan 30 21:00:29 WST 2013

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