ebiten/ui.go

85 lines
1.8 KiB
Go
Raw Normal View History

2014-12-09 15:16:04 +01:00
/*
Copyright 2014 Hajime Hoshi
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-14 08:53:32 +01:00
package ebiten
2014-12-05 18:26:02 +01:00
import (
2014-12-06 20:14:35 +01:00
"errors"
"fmt"
2014-12-05 18:26:02 +01:00
glfw "github.com/go-gl/glfw3"
)
func init() {
2014-12-06 14:56:57 +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
})
}
2014-12-14 08:53:32 +01:00
type ui struct {
canvas *canvas
2014-12-05 18:26:02 +01:00
}
2014-12-14 08:53:32 +01:00
func (u *ui) Start(game Game, width, height, scale int, title string) error {
2014-12-05 18:26:02 +01:00
if !glfw.Init() {
2014-12-10 02:42:47 +01:00
return errors.New("glfw.Init() fails")
2014-12-05 18:26:02 +01:00
}
glfw.WindowHint(glfw.Resizable, glfw.False)
2014-12-07 20:22:50 +01:00
window, err := glfw.CreateWindow(width*scale, height*scale, title, nil, nil)
if err != nil {
2014-12-10 02:42:47 +01:00
return err
2014-12-07 20:22:50 +01:00
}
c := &canvas{
window: window,
scale: scale,
2014-12-07 20:22:50 +01:00
funcs: make(chan func()),
funcsDone: make(chan struct{}),
}
c.run(width, height, scale)
// For retina displays, recalculate the scale with the framebuffer size.
windowWidth, _ := window.GetFramebufferSize()
realScale := windowWidth / width
c.use(func() {
2014-12-14 08:53:32 +01:00
c.graphicsContext, err = initialize(width, height, realScale)
2014-12-07 20:22:50 +01:00
})
if err != nil {
2014-12-10 02:42:47 +01:00
return err
2014-12-07 20:22:50 +01:00
}
u.canvas = c
2014-12-10 02:42:47 +01:00
return nil
2014-12-05 18:26:02 +01:00
}
2014-12-14 08:53:32 +01:00
func (u *ui) DoEvents() {
2014-12-06 14:56:57 +01:00
glfw.PollEvents()
2014-12-05 19:10:17 +01:00
u.canvas.update()
2014-12-05 18:26:02 +01:00
}
2014-12-14 08:53:32 +01:00
func (u *ui) Terminate() {
2014-12-05 18:26:02 +01:00
glfw.Terminate()
}
2014-12-10 02:42:47 +01:00
2014-12-14 08:53:32 +01:00
func (u *ui) IsClosed() bool {
2014-12-10 02:42:47 +01:00
return u.canvas.isClosed()
}
2014-12-14 08:53:32 +01:00
func (u *ui) DrawGame(game Game) error {
return u.canvas.draw(game)
}