#!/usr/bin/python -u ''' simulate.py - simulation script for the 2012 UCC Programming Competition NOTE: This is not the manager program for a stratego game It merely calls the manager program as appropriate, and records results Plays exactly ONE round, but does not overwrite previously played rounds eg: run once to generate round1.results, twice to generate round2.results etc Also generates total.scores based on results from every round. Now (sortof) generates .html files to display results in a prettiful manner. author Sam Moore (matches) [SZM] website http://matches.ucc.asn.au/stratego email progcomp@ucc.asn.au or matches@ucc.asn.au git git.ucc.asn.au/progcomp2012.git ''' import os import sys from time import time #Global variables/arguments baseDirectory = "../.." #Base directory for results, logs, agents nGames = 2 #Number of games played by each agent against each opponent. Half will be played as RED, half as BLUE. If nGames <= 1, then no games will be played (useful for dry run?) nRounds = 1 if len(sys.argv) >= 2: nRounds = int(sys.argv[1]) if len(sys.argv) >= 3: nGames = int(sys.argv[2]) if nGames % 2 != 0: print "Warning: nGames should be even. "+str(nGames)+" specified, but only " + str(int(nGames/2) * 2)+" will be played!" if len(sys.argv) >= 4: baseDirectory = sys.argv[3] if len(sys.argv) >= 6: print "Useage: " +sys.argv[0] + " [nRounds=1] [nGames=10] [baseDirectory=\""+baseDirectory+"\"] [managerPath=baseDirectory+\"/judge/manager/stratego\"]" sys.exit(1) resultsDirectory = baseDirectory+"/results/" #Where results will go (results are in the form of text files of agent names and scores) logDirectory = baseDirectory+"/log/" #Where log files go (direct output of manager program) agentsDirectory = baseDirectory+"/agents/" #Where agents are found (each agent has its own subdirectory within this directory) managerPath = baseDirectory+"/judge/manager/stratego" #Path to the executable that plays the games if len(sys.argv) >= 5: managerPath = sys.argv[5] #Score dictionary - Tuple is of the form: (end score, other score, other result) where end is the player on whose turn the result occurs, other is the other player, other result indicates what to record the outcome as for the other player. scores = {"VICTORY":(3,1, "DEFEAT"), "DEFEAT":(1,3, "VICTORY"), "SURRENDER":(1,3, "VICTORY"), "DRAW":(2,2, "DRAW"), "DRAW_DEFAULT":(1,1, "DRAW_DEFAULT"), "ILLEGAL":(-1,2, "DEFAULT"), "DEFAULT":(2,-1, "ILLEGAL"), "BOTH_ILLEGAL":(-1,-1, "BOTH_ILLEGAL"), "INTERNAL_ERROR":(0,0, "INTERNAL_ERROR"), "BAD_SETUP":(0,0,"BAD_SETUP")} #Verbose - print lots of useless stuff about what you are doing (kind of like matches talking on irc...) verbose = True #Check the manager program exists TODO: And is executable! if os.path.exists(managerPath) == False: print "Manager program at \""+managerPath+"\" doesn't exist!" sys.exit(1) #Make necessary directories if os.path.exists(resultsDirectory) == False: os.mkdir(resultsDirectory) #Make the results directory if it didn't exist #Identify the round number by reading the results directory totalRounds = len(os.listdir(resultsDirectory)) + 1 if totalRounds > 1: totalRounds -= 1 if os.path.exists(logDirectory) == False: os.mkdir(logDirectory) #Make the log directory if it didn't exist startTime = time() #Record time at which simulation starts if verbose: if nRounds > 1: print "Simulating " + str(nRounds) + " rounds (" + str(totalRounds) + " to " + str(totalRounds + nRounds-1) + ")" else: print "Simulating one round." print "" print "Identifying possible agents in \""+agentsDirectory+"\"" #Get all agent names from agentsDirectory #TODO: Move this part outside the loop? It only has to happen once agentNames = os.listdir(agentsDirectory) agents = [] for name in agentNames: if verbose: sys.stdout.write("Scan \""+name+"\"... ") if os.path.isdir(agentsDirectory+name) == False: #Remove non-directories if verbose: sys.stdout.write(" Invalid! (Not a directory)\n") continue if os.path.exists(agentsDirectory+name+"/info") == False: #Try and find the special "info" file in each directory; ignore if it doesn't exist if verbose: sys.stdout.write(" Invalid! (No \"info\" file found)\n") continue agentExecutable = agentsDirectory+name+"/"+(open(agentsDirectory+name+"/info").readline().strip()) if os.path.exists(agentExecutable) == False: if verbose: sys.stdout.write(" Invalid! (Path: \""+agentExecutable+"\" does not exist!)\n") continue if verbose: sys.stdout.write(" Valid! (Path: \""+agentExecutable+"\")\n") #Convert array of valid names into array of dictionaries containing information about each agent #I'm starting to like python... agents.append({"name":name, "path":agentExecutable,"score":[0], "totalScore":0, "VICTORY":[], "DEFEAT":[], "DRAW":[], "ILLEGAL":[], "INTERNAL_ERROR":[], "ALL":[]}) if len(agents) == 0: print "Couldn't find any agents! Check paths (Edit this script) or generate \"info\" files for agents." sys.exit(0) if verbose: print "Total: " + str(len(agents)) + " valid agents found (From "+str(len(agentNames))+" possibilities)" print "" #Prepare the pretty .html files if they don't exist htmlDir = resultsDirectory + "pretty/" if os.path.exists(htmlDir) == False: os.mkdir(htmlDir) if os.path.exists(htmlDir) == False: print "Couldn't create directory \""+htmlDir+"\"." sys.exit(1) for agent in agents: if os.path.exists(htmlDir+agent["name"] + ".html") == False: agentFile = open(htmlDir+agent["name"] + ".html", "w") agentFile.write("\n
\n