2015-01-01 17:20:20 +01:00
|
|
|
// Copyright 2015 Hajime Hoshi
|
2014-12-24 03:04:10 +01:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2014-12-09 15:16:04 +01:00
|
|
|
|
2015-01-01 17:20:20 +01:00
|
|
|
package ui
|
2014-12-05 18:26:02 +01:00
|
|
|
|
|
|
|
import (
|
2014-12-07 15:18:56 +01:00
|
|
|
"fmt"
|
2014-12-05 18:26:02 +01:00
|
|
|
glfw "github.com/go-gl/glfw3"
|
2014-12-30 19:04:52 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2014-12-14 10:57:29 +01:00
|
|
|
"runtime"
|
2014-12-05 18:26:02 +01:00
|
|
|
)
|
|
|
|
|
2015-01-01 19:25:31 +01:00
|
|
|
var current *ui
|
2015-01-01 17:20:20 +01:00
|
|
|
|
2015-01-01 19:25:31 +01:00
|
|
|
func Use(f func(*opengl.Context)) {
|
|
|
|
ch := make(chan struct{})
|
|
|
|
current.funcs <- func() {
|
|
|
|
defer close(ch)
|
|
|
|
f(current.glContext)
|
|
|
|
}
|
|
|
|
<-ch
|
|
|
|
}
|
|
|
|
|
|
|
|
func ActualScale() int {
|
|
|
|
return current.actualScale
|
|
|
|
}
|
|
|
|
|
|
|
|
func DoEvents() {
|
|
|
|
current.doEvents()
|
|
|
|
}
|
|
|
|
|
|
|
|
func Terminate() {
|
|
|
|
current.terminate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsClosed() bool {
|
|
|
|
return current.isClosed()
|
|
|
|
}
|
|
|
|
|
|
|
|
func SwapBuffers() {
|
|
|
|
current.swapBuffers()
|
2015-01-01 17:20:20 +01:00
|
|
|
}
|
2014-12-17 12:03:26 +01:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
runtime.LockOSThread()
|
2014-12-05 18:26:02 +01:00
|
|
|
|
2014-12-17 09:10:38 +01:00
|
|
|
glfw.SetErrorCallback(func(err glfw.ErrorCode, desc string) {
|
|
|
|
panic(fmt.Sprintf("%v: %v\n", err, desc))
|
|
|
|
})
|
2014-12-05 18:26:02 +01:00
|
|
|
if !glfw.Init() {
|
2014-12-17 12:03:26 +01:00
|
|
|
panic("glfw.Init() fails")
|
2014-12-05 18:26:02 +01:00
|
|
|
}
|
2014-12-17 12:03:26 +01:00
|
|
|
glfw.WindowHint(glfw.Visible, glfw.False)
|
2014-12-05 18:26:02 +01:00
|
|
|
glfw.WindowHint(glfw.Resizable, glfw.False)
|
2014-12-17 12:03:26 +01:00
|
|
|
|
|
|
|
window, err := glfw.CreateWindow(16, 16, "", nil, nil)
|
2014-12-07 20:22:50 +01:00
|
|
|
if err != nil {
|
2014-12-17 12:03:26 +01:00
|
|
|
panic(err)
|
2014-12-07 20:22:50 +01:00
|
|
|
}
|
|
|
|
|
2015-01-01 19:25:31 +01:00
|
|
|
u := &ui{
|
2014-12-17 09:10:38 +01:00
|
|
|
window: window,
|
|
|
|
funcs: make(chan func()),
|
2014-12-07 20:22:50 +01:00
|
|
|
}
|
2015-01-01 17:20:20 +01:00
|
|
|
go func() {
|
|
|
|
runtime.LockOSThread()
|
|
|
|
u.window.MakeContextCurrent()
|
2014-12-31 20:30:10 +01:00
|
|
|
u.glContext = opengl.NewContext()
|
2014-12-25 10:42:39 +01:00
|
|
|
glfw.SwapInterval(1)
|
2015-01-01 17:20:20 +01:00
|
|
|
for f := range u.funcs {
|
|
|
|
f()
|
|
|
|
}
|
|
|
|
}()
|
2015-01-01 18:44:00 +01:00
|
|
|
current = u
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
2014-12-10 15:52:37 +01:00
|
|
|
|
2015-01-01 19:25:31 +01:00
|
|
|
type ui struct {
|
2015-01-01 18:23:47 +01:00
|
|
|
window *glfw.Window
|
|
|
|
scale int
|
|
|
|
actualScale int
|
|
|
|
glContext *opengl.Context
|
2015-01-01 19:25:31 +01:00
|
|
|
input input
|
2015-01-01 18:23:47 +01:00
|
|
|
funcs chan func()
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
|
|
|
|
2015-01-01 19:25:31 +01:00
|
|
|
func Start(width, height, scale int, title string) error {
|
2014-12-17 12:03:26 +01:00
|
|
|
monitor, err := glfw.GetPrimaryMonitor()
|
|
|
|
if err != nil {
|
2015-01-01 19:25:31 +01:00
|
|
|
return err
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
|
|
|
videoMode, err := monitor.GetVideoMode()
|
|
|
|
if err != nil {
|
2015-01-01 19:25:31 +01:00
|
|
|
return err
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
|
|
|
x := (videoMode.Width - width*scale) / 2
|
|
|
|
y := (videoMode.Height - height*scale) / 3
|
|
|
|
|
2014-12-26 13:49:31 +01:00
|
|
|
ch := make(chan struct{})
|
2015-01-01 18:44:00 +01:00
|
|
|
ui := current
|
2014-12-31 20:30:10 +01:00
|
|
|
window := ui.window
|
2014-12-26 13:49:31 +01:00
|
|
|
window.SetFramebufferSizeCallback(func(w *glfw.Window, width, height int) {
|
|
|
|
close(ch)
|
|
|
|
})
|
2014-12-17 12:03:26 +01:00
|
|
|
window.SetSize(width*scale, height*scale)
|
|
|
|
window.SetTitle(title)
|
|
|
|
window.SetPosition(x, y)
|
|
|
|
window.Show()
|
|
|
|
|
2014-12-26 12:44:15 +01:00
|
|
|
for {
|
|
|
|
done := false
|
|
|
|
glfw.PollEvents()
|
|
|
|
select {
|
|
|
|
case <-ch:
|
|
|
|
done = true
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
if done {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-17 12:03:26 +01:00
|
|
|
ui.scale = scale
|
2014-12-14 10:57:29 +01:00
|
|
|
|
|
|
|
// For retina displays, recalculate the scale with the framebuffer size.
|
|
|
|
windowWidth, _ := window.GetFramebufferSize()
|
2015-01-01 18:23:47 +01:00
|
|
|
ui.actualScale = windowWidth / width
|
2015-01-01 17:20:20 +01:00
|
|
|
|
2015-01-01 19:25:31 +01:00
|
|
|
return err
|
2015-01-01 17:20:20 +01:00
|
|
|
}
|
|
|
|
|
2015-01-01 19:25:31 +01:00
|
|
|
func (u *ui) doEvents() {
|
2014-12-06 14:56:57 +01:00
|
|
|
glfw.PollEvents()
|
2015-01-01 17:20:20 +01:00
|
|
|
u.input.update(u.window, u.scale)
|
2014-12-05 18:26:02 +01:00
|
|
|
}
|
|
|
|
|
2015-01-01 19:25:31 +01:00
|
|
|
func (u *ui) terminate() {
|
2014-12-05 18:26:02 +01:00
|
|
|
glfw.Terminate()
|
|
|
|
}
|
2014-12-10 02:42:47 +01:00
|
|
|
|
2015-01-01 19:25:31 +01:00
|
|
|
func (u *ui) isClosed() bool {
|
2014-12-14 10:57:29 +01:00
|
|
|
return u.window.ShouldClose()
|
2014-12-10 02:42:47 +01:00
|
|
|
}
|
2014-12-10 17:06:38 +01:00
|
|
|
|
2015-01-01 19:25:31 +01:00
|
|
|
func (u *ui) swapBuffers() {
|
2015-01-01 17:20:20 +01:00
|
|
|
u.window.SwapBuffers()
|
2014-12-14 10:57:29 +01:00
|
|
|
}
|