'QB64 version 2017 1106/82 (the day before they switched to version 1.2)
'bplus 2018-01-23
CONST greenh&
= &HFF00FF00 CONST blueh&
= &HFF0000FF
DIM SHARED board$
(2, 2) 'store X and O here 3x3
winner$
= "": count
= 0: done
= 0:
ERASE board$
'get player's choice
INPUT "Player, enter symbol to use for your squares: (nothing quits) "; player$
IF player$
= "AI" THEN AI$
= "#1 AI" ELSE AI$
= "AI"
'who plays first
INPUT "And now please enter y for yes, if you want to go first: "; first$
IF first$
= "y" THEN turn$
= player$
ELSE turn$
= AI$
'prep, make grid according to size of longest participant string
sq = 16 * (s + 2)
xoff = (xmax - 3 * sq) / 2
yoff = (ymax - 3 * sq) / 2
'make # grid once
LINE (sq
* i
+ xoff
, yoff
)-STEP(0, 3 * sq
) LINE (xoff
, sq
* i
+ yoff
)-STEP(3 * sq
, 0)
'take turns filling out the board until a winner$ is found or board is out of spaces
rc = AIchoice
bx
= rc
MOD 3: by
= INT(rc
/ 3) board$(bx, by) = AI$
_DELAY 1 'let player think AI is thinking count = count + 1
IF checkwin
THEN winner$
= AI$
turn$ = player$
'player's turn from mouse click
'this might NOT be too intuitive but proper mouse catching demands we wait for mouse button release
IF mb
THEN 'get last place mouse button was down WHILE mb
'left button down, wait for mouse button release before doing anything as a "click" 'this updates mx, my while waiting for button release
'board x and board y?
' board is offset by (xoff, yoff) = top left corner, so subtract these from mouse mx, my
' then divide by the size of the square (sq) to get the position in the board array
' check that position is inbounds of board array
bx
= INT((mx
- xoff
) / sq
): by
= INT((my
- yoff
) / sq
)
'now we have mouse pixels converted to board position of array
IF bx
>= 0 AND bx
<= 2 AND by
>= 0 AND by
<= 2 THEN 'caught mouse in a box! BEEP 'NO good! already clicked! 'OK it all checks out, update the board array and the screen display
board$(bx, by) = player$
count = count + 1
IF checkwin
THEN winner$
= player$
turn$ = AI$
BEEP 'you are clicking out of bounds of board! IF winner$
<> "" THEN done
= 1 IF done
= -1 THEN s$
= "Out of spaces." ELSE s$
= winner$
+ " is the winner!" s$ = "Wait 5 secs for next game..."
IF (board$
(0, i
) = board$
(1, i
) AND board$
(1, i
) = board$
(2, i
)) AND (board$
(2, i
) <> "") THEN checkwin
= 1:
EXIT SUB IF (board$
(i
, 0) = board$
(i
, 1) AND board$
(i
, 1) = board$
(i
, 2)) AND board$
(i
, 2) <> "" THEN checkwin
= 1:
EXIT SUB IF (board$
(0, 0) = board$
(1, 1) AND board$
(1, 1) = board$
(2, 2)) AND board$
(2, 2) <> "" THEN checkwin
= 1:
EXIT SUB IF (board$
(0, 2) = board$
(1, 1) AND board$
(1, 1) = board$
(2, 0)) AND board$
(2, 0) <> "" THEN checkwin
= 1
'test all moves to win
board$(c, r) = AI$
board$(c, r) = ""
AIchoice = 3 * r + c
board$(c, r) = ""
'still here? then no winning moves for AI, how about for player$
board$(c, r) = player$
board$(c, r) = ""
AIchoice = 3 * r + c 'spoiler move!
board$(c, r) = ""
'still here? no winning moves, no spoilers then is middle sq available
'still here still? how about a corner office?
'still here??? one of these has to go!