gpt4 book ai didi

javascript - 我怎样才能阻止玩家离开网格?

转载 作者:行者123 更新时间:2023-11-30 10:18:10 25 4
gpt4 key购买 nike

我正在为我的计算机类(class)制作一个游戏,玩家必须在网格中移动并收集乘客。我决定使用 jQuery 在 JavaScript 中制作我的网格,到目前为止我已经构建了网格,为各个框添加了必要的颜色并允许玩家移动。

我现在面临的问题是我不知道如何才能阻止玩家离开网格。到目前为止,这是我的代码:

<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="jquery.min.js"></script>
<meta charset=utf-8 />
<title>BotMod</title>
<style>
article, aside, figure, footer, header, hgroup,
menu, nav, section { display: block; }

ul{list-style:none;}
a{text-decoration:none;}


#grid{
position: relative;
width:500px;
height:500px;
background:#eee;
padding:10px;
border-radius:10px;
}

.box{
font-size:10px;
text-align:center;
float:left;
width:40px;
height:40px;
background:#fff;
border-radius:6px;
margin:4px;
border:1px solid #aaa;
}

#player {
position: absolute;
height: 10px;
width: 10px;
outline: 1px solid black;
background-color: yellow;
left: 15px;
}

</style>

<style id="jsbin-css">

</style>
</head>
<body>



<div id="grid">
</div>

<script>
var boxX = 0;
var boxY = 0;
var box = '<div class="box" />';

for (var i = 0; i < 100; i ++){
$('#grid').append(box);
$('#grid .box:eq(0)').css('background', 'green');
$('#grid .box:eq(1)').css('background', 'green');
$('#grid .box:eq(2)').css('background', 'white');
$('#grid .box:eq(3)').css('background', 'white');
$('#grid .box:eq(4)').css('background', 'white');
$('#grid .box:eq(5)').css('background', 'white');
$('#grid .box:eq(6)').css('background', 'green');
$('#grid .box:eq(7)').css('background', 'green');
$('#grid .box:eq(8)').css('background', 'white');
$('#grid .box:eq(9)').css('background', 'white');
$('#grid .box:eq(10)').css('background', 'green');
$('#grid .box:eq(11)').css('background', '#49311c');
$('#grid .box:eq(12)').css('background', '#49311c');
$('#grid .box:eq(13)').css('background', 'white');
$('#grid .box:eq(14)').css('background', 'white');
$('#grid .box:eq(15)').css('background', 'white');
$('#grid .box:eq(16)').css('background', 'green');
$('#grid .box:eq(17)').css('background', 'green');
$('#grid .box:eq(18)').css('background', 'white');
$('#grid .box:eq(19)').css('background', 'white');
$('#grid .box:eq(20)').css('background', '#49311c');
$('#grid .box:eq(21)').css('background', '#49311c');
$('#grid .box:eq(22)').css('background', '#49311c');
$('#grid .box:eq(23)').css('background', 'green');
$('#grid .box:eq(24)').css('background', 'green');
$('#grid .box:eq(25)').css('background', 'white');
$('#grid .box:eq(26)').css('background', 'green');
$('#grid .box:eq(27)').css('background', 'green');
$('#grid .box:eq(28)').css('background', 'white');
$('#grid .box:eq(29)').css('background', 'white');
$('#grid .box:eq(30)').css('background', 'white');
$('#grid .box:eq(31)').css('background', '#49311c');
$('#grid .box:eq(32)').css('background', 'green');
$('#grid .box:eq(33)').css('background', 'green');
$('#grid .box:eq(34)').css('background', 'green');
$('#grid .box:eq(35)').css('background', 'green');
$('#grid .box:eq(36)').css('background', 'green');
$('#grid .box:eq(37)').css('background', 'green');
$('#grid .box:eq(38)').css('background', 'green');
$('#grid .box:eq(39)').css('background', 'green');
$('#grid .box:eq(40)').css('background', '#49311c');
$('#grid .box:eq(41)').css('background', '#49311c');
$('#grid .box:eq(42)').css('background', 'green');
$('#grid .box:eq(43)').css('background', 'white');
$('#grid .box:eq(44)').css('background', 'green');
$('#grid .box:eq(45)').css('background', 'white');
$('#grid .box:eq(46)').css('background', '#49311c');
$('#grid .box:eq(47)').css('background', '#49311c');
$('#grid .box:eq(48)').css('background', 'green');
$('#grid .box:eq(49)').css('background', 'green');
$('#grid .box:eq(50)').css('background', '#49311c');
$('#grid .box:eq(51)').css('background', '#49311c');
$('#grid .box:eq(52)').css('background', '#49311c');
$('#grid .box:eq(53)').css('background', 'white');
$('#grid .box:eq(54)').css('background', '#49311c');
$('#grid .box:eq(55)').css('background', '#49311c');
$('#grid .box:eq(56)').css('background', '#49311c');
$('#grid .box:eq(57)').css('background', '#49311c');
$('#grid .box:eq(58)').css('background', 'white');
$('#grid .box:eq(59)').css('background', 'green');
$('#grid .box:eq(60)').css('background', '#49311c');
$('#grid .box:eq(61)').css('background', '#49311c');
$('#grid .box:eq(62)').css('background', '#49311c');
$('#grid .box:eq(63)').css('background', '#49311c');
$('#grid .box:eq(64)').css('background', '#49311c');
$('#grid .box:eq(65)').css('background', 'white');
$('#grid .box:eq(66)').css('background', 'white');
$('#grid .box:eq(67)').css('background', 'white');
$('#grid .box:eq(68)').css('background', 'green');
$('#grid .box:eq(69)').css('background', 'green');
$('#grid .box:eq(70)').css('background', 'green');
$('#grid .box:eq(71)').css('background', '#49311c');
$('#grid .box:eq(72)').css('background', '#49311c');
$('#grid .box:eq(73)').css('background', '#49311c');
$('#grid .box:eq(74)').css('background', 'white');
$('#grid .box:eq(75)').css('background', 'white');
$('#grid .box:eq(76)').css('background', 'white');
$('#grid .box:eq(77)').css('background', 'white');
$('#grid .box:eq(78)').css('background', 'green');
$('#grid .box:eq(79)').css('background', 'white');
$('#grid .box:eq(80)').css('background', 'green');
$('#grid .box:eq(81)').css('background', 'green');
$('#grid .box:eq(82)').css('background', 'green');
$('#grid .box:eq(83)').css('background', 'green');
$('#grid .box:eq(84)').css('background', 'white');
$('#grid .box:eq(85)').css('background', 'green');
$('#grid .box:eq(86)').css('background', 'green');
$('#grid .box:eq(87)').css('background', 'white');
$('#grid .box:eq(88)').css('background', 'white');
$('#grid .box:eq(89)').css('background', 'white');
$('#grid .box:eq(90)').css('background', 'green');
$('#grid .box:eq(91)').css('background', 'green');
$('#grid .box:eq(92)').css('background', 'green');
$('#grid .box:eq(93)').css('background', 'green');
$('#grid .box:eq(94)').css('background', 'green');
$('#grid .box:eq(95)').css('background', 'green');
$('#grid .box:eq(96)').css('background', 'green');
$('#grid .box:eq(97)').css('background', 'green');
$('#grid .box:eq(98)').css('background', 'white');
$('#grid .box:eq(99)').css('background', '#49311c');
}

