nikoli/views/application.coffee

198 lines
5.1 KiB
CoffeeScript
Raw Normal View History

2014-12-09 17:33:32 +01:00
window.Nikoli = {}
2014-12-09 12:30:29 +01:00
class Nikoli.Game
constructor: (@board, @name, @url) ->
2014-12-09 12:30:29 +01:00
@name = 'nikoli' unless @name?
@url = "/data/#{@name}" unless @url?
2014-12-09 12:30:29 +01:00
@board.classList.add @name
@grid = document.createElement 'div'
@grid.classList.add 'game-container'
@board.appendChild @grid
@getFiles()
2014-12-09 12:30:29 +01:00
buttons_div = document.createElement 'div'
buttons = {check: 'Check', reset: 'Reset', newgame: 'New game', help: '?'}
for k,v of buttons
button = document.createElement 'button'
button.innerHTML = v
button.classList.add k
buttons_div.appendChild button
@board.appendChild buttons_div
@board.querySelector('.check').addEventListener('click', @check.bind(this))
@board.querySelector('.reset').addEventListener('click', @reset.bind(this))
@board.querySelector('.newgame').addEventListener('click', @newgame.bind(this))
2014-12-09 12:30:29 +01:00
2014-12-11 22:29:46 +01:00
congratulations = document.createElement 'div'
congratulations.innerHTML = 'Congratulations!'
congratulations.classList.add 'congratulations'
congratulations.classList.add 'hide'
@board.appendChild congratulations
errors = document.createElement 'ul'
errors.classList.add 'errors'
errors.classList.add 'hide'
@board.appendChild errors
2014-12-09 12:30:29 +01:00
check: ->
errors = @errors()
if errors.length == 0
[].forEach.call @board.querySelectorAll('.error'), (cell) ->
cell.classList.remove 'error'
@board.querySelector('.errors').classList.remove('show')
2014-12-11 22:29:46 +01:00
@board.querySelector('.congratulations').classList.add('show')
2014-12-09 12:30:29 +01:00
else
errors_elem = @board.querySelector('.errors')
errors_elem.innerHTML = ''
errors.forEach (error) =>
error_cell = @board.querySelector("[data-row=\"#{error.row}\"][data-column=\"#{error.column}\"]")
error_cell.classList.add 'error'
li = document.createElement('li')
li.innerHTML = error.message
errors_elem.appendChild li
@board.querySelector('.congratulations').classList.remove('show')
errors_elem.classList.add('show')
2014-12-09 12:30:29 +01:00
2014-12-12 12:18:22 +01:00
generate: (game, solution = false, cell_class = Nikoli.Cell) ->
@game = game if game?
@board.querySelector('.congratulations').classList.remove('show')
@board.querySelector('.errors').classList.remove('show')
2014-12-12 12:18:22 +01:00
@grid.innerHTML = ''
@game.forEach((row, i) =>
row_elem = new Nikoli.Row().create()
row.forEach((cell, j) ->
row_elem.appendChild new cell_class(i, j).create(cell))
@grid.appendChild row_elem)
return
getFiles: ->
xmlhttp = new XMLHttpRequest()
xmlhttp.open("GET", "#{@url}.json")
xmlhttp.addEventListener('load', (evt) =>
@setFiles JSON.parse(evt.target.responseText))
xmlhttp.send()
setFiles: (files) ->
@files = files
@file = @files[0]
@newgame() unless @game?
newgame: ->
xmlhttp = new XMLHttpRequest()
xmlhttp.open("GET", "#{@url}/#{@file}.json")
xmlhttp.addEventListener('load', (evt) =>
@generate JSON.parse(evt.target.responseText))
xmlhttp.send()
2014-12-09 12:30:29 +01:00
reset: ->
@generate()
2014-12-12 12:18:22 +01:00
class Nikoli.Row
create: ->
row = document.createElement 'div'
row.classList.add 'grid-row'
row
2014-12-09 17:33:32 +01:00
class Nikoli.Cell
constructor: (@row, @column, @game) ->
@value = @game[@row][@column] if @game? && @valid()
2014-12-12 12:18:22 +01:00
create: (value) ->
cell = document.createElement 'div'
cell.dataset.row = @row
cell.dataset.column = @column
2014-12-12 12:18:22 +01:00
cell.classList.add 'grid-cell'
cell.innerHTML = ' '
cell
2014-12-09 17:33:32 +01:00
toString: -> "#{@row};#{@column}"
2014-12-09 17:33:32 +01:00
2014-12-11 17:26:08 +01:00
getColumn: ->
column = []
column.push @game[i][@column] for i in [0...@game.length]
2014-12-11 17:26:08 +01:00
column
getRow: -> @game[@row]
2014-12-11 17:26:08 +01:00
2014-12-09 17:33:32 +01:00
adjacentCells: ->
constructor = Object.getPrototypeOf(this).constructor
2014-12-09 17:33:32 +01:00
[
new constructor(@row + 1, @column, @game),
new constructor(@row - 1, @column, @game),
new constructor(@row, @column + 1, @game),
new constructor(@row, @column - 1, @game)
2014-12-09 17:33:32 +01:00
]
valid: (value) ->
0 <= @row < @game.length && 0 <= @column < @game[@row].length &&
(!value? || value < 0 && @game[@row][@column] < 0 || value >= 0 && @game[@row][@column] >= 0)
2014-12-09 17:33:32 +01:00
duplicatesIn: (array) ->
array.filter((cell) => cell == @value).length > 1
columnDuplicates: ->
2014-12-11 17:26:08 +01:00
@duplicatesIn @getColumn()
rowDuplicates: ->
2014-12-11 17:26:08 +01:00
@duplicatesIn @getRow()
squareDuplicates: (from, size) ->
square = []
for i in [from.row...(from.row + size)]
for j in [from.column...(from.column + size)]
square.push @game[i][j]
@duplicatesIn square
class Nikoli.Stream
constructor: (@game) ->
@cells = []
calculate: (cell) ->
@cells = []
2014-12-09 17:33:32 +01:00
@type = if cell.value < 0 then 'black' else 'white'
cells_to_process = [cell]
while cells_to_process.length > 0
cell = cells_to_process.pop()
cells_to_process = cells_to_process.concat @process(cell) unless @include(cell)
@cells
empty: ->
@cells.length == 0
include: (cell) ->
2014-12-09 17:33:32 +01:00
@cells.indexOf(cell.toString()) >= 0
length: ->
@cells.length
process: (cell) ->
2014-12-09 17:33:32 +01:00
@cells.push(cell.toString())
cell.adjacentCells().filter((adj_cell) -> adj_cell.valid(cell.value))