summaryrefslogtreecommitdiff
path: root/player_rand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'player_rand.cpp')
-rw-r--r--player_rand.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/player_rand.cpp b/player_rand.cpp
new file mode 100644
index 0000000..a672f18
--- /dev/null
+++ b/player_rand.cpp
@@ -0,0 +1,31 @@
+#include <iostream>
+#include <string>
+#include <sys/time.h>
+#include "common.h"
+
+using namespace std;
+
+int main(void){
+ struct timeval tv;
+ gettimeofday(&tv,NULL);
+ srand(tv.tv_sec*1000000+tv.tv_usec);
+
+ Board bd;
+ char c;
+ Move mv;
+ cin>>c; cin.ignore(1024,'\n');
+ int me=c-'A';
+ int x,y,i;
+ for(int turnidx=me;;turnidx+=NPLAYERS){
+ c=cin.peek();
+ if(c=='q'||c=='Q')break;
+ for(i=me+1;i%NPLAYERS!=me;i++){
+ cin>>x>>y;
+ if(x!=-1&&y!=-1)bd.put(x,y,i%NPLAYERS);
+ }
+ cin.ignore(1024,'\n');
+ mv=randommove(bd,me);
+ bd.put(mv.idx(),me);
+ cout<<mv.x<<' '<<mv.y<<endl;
+ }
+}