2016-05-18 20:17:50 +02:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2016-06-15 17:49:22 +02:00
|
|
|
// +build android ios darwin,arm darwin,arm64
|
2016-05-18 20:17:50 +02:00
|
|
|
|
|
|
|
package ui
|
|
|
|
|
|
|
|
import (
|
2016-05-19 16:37:58 +02:00
|
|
|
"errors"
|
2016-06-09 18:21:46 +02:00
|
|
|
"time"
|
2016-05-19 16:37:58 +02:00
|
|
|
|
2016-05-18 20:17:50 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics/opengl"
|
|
|
|
)
|
|
|
|
|
|
|
|
func initialize() (*opengl.Context, error) {
|
2016-05-19 16:37:58 +02:00
|
|
|
return opengl.NewContext()
|
2016-05-18 20:17:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func Main() error {
|
2016-05-19 16:37:58 +02:00
|
|
|
return errors.New("ui: don't call this: use RunWithoutMainLoop instead of Run")
|
|
|
|
}
|
|
|
|
|
|
|
|
func Render(chError <-chan error) error {
|
|
|
|
if chError == nil {
|
|
|
|
return errors.New("ui: chError must not be nil")
|
|
|
|
}
|
|
|
|
// TODO: Check this is called on the rendering thread
|
2016-06-18 12:55:04 +02:00
|
|
|
if chGLInitialized != nil {
|
|
|
|
if err := doGLWorks(chError, glContext.InitializedCh()); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
close(chGLInitialized)
|
|
|
|
<-chGLInitializedEnd
|
|
|
|
}
|
2016-06-09 18:21:46 +02:00
|
|
|
select {
|
|
|
|
case chRender <- struct{}{}:
|
|
|
|
return doGLWorks(chError, chRenderEnd)
|
|
|
|
case <-time.After(500 * time.Millisecond):
|
2016-06-10 17:56:29 +02:00
|
|
|
// This function must not be blocked. We need to break for timeout.
|
2016-06-09 18:21:46 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func doGLWorks(chError <-chan error, chDone <-chan struct{}) error {
|
|
|
|
// TODO: Check this is called on the rendering thread
|
2016-05-19 16:37:58 +02:00
|
|
|
worker := glContext.Worker()
|
|
|
|
loop:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case err := <-chError:
|
|
|
|
return err
|
|
|
|
case <-worker.WorkAvailable():
|
|
|
|
worker.DoWork()
|
2016-06-06 19:24:36 +02:00
|
|
|
default:
|
|
|
|
select {
|
2016-06-09 18:21:46 +02:00
|
|
|
case <-chDone:
|
2016-06-06 19:24:36 +02:00
|
|
|
break loop
|
|
|
|
default:
|
|
|
|
}
|
2016-05-19 16:37:58 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-18 20:17:50 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
type userInterface struct {
|
2016-06-18 17:55:24 +02:00
|
|
|
width int
|
|
|
|
height int
|
2016-06-18 19:59:17 +02:00
|
|
|
scale float64
|
2016-06-18 17:55:24 +02:00
|
|
|
sizeChanged bool
|
2016-05-18 20:17:50 +02:00
|
|
|
}
|
|
|
|
|
2016-05-19 16:37:58 +02:00
|
|
|
var (
|
2016-06-18 12:55:04 +02:00
|
|
|
chRender = make(chan struct{})
|
|
|
|
chRenderEnd = make(chan struct{})
|
|
|
|
chGLInitialized = make(chan struct{})
|
|
|
|
chGLInitializedEnd = make(chan struct{})
|
|
|
|
currentUI = &userInterface{
|
2016-05-19 16:37:58 +02:00
|
|
|
sizeChanged: true,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func CurrentUI() UserInterface {
|
2016-05-19 16:37:58 +02:00
|
|
|
return currentUI
|
2016-05-18 20:17:50 +02:00
|
|
|
}
|
|
|
|
|
2016-06-18 19:59:17 +02:00
|
|
|
func (u *userInterface) Start(width, height int, scale float64, title string) error {
|
2016-05-19 16:37:58 +02:00
|
|
|
u.width = width
|
|
|
|
u.height = height
|
|
|
|
u.scale = scale
|
|
|
|
// title is ignored?
|
2016-05-18 20:17:50 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func (u *userInterface) Terminate() error {
|
2016-05-18 20:17:50 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func (u *userInterface) Update() (interface{}, error) {
|
2016-05-19 16:37:58 +02:00
|
|
|
// TODO: Need lock?
|
2016-06-18 12:55:04 +02:00
|
|
|
if chGLInitialized != nil {
|
|
|
|
<-chGLInitialized
|
|
|
|
chGLInitialized = nil
|
|
|
|
close(chGLInitializedEnd)
|
|
|
|
}
|
2016-05-19 16:37:58 +02:00
|
|
|
if u.sizeChanged {
|
|
|
|
u.sizeChanged = false
|
|
|
|
e := ScreenSizeEvent{
|
|
|
|
Width: u.width,
|
|
|
|
Height: u.height,
|
|
|
|
ActualScale: u.actualScreenScale(),
|
|
|
|
}
|
|
|
|
return e, nil
|
|
|
|
}
|
2016-06-12 16:54:36 +02:00
|
|
|
<-chRender
|
|
|
|
return RenderEvent{chRenderEnd}, nil
|
2016-05-18 20:17:50 +02:00
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func (u *userInterface) SwapBuffers() error {
|
2016-05-18 20:17:50 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func (u *userInterface) SetScreenSize(width, height int) bool {
|
2016-05-19 16:37:58 +02:00
|
|
|
// TODO: Implement
|
2016-05-18 20:17:50 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-06-18 19:59:17 +02:00
|
|
|
func (u *userInterface) SetScreenScale(scale float64) bool {
|
2016-05-19 16:37:58 +02:00
|
|
|
// TODO: Implement
|
2016-05-18 20:17:50 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-06-18 19:59:17 +02:00
|
|
|
func (u *userInterface) ScreenScale() float64 {
|
2016-05-19 16:37:58 +02:00
|
|
|
return u.scale
|
|
|
|
}
|
|
|
|
|
2016-06-18 19:59:17 +02:00
|
|
|
func (u *userInterface) actualScreenScale() float64 {
|
|
|
|
return u.scale * deviceScale()
|
2016-05-18 20:17:50 +02:00
|
|
|
}
|
2016-05-22 19:06:01 +02:00
|
|
|
|
2016-05-28 16:15:28 +02:00
|
|
|
func UpdateTouches(touches []Touch) {
|
|
|
|
currentInput.updateTouches(touches)
|
2016-05-22 19:06:01 +02:00
|
|
|
}
|