$(function() {
var player = '<div id="player"></div>';
$('#grid .box:eq(0)').append(player);

$(document).keydown(function(e) {

var position = $('#player').position();
pLeft = 15;
switch (e.keyCode) {

case 37: // Left
$('#player').css('left', position.left - 50 + 'px');
break;

case 38: // Up
$('#player').css('top', position.top - 50 + 'px');
break;

case 39: // Right
$('#player').css('left', position.left + 50 + 'px');
break;

case 40: // Down
$('#player').css('top', position.top + 50 + 'px');
break;

}

});
});

</script>
</body>
</html>

抱歉,如果很难理解我想说的话,但本质上我需要一些帮助来阻止玩家离开网格。我仍在学习 JavaScript 和 jQuery,但我想插入自己,这样代码示例对我来说会更容易理解。

我在想像这样的 If 语句:

If (pLeft <= 15) {
pLeft += ...;
}

但是我似乎无法弄清楚该怎么做。

编辑:

请参阅此处的工作示例:http://jsfiddle.net/qm3Rz/

最佳答案

使用@aZen 的提示解决方案: 我试着让 make generation map 更整洁,希望它也有帮助。有什么不明白的可以尽管问。没有制作完整的 map ,但你应该明白了:

switch (e.keyCode) {

case 37: // Left
$('#player').css('left', Math.max(15, Math.min(9*50 + 15,position.left - 50)) + 'px');
break;

case 38: // Up
$('#player').css('top', Math.max(15, Math.min(9*50 + 15,position.top - 50)) + 'px');
break;

case 39: // Right
$('#player').css('left', Math.max(15, Math.min(9*50 + 15,position.left + 50)) + 'px');
break;

case 40: // Down
$('#player').css('top', Math.max(15, Math.min(9*50 + 15,position.top + 50)) + 'px');
break;

完整代码:

http://jsfiddle.net/bucQ7/

关于javascript - 我怎样才能阻止玩家离开网格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22734292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com