- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我昨天刚开始练习 JavaScript,所以我决定用它写一个小井字游戏,但是我在设置单元格对象的 boolean 变量时遇到了一个问题。尽管 putX() 或 putO() 函数将 boolean 变量设置为 true(IsEmpty() 函数控制台日志在单击特定单元格后工作正常,但绘制单元格的功能似乎永远不会工作,因为 if 语句永远不会执行).
我一直在寻找这个问题大约几个小时,但我找不到它,也许我只是忽略了一些东西。
代码如下:
var board = [];
var cellSize = 25;
var turn = 0;
function cell(posX, posY) {
this.posX = posX;
this.posY = posY;
this.x = false;
this.o = false;
}
cell.prototype.putX = function() {
if (this.x === false && this.o === false) {
this.x = true;
}
};
cell.prototype.putO = function() {
if (this.x === false && this.o === false) {
this.o = true;
}
};
cell.prototype.isEmpty = function() {
if (this.x === false && this.o === false)
return true;
else {
if (this.x === true) console.log("There is already X in this cell");
else if (this.o === true) console.log("There is already O in this cell");
return false;
}
};
cell.prototype.draw = function() {
if (this.x === true) {
drawX(this.posX, this.posY);
} else if (this.o === true) {
drawO(this.posX, this.posY);
}
};
function drawX(posX, posY, ctx) {
var c = document.getElementById("game-canvas");
var ctx = c.getContext("2d");
ctx.lineWidth = 3;
ctx.beginPath();
ctx.moveTo(posX, posY);
ctx.lineTo(posX + cellSize, posY + cellSize)
ctx.moveTo(posX + cellSize, posY);
ctx.lineTo(posX, posY + cellSize)
ctx.stroke();
ctx.lineWidth = 1;
}
function drawO(posX, posY) {
var c = document.getElementById("game-canvas");
var ctx = c.getContext("2d");
ctx.lineWidth = 3;
ctx.beginPath();
ctx.arc(Math.floor((posX + cellSize / 2)), Math.floor(posY + cellSize / 2), 8, 0, 2 * Math.PI)
ctx.stroke();
ctx.lineWidth = 1;
}
function getBoardIndex(posX, posY) {
var boardIndex = ((Math.floor(posY / cellSize) * getboardDimension())) + (Math.floor(posX / cellSize));
return board[boardIndex];
}
function getboardDimension() {
var c = document.getElementById("game-canvas");
var dimension = c.width / cellSize;
return dimension;
}
function initializeBoard() {
var currentRow = 0;
var currentCol = 0;
for (var i = 0; i < getboardDimension() * getboardDimension(); i++) {
if (currentCol == getboardDimension() && i > 0) {
currentRow++;
currentCol = 0;
}
board[i] = new cell(currentCol * cellSize, currentRow * cellSize);
currentCol++;
}
drawBoard();
}
function getCursorPosition(canvas, event) {
var rect = canvas.getBoundingClientRect();
var x = event.clientX - rect.left;
var y = event.clientY - rect.top;
if (turn === 1) {
if (getBoardIndex(x, y).isEmpty()) {
getBoardIndex(x, y).putX();
turn ^= 1;
}
} else if (turn === 0) {
if (getBoardIndex(x, y).isEmpty()) {
getBoardIndex(x, y).putO();
turn ^= 1;
}
}
}
function drawBoard() {
var c = document.getElementById("game-canvas");
var ctx = c.getContext("2d");
ctx.strokeStyle = "#333";
for (var i = 0; i < board.length; i++) {
board[i].draw();
}
for (var i = 0; i < getboardDimension(); i++) {
ctx.beginPath();
ctx.moveTo(0, i * cellSize);
ctx.lineTo(getboardDimension() * cellSize, i * cellSize);
ctx.moveTo(i * cellSize, 0);
ctx.lineTo(i * cellSize, getboardDimension() * cellSize);
ctx.stroke();
}
ctx.beginPath();
ctx.moveTo(c.width, 0);
ctx.lineTo(c.width, c.height);
ctx.moveTo(0, c.height);
ctx.lineTo(c.width, c.height);
ctx.stroke();
}
* {
box-sizing: border-box;
}
body {
background-color: #1d1d1d;
margin: 0;
padding: 0;
}
.row {
width: 100%;
}
.container {
margin: auto;
}
.col-1 {
width: 8.33%;
}
.col-2 {
width: 16.66%;
}
.col-3 {
width: 25%;
}
.col-4 {
width: 33.33%;
}
.col-5 {
width: 41.66%;
}
.col-6 {
width: 50%;
}
.col-7 {
width: 58.33%;
}
.col-8 {
width: 66.66%;
}
.col-9 {
width: 75%;
}
.col-10 {
width: 83.33%;
}
.col-11 {
width: 91.66%;
}
.col-12 {
width: 100%;
}
[class*="col-"] {
float: left;
padding: 15px;
}
@media only screen and (max-width: 768px) {
[class*="col-"] {
width: 100%;
}
}
.container {
width: 1200px;
margin: auto;
}
.container-fluid {
width: 100%;
}
.content-center {
text-align: center;
}
.input-text {
color: #666;
background-color: transparent;
padding: 10px 10px 10px 10px;
border: none;
border-radius: 5px;
border: 1px solid #333;
}
.input-text:focus {
outline: none;
border-color: #444;
}
.default-button {
margin-top: 5px;
font-family: calibri;
background-color: #353535;
color: #fff;
border: none;
padding: 10px 30px 10px 30px;
border-radius: 5px;
text-transform: uppercase;
}
.default-button:hover {
background-color: #302f2f;
cursor: pointer;
}
.default-button:focus {
outline: none;
}
.info-button {
margin-top: 5px;
font-family: calibri;
background-color: #00a1dd;
color: #fff;
border: none;
padding: 10px 30px 10px 30px;
border-radius: 5px;
text-transform: uppercase;
}
.info-button:hover {
background-color: #0090cc;
cursor: pointer;
}
.info-button:focus {
outline: none;
}
.warning-button {
margin-top: 5px;
font-family: calibri;
background-color: #d93131;
color: #fff;
border: none;
padding: 10px 30px 10px 30px;
border-radius: 5px;
text-transform: uppercase;
}
.warning-button:hover {
background-color: #c82020;
cursor: pointer;
}
.warning-button:focus {
outline: none;
}
.success-button {
margin-top: 5px;
font-family: calibri;
background-color: #0ea60f;
color: #fff;
border: none;
padding: 10px 30px 10px 30px;
border-radius: 5px;
text-transform: uppercase;
}
.success-button:hover {
background-color: #0d950e;
cursor: pointer;
}
.success-button:focus {
outline: none;
}
#game-canvas {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
display: block;
background-color: transparent;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
}
.start-button {
width: 100%;
}
.restart-button {
width: 100%;
}
.chat {
font-family: Arial;
font-size: 13px;
resize: none;
width: 100%;
height: 360px;
margin-top: 10px;
}
.comment {
width: 100%;
margin-top: 10px;
}
<head>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<script type="text/javascript" src="ttt.js"></script>
<body onload="initializeBoard()">
<div class="row">
<div class="container">
<div class="col-2"></div>
<div class="col-3 content-center">
<textarea disabled class="input-text chat"></textarea>
<input type="text" name="" value="" class="comment input-text">
<button type="button" name="button" class="default-button start-button">start game</button>
<button type="button" name="button" class="warning-button restart-button">restart</button>
</div>
<div id="game-column" class="col-5 content-center">
<canvas id="game-canvas" width="500" height="500" onclick="getCursorPosition(this, event)"> </canvas>
</div>
<div class="col-2"></div>
</div>
</div>
</body>
最佳答案
您不会在状态更改后重新绘制单元格。您在单元格中的逻辑在功能上没有任何问题。第一次绘制后 Canvas 不会再次绘制,因此单元格保持其旧状态。我在 putX/putO 函数中添加了一个重新绘制的单元格,并开始在板上显示选择。
var board = [];
var cellSize = 25;
var turn = 0;
function cell(posX, posY) {
this.posX = posX;
this.posY = posY;
this.x = false;
this.o = false;
}
cell.prototype.putX = function() {
if (this.x === false && this.o === false) {
this.x = true;
}
this.draw();
};
cell.prototype.putO = function() {
if (this.x === false && this.o === false) {
this.o = true;
}
this.draw();
};
cell.prototype.isEmpty = function() {
if (this.x === false && this.o === false)
return true;
else {
if (this.x === true) console.log("There is already X in this cell");
else if (this.o === true) console.log("There is already O in this cell");
return false;
}
};
cell.prototype.draw = function() {
if (this.x === true) {
drawX(this.posX, this.posY);
} else if (this.o === true) {
drawO(this.posX, this.posY);
}
};
function drawX(posX, posY, ctx) {
var c = document.getElementById("game-canvas");
var ctx = c.getContext("2d");
ctx.lineWidth = 3;
ctx.beginPath();
ctx.moveTo(posX, posY);
ctx.lineTo(posX + cellSize, posY + cellSize)
ctx.moveTo(posX + cellSize, posY);
ctx.lineTo(posX, posY + cellSize)
ctx.stroke();
ctx.lineWidth = 1;
}
function drawO(posX, posY) {
var c = document.getElementById("game-canvas");
var ctx = c.getContext("2d");
ctx.lineWidth = 3;
ctx.beginPath();
ctx.arc(Math.floor((posX + cellSize / 2)), Math.floor(posY + cellSize / 2), 8, 0, 2 * Math.PI)
ctx.stroke();
ctx.lineWidth = 1;
}
function getBoardIndex(posX, posY) {
var boardIndex = ((Math.floor(posY / cellSize) * getboardDimension())) + (Math.floor(posX / cellSize));
return board[boardIndex];
}
function getboardDimension() {
var c = document.getElementById("game-canvas");
var dimension = c.width / cellSize;
return dimension;
}
function initializeBoard() {
var currentRow = 0;
var currentCol = 0;
for (var i = 0; i < getboardDimension() * getboardDimension(); i++) {
if (currentCol == getboardDimension() && i > 0) {
currentRow++;
currentCol = 0;
}
board[i] = new cell(currentCol * cellSize, currentRow * cellSize);
currentCol++;
}
drawBoard();
}
function getCursorPosition(canvas, event) {
var rect = canvas.getBoundingClientRect();
var x = event.clientX - rect.left;
var y = event.clientY - rect.top;
if (turn === 1) {
if (getBoardIndex(x, y).isEmpty()) {
getBoardIndex(x, y).putX();
turn ^= 1;
}
} else if (turn === 0) {
if (getBoardIndex(x, y).isEmpty()) {
getBoardIndex(x, y).putO();
turn ^= 1;
}
}
}
function drawBoard() {
var c = document.getElementById("game-canvas");
var ctx = c.getContext("2d");
ctx.strokeStyle = "#333";
for (var i = 0; i < board.length; i++) {
board[i].draw();
}
for (var i = 0; i < getboardDimension(); i++) {
ctx.beginPath();
ctx.moveTo(0, i * cellSize);
ctx.lineTo(getboardDimension() * cellSize, i * cellSize);
ctx.moveTo(i * cellSize, 0);
ctx.lineTo(i * cellSize, getboardDimension() * cellSize);
ctx.stroke();
}
ctx.beginPath();
ctx.moveTo(c.width, 0);
ctx.lineTo(c.width, c.height);
ctx.moveTo(0, c.height);
ctx.lineTo(c.width, c.height);
ctx.stroke();
}
* {
box-sizing: border-box;
}
body {
background-color: #1d1d1d;
margin: 0;
padding: 0;
}
.row {
width: 100%;
}
.container {
margin: auto;
}
.col-1 {
width: 8.33%;
}
.col-2 {
width: 16.66%;
}
.col-3 {
width: 25%;
}
.col-4 {
width: 33.33%;
}
.col-5 {
width: 41.66%;
}
.col-6 {
width: 50%;
}
.col-7 {
width: 58.33%;
}
.col-8 {
width: 66.66%;
}
.col-9 {
width: 75%;
}
.col-10 {
width: 83.33%;
}
.col-11 {
width: 91.66%;
}
.col-12 {
width: 100%;
}
[class*="col-"] {
float: left;
padding: 15px;
}
@media only screen and (max-width: 768px) {
[class*="col-"] {
width: 100%;
}
}
.container {
width: 1200px;
margin: auto;
}
.container-fluid {
width: 100%;
}
.content-center {
text-align: center;
}
.input-text {
color: #666;
background-color: transparent;
padding: 10px 10px 10px 10px;
border: none;
border-radius: 5px;
border: 1px solid #333;
}
.input-text:focus {
outline: none;
border-color: #444;
}
.default-button {
margin-top: 5px;
font-family: calibri;
background-color: #353535;
color: #fff;
border: none;
padding: 10px 30px 10px 30px;
border-radius: 5px;
text-transform: uppercase;
}
.default-button:hover {
background-color: #302f2f;
cursor: pointer;
}
.default-button:focus {
outline: none;
}
.info-button {
margin-top: 5px;
font-family: calibri;
background-color: #00a1dd;
color: #fff;
border: none;
padding: 10px 30px 10px 30px;
border-radius: 5px;
text-transform: uppercase;
}
.info-button:hover {
background-color: #0090cc;
cursor: pointer;
}
.info-button:focus {
outline: none;
}
.warning-button {
margin-top: 5px;
font-family: calibri;
background-color: #d93131;
color: #fff;
border: none;
padding: 10px 30px 10px 30px;
border-radius: 5px;
text-transform: uppercase;
}
.warning-button:hover {
background-color: #c82020;
cursor: pointer;
}
.warning-button:focus {
outline: none;
}
.success-button {
margin-top: 5px;
font-family: calibri;
background-color: #0ea60f;
color: #fff;
border: none;
padding: 10px 30px 10px 30px;
border-radius: 5px;
text-transform: uppercase;
}
.success-button:hover {
background-color: #0d950e;
cursor: pointer;
}
.success-button:focus {
outline: none;
}
#game-canvas {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
display: block;
background-color: transparent;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
}
.start-button {
width: 100%;
}
.restart-button {
width: 100%;
}
.chat {
font-family: Arial;
font-size: 13px;
resize: none;
width: 100%;
height: 360px;
margin-top: 10px;
}
.comment {
width: 100%;
margin-top: 10px;
}
<head>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<script type="text/javascript" src="ttt.js"></script>
<body onload="initializeBoard()">
<div class="row">
<div class="container">
<div class="col-2"></div>
<div class="col-3 content-center">
<textarea disabled class="input-text chat"></textarea>
<input type="text" name="" value="" class="comment input-text">
<button type="button" name="button" class="default-button start-button">start game</button>
<button type="button" name="button" class="warning-button restart-button">restart</button>
</div>
<div id="game-column" class="col-5 content-center">
<canvas id="game-canvas" width="500" height="500" onclick="getCursorPosition(this, event)"> </canvas>
</div>
<div class="col-2"></div>
</div>
</div>
</body>
关于Javascript 对象的 boolean 变量始终为 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41743420/
class test { public static void main(String[] args){ Object o1 = new Object(); O
我以为我理解了 Python 中的这两个单例值,直到我看到有人在代码中使用 return l1 or l2,其中 l1 和 l2 都是链表对象,并且(s)他想如果不为 None 则返回 l1,否则返回
这个问题在这里已经有了答案: Why does the expression 0 >> (True == False) is False True >>> True == (False is Fals
为什么在 Python 中它是这样评估的: >>> False is False is False True 但是当用括号尝试时表现如预期: >>> (False is False) is False
我有一个名为“apple”的表,我编写了以下查询: select name, count(name), case when istasty is null then fal
python boolean 逻辑中的运算符优先级 print(False==True or False) #answer is True print(False==(False or True))#
请不要看条件,因为它们在这里是为了便于理解行为 为什么 result 等于 true ? boolean result = false && (false)?false:true; 我知道我们可以通过
乍一看,这篇文章可能看起来像是重复的,但事实并非如此。相信我,我已经查看了所有 Stack Overflow,但都无济于事。 无论如何,我从 Html.CheckBoxFor 得到了一些奇怪的行为。
这个问题在这里已经有了答案: python operator precedence of in and comparison (4 个答案) 关闭 6 年前。 我的一位前辈演示了它,我想知道这是否是
我最近参加了 Java 的入门测试,这个问题让我很困惑。完整的问题是: boolean b1 = true; boolean b2 = false; if (b2 != b1 != b2) S
为什么 {} == false 评估为 false 而 [] == false 评估为 true在 javascript 中? 最佳答案 这是根据 Abstract Equality Comparis
这个问题在这里已经有了答案: Why does (1 in [1,0] == True) evaluate to False? (1 个回答) 关闭7年前。 为什么使用括号时这些语句按预期工作: >>
我试过搜索这个,但我真的不知道如何表达它以查看是否有其他人发布了答案。 但是,我正在制作一个国际象棋游戏和一个人工智能来配合它,这是非常困难的,我的问题是当我检查两个棋子是否在同一个团队时我必须做 (
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
为什么 为 false || null 返回与 null || 不同的结果错误? 我可以安全地依赖 return myVar || false 如果 myVar 为 null 或 false,则返回
我正在尝试遵循 NHibernate 教程,“你的第一个基于 NHibernate 的应用程序:修订 #4”在 NHibernate Forge。 但线路:new SchemaExport(cfg).
这个问题在这里已经有了答案: Empty list boolean value (3 个答案) 关闭 4 年前。 我是 Python 的新手,不理解以下行为: 为什么要声明 [] == False
以下函数循环访问对象的值。如果值为空this.hasInvalidValue设置为true ,如果不为空 this.hasInvalidValue设置为false : user: { email:
所以我正在玩 java.lang.reflect 东西并尝试制作类似 this 的东西。这是我的问题(可能是一个错误): 将字段设置为 true 的方法的代码: private static void
当我在编程时,我的 if 语句出现了意想不到的结果。 这个代码警报怎么会是真的?我在 W3S 没有找到任何可以帮助我的东西,我真的很想知道为什么这些警报是“正确的” window.alert(fals
我是一名优秀的程序员,十分优秀!