- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我正在用 javascript 创建游戏,并且尝试创建 Debug模式,但是当我创建变量 debugVariable 并将其设置为 boolean 值时
var debugVariable = new Boolean();
无论我做什么,它在某种程度上读起来都是真实的。首先这是完整的代码块
var debugVariable = new Boolean();
function debuggCheckBox()
{
if(debugVariable){ debugVariable = false;}
else {debugVariable = true;}
}
function testNumber1()
{
var num1 = Math.floor(Math.random() * 11);
var num2 = Math.floor(Math.random() * 3);
var link = "GAME 2";
var answer = prompt('LEVEL 1: What is ' + num1 + " * " + num2 +"?");
if (!answer || answer == ""){
testNumber1();
}
else if (num1 * num2 == answer)
{
alert('Correct');
}
else if (num1 * num2 != answer)
{
alert('Incorrect');
testNumber1();
}
}
testNumber1();
function testNumber2()
{
var num1 = Math.floor(Math.random() * 21);
var num2 = Math.floor(Math.random() * 13);
var answer = prompt('LEVEL 2: What is ' + num1 + " * " + num2 +"?");
if (num1 * num2 == answer)
{
alert('Correct');
++monstersCaught;
reset();
++level;
}
else if (num1 * num2 != answer)
{
alert('Incorrect');
testNumber2();
}
}
function testNumber3()
{
var num1 = Math.floor(Math.random() * 31);
var num2 = Math.floor(Math.random() * 23);
var answer = prompt('LEVEL 3: What is ' + num1 + " * " + num2 +"?");
if (num1 * num2 == answer)
{
alert('Correct');
++monstersCaught;
++level;
reset();
}
else if (num1 * num2 != answer)
{
alert('Incorrect');
testNumber3();
}
}
//checking if canvas is supported
function checkCanvasSupported(){
var element = document.createElement('canvas');
return !!(element.getContext && element.getContext('2d'));
}
//if canvas not supported then alert user
if (!checkCanvasSupported()){
alert('Sorry cavas isn\'t supported by your internet browser!');
}
// Create the canvas
var canvas = document.createElement("canvas");
var ctx = canvas.getContext("2d");
canvas.width = 512;
canvas.height = 480;
document.body.appendChild(canvas);
// Background image
var bgReady = false;
var bgImage = new Image();
bgImage.onload = function () {
bgReady = true;
};
bgImage.src = "images/background.png";
// Hero image
var heroReady = false;
var heroImage = new Image();
heroImage.onload = function () {
heroReady = true;
};
heroImage.src = "images/hero.png";
// Monster image
var monsterReady = false;
var monsterImage = new Image();
monsterImage.onload = function () {
monsterReady = true;
};
monsterImage.src = "images/monster.png";
// Game objects
var hero = {
speed: 256 // movement in pixels per second
};
var monster = {};
var monster1 = {};
var monster2 = {};
var monstersCaught = 0;
var level = 1;
// Handle keyboard controls
var keysDown = {};
addEventListener("keydown", function (e) {
keysDown[e.keyCode] = true;
}, false);
addEventListener("keyup", function (e) {
delete keysDown[e.keyCode];
}, false);
// Reset the game when the player catches a monster
var reset = function () {
hero.x = canvas.width / 2;
hero.y = canvas.height / 2;
};
var reset0 = function () {
hero.x = canvas.width / 2;
hero.y = canvas.height / 2;
// Throw the monster somewhere on the screen randomly
monster.x = 32 + (Math.random() * (canvas.width - 64));
monster.y = 32 + (Math.random() * (canvas.height - 64));
}
var reset1 = function () {
hero.x = canvas.width / 2;
hero.y = canvas.height / 2;
// Throw the monster somewhere on the screen randomly
monster1.x = 32 + (Math.random() * (canvas.width - 64));
monster1.y = 32 + (Math.random() * (canvas.height - 64));
};
var reset2 = function () {
hero.x = canvas.width / 2;
hero.y = canvas.height / 2;
// Throw the monster somewhere on the screen randomly
monster2.x = 32 + (Math.random() * (canvas.width - 64));
monster2.y = 32 + (Math.random() * (canvas.height - 64));
};
// Update game objects
var update = function (modifier) {
if (38 in keysDown) { // Player holding up
hero.y -= hero.speed * modifier;
if(hero.y < 0){
reset();
}
}
if (40 in keysDown) { // Player holding down
hero.y += hero.speed * modifier;
if(hero.y > canvas.height){
reset();
}
}
if (37 in keysDown) { // Player holding left
hero.x -= hero.speed * modifier;
if(hero.x < 0){
reset();
}
}
if (39 in keysDown) { // Player holding right
hero.x += hero.speed * modifier;
if(hero.x > canvas.width){
reset();
}
}
// Are they touching?
if (
hero.x <= (monster.x + 32)
&& monster.x <= (hero.x + 32)
&& hero.y <= (monster.y + 32)
&& monster.y <= (hero.y + 32)
) {
++monstersCaught;
reset0();
}
else if (
hero.x <= (monster1.x + 32)
&& monster1.x <= (hero.x + 32)
&& hero.y <= (monster1.y + 32)
&& monster1.y <= (hero.y + 32)
) {
++monstersCaught;
reset1();
}
else if (
hero.x <= (monster2.x + 32)
&& monster2.x <= (hero.x + 32)
&& hero.y <= (monster2.y + 32)
&& monster2.y <= (hero.y + 32)
) {
++monstersCaught;
reset2();
}
if (monstersCaught == 5){
testNumber2();
}
else if (monstersCaught == 10){
testNumber3();
}
};
// Draw everything
var render = function () {
if (bgReady) {
ctx.drawImage(bgImage, 0, 0);
}
if (heroReady) {
ctx.drawImage(heroImage, hero.x, hero.y);
}
if (monsterReady) {
ctx.drawImage(monsterImage, monster.x, monster.y);
ctx.drawImage(monsterImage, monster1.x, monster1.y);
ctx.drawImage(monsterImage, monster2.x, monster2.y);
}
// Score
ctx.fillStyle = "rgb(250, 250, 250)";
ctx.font = "24px Verdana";
ctx.textAlign = "left";
ctx.textBaseline = "top";
ctx.fillText("Score: " + monstersCaught, 32, 32);
ctx.fillStyle = "rgb(250, 250, 250)";
ctx.font = "24px Verdana";
ctx.textAlign = "right";
ctx.textBaseline = "top";
ctx.fillText("Level: " + level, 400, 32);
ctx.fillStyle = "rgb(250, 250, 250)";
ctx.font = "24px Verdana";
ctx.textAlign = "center";
ctx.textBaseline = "top";
if(debugVariable = true)
{
var coords = 'Co-ords(' + hero.x + "," + hero.y + ')';
} else {
coords = "";
}
ctx.fillText(coords , 100, 200);
ctx.fillStyle = "rgb(250, 250, 250)";
ctx.font = "24px Verdana";
ctx.textAlign = "center";
ctx.textBaseline = "top";
ctx.fillText("Debug: " + debugVariable, 100, 100);
};
// The main game loop
var main = function () {
var now = Date.now();
var delta = now - then;
update(delta / 1000);
render();
then = now;
};
// Let's play this game!
reset();
reset0();
reset1();
reset2();
var then = Date.now();
setInterval(main, 1); // Execute as fast as possible
这里是主要的问题区域(第 1-6 行)
var debugVariable = new Boolean();
function debuggCheckBox()
{
if(debugVariable){ debugVariable = false;}
else {debugVariable = true;}
}
(第 233-270 行)
var render = function () {
if (bgReady) {
ctx.drawImage(bgImage, 0, 0);
}
if (heroReady) {
ctx.drawImage(heroImage, hero.x, hero.y);
}
if (monsterReady) {
ctx.drawImage(monsterImage, monster.x, monster.y);
ctx.drawImage(monsterImage, monster1.x, monster1.y);
ctx.drawImage(monsterImage, monster2.x, monster2.y);
}
// Score
ctx.fillStyle = "rgb(250, 250, 250)";
ctx.font = "24px Verdana";
ctx.textAlign = "left";
ctx.textBaseline = "top";
ctx.fillText("Score: " + monstersCaught, 32, 32);
ctx.fillStyle = "rgb(250, 250, 250)";
ctx.font = "24px Verdana";
ctx.textAlign = "right";
ctx.textBaseline = "top";
ctx.fillText("Level: " + level, 400, 32);
ctx.fillStyle = "rgb(250, 250, 250)";
ctx.font = "24px Verdana";
ctx.textAlign = "center";
ctx.textBaseline = "top";
if(debugVariable = true)
{
var coords = 'Co-ords(' + hero.x + "," + hero.y + ')';
} else {
coords = "";
}
ctx.fillText(coords , 100, 200);
ctx.fillStyle = "rgb(250, 250, 250)";
ctx.font = "24px Verdana";
ctx.textAlign = "center";
ctx.textBaseline = "top";
ctx.fillText("Debug: " + debugVariable, 100, 100);
};
以及复选框的 HTML 代码,尽管它根本不执行任何操作
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Simple Canvas Game</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<body>
<script src="js/game.js"></script>
<input type="checkbox" name="debugOnOff" onclick="debugCheckBox()">
<a href="game2.html"> GAME 2</a>
</body>
</html>
最佳答案
它读取 true 的原因是由于这段代码
var debugVariable = new Boolean();
function debuggCheckBox()
{
if(debugVariable){ debugVariable = false;}
else {debugVariable = true;}
}
您正在检查 debugVariable != null
是否存在,要访问 Boolean
对象的原始类型,您需要调用 valueOf
方法。
要检查 true
或 false
,您应该使用 false
初始化 debugVariable
。
var debugVariable = false;
function debuggCheckBox()
{
debugVariable = !debugVariable;
}
关于JavaScript boolean 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16880181/
我正在尝试从文本文件构建 boolean 值[][]。我正在读取每个字符,存储在 ArrayList 中(1 为真,0 为假)。我试过 ArrayList,但出现编译错误,意外元素。因此,我构建了一个
我想知道编程语言中的运算符优先级是否取决于实现,还是所有语言都遵循固定的规则。并且,如果可能的话,您可以先排序以下具有最高优先级的运算符吗:AND,OR,NOT,XOR。 最佳答案 我在Google上
这是同样的事情,对吗?还是有细微的差别?我只是想确保我没有误解任何事情。 最佳答案 通过简单地将 AND 替换为 OR 以及将 OR 替换为 AND 即可生成 boolean 对偶。补码本身不受影响,
我想这对于大多数优秀的程序员来说是微不足道的,但我已经习惯使用 true 进行编程。和 false 2、当我遇到0和1的时候,我永远记不住哪一个是真的,哪一个是假的。 有什么建议? 1好:I mean
我正在尝试将此 Java 示例转换为 Kotlin: Gson gson = new GsonBuilder() .registerTypeAdapter(Boolean.class,
下面的代码打印 true。 public static void main(String[] args) { Boolean test = false; test =
我在处理应该导致在 iReport 中显示或隐藏 strip 的表达式时遇到困难。 这些是我拥有的变量: Integer mainGroupInt = Integer.valueOf(5); Inte
以下编码错误可能是因为 Boolean equals(Object) 方法不需要 boolean/Boolean 参数: private void foo() { Boolean isSome
我想简化一个 boolean 表达式。 表达式是这样的 X1 xor (X2 || X3 && X4 || x5) 如何使用 boolean 代数规则简化此表达式。 而且我想将上面的 boolean
我正在使用一些工具,它可以确定特定事务是否成功的唯一方法是它是否通过了各种检查。但是,它的方式有限制,一次只能做一次检查,而且必须是顺序的。一切都必须从左到右计算。 例如, A || C && D 它
在大多数编程语言中,1和 0可以用来代替 True和 False .然而,根据我的经验,整数似乎总是更容易使用。 以下是我的意思的一些示例: if x is True: x = False else:
我有一个 boolean 方程,想简化它。帮忙解决一下。 bool needLoad = isA || (!isA && !isB); 之后我使用 if (needLoad){ if (
我认为这始终是正确的 x || (x && y) 相当于 x 如果是这样,那条法律叫什么?我什至不知道如何通过 Google 搜索该信息。 最佳答案 它被称为 Redundancy Law . A +
是否有任何现有的方法或功能模块可以有效地翻转 boolean 值? 如果我必须定义自己的实用方法,我想出了一个简单的实现,但我想知道这是否是最有效的方法: IF iv_bool = abap_true
我有这个表达式:X'YZ'+X'YZ+XY'Z'+XYZ'+XYZ('表示不是)我知道答案是 Y+XZ' 但我陷入了最后一部分。有人可以帮我吗? 这是我到目前为止得到的: X'YZ' + X'YZ +
openCL 支持 boolean 变量吗?我目前正在使用 JOCL (java) 编写我的 openCL 调用代码,但我没有看到任何有关 boolean 值的信息。 最佳答案 tl;dr:是的,但您
我认为这是对的 x || (x && y) 相当于 x 如果是这样,那条法律叫什么?我什至不确定我会如何使用 Google。 最佳答案 它叫做 Redundancy Law . A + A·B = A
我有一些功能,例如 (A and ( B or c)) or (D and E and (F or H or R or P ))) 我想将该函数转换为仅包含 and 操作的函数(当然如果可能的话)我发
我参加了编程面试,由 3 名面试官组成,每人 45 分钟。虽然前两位面试官给了我 2-3 个简短的编码问题(即反向链表、使用 rand(5) 实现 rand(7) 等),但第三位面试官使用了整个时间段
如果我只想检查某事是否不可能(即,我不会使用类似 if(possible) 的东西),我应该将 boolean 值命名为 notPossible并使用 if(notPossible)或者我应该命名它p
我是一名优秀的程序员,十分优秀!