class Nikoli.Nurikabe extends Nikoli.Game constructor: (@board, @name = 'nurikabe') -> super @board, @name errors: -> solution = @toArray() errors = [] processed_cells = [] black_stream = new Nikoli.Stream(solution) white_walls = [] for i in [0...solution.length] row = solution[i] for j in [0...row.length] cell = solution[i][j] if cell < 0 if black_stream.empty() black_stream.calculate({x: i, y: j}) else if !black_stream.include({x: i, y: j}) errors.push {row: i, column: j, message: 'The stream must be continuous'} else if cell > 0 if white_walls.some((wall) -> wall.include({x: i, y: j})) errors.push {row: i, column: j, message: 'Each wall must contain exactly one numbered cell.'} else wall = new Nikoli.Stream(solution) wall.calculate({x: i, y: j}) if wall.length() != cell errors.push {row: i, column: j, message: 'Each numbered cell is a wall cell, the number in it is the number of cells in that wall.'} white_walls.push(wall) errors generate: (game, solution = false) -> @game = game if game? @grid.innerHTML = @game.map((row) -> '