ebiten/run.go

168 lines
4.8 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"
)
2015-02-09 02:25:00 +01:00
var runContext = &struct {
running bool
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
2015-02-09 02:25:00 +01:00
}{}
2015-01-11 08:01:56 +01:00
2016-03-12 20:48:13 +01:00
// 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.
2015-01-11 08:01:56 +01:00
func CurrentFPS() float64 {
2015-02-09 02:25:00 +01:00
return runContext.fps
2015-01-11 08:01:56 +01:00
}
2015-01-07 16:56:21 +01:00
2016-03-12 20:48:13 +01:00
// IsRunningSlowly returns true if the game is running too slowly to keep 60 FPS of rendering.
2016-02-27 18:25:53 +01:00
// 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 runContext.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.
//
2014-12-17 09:10:38 +01:00
// This function must be called from the main thread.
2014-12-28 07:46:40 +01:00
//
2015-02-21 14:00:02 +01:00
// 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 {
2015-02-09 02:25:00 +01:00
runContext.running = true
2015-02-09 16:10:50 +01:00
defer func() {
runContext.running = false
}()
2015-02-09 02:25:00 +01:00
2016-02-26 17:44:01 +01:00
if err := ui.Start(width, height, scale, title); err != nil {
2015-01-01 17:20:20 +01:00
return err
}
2015-01-27 14:02:23 +01:00
defer ui.Terminate()
2015-01-01 17:20:20 +01:00
glContext.Check()
2016-02-26 17:44:01 +01:00
graphicsContext, err := newGraphicsContext(width, height, ui.ActualScale())
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?
2015-02-09 16:10:50 +01:00
if 0 < runContext.newScreenWidth || 0 < runContext.newScreenHeight || 0 < runContext.newScreenScale {
changed := false
if 0 < runContext.newScreenWidth || 0 < runContext.newScreenHeight {
2016-02-26 17:44:01 +01:00
c := ui.SetScreenSize(runContext.newScreenWidth, runContext.newScreenHeight)
2015-02-09 16:10:50 +01:00
changed = changed || c
}
if 0 < runContext.newScreenScale {
2016-02-26 17:44:01 +01:00
c := ui.SetScreenScale(runContext.newScreenScale)
2015-02-09 16:10:50 +01:00
changed = changed || c
}
2015-02-09 02:25:00 +01:00
if changed {
w, h := runContext.newScreenWidth, runContext.newScreenHeight
2016-02-26 17:44:01 +01:00
if err := graphicsContext.setSize(w, h, ui.ActualScale()); err != nil {
2015-02-09 02:25:00 +01:00
return err
}
}
}
runContext.newScreenWidth = 0
runContext.newScreenHeight = 0
2015-02-09 16:10:50 +01:00
runContext.newScreenScale = 0
2015-02-09 02:25:00 +01:00
2015-01-27 14:02:23 +01:00
if err := ui.DoEvents(); err != nil {
2015-01-11 17:54:18 +01:00
return err
}
2015-01-27 14:02:23 +01:00
if ui.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-02-27 18:25:53 +01:00
runContext.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-12 20:48:13 +01:00
c := float64(now-beforeForUpdate) * FPS / float64(time.Second)
runContext.isRunningSlowly = c >= 2.5
for i := 0; i < int(c); i++ {
if err := ui.DoEvents(); err != nil {
return err
}
if ui.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-12 20:48:13 +01:00
beforeForUpdate += int64(c) * int64(time.Second/FPS)
2016-02-27 18:16:57 +01:00
ui.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) {
runContext.fps = float64(frames) * float64(time.Second) / float64(now-beforeForFPS)
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
// SetScreenSize changes the (logical) size of the screen.
// This doesn't affect the current scale of the screen.
func SetScreenSize(width, height int) {
if !runContext.running {
panic("SetScreenSize must be called during Run")
}
2015-02-09 16:10:50 +01:00
if width <= 0 || height <= 0 {
panic("width and height must be positive")
}
2015-02-09 02:25:00 +01:00
runContext.newScreenWidth = width
runContext.newScreenHeight = height
}
2015-02-09 16:10:50 +01:00
// SetScreenSize changes the scale of the screen.
func SetScreenScale(scale int) {
if !runContext.running {
panic("SetScreenScale must be called during Run")
}
if scale <= 0 {
panic("scale must be positive")
}
runContext.newScreenScale = scale
}