ebiten/run.go

209 lines
5.7 KiB
Go
Raw Normal View History

// 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-09 15:16:04 +01:00
2014-12-14 08:53:32 +01:00
package ebiten
2014-12-06 17:09:59 +01:00
import (
"time"
2016-02-07 19:26:58 +01:00
"github.com/hajimehoshi/ebiten/internal/ui"
)
2016-03-26 09:50:00 +01:00
type runContext struct {
2015-02-09 02:25:00 +01:00
fps float64
newScreenWidth int
newScreenHeight int
2015-02-09 16:10:50 +01:00
newScreenScale int
2016-02-27 18:25:53 +01:00
isRunningSlowly bool
2016-03-26 09:50:00 +01:00
}
2015-01-11 08:01:56 +01:00
2016-03-26 09:50:00 +01:00
var currentRunContext = &runContext{}
2016-03-12 20:48:13 +01:00
2016-03-26 09:50:00 +01:00
func (c *runContext) CurrentFPS() float64 {
2016-03-26 09:59:36 +01:00
if c == nil {
// TODO: Should panic here?
return 0
}
2016-03-26 09:50:00 +01:00
return c.fps
2015-01-11 08:01:56 +01:00
}
2015-01-07 16:56:21 +01:00
2016-03-26 09:50:00 +01:00
func (c *runContext) IsRunningSlowly() bool {
2016-03-26 09:59:36 +01:00
if c == nil {
// TODO: Should panic here?
return false
}
2016-03-26 09:50:00 +01:00
return c.isRunningSlowly
2016-02-27 18:25:53 +01:00
}
2016-03-26 10:17:06 +01:00
func (c *runContext) updateScreenSize(g *graphicsContext) error {
if c.newScreenWidth == 0 && c.newScreenHeight == 0 && c.newScreenScale == 0 {
return nil
}
changed := false
if 0 < c.newScreenWidth || 0 < c.newScreenHeight {
c := ui.CurrentUI().SetScreenSize(c.newScreenWidth, c.newScreenHeight)
changed = changed || c
}
if 0 < c.newScreenScale {
c := ui.CurrentUI().SetScreenScale(c.newScreenScale)
changed = changed || c
}
if changed {
w, h := c.newScreenWidth, c.newScreenHeight
if err := g.setSize(w, h, ui.CurrentUI().ActualScreenScale()); err != nil {
return err
}
}
c.newScreenWidth = 0
c.newScreenHeight = 0
c.newScreenScale = 0
return nil
}
2016-03-26 09:50:00 +01:00
func (c *runContext) Run(f func(*Image) error, width, height, scale int, title string) error {
2016-03-24 16:38:30 +01:00
if err := ui.CurrentUI().Start(width, height, scale, title); err != nil {
2015-01-01 17:20:20 +01:00
return err
}
2016-03-24 16:38:30 +01:00
defer ui.CurrentUI().Terminate()
2015-01-01 17:20:20 +01:00
glContext.Check()
2016-03-24 16:38:30 +01:00
graphicsContext, err := newGraphicsContext(width, height, ui.CurrentUI().ActualScreenScale())
2014-12-14 10:57:29 +01:00
if err != nil {
return err
}
2014-12-14 09:28:19 +01:00
2015-01-07 16:56:21 +01:00
frames := 0
2016-02-27 18:16:57 +01:00
now := ui.Now()
beforeForUpdate := now
beforeForFPS := now
2014-12-06 17:09:59 +01:00
for {
2016-02-23 16:31:25 +01:00
// TODO: setSize should be called after swapping buffers?
2016-03-26 10:17:06 +01:00
if err := c.updateScreenSize(graphicsContext); err != nil {
return err
2015-02-09 02:25:00 +01:00
}
2016-03-24 16:38:30 +01:00
if err := ui.CurrentUI().DoEvents(); err != nil {
2015-01-11 17:54:18 +01:00
return err
}
2016-03-24 16:38:30 +01:00
if ui.CurrentUI().IsClosed() {
2014-12-10 02:42:47 +01:00
return nil
}
2015-02-21 14:00:02 +01:00
now := ui.Now()
2016-02-27 18:16:57 +01:00
// If beforeForUpdate is too old, we assume that screen is not shown.
2016-03-26 09:50:00 +01:00
c.isRunningSlowly = false
2016-03-12 20:48:13 +01:00
if int64(5*time.Second/FPS) < now-beforeForUpdate {
2016-02-27 18:16:57 +01:00
beforeForUpdate = now
} else {
2016-03-26 09:50:00 +01:00
t := float64(now-beforeForUpdate) * FPS / float64(time.Second)
c.isRunningSlowly = t >= 2.5
for i := 0; i < int(t); i++ {
2016-03-24 16:38:30 +01:00
if err := ui.CurrentUI().DoEvents(); err != nil {
return err
}
2016-03-24 16:38:30 +01:00
if ui.CurrentUI().IsClosed() {
return nil
}
2016-02-27 18:16:57 +01:00
if err := graphicsContext.update(f); err != nil {
return err
}
2015-02-21 14:00:02 +01:00
}
2016-03-26 09:50:00 +01:00
beforeForUpdate += int64(t) * int64(time.Second/FPS)
2016-03-24 16:38:30 +01:00
ui.CurrentUI().SwapBuffers()
2015-01-01 17:20:20 +01:00
}
2015-01-07 16:56:21 +01:00
// Calc the current FPS.
2015-02-21 14:00:02 +01:00
now = ui.Now()
2015-01-07 16:56:21 +01:00
frames++
2016-02-27 18:16:57 +01:00
if time.Second <= time.Duration(now-beforeForFPS) {
2016-03-26 09:50:00 +01:00
c.fps = float64(frames) * float64(time.Second) / float64(now-beforeForFPS)
2016-02-27 18:16:57 +01:00
beforeForFPS = now
2015-01-07 16:56:21 +01:00
frames = 0
}
2014-12-06 17:09:59 +01:00
}
}
2015-02-09 02:25:00 +01:00
2016-03-26 09:50:00 +01:00
func (c *runContext) SetScreenSize(width, height int) {
2016-03-26 09:59:36 +01:00
if c == nil {
2016-03-26 09:50:00 +01:00
panic("ebiten: SetScreenSize must be called during Run")
2015-02-09 02:25:00 +01:00
}
2015-02-09 16:10:50 +01:00
if width <= 0 || height <= 0 {
2016-03-26 09:50:00 +01:00
panic("ebiten: width and height must be positive")
2015-02-09 16:10:50 +01:00
}
2016-03-26 09:50:00 +01:00
c.newScreenWidth = width
c.newScreenHeight = height
2015-02-09 02:25:00 +01:00
}
2016-03-26 09:50:00 +01:00
func (c *runContext) SetScreenScale(scale int) {
2016-03-26 09:59:36 +01:00
if c == nil {
2016-03-26 09:50:00 +01:00
panic("ebiten: SetScreenScale must be called during Run")
2015-02-09 16:10:50 +01:00
}
if scale <= 0 {
2016-03-26 09:50:00 +01:00
panic("ebiten: scale must be positive")
2015-02-09 16:10:50 +01:00
}
2016-03-26 09:50:00 +01:00
c.newScreenScale = scale
}
// FPS represents how many times game updating happens in a second.
const FPS = 60
// CurrentFPS returns the current number of frames per second of rendering.
//
// This value represents how many times rendering happens in 1/60 second and
// NOT how many times logical game updating (a passed function to Run) happens.
// Note that logical game updating is assured to happen 60 times in a second
// as long as the screen is active.
func CurrentFPS() float64 {
return currentRunContext.CurrentFPS()
}
// IsRunningSlowly returns true if the game is running too slowly to keep 60 FPS of rendering.
// The game screen is not updated when IsRunningSlowly is true.
// It is recommended to skip heavy processing, especially drawing, when IsRunningSlowly is true.
func IsRunningSlowly() bool {
return currentRunContext.IsRunningSlowly()
}
// Run runs the game.
// f is a function which is called at every frame.
// The argument (*Image) is the render target that represents the screen.
//
// This function must be called from the main thread.
// Note that ebiten bounds the main goroutine to the main OS thread by runtime.LockOSThread.
//
// The given function f is guaranteed to be called 60 times a second
// even if a rendering frame is skipped.
// f is not called when the screen is not shown.
func Run(f func(*Image) error, width, height, scale int, title string) error {
2016-03-26 09:59:36 +01:00
currentRunContext = &runContext{}
defer func() {
currentRunContext = nil
}()
2016-03-26 09:50:00 +01:00
return currentRunContext.Run(f, width, height, scale, title)
}
// SetScreenSize changes the (logical) size of the screen.
// This doesn't affect the current scale of the screen.
func SetScreenSize(width, height int) {
currentRunContext.SetScreenSize(width, height)
}
// SetScreenSize changes the scale of the screen.
func SetScreenScale(scale int) {
currentRunContext.SetScreenScale(scale)
2015-02-09 16:10:50 +01:00
}
2016-03-22 16:44:16 +01:00
// ScreenScale returns the current screen scale.
func ScreenScale() int {
2016-03-24 16:38:30 +01:00
return ui.CurrentUI().ScreenScale()
2016-03-22 16:44:16 +01:00
}