.
This commit is contained in:
parent
b65e0109d4
commit
5c5e2eac71
|
@ -130,15 +130,8 @@ function playingAT(col){
|
||||||
|
|
||||||
//diagonal \
|
//diagonal \
|
||||||
/*
|
/*
|
||||||
5|X| | | | | |
|
* diagonal is an affin function:
|
||||||
4| |X| | | | |
|
* y=-x+b
|
||||||
3| | |X| | | |
|
|
||||||
2| | | |X| | |
|
|
||||||
1| | | | |X| |
|
|
||||||
0|1|2|3|4|5|X|
|
|
||||||
|
|
||||||
diagonal is an affin function:
|
|
||||||
y=-x+b
|
|
||||||
*/
|
*/
|
||||||
//find b
|
//find b
|
||||||
var b = parseInt(y + x);
|
var b = parseInt(y + x);
|
||||||
|
@ -165,9 +158,6 @@ function playingAT(col){
|
||||||
wins(currentPlayer);
|
wins(currentPlayer);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//diagonal / affin function like y=x+b
|
//diagonal / affin function like y=x+b
|
||||||
b = parseInt(y - x);
|
b = parseInt(y - x);
|
||||||
if( b > -1){
|
if( b > -1){
|
||||||
|
@ -235,8 +225,6 @@ function play(player){
|
||||||
addLog('player ' + player + ' made a non confom response: ' + xhr.responseText);
|
addLog('player ' + player + ' made a non confom response: ' + xhr.responseText);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var t = new RegExp('^[0-6]$');
|
var t = new RegExp('^[0-6]$');
|
||||||
if (t.test(colTarget)){
|
if (t.test(colTarget)){
|
||||||
playingAT(colTarget);
|
playingAT(colTarget);
|
||||||
|
@ -304,9 +292,7 @@ function startGame(){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
play(1);
|
play(1);
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user