ebiten/internal/clock/clock.go

144 lines
3.0 KiB
Go
Raw Normal View History

2017-07-13 17:28:28 +02:00
// Copyright 2017 The Ebiten Authors
//
// 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.
2018-01-07 08:43:01 +01:00
// Package clock manages game timers.
2017-07-13 17:28:28 +02:00
package clock
import (
"sync"
"time"
2017-07-13 17:28:28 +02:00
)
var (
// lastSystemTime is the last system time in the previous Update.
lastSystemTime int64
2018-07-17 19:11:00 +02:00
currentFPS float64
currentTPS float64
lastUpdated int64
fpsCount = 0
tpsCount = 0
m sync.Mutex
2017-07-13 17:28:28 +02:00
)
func CurrentFPS() float64 {
m.Lock()
v := currentFPS
m.Unlock()
return v
}
2018-07-17 19:11:00 +02:00
func CurrentTPS() float64 {
m.Lock()
v := currentTPS
m.Unlock()
return v
}
func calcCountFromTPS(tps int64, now int64) int {
if tps == 0 {
return 0
}
if tps < 0 {
panic("clock: tps must >= 0")
}
// Initialize lastSystemTime if needed.
if lastSystemTime == 0 {
lastSystemTime = now
2017-08-05 17:52:12 +02:00
}
diff := now - lastSystemTime
2018-01-07 12:32:18 +01:00
if diff < 0 {
2017-08-05 17:52:12 +02:00
return 0
}
count := 0
2018-01-07 08:43:01 +01:00
syncWithSystemClock := false
if diff > int64(time.Second)*5/60 {
// The previous time is too old.
// Let's force to sync the game time with the system clock.
2018-01-07 08:43:01 +01:00
syncWithSystemClock = true
} else {
count = int(diff * tps / int64(time.Second))
}
// Stabilize FPS.
2018-01-07 12:32:18 +01:00
// Without this adjustment, count can be unstable like 0, 2, 0, 2, ...
if count == 0 && (int64(time.Second)/tps/2) < diff {
count = 1
}
if count == 2 && (int64(time.Second)/tps*3/2) > diff {
count = 1
}
2018-01-07 08:43:01 +01:00
if syncWithSystemClock {
lastSystemTime = now
2017-08-05 17:52:12 +02:00
} else {
lastSystemTime += int64(count) * int64(time.Second) / tps
2017-08-05 17:52:12 +02:00
}
2017-08-05 17:52:12 +02:00
return count
2017-07-13 17:28:28 +02:00
}
2018-07-17 19:11:00 +02:00
func updateFPSAndTPS(now int64, count int) {
if lastUpdated == 0 {
lastUpdated = now
}
2018-07-17 19:11:00 +02:00
fpsCount++
tpsCount += count
if time.Second > time.Duration(now-lastUpdated) {
return
}
2018-07-17 19:11:00 +02:00
currentFPS = float64(fpsCount) * float64(time.Second) / float64(now-lastUpdated)
currentTPS = float64(tpsCount) * float64(time.Second) / float64(now-lastUpdated)
lastUpdated = now
fpsCount = 0
tpsCount = 0
}
2018-07-17 19:11:00 +02:00
const UncappedTPS = -1
2019-05-08 19:44:14 +02:00
var previousNow int64
// Update updates the inner clock state and returns an integer value
2018-07-17 19:11:00 +02:00
// indicating how many times the game should update based on given tps.
// tps represents TPS (ticks per second).
2018-07-17 19:11:00 +02:00
// If tps is UncappedTPS, Update always returns 1.
// If tps <= 0 and not UncappedTPS, Update always returns 0.
//
// Update is expected to be called per frame.
func Update(tps int) int {
m.Lock()
defer m.Unlock()
n := now()
2019-05-08 19:44:14 +02:00
if n < previousNow {
panic("clock: now() must be monotonic but returned older time than before: perhaps overflowing?")
}
2018-07-17 19:11:00 +02:00
c := 0
if tps == UncappedTPS {
c = 1
} else if tps > 0 {
c = calcCountFromTPS(int64(tps), n)
}
2018-07-17 19:11:00 +02:00
updateFPSAndTPS(n, c)
2019-05-08 19:44:14 +02:00
previousNow = n
2018-07-17 19:11:00 +02:00
return c
}