Created
August 9, 2017 13:54
-
-
Save moonblade/76fe0a006fe0347742d1bde5e32bd38a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from random import randint | |
class Logic: | |
def __init__(self, board, me): | |
self.board = board | |
self.me = me | |
self.opp = 1 if me==2 else 2 | |
def clean(self,move): | |
p1=(int(move[1]),int(move[3])) | |
p2=(int(move[7]),int(move[9])) | |
if(p1[0]>p2[0] or p1[1]>p2[1]): | |
p1,p2=p2,p1 | |
return p1,p2 | |
def opponent_move(self,move): | |
p1, p2 = self.clean(move) | |
self.board.move(self.opp,p1,p2) | |
def myMove(self): | |
x=randint(0,19) | |
y=randint(0,9) | |
while(not self.board.isFree((x,y))): | |
x=randint(0,19) | |
y=randint(0,9) | |
self.board.moveBP(self.me, (x, y)); | |
return self.toString(self.board.boardToPoint((x,y))) | |
def print(self): | |
self.board.print() | |
def toString(self, point): | |
return (str(point[0])+","+str(point[1])).replace(" ","") | |
class Board: | |
def __init__(self): | |
self.boardSize = 10 | |
self.board = [[-1 if (x==self.boardSize-1 and y%2==0) else 0 for x in range(self.boardSize)] for y in range(self.boardSize*2-1)] | |
def print(self): | |
for x in range(len(self.board)): | |
print(self.board[x]) | |
print() | |
def move(self, player, p1, p2): | |
point = self.pointToBoard(p1, p2) | |
self.moveBP(player,point) | |
def moveBP(self, player, bp): | |
self.board[bp[0]][bp[1]]=player | |
def isFree(self, p): | |
return self.board[p[0]][p[1]]==0 | |
def pointToBoard(self, p1, p2): | |
if(p1[0]<p2[0]): | |
return(2*p1[0]+1,p1[1]) | |
elif(p1[1]<p2[1]): | |
return(2*p1[0],p1[1]) | |
def boardToPoint(self, bp): | |
if(bp[0]%2==1): | |
# vertical | |
return ((bp[0]//2,bp[1]),(bp[0]//2+1,bp[1])) | |
else: | |
# horizontal | |
return ((bp[0]//2,bp[1]),(bp[0]//2,bp[1]+1)) | |
if __name__=="__main__": | |
b=Board() | |
string=input().split() | |
if(string[0]=="START"): | |
l=Logic(b,int(string[1])); | |
else: | |
l=Logic(b,1); | |
while(True): | |
string=input().split() | |
if(string[0]=="YOUR_MOVE"): | |
print(l.myMove()) | |
elif(string[0]=="OPPONENT_MOVE"): | |
l.opponent_move(string[1]) | |
elif(string[0]=="END"): | |
break; | |
# l.print(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment