UNPKG

scrabble-solver

Version:

Scrabble Solver 2 - Free, open-source, cross-platform, multi-language analysis tool for Scrabble, Scrabble Duel, Super Scrabble, Letter League, Literaki, and Kelimelik. Quickly find the top-scoring words using the given board and tiles.

35 lines (34 loc) 1.28 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HorizontalPattern = void 0; const Pattern_1 = require("./Pattern"); class HorizontalPattern extends Pattern_1.Pattern { clone() { return new HorizontalPattern(this.board, this.cells.map((cell) => cell.clone())); } getCollisions() { const collisions = []; this.cells .filter((cell) => cell.isEmpty && (this.board.collidesUp(cell) || this.board.collidesDown(cell))) .forEach((cell) => { const column = this.board.getColumn(cell.x); let y = cell.y - 1; while (y >= 0 && column[y].hasTile()) { --y; } const previousCells = column.slice(y + 1, cell.y); y = cell.y + 1; while (y < column.length && column[y].hasTile()) { ++y; } const nextCells = column.slice(cell.y + 1, y); const cells = [...previousCells, cell, ...nextCells]; if (cells.length > 1) { const pattern = new Pattern_1.Pattern(this.board, cells); collisions.push(pattern); } }); return collisions; } } exports.HorizontalPattern = HorizontalPattern;