蛇形穿过 Javascript 数组
Snake Through Javascript Array
这可能是一个简单的答案,但我是一个最有兴趣的人,这真的让我很伤脑筋。我正在尝试通过遍历数组来为变量赋值。
我的代码是用 Discord.js 编写的用于 Discord 的 TTRPG 工具机器人。对于这个特定的功能,我想让它根据输入的玩家数量滚动 n 统计数据,然后将所有这些滚动汇总在一起并对其进行排序。从那里开始,我想让它蜿蜒穿过排序的数组,为每个玩家提供一个统计数据集,以便每个玩家都尽可能接近公平的竞争环境。
例如,如果输入是 3 名玩家,则机器人将滚动 3 组 6 项统计数据并将它们汇集到一个数组中。为了解释简单,我们假设我们滚动了 1-18 的所有数字。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
会被分配给
A B C C B A A B C C B A A B C C B A
这样最终的变量就会
A = [1, 6, 7, 12, 13, 18]
B = [2, 5, 8, 11, 14, 17]
C = [3, 4, 9, 10, 15, 16]
我现在拥有的代码仅通过循环(A、B、C、A、B、C...)对它们进行排序,这不会导致玩家被平均。我已经尝试了很多不同的方法来获得我需要的结果,但是要么只分配一次结束变量,让中间变量分配更多的统计数据,要么只为每个玩家变量分配一个统计数据。
我试过在网上搜索任何帮助,但是用 "Javascript" 和 "Snake" 谷歌搜索任何东西都只是教你如何制作游戏,所以我真的希望你们能够帮我。非常感谢你,如果我想说的不清楚,我很抱歉,所以我非常乐意回答你可能需要帮助回答这个问题的任何问题!
代码:
if (msgContent.startsWith(".dstats ")) {
let args = msgContent.split(" ").slice(1);
var regex = /^\d+$/;
var statIndex = [];
var reply;
var forward = true;
if(regex.test(args) && args <= 10){
for(var i = 0; i < args*6; i++){
statRoll();
statIndex.push(randStat);
};
distSort = statIndex.sort(sortNumber);
for( j = 0; j < args; j++){
this['player'+j] = [];
};
var playIndex = 0;
for( f = 0; f < distSort.length; f++){
if(playIndex < args && playIndex >= 0){
this['player'+playIndex].push(distSort[f]);
}else {
playIndex = 0;
this['player'+playIndex].push(distSort[f]);
};
playIndex++;
};
reply = "Your stats blocks are as follows:\n";
for (k = 0; k < args; k++){
reply += "Player " + (k+1) +": [" + this['player'+k].join(', ') + "]\n";
};
msg.reply(reply);
}else(
msg.reply("Looks like you inputted an improper number or your number is too high. Check your command and try again!")
);
}
在这种情况下,我建议您尽可能使用 JSON,因为这样可以更轻松地处理您的数据。
无论如何,下面的代码应该可以解决问题:https://jsbin.com/quvexu/edit?js,console
// Declare input and output variables
arr1 = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18];
arr2 = ['a','b','c','c','b','a','a','b','c','c','b','a','a','b','c','c','b','a'];
results = {a:[], b:[], c:[]};
// Do the work
arr2.forEach(function(d,i){ results[d].push(arr1[i]); })
// Print the results
console.log("Results", results);
您可以迭代所需部分的给定长度和部分数量,然后计算出偶数和非偶数部分的值。
var length = 6,
lines = 3,
result = [],
i, j;
for (i = 0; i < length; i++) {
for (j = 0; j < lines; j++) {
result[j] = result[j] || [];
result[j].push(i * lines + (i % 2 ? lines - j : j + 1));
}
}
console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }
您可以进行如下操作。它将处理 n
名玩家,并按照您描述的顺序为每位玩家分配 6 分。
function dealPoints(c){
var nums = Array(6*c).fill().map((_,i) => i+1);
return nums.reduce(function(r,n,i){
var j = i%c;
j === 0 && (r.switch = !r.switch);
r.switch ? r[j].push(n) : r[c-j-1].push(n);
return r;
}, Array(c).fill().map(_ => []));
}
var players = 3,
result = dealPoints(players);
console.log(result);
这可能是一个简单的答案,但我是一个最有兴趣的人,这真的让我很伤脑筋。我正在尝试通过遍历数组来为变量赋值。
我的代码是用 Discord.js 编写的用于 Discord 的 TTRPG 工具机器人。对于这个特定的功能,我想让它根据输入的玩家数量滚动 n 统计数据,然后将所有这些滚动汇总在一起并对其进行排序。从那里开始,我想让它蜿蜒穿过排序的数组,为每个玩家提供一个统计数据集,以便每个玩家都尽可能接近公平的竞争环境。
例如,如果输入是 3 名玩家,则机器人将滚动 3 组 6 项统计数据并将它们汇集到一个数组中。为了解释简单,我们假设我们滚动了 1-18 的所有数字。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
会被分配给
A B C C B A A B C C B A A B C C B A
这样最终的变量就会
A = [1, 6, 7, 12, 13, 18]
B = [2, 5, 8, 11, 14, 17]
C = [3, 4, 9, 10, 15, 16]
我现在拥有的代码仅通过循环(A、B、C、A、B、C...)对它们进行排序,这不会导致玩家被平均。我已经尝试了很多不同的方法来获得我需要的结果,但是要么只分配一次结束变量,让中间变量分配更多的统计数据,要么只为每个玩家变量分配一个统计数据。
我试过在网上搜索任何帮助,但是用 "Javascript" 和 "Snake" 谷歌搜索任何东西都只是教你如何制作游戏,所以我真的希望你们能够帮我。非常感谢你,如果我想说的不清楚,我很抱歉,所以我非常乐意回答你可能需要帮助回答这个问题的任何问题!
代码:
if (msgContent.startsWith(".dstats ")) {
let args = msgContent.split(" ").slice(1);
var regex = /^\d+$/;
var statIndex = [];
var reply;
var forward = true;
if(regex.test(args) && args <= 10){
for(var i = 0; i < args*6; i++){
statRoll();
statIndex.push(randStat);
};
distSort = statIndex.sort(sortNumber);
for( j = 0; j < args; j++){
this['player'+j] = [];
};
var playIndex = 0;
for( f = 0; f < distSort.length; f++){
if(playIndex < args && playIndex >= 0){
this['player'+playIndex].push(distSort[f]);
}else {
playIndex = 0;
this['player'+playIndex].push(distSort[f]);
};
playIndex++;
};
reply = "Your stats blocks are as follows:\n";
for (k = 0; k < args; k++){
reply += "Player " + (k+1) +": [" + this['player'+k].join(', ') + "]\n";
};
msg.reply(reply);
}else(
msg.reply("Looks like you inputted an improper number or your number is too high. Check your command and try again!")
);
}
在这种情况下,我建议您尽可能使用 JSON,因为这样可以更轻松地处理您的数据。
无论如何,下面的代码应该可以解决问题:https://jsbin.com/quvexu/edit?js,console
// Declare input and output variables
arr1 = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18];
arr2 = ['a','b','c','c','b','a','a','b','c','c','b','a','a','b','c','c','b','a'];
results = {a:[], b:[], c:[]};
// Do the work
arr2.forEach(function(d,i){ results[d].push(arr1[i]); })
// Print the results
console.log("Results", results);
您可以迭代所需部分的给定长度和部分数量,然后计算出偶数和非偶数部分的值。
var length = 6,
lines = 3,
result = [],
i, j;
for (i = 0; i < length; i++) {
for (j = 0; j < lines; j++) {
result[j] = result[j] || [];
result[j].push(i * lines + (i % 2 ? lines - j : j + 1));
}
}
console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }
您可以进行如下操作。它将处理 n
名玩家,并按照您描述的顺序为每位玩家分配 6 分。
function dealPoints(c){
var nums = Array(6*c).fill().map((_,i) => i+1);
return nums.reduce(function(r,n,i){
var j = i%c;
j === 0 && (r.switch = !r.switch);
r.switch ? r[j].push(n) : r[c-j-1].push(n);
return r;
}, Array(c).fill().map(_ => []));
}
var players = 3,
result = dealPoints(players);
console.log(result);