排行榜
// 當玩家進入游戲時
world.onPlayerJoin(({ entity }) => {
? ? // 設(shè)置剛進入游戲的玩家持有金幣(coin)數(shù)量為0
? ? entity.player.coin = 0
? ??
? ? // 當玩家按下按鍵時,觸發(fā)交互
? ? entity.player.onPress(({ button }) => {
? ? ? ? if (button === Box3ButtonType.ACTION0) {
? ? ? ? ? ? entity.player.dialog({
? ? ? ? ? ? ? ? type: Box3DialogType.TEXT,
? ? ? ? ? ? ? ? title: "金幣排行榜",
? ? ? ? ? ? ? ? content: dialogContent(),
? ? ? ? ? ? })
? ? ? ? }
? ? })
});
// 找到世界中的"AT M"機器模型
const atm = world.querySelector(`#ATM`)
// 設(shè)置AM機器可互動
atm.enableInteract = true
// 設(shè)置ATM機器互動距離為5
atm.interactRadius = 5;
// 監(jiān)聽世界中的互動事件
world.onInteract(({ entity, targetEntity }) => {
? ? // 判斷被"互動"的實體,
? ? if (targetEntity.id === "ATM") {
? ? ? ? entity.player.coin = entity.player.coin + 1;
? ? ? ? world.say(`${entity.player.name}獲得了1金幣!`);
? ? }
})
// 對話框內(nèi)容
function dialogContent() {
? ? // 首先獲取當前世界中的所有玩家
? ? const allPlayerEntities = world.querySelectorAll('player');
? ??
? ? // 然后將所有的玩家進行排序,排序的規(guī)則是按照玩家持有的金幣數(shù)量降序
? ? const sortedPlayerEntities = allPlayerEntities.sort((a, b)=>? b.player.coin - a.player.coin);
? ??
? ??
? ? // 接下來,我們將在排行榜上以: xxx 有 yyy 個金幣 的格式展示,并且每一條信息換一行顯示!
? ? ? ? // 首先聲明一個content字符串,一會用來保存每一個玩家的信息
? ? ? ? let content = "";
? ??
? ? // 在這里需要做一個循環(huán)遍歷,將剛才得到的有序的玩家數(shù)組遍歷一遍
? ? for(const entity of sortedPlayerEntities ) {
? ? ? ??
? ? ? ? // 在遍歷的過程中,每一次遍歷,我們拿到當前的實體(entity),
? ? ? ? // 將實體上的玩家名字(player.name)以及玩家金幣數(shù)量(player.coin)拼接成排行榜上的一行信息
? ? ? ? // 這樣就得到: xxx 有 yyy 個金幣 的格式啦
? ? ? ? // 我們在這個文字的末尾加一個\n, 這樣我們就能實現(xiàn)換行的效果
? ? ? ? // 緊接著,再把這行信息加上content,這樣做是為了把每一個玩家的排行榜信息拼接起來,保存到content中
? ? ? ? content = content + `${entity.player.name}有${entity.player.coin}個金幣\n`
? ? }
? ??
? ? // 最后,把得到的完整的帶有玩家名稱和金幣數(shù)量,并且會換行的排行榜數(shù)據(jù)(content)返回出去
? ? return content
}