39 lines
883 B
CoffeeScript
39 lines
883 B
CoffeeScript
class AsciiIo.PlayerView extends Backbone.View
|
|
|
|
initialize: (options) ->
|
|
@movie = new AsciiIo.Movie(options.data, options.timing)
|
|
@terminalView = new AsciiIo.TerminalView(
|
|
cols: this.options.cols
|
|
lines: this.options.lines
|
|
)
|
|
|
|
@vt = new AsciiIo.VT(options.cols, options.lines, @terminalView)
|
|
|
|
@createChildViews()
|
|
@bindEvents()
|
|
|
|
createChildViews: ->
|
|
@$el.append(@terminalView.$el)
|
|
|
|
@hudView = new AsciiIo.HudView()
|
|
@$el.append(@hudView.$el)
|
|
|
|
bindEvents: ->
|
|
@terminalView.on 'terminal-click', =>
|
|
@movie.togglePlay()
|
|
|
|
@hudView.on 'hud-play-click', =>
|
|
@movie.togglePlay()
|
|
|
|
@hudView.on 'hud-seek-click', (percent) =>
|
|
@movie.seek(percent)
|
|
|
|
@movie.on 'movie-frame', (frame) =>
|
|
@vt.feed(frame)
|
|
|
|
@movie.on 'movie-finished', =>
|
|
@terminalView.stopCursorBlink()
|
|
|
|
play: ->
|
|
@movie.play()
|