diff options
author | Matt Strapp <strap012@umn.edu> | 2021-04-29 18:52:47 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-04-29 18:52:47 -0500 |
commit | 137f10a4f2c3a8ba2caba966daa2fbeded5ebdc4 (patch) | |
tree | 3648091a0792e05a1fd8ad16bda43285390ce8eb | |
parent | Change hardcode (diff) | |
download | csci4511w-137f10a4f2c3a8ba2caba966daa2fbeded5ebdc4.tar csci4511w-137f10a4f2c3a8ba2caba966daa2fbeded5ebdc4.tar.gz csci4511w-137f10a4f2c3a8ba2caba966daa2fbeded5ebdc4.tar.bz2 csci4511w-137f10a4f2c3a8ba2caba966daa2fbeded5ebdc4.tar.lz csci4511w-137f10a4f2c3a8ba2caba966daa2fbeded5ebdc4.tar.xz csci4511w-137f10a4f2c3a8ba2caba966daa2fbeded5ebdc4.tar.zst csci4511w-137f10a4f2c3a8ba2caba966daa2fbeded5ebdc4.zip |
Do powershell???
Diffstat (limited to '')
-rw-r--r-- | start.ps1 | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/start.ps1 b/start.ps1 new file mode 100644 index 0000000..a6f26dc --- /dev/null +++ b/start.ps1 @@ -0,0 +1,59 @@ +param ( + [Parameter(Mandatory=$true)][int]$s, + [Parameter(Mandatory=$true)][int]$w, + [switch]$h +) +if ($h) { + Write-Output "Usage:" + Write-Output "-s (Server port)" + Write-Output "-w (Agent port start)" + Write-Output "-h Display this message" +} else { + python3 ./python/dotsandboxes/dotsandboxesserver.py $s & + Write-Output "Web server running on http://127.0.0.1:$s" + for ($i=1 ; $i -le 2 ; $i++) { + Write-Output "Available Agents:" + Write-Output "1: Random" + Write-Output "2: Monte Carlo Tree Search" + Write-Output "3: Alpha-Beta Pruning/Minimax" + $w++ + $agent = Read-Host "Agent" + switch ($agent) { + 1 { + Write-Output "Random Agent running on ws://127.0.0.1:$w" + python3 ./python/dotsandboxes/dotsandboxesagent.py $w & + } + 2 { + Write-Output "MCTS Agent running on ws://127.0.0.1:$w" + python3 ./python/agent_MCTS.py $w & + } + 3 { + Write-Output "AB Agent running on ws://127.0.0.1:$w" + python3 ./python/agent_AB.py $w & + } + default {Write-Output "Invalid value. Program will now probably break."} + } + } + $log = Read-Host "Do you want to run the logger? (Y/N)" + switch ($log) { + "Y" { + Write-Output "" + $c = Read-Host "Columns of board" + $r = Read-Host "Rows of board" + $n = Read-Host "Number of games to run" + $o = Read-Host "Output file name (please include '.csv')" + Write-Output "" + $trash = Read-Host "This will now run evaluate.py with the given arguments in the foreground. Hit enter to confirm." + $p1 = $w - 1 + # Write-Output "python3 python/evaluate.py -c $c -r $r -n $n -o $o ws://127.0.0.1:$w ws://127.0.0.1:$p1" + python3 ./python/evaluate.py -c $c -r $r -n $n -o $o ws://127.0.0.1:$w ws://127.0.0.1:$p1 | Out-Null + Write-Output "" + Write-Output "Evaluate has finished! Check the output in $o" + } + default { + Write-Output "Web interface available at http://127.0.0.1:$s" + }} +# Probably a bad idea +$trash = Read-Host "Press enter to kill all python3 instances." +# Stop-Job -Name "python3" +}
\ No newline at end of file |