mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-19 10:56:07 -05:00
62b8a610c0
* abstract d2input manager/service/events/keys/buttons to interface * abstract d2input manager/service/events/keys/buttons to interface * fixing lint error
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2render/ebiten"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2app"
|
|
|
|
ebiten2 "github.com/OpenDiablo2/OpenDiablo2/d2core/d2audio/ebiten"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2input"
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2term"
|
|
)
|
|
|
|
// GitBranch is set by the CI build process to the name of the branch
|
|
//nolint:gochecknoglobals This is filled in by the build system
|
|
var GitBranch string
|
|
|
|
// GitCommit is set by the CI build process to the commit hash
|
|
//nolint:gochecknoglobals This is filled in by the build system
|
|
var GitCommit string
|
|
|
|
func main() {
|
|
log.SetFlags(log.Lshortfile)
|
|
log.Println("OpenDiablo2 - Open source Diablo 2 engine")
|
|
|
|
// Initialize our providers
|
|
renderer, err := ebiten.CreateRenderer()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
audio, err := ebiten2.CreateAudio()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
d2input.Create() // TODO d2input singleton must be init before d2term
|
|
term, err := d2term.Initialize()
|
|
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
app := d2app.Create(GitBranch, GitCommit, term, audio, renderer)
|
|
app.Run()
|
|
}
|