game config & randInt
| const memoryItemPool = [ |
| '🌕', '🚀', '🐝', '🍀', '⌛', '📞', '👀', '📪', '📫', '🚃', |
| '🚢', '🚇', '⛄', '🍦', '🏂', '🥶', '🐧', '💜', '🔥', '🌶', |
| '🍵', '🫖', '⭐', '💋', '🌏', '💪' |
| ] |
| |
| let currentGameItems = [] |
| const gameState = { |
| status: 'uninitialised', |
| processing: false, |
| difficulty: 'count only', |
| favourite: false, |
| stats: { |
| health: 0, |
| count: 0, |
| }, |
| grid: [], |
| } |
| |
| |
| function randInt(max) { |
| return Math.floor(Math.random() * max); |
| } |
initialisation
| function init () { |
| |
| let memoryPool = [...memoryItemPool] |
| currentGameItems = [] |
| while (currentGameItems.length < 12) { |
| let i = randInt(memoryPool.length) |
| let [item] = memoryPool.splice(i, 1) |
| currentGameItems.push(item) |
| } |
| |
| |
| let currentItemPool = [...currentGameItems] |
| currentItemPool.push(...currentGameItems) |
| gameState.grid = [] |
| for (let row=0; row < 4; row++) { |
| gameState.grid.push([]) |
| for (let col=0; col < 6; col++) { |
| let i = randInt(currentItemPool.length) |
| let [item] = currentItemPool.splice(i, 1) |
| gameState.grid[row].push({ |
| item: item, |
| hidden: true, |
| solved: false, |
| }) |
| } |
| } |
| |
| |
| createCards(gameState.grid) |
| |
| gameState.status = 'initialised' |
| } |
creating cards
| function createCards(grid) { |
| $cards = $( '#cards' ) |
| $cards.children().remove() |
| for (let row=0; row<4; row++) { |
| let $row = $( '<div class="row"></div>' ) |
| $cards.append($row) |
| for (let col=0; col<6; col++) { |
| $card = $( `<div class="card"><div class="content">${grid[row][col].item}</div></div>` ) |
| $card.attr('row', row) |
| $card.attr('col', col) |
| $card.on('click', clickMemoryCard) |
| $row.append($card) |
| } |
| } |
| } |
handle card clicks
| function clickMemoryCard(event) { |
| |
| |
| if (gameState.status === 'done' || gameState.processing) { |
| return |
| } |
| |
| |
| |
| let $card = $( event.target ) |
| if ($card.hasClass('content')) { |
| $card = $card.parent() |
| } |
| |
| |
| let row = $card.attr('row') |
| let col = $card.attr('col') |
| if ( gameState.grid[row][col].hidden ) { |
| gameState.grid[row][col].hidden = false |
| |
| $card.children().show( 'slow', processGrid ) |
| } |
| } |
processing the grid
| function processGrid () { |
| gameState.processing = true |
| let openUnsolved = getOpenUnsolvedCards() |
| |
| if (openUnsolved.length < 2) { |
| gameState.processing = false |
| return |
| } |
| |
| if (openUnsolved[0].card.item === openUnsolved[1].card.item) { |
| openUnsolved[0].card.solved = true |
| openUnsolved[1].card.solved = true |
| gameState.processing = false |
| return |
| } |
| |
| |
| setTimeout(() => { |
| let row, col |
| let $card |
| let $cards = $( '#cards' ) |
| row = openUnsolved[0].row |
| col = openUnsolved[0].col |
| gameState.grid[row][col].hidden = true |
| $card = $cards.children().eq(row).children().eq(col) |
| $card.children().hide('slow') |
| row = openUnsolved[1].row |
| col = openUnsolved[1].col |
| gameState.grid[row][col].hidden = true |
| $card = $cards.children().eq(row).children().eq(col) |
| |
| $card.children().hide('slow', () => {gameState.processing = false}) |
| }, 500) |
| } |
a little helper & document ready function
| function getOpenUnsolvedCards () { |
| let ret = [] |
| for (let row=0; row < 4; row++) { |
| for (let col=0; col < 6; col++) { |
| if (!gameState.grid[row][col].hidden && !gameState.grid[row][col].solved) { |
| ret.push({ |
| row: row, |
| col: col, |
| card: gameState.grid[row][col] |
| }) |
| } |
| } |
| } |
| return ret |
| } |
| |
| $( document ).ready(function () { |
| init() |
| }) |
additional debugging help
| |
| |
| |
| |
| |
| |
| function debugGrid () { |
| for (let row=0; row < 4; row++) { |
| let r = '' |
| for(let col=0; col < 6; col++) { |
| r += gameState.grid[row][col].item + ' ' |
| } |
| console.log(r) |
| } |
| } |
Remember: Use the console, young Codawan!
(you can now use debugGrid()
in the console any time you need to know where the pairs are hidden)