ebiten/internal/ui/ui_mobile.go

166 lines
3.2 KiB
Go
Raw Normal View History

// 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.
// +build android
package ui
import (
2016-05-19 16:37:58 +02:00
"errors"
"github.com/hajimehoshi/ebiten/internal/graphics/opengl"
)
func initialize() (*opengl.Context, error) {
2016-05-19 16:37:58 +02:00
return opengl.NewContext()
}
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
chRender <- struct{}{}
worker := glContext.Worker()
loop:
for {
select {
case err := <-chError:
return err
case <-worker.WorkAvailable():
worker.DoWork()
case <-chRenderEnd:
break loop
}
}
return nil
}
type userInterface struct {
2016-05-19 16:37:58 +02:00
width int
height int
scale int
sizeChanged bool
2016-05-23 17:00:54 +02:00
chRender chan struct{}
chRenderEnd chan struct{}
chPause chan struct{}
chResume chan struct{}
}
2016-05-19 16:37:58 +02:00
var (
chRender = make(chan struct{})
chRenderEnd = make(chan struct{})
currentUI = &userInterface{
sizeChanged: true,
2016-05-23 17:00:54 +02:00
chRender: chRender,
chRenderEnd: chRenderEnd,
2016-05-19 16:37:58 +02:00
}
)
func CurrentUI() UserInterface {
2016-05-19 16:37:58 +02:00
return currentUI
}
func (u *userInterface) Start(width, height, scale int, title string) error {
2016-05-19 16:37:58 +02:00
u.width = width
u.height = height
u.scale = scale
// title is ignored?
return nil
}
func (u *userInterface) Terminate() error {
return nil
}
func (u *userInterface) Update() (interface{}, error) {
2016-05-19 16:37:58 +02:00
// TODO: Need lock?
if u.sizeChanged {
u.sizeChanged = false
e := ScreenSizeEvent{
Width: u.width,
Height: u.height,
Scale: u.scale,
ActualScale: u.actualScreenScale(),
}
return e, nil
}
select {
2016-05-23 17:00:54 +02:00
case <-u.chPause:
return PauseEvent{}, nil
case <-u.chResume:
return ResumeEvent{}, nil
case <-u.chRender:
2016-05-19 16:37:58 +02:00
return RenderEvent{}, nil
}
}
func (u *userInterface) SwapBuffers() error {
return nil
}
2016-05-19 16:37:58 +02:00
func (u *userInterface) FinishRendering() error {
2016-05-23 17:00:54 +02:00
u.chRenderEnd <- struct{}{}
2016-05-19 16:37:58 +02:00
return nil
}
func (u *userInterface) SetScreenSize(width, height int) bool {
2016-05-19 16:37:58 +02:00
// TODO: Implement
return false
}
func (u *userInterface) SetScreenScale(scale int) bool {
2016-05-19 16:37:58 +02:00
// TODO: Implement
return false
}
func (u *userInterface) ScreenScale() int {
2016-05-19 16:37:58 +02:00
return u.scale
}
func (u *userInterface) actualScreenScale() int {
return u.scale
}
2016-05-22 19:06:01 +02:00
2016-05-23 17:00:54 +02:00
func Pause() {
go func() {
currentUI.chPause <- struct{}{}
}()
}
func Resume() {
go func() {
currentUI.chResume <- struct{}{}
}()
}
2016-05-22 19:06:01 +02:00
func TouchDown(x, y int) {
s := currentUI.actualScreenScale()
currentInput.touchDown(x/s, y/s)
}
func TouchUp(x, y int) {
s := currentUI.actualScreenScale()
currentInput.touchUp(x/s, y/s)
}
func TouchMove(x, y int) {
s := currentUI.actualScreenScale()
currentInput.touchMove(x/s, y/s)
}