gpt4 book ai didi

Javascript 游戏;减速和卡住!如何解决?

转载 作者:数据小太阳 更新时间:2023-10-29 04:45:01 29 4
gpt4 key购买 nike

我开始编写 javascript 塔防;到目前为止,我已经掌握了爪牙在轨迹上的运动。但是我有一个很大的麻烦,游戏突然卡住了几秒钟。我猜这是垃圾收集器在做它的工作,关于我如何解决这个问题的任何想法都会非常好,因为我计划在游戏中添加更多元素并且我不想继续编码直到我得到完美流畅!

到目前为止的代码非常简单;你可以看看here

代码如下:

<html>
<head>
<style>
#game{
background:red;
width:500px;
height:500px;
position:relative;
}
.mostro {
background:black;
width:15px;
height:15px;
position:absolute;
}
</style>
</head>
<body>
<div id="game">
<script type="text/javascript">
waypoint_x = [40, 140, 140, 220, 220, 80, 80, 340, 340, 420, 420];
waypoint_y = [140, 140, 60, 60, 240, 240, 320, 320, 100, 100, -20];
delay = 25;
new_monster = 0;
monsters_placed = 0;
monsters = [];
var d = new Date();
dist_x = 0;
dist_y = 0;
angle = 0;
mostro="";
total_monsters = 5;
function runGame() {
if (monsters_placed<total_monsters) {
new_monster++;
}
if (new_monster == delay) {
new_monster = 0;
document.getElementById("game").innerHTML = document.getElementById("game").innerHTML + '<div class="mostro" id="mostro-'+monsters_placed+'"></div>';
monsters_placed++;
}
for (i=0;i<monsters_placed;i=i+1) {
mostro = monsters[i];
dist_x = waypoint_x[mostro.point_to_reach] - mostro._x;
dist_y = waypoint_y[mostro.point_to_reach] - mostro._y;
if ((Math.abs(dist_x) + Math.abs(dist_y)) < 1) {
monsters[i].point_to_reach++;
}
angle = Math.atan2(dist_y, dist_x);
mostro._x = mostro._x + mostro.speed * Math.cos(angle);
mostro._y = mostro._y + mostro.speed * Math.sin(angle);
monsters[i]._rotation = angle/Math.PI*180-90
document.getElementById("mostro-"+i).style.left = Math.ceil(mostro._x) + "px";
document.getElementById("mostro-"+i).style.top = Math.ceil(mostro._y) + "px";
}
}

function setUpGame(){
for(i=0;i<=total_monsters;i++){
monsters[i] = new Object();
monsters[i].point_to_reach = 0;
monsters[i].speed = 1;
monsters[i]._x = 0;
monsters[i]._y = 0;
}
}
setUpGame();
setInterval(runGame,10);
</script>
</body>
</html>

最佳答案

它不是垃圾收集器在做这项工作,而是在您尝试设置顶部和左侧位置时在您的代码中,在特定时间您尝试设置的值不是数字。所以代码中断了....

我认为当移动的 div 越过具有红色背景的容器顶部时会发生这种情况。

关于Javascript 游戏;减速和卡住!如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/984963/

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