我正在使用Javascript来建立我的谦逊的机器人军队。
// Objet Robot
function Robot(nick, pv, maxSpeed, position) {
this.nick = nick;
this.pv = pv;
this.maxSpeed = maxSpeed;
this.position = position;
};
//Méthode présentation des robots
Robot.prototype.sePresenter = function() {
console.log("Bonjour je m'appelle " + this.nick + ". J'ai " + this.pv + " points de vie." + " Je me déplace à " + this.maxSpeed + " cases par seconde. Je suis à la case de coordonnées " + this.position);
};
//Variables array
var robots = [
new Robot('Maurice',95,2,[5,8]),
new Robot('Lilian',76,3,[12,25]),
new Robot('Ernest',100,1,[11,14]),
new Robot('Juliette',87,3,[2,17]),
];
//boucle
robots.forEach(function(robot) {
robot.sePresenter();
});
我想添加机器人动作。每转一圈,一个机器人可以在1和它的maxSpeed之间移动一些空间。每次移动都可以上/下/左/右。
我知道我必须使用Maths.random
,但我无法解释机器人如何移动。
这里是功能的开始
Robot.prototype.seDeplacer = function() {
var point1X = (this.position(Math.random() * this.maxSpeed+1);
var point1Y = (this.position(Math.random() * this.maxSpeed)+1;
console.log("je suis" + point1X + point1Y);
};
robots.forEach(function(robot) {
robot.seDeplacer();
});
我是否正在进行机器人运动?
答案 0 :(得分:0)
我想你的问题是弄清楚如何让这项工作:
Robot.prototype.seDeplacer = function() {
var point1X = (this.position(Math.random() * this.maxSpeed+1);
var point1Y = (this.position(Math.random() * this.maxSpeed)+1;
console.log("je suis" + point1X + point1Y);
};
现在,假设该位置是x和y坐标的数组,那么如果您只是向上,向下,向左或向右移动,那么您首先需要决定是否要在x轴或y上移动轴:
if (Math.random() > 0.5) {
// move on X axis
}
else {
// move on Y axis
}
如果您希望能够对角移动,那么您确实需要if / else构造。
现在要在X轴上移动(例如),您需要在-maxSpeed
和+maxSpeed
之间生成一个随机数,因为您可以向任一方向移动:
var dx = (Math.random() * this.maxSpeed * 2) - this.maxSpeed;
然后你可以更新你的位置:
this.position[0] += dx;
如果您只需要整数坐标,那么您只需使用Math.floor
您需要处理的最后一件事是边界条件。您需要检查新职位是否已超过您的"董事会"并且要么把它停在边缘,要么将它包裹到另一边,或者你正在尝试做什么。