ebiten/internal/loop/run.go

192 lines
4.0 KiB
Go
Raw Normal View History

2016-05-18 03:46:23 +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-05-18 03:59:37 +02:00
package loop
2016-05-18 03:46:23 +02:00
import (
2016-05-28 19:51:34 +02:00
"errors"
2016-05-18 03:46:23 +02:00
"time"
2016-05-18 03:59:37 +02:00
"github.com/hajimehoshi/ebiten/audio"
2017-05-26 19:37:01 +02:00
"github.com/hajimehoshi/ebiten/internal/sync"
2016-05-18 03:59:37 +02:00
"github.com/hajimehoshi/ebiten/internal/ui"
2016-05-18 03:46:23 +02:00
)
func CurrentFPS() float64 {
2016-06-13 17:49:43 +02:00
return currentRunContext.getCurrentFPS()
2016-05-18 03:46:23 +02:00
}
type runContext struct {
2016-06-13 18:33:35 +02:00
running bool
fps int
currentFPS float64
runningSlowly bool
2017-04-05 17:45:28 +02:00
frames int64
2017-07-12 21:03:01 +02:00
framesForFPS int64
2016-06-13 18:33:35 +02:00
lastUpdated int64
lastFPSUpdated int64
2017-07-12 21:03:01 +02:00
lastAudioFrame int64
2016-06-13 18:33:35 +02:00
m sync.RWMutex
2016-05-18 03:46:23 +02:00
}
2016-05-28 19:51:34 +02:00
var currentRunContext *runContext
2016-05-18 03:46:23 +02:00
func (c *runContext) startRunning() {
c.m.Lock()
defer c.m.Unlock()
c.running = true
}
func (c *runContext) isRunning() bool {
2016-08-30 16:56:34 +02:00
c.m.RLock()
defer c.m.RUnlock()
2016-05-18 03:46:23 +02:00
return c.running
}
func (c *runContext) endRunning() {
c.m.Lock()
defer c.m.Unlock()
c.running = false
}
2016-06-13 17:49:43 +02:00
func (c *runContext) getCurrentFPS() float64 {
2016-05-18 03:46:23 +02:00
c.m.RLock()
defer c.m.RUnlock()
if !c.running {
// TODO: Should panic here?
return 0
}
2016-06-13 17:49:43 +02:00
return c.currentFPS
2016-05-18 03:46:23 +02:00
}
func (c *runContext) updateFPS(fps float64) {
c.m.Lock()
defer c.m.Unlock()
2016-06-13 17:49:43 +02:00
c.currentFPS = fps
2016-05-18 03:46:23 +02:00
}
type GraphicsContext interface {
SetSize(width, height int, scale float64)
UpdateAndDraw(updateCount int) error
Invalidate()
2016-05-18 03:46:23 +02:00
}
2016-09-01 17:53:05 +02:00
type loopGraphicsContext struct {
runContext *runContext
graphicsContext GraphicsContext
}
func (g *loopGraphicsContext) SetSize(width, height int, scale float64) {
g.graphicsContext.SetSize(width, height, scale)
2016-09-01 17:53:05 +02:00
}
2016-09-01 17:53:05 +02:00
func (g *loopGraphicsContext) Update() error {
return g.runContext.render(g.graphicsContext)
}
func (g *loopGraphicsContext) Invalidate() {
g.graphicsContext.Invalidate()
}
func Run(g GraphicsContext, width, height int, scale float64, title string, fps int) (err error) {
2016-05-28 19:51:34 +02:00
if currentRunContext != nil {
return errors.New("loop: The game is already running")
}
2016-06-13 17:49:43 +02:00
currentRunContext = &runContext{
fps: fps,
}
2016-05-18 03:46:23 +02:00
currentRunContext.startRunning()
defer currentRunContext.endRunning()
2017-07-12 21:03:01 +02:00
n := now()
2016-06-13 18:33:35 +02:00
currentRunContext.lastUpdated = n
currentRunContext.lastFPSUpdated = n
2016-09-01 19:31:03 +02:00
lg := &loopGraphicsContext{currentRunContext, g}
2016-09-02 17:20:05 +02:00
if err := ui.Run(width, height, scale, title, lg); err != nil {
2016-09-01 17:53:05 +02:00
if _, ok := err.(*ui.RegularTermination); ok {
return nil
}
return err
}
return nil
}
2017-07-12 21:03:01 +02:00
func (c *runContext) updateCount(now int64) int {
count := 0
sync := false
t := now - c.lastUpdated
if t < 0 {
return 0
}
2017-07-12 21:03:01 +02:00
if audio.CurrentContext() != nil && c.lastAudioFrame != audio.CurrentContext().Frame() {
sync = true
f := audio.CurrentContext().Frame()
if c.frames < f {
count = int(f - c.frames)
}
c.lastAudioFrame = f
2017-07-12 21:03:01 +02:00
} else {
count = int(t * int64(c.fps) / int64(time.Second))
}
2017-07-12 21:03:01 +02:00
// Stabilize FPS.
if count == 0 && (int64(time.Second)/int64(c.fps)/2) < t {
count = 1
}
if count == 2 && (int64(time.Second)/int64(c.fps)*3/2) > t {
count = 1
}
if count > 3 {
count = 3
2017-07-11 19:09:46 +02:00
}
2017-07-12 21:03:01 +02:00
if sync {
c.lastUpdated = now
} else {
c.lastUpdated += int64(count) * int64(time.Second) / int64(c.fps)
}
c.frames += int64(count)
return count
}
2016-06-13 17:49:43 +02:00
func (c *runContext) render(g GraphicsContext) error {
2017-07-12 21:03:01 +02:00
n := now()
if audio.CurrentContext() != nil {
audio.CurrentContext().Ping()
}
2016-06-13 18:33:35 +02:00
2017-07-12 21:03:01 +02:00
count := c.updateCount(n)
if err := g.UpdateAndDraw(count); err != nil {
return err
}
2017-07-12 21:03:01 +02:00
c.framesForFPS++
2016-06-13 18:33:35 +02:00
2017-07-12 21:03:01 +02:00
// Calc the current FPS.
if time.Second > time.Duration(n-c.lastFPSUpdated) {
return nil
2016-06-13 17:49:43 +02:00
}
2017-07-12 21:03:01 +02:00
currentFPS := float64(c.framesForFPS) * float64(time.Second) / float64(n-c.lastFPSUpdated)
c.updateFPS(currentFPS)
c.lastFPSUpdated = n
c.framesForFPS = 0
2016-06-13 17:49:43 +02:00
return nil
}