mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-13 06:27:28 +01:00
64 lines
1.3 KiB
Go
64 lines
1.3 KiB
Go
package cocoa
|
|
|
|
// #cgo CFLAGS: -x objective-c
|
|
// #cgo LDFLAGS: -framework Cocoa -framework OpenGL
|
|
//
|
|
// void Run(void);
|
|
// void StartApplication(void);
|
|
// void PollEvents(void);
|
|
//
|
|
import "C"
|
|
import (
|
|
"github.com/hajimehoshi/go-ebiten/graphics"
|
|
"github.com/hajimehoshi/go-ebiten/ui"
|
|
)
|
|
|
|
type cocoaUI struct {
|
|
sharedContext *sharedContext
|
|
}
|
|
|
|
var currentUI *cocoaUI
|
|
|
|
func getCurrentUI() *cocoaUI {
|
|
if currentUI != nil {
|
|
return currentUI
|
|
}
|
|
|
|
currentUI = &cocoaUI{}
|
|
currentUI.sharedContext = newSharedContext()
|
|
|
|
return currentUI
|
|
}
|
|
|
|
func UI() ui.UI {
|
|
return getCurrentUI()
|
|
}
|
|
|
|
func TextureFactory() graphics.TextureFactory {
|
|
return getCurrentUI().sharedContext
|
|
}
|
|
|
|
func (u *cocoaUI) CreateGameWindow(width, height, scale int, title string) ui.GameWindow {
|
|
return u.sharedContext.createGameWindow(width, height, scale, title)
|
|
}
|
|
|
|
func (u *cocoaUI) PollEvents() {
|
|
C.PollEvents()
|
|
}
|
|
|
|
func (u *cocoaUI) RunMainLoop() {
|
|
C.StartApplication()
|
|
currentUI.sharedContext.run()
|
|
|
|
// TODO: Enable the loop
|
|
//C.Run()
|
|
}
|
|
|
|
/*func (u *cocoaUI) CreateTexture(tag interface{}, img image.Image, filter graphics.Filter) {
|
|
t.sharedContext.CreateTexture(tag, img, filter)
|
|
}
|
|
|
|
func (u *cocoaUI) CreateRenderTarget(tag interface{}, width, height int) {
|
|
t.sharedContext.CreateRenderTarget(tag, width, height)
|
|
}*/
|