2023-02-17 07:04:29 +03:00
|
|
|
package gx
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hajimehoshi/ebiten/v2"
|
2023-02-18 07:46:33 +03:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/inpututil"
|
2023-02-17 16:40:46 +03:00
|
|
|
"github.com/surdeus/godat/src/sparsex"
|
2023-04-28 18:03:26 +03:00
|
|
|
"github.com/surdeus/godat/src/poolx"
|
2023-05-30 22:35:49 +03:00
|
|
|
"fmt"
|
2023-02-17 23:51:40 +03:00
|
|
|
"time"
|
2023-02-17 07:04:29 +03:00
|
|
|
)
|
|
|
|
|
2023-02-17 16:40:46 +03:00
|
|
|
// The type represents order of drawing.
|
|
|
|
type Layer int
|
|
|
|
|
2023-05-02 17:38:34 +03:00
|
|
|
// Window configuration type.
|
2023-02-17 07:04:29 +03:00
|
|
|
type WindowConfig struct {
|
|
|
|
Title string
|
2023-05-26 18:31:04 +03:00
|
|
|
|
|
|
|
Width,
|
|
|
|
Height int
|
|
|
|
|
|
|
|
FixedSize,
|
|
|
|
Fullscreen,
|
2023-05-04 19:31:33 +03:00
|
|
|
VSync bool
|
2023-02-17 07:04:29 +03:00
|
|
|
}
|
|
|
|
|
2023-05-02 17:38:34 +03:00
|
|
|
// The main structure that represents current state of [game] engine.
|
2023-02-17 07:04:29 +03:00
|
|
|
type Engine struct {
|
|
|
|
wcfg *WindowConfig
|
2023-04-28 18:03:26 +03:00
|
|
|
layers *sparsex.Sparse[Layer, *poolx.Pool[Drawer]]
|
2023-05-26 18:31:04 +03:00
|
|
|
updaters *poolx.Pool[Updater]
|
2023-02-17 23:51:40 +03:00
|
|
|
lastTime time.Time
|
|
|
|
dt Float
|
2023-02-18 03:51:43 +03:00
|
|
|
camera *Camera
|
2023-02-18 07:46:33 +03:00
|
|
|
keys []Key
|
2023-02-17 07:04:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type engine Engine
|
|
|
|
|
2023-05-02 17:38:34 +03:00
|
|
|
// Return current camera.
|
2023-02-18 03:51:43 +03:00
|
|
|
func (e *Engine) Camera() *Camera {
|
|
|
|
return e.camera
|
|
|
|
}
|
|
|
|
|
2023-05-02 17:38:34 +03:00
|
|
|
// Set new current camera.
|
2023-02-18 15:38:28 +03:00
|
|
|
func (e *Engine) SetCamera(c *Camera) {
|
|
|
|
e.camera = c
|
|
|
|
}
|
|
|
|
|
2023-05-02 17:38:34 +03:00
|
|
|
// Get currently pressed keys.
|
2023-02-18 07:46:33 +03:00
|
|
|
func (e *Engine) Keys() []Key {
|
|
|
|
return e.keys
|
|
|
|
}
|
|
|
|
|
2023-05-02 17:38:34 +03:00
|
|
|
// Returns new empty Engine.
|
2023-02-17 07:04:29 +03:00
|
|
|
func New(
|
|
|
|
cfg *WindowConfig,
|
|
|
|
) *Engine {
|
2023-05-30 22:35:49 +03:00
|
|
|
w := Float(cfg.Width)
|
|
|
|
h := Float(cfg.Height)
|
|
|
|
fmt.Println("res:", w, h)
|
2023-02-17 07:04:29 +03:00
|
|
|
return &Engine{
|
|
|
|
wcfg: cfg,
|
2023-02-17 16:40:46 +03:00
|
|
|
layers: sparsex.New[
|
|
|
|
Layer,
|
2023-04-28 18:03:26 +03:00
|
|
|
*poolx.Pool[Drawer],
|
2023-02-17 16:40:46 +03:00
|
|
|
](true),
|
2023-02-18 03:51:43 +03:00
|
|
|
camera: &Camera{
|
2023-05-30 13:24:14 +03:00
|
|
|
Transform: Transform{
|
2023-02-18 07:46:33 +03:00
|
|
|
S: Vector{1, 1},
|
2023-05-30 22:35:49 +03:00
|
|
|
RA: V(w/2, h/2),
|
2023-02-18 03:51:43 +03:00
|
|
|
},
|
|
|
|
},
|
2023-05-26 18:31:04 +03:00
|
|
|
updaters: poolx.New[Updater](),
|
2023-02-17 16:40:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-17 23:51:40 +03:00
|
|
|
// Add new object considering what
|
|
|
|
// interfaces it implements.
|
|
|
|
func (e *Engine) Add(l Layer, b any) {
|
2023-05-26 18:31:04 +03:00
|
|
|
starter, ok := b.(Starter)
|
|
|
|
if ok {
|
|
|
|
starter.Start(e)
|
|
|
|
}
|
|
|
|
|
|
|
|
updater, ok := b.(Updater)
|
2023-02-17 23:51:40 +03:00
|
|
|
if ok {
|
2023-05-26 18:31:04 +03:00
|
|
|
e.addUpdater(updater)
|
2023-02-17 23:51:40 +03:00
|
|
|
}
|
|
|
|
|
2023-05-26 18:31:04 +03:00
|
|
|
drawer, ok := b.(Drawer)
|
2023-02-17 23:51:40 +03:00
|
|
|
if ok {
|
2023-05-26 18:31:04 +03:00
|
|
|
e.addDrawer(l, drawer)
|
2023-02-17 23:51:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-26 18:31:04 +03:00
|
|
|
// Delete object from Engine.
|
|
|
|
func (e *Engine) Del(b any, v ...any) {
|
|
|
|
deleter, ok := b.(Deleter)
|
|
|
|
if ok {
|
|
|
|
deleter.Delete(e, v...)
|
|
|
|
}
|
|
|
|
|
2023-04-28 18:21:34 +03:00
|
|
|
drawer, ok := b.(Drawer)
|
|
|
|
if ok {
|
|
|
|
for layer := range e.layers.Vals() {
|
|
|
|
layer.V.Del(drawer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-26 18:31:04 +03:00
|
|
|
updater, ok := b.(Updater)
|
2023-04-28 18:21:34 +03:00
|
|
|
if ok {
|
2023-05-26 18:31:04 +03:00
|
|
|
e.updaters.Del(updater)
|
2023-04-28 18:21:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-05-22 23:39:01 +03:00
|
|
|
func (e *Engine) addDrawer(l Layer, d Drawer) {
|
2023-02-17 16:40:46 +03:00
|
|
|
g, ok := e.layers.Get(l)
|
|
|
|
if !ok {
|
2023-04-28 18:03:26 +03:00
|
|
|
layer := poolx.New[Drawer]()
|
2023-02-17 16:40:46 +03:00
|
|
|
e.layers.Set(
|
|
|
|
l,
|
2023-04-28 18:03:26 +03:00
|
|
|
layer,
|
2023-02-17 16:40:46 +03:00
|
|
|
)
|
2023-04-28 18:03:26 +03:00
|
|
|
layer.Append(d)
|
2023-02-17 16:40:46 +03:00
|
|
|
} else {
|
2023-04-28 18:03:26 +03:00
|
|
|
g.Append(d)
|
2023-02-17 07:04:29 +03:00
|
|
|
}
|
2023-02-17 16:40:46 +03:00
|
|
|
|
2023-02-17 23:51:40 +03:00
|
|
|
}
|
|
|
|
|
2023-05-26 18:31:04 +03:00
|
|
|
func (e *Engine) addUpdater(b Updater) {
|
|
|
|
e.updaters.Append(b)
|
2023-02-17 07:04:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (e *engine) Update() error {
|
2023-02-18 09:11:09 +03:00
|
|
|
var err error
|
2023-02-17 16:40:46 +03:00
|
|
|
eng := (*Engine)(e)
|
2023-02-17 23:51:40 +03:00
|
|
|
|
2023-02-18 07:46:33 +03:00
|
|
|
e.keys = inpututil.
|
|
|
|
AppendPressedKeys(e.keys[:0])
|
|
|
|
|
2023-02-18 02:03:28 +03:00
|
|
|
e.dt = time.Since(e.lastTime).Seconds()
|
2023-05-26 18:31:04 +03:00
|
|
|
for p := range eng.updaters.Range() {
|
2023-04-28 18:03:26 +03:00
|
|
|
err = p.V.Update(eng)
|
2023-02-18 09:11:09 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-02-17 16:40:46 +03:00
|
|
|
}
|
2023-02-18 02:03:28 +03:00
|
|
|
e.lastTime = time.Now()
|
2023-02-17 16:40:46 +03:00
|
|
|
|
2023-02-17 07:04:29 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-02-17 23:51:40 +03:00
|
|
|
func (e *engine) Draw(i *ebiten.Image) {
|
|
|
|
eng := (*Engine)(e)
|
|
|
|
for p := range e.layers.Vals() {
|
2023-04-28 18:03:26 +03:00
|
|
|
for pj := range p.V.Range() {
|
2023-05-23 16:19:55 +03:00
|
|
|
if !pj.V.IsVisible() {
|
|
|
|
continue
|
|
|
|
}
|
2023-04-28 18:03:26 +03:00
|
|
|
pj.V.Draw(eng, i)
|
2023-02-17 23:51:40 +03:00
|
|
|
}
|
|
|
|
}
|
2023-02-17 07:04:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (e *engine) Layout(ow, oh int) (int, int) {
|
2023-02-18 09:11:09 +03:00
|
|
|
if e.wcfg.FixedSize {
|
|
|
|
return e.wcfg.Width, e.wcfg.Height
|
|
|
|
}
|
2023-02-18 15:38:28 +03:00
|
|
|
|
2023-02-18 09:11:09 +03:00
|
|
|
return ow, oh
|
2023-02-17 07:04:29 +03:00
|
|
|
}
|
|
|
|
|
2023-02-17 23:51:40 +03:00
|
|
|
// Return the delta time duration value.
|
|
|
|
func (e *Engine) DT() Float {
|
|
|
|
return e.dt
|
|
|
|
}
|
|
|
|
|
2023-02-17 07:04:29 +03:00
|
|
|
func (e *Engine) Run() error {
|
|
|
|
ebiten.SetWindowTitle(e.wcfg.Title)
|
|
|
|
ebiten.SetWindowSize(e.wcfg.Width, e.wcfg.Height)
|
2023-02-18 19:35:38 +03:00
|
|
|
ebiten.SetWindowSizeLimits(1, 1, e.wcfg.Width, e.wcfg.Height)
|
2023-05-04 19:31:33 +03:00
|
|
|
|
|
|
|
ebiten.SetVsyncEnabled(e.wcfg.VSync)
|
2023-02-17 07:04:29 +03:00
|
|
|
|
2023-02-18 00:17:51 +03:00
|
|
|
e.lastTime = time.Now()
|
2023-02-17 07:04:29 +03:00
|
|
|
return ebiten.RunGame((*engine)(e))
|
|
|
|
}
|
|
|
|
|