js 단순 오목 게임 실현
html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title> </title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<canvas id="chess" width="450px" height="450px"></canvas>
<script type="text/javascript" src="js/script.js" ></script>
</body>
</html>
css
canvas{
display: block;
margin: 50px auto;
box-shadow: -2px -2px 2px #EFEFEF,5px 5px 5px #B9B9B9;
}
js
var me = true;
var over = false;
var chessBox = [];
var wins = []; //
//
var myWin = [];
var computerWin = [];
for(i=0;i<15;i++){
chessBox[i]=[];
for(j=0;j<15;j++){
chessBox[i][j]=0;
}
}
for(var i=0;i<15;i++){
wins[i]=[];
for(var j=0;j<15;j++){
wins[i][j]=[];
}
}
var count =0;
//
for(var i=0;i<15;i++){
for(var j=0;j<11;j++){
// 1
// wins[0][0][0]=true;
// wins[0][1][0]=true;
// wins[0][2][0]=true;
// wins[0][3][0]=true;
// wins[0][4][0]=true;
// 2
// wins[0][1][1]=true;
// wins[0][2][1]=true;
// wins[0][3][1]=true;
// wins[0][4][1]=true;
// wins[0][5][1]=true;
for(var k=0; k<5;k++){
wins[i][j+k][count] = true;
}
count++;
}
}
//
for(var i=0;i<15;i++){
for(var j=0;j<11;j++){
for(var k=0; k<5;k++){
wins[j+k][i][count] = true;
}
count++;
}
}
//
for(var i=0;i<11;i++){
for(var j=0;j<11;j++){
for(var k=0; k<5;k++){
wins[i+k][j+k][count] = true;
}
count++;
}
}
//
for(var i=0;i<11;i++){
for(var j=14;j>3;j--){
for(var k=0; k<5;k++){
wins[i+k][j-k][count] = true;
}
count++;
}
}
console.log(count);
for (var i=0;i<count;i++) {
myWin[i] = 0;
computerWin[i] = 0;
}
var chess = document.getElementById('chess');
var context = chess.getContext('2d');
context.strokeStyle = "#BFBFBF";
var logo= new Image();
logo.src = "img/ .jpg";
logo.onload = function(){
context.drawImage(logo,0,0,450,450);
drawChessBoard();
// oneStep(0,0,true);
// oneStep(1,1,false);
}
function drawChessBoard(){
for(var i=0;i<15;i++){
context.moveTo(15+i*30,15);
context.lineTo(15+i*30,435);
context.moveTo(15,15+i*30);
context.lineTo(435,15+i*30);
context.stroke();
}
}
var oneStep = function(i,j,me){
context.beginPath();
context.arc(15+i*30,15+j*30,13,0,2*Math.PI);
context.closePath();
var gradient = context.createRadialGradient(15+i*30,15+j*30,13,15+i*30,15+j*30,0);
if(me){
gradient.addColorStop(0,"#0A0A0A");
gradient.addColorStop(1,"#636766");
}else{
gradient.addColorStop(0,"#D1D1D1");
gradient.addColorStop(1,"#F9F9F9");
}
context.fillStyle = gradient;
context.fill();
}
chess.onclick = function(e){
if(over){
return;
}
if(!me){
return;
}
var x = e.offsetX;
var y = e.offsetY;
var i = Math.floor(x/30); //i,j
var j = Math.floor(y/30);
if(chessBox[i][j]==0){
oneStep(i,j,me);
chessBox[i][j]=1;
for(var k=0;k < count; k++){
if(wins[i][j][k]) {
myWin[k]++;
computerWin[k] = 6; //
if(myWin[k] == 5) {
window.alert(" ");
over = true;
}
}
}
if(!over){
me=!me;
computerAI();
}
}
}
var computerAI = function(){
var myScore = [];
var computerScore = [];
var max = 0; // ;
var u = 0, v =0; //
for(var i=0;i<15;i++){
myScore[i] = [];
computerScore [i] = [];
for(var j=0;j<15;j++){
myScore[i][j] = 0;
computerScore[i][j] = 0;
}
}
for (var i=0; i<15;i++) {
for (var j=0;j<15;j++) {
if(chessBox[i][j] == 0){
for(var k =0 ;k<count;k++){
if(wins[i][j][k]){
if(myWin[k]==1){
myScore[i][j]+= 200;
}else if(myWin[k]==2){
myScore[i][j]+= 400;
}else if(myWin[k]==3){
myScore[i][j]+= 2000;
}else if(myWin[k]==4){
myScore[i][j]+= 10000;
}
if(computerWin[k]==1){
computerScore[i][j]+= 220;
}else if(computerWin[k]==2){
computerScore[i][j]+= 420;
}else if(computerWin[k]==3){
computerScore[i][j]+= 2020;
}else if(computerWin[k]==4){
computerScore[i][j]+= 10020;
}
}
}
if(myScore[i][j]>max){
max = myScore[i][j];
u = i;
v = j;
}else if(myScore[i][j] == max){
if(computerScore[i][j] > computerScore[u][v]){
u = i;
v = j;
}
}
if(computerScore[i][j]>max){
max = computerScore[i][j];
u = i;
v = j;
}else if(computerScore[i][j] == max){
if(myScore[i][j] > myScore[u][v]){
u = i;
v = j;
}
}
}
}
}
oneStep(u,v,false);
chessBox[u][v] = 2;
for(var k=0;k < count; k++){
if(wins[u][v][k]) {
computerWin[k]++;
myWin[k] = 6; //
if(computerWin[k] == 5) {
window.alert(" ");
over = true;
}
}
}
if(!over){
me=!me;
}
}
더 많은 재 미 있 는 클래식 게임 을 통 해 주 제 를 실현 하고 여러분 에 게 공유 합 니 다.
C++클래식 게임 모음
python 클래식 게임 모음
python 러시아 블록 게임 집합
JavaScript 클래식 게임 을 계속 합 니 다.
javascript 고전 게임 모음
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.