2015-07-08 01:10:34 +02:00
|
|
|
require 'opal/pixi'
|
|
|
|
require 'native'
|
2015-07-09 14:23:36 +02:00
|
|
|
require "main/lib/registers_view"
|
2015-07-06 20:55:34 +02:00
|
|
|
|
2015-07-09 14:23:36 +02:00
|
|
|
class MainView
|
2015-07-09 11:32:29 +02:00
|
|
|
|
2015-07-06 20:55:34 +02:00
|
|
|
def initialize
|
2015-07-09 14:23:36 +02:00
|
|
|
@container = PIXI::Container.new
|
2015-07-09 11:32:29 +02:00
|
|
|
|
|
|
|
height = `window.innerHeight`
|
|
|
|
width = `window.innerWidth`
|
2015-07-09 14:23:36 +02:00
|
|
|
renderer = PIXI::WebGLRenderer.new( width - 100 , height - 100, {"backgroundColor" => 0xFFFFFF})
|
2015-07-08 01:10:34 +02:00
|
|
|
body = Native(`window.document.body`)
|
|
|
|
# bit of a hack as it assumes index's structure
|
2015-07-09 11:32:29 +02:00
|
|
|
html_con = body.firstElementChild
|
|
|
|
html_con.insertBefore renderer.view , html_con.lastElementChild
|
2015-07-06 20:55:34 +02:00
|
|
|
|
2015-07-09 14:23:36 +02:00
|
|
|
@container.add_child RegisterView.new(height - 150)
|
2015-07-06 20:55:34 +02:00
|
|
|
|
2015-07-08 01:10:34 +02:00
|
|
|
animate = Proc.new do
|
2015-07-09 11:32:29 +02:00
|
|
|
`requestAnimationFrame(animate)`
|
2015-07-09 14:23:36 +02:00
|
|
|
renderer.render @container
|
2015-07-06 20:55:34 +02:00
|
|
|
end
|
2015-07-09 11:32:29 +02:00
|
|
|
animate.call
|
2015-07-09 14:23:36 +02:00
|
|
|
|
2015-07-06 20:55:34 +02:00
|
|
|
end
|
2015-07-09 14:23:36 +02:00
|
|
|
|
|
|
|
attr_reader :container
|
2015-07-06 20:55:34 +02:00
|
|
|
end
|