ebiten/examples/glut/main.go
2013-06-18 01:26:46 +09:00

102 lines
1.8 KiB
Go

package main
// #cgo LDFLAGS: -framework GLUT -framework OpenGL
//
// #include <stdlib.h>
// #include <GLUT/glut.h>
//
// void display(void);
// void idle(void);
//
// static void setDisplayFunc(void) {
// glutDisplayFunc(display);
// }
//
// static void setIdleFunc(void) {
// glutIdleFunc(idle);
// }
//
import "C"
import (
"image/color"
"os"
"time"
"unsafe"
"github.com/hajimehoshi/go-ebiten/graphics"
)
var device *graphics.Device
type DemoGame struct {
}
func (game *DemoGame) Update() {
}
func (game *DemoGame) Draw(g *graphics.GraphicsContext, offscreen *graphics.Texture) {
g.Fill(&color.RGBA{R: 128, G: 128, B: 255, A: 255})
}
//export display
func display() {
device.Update()
C.glutSwapBuffers()
}
//export idle
func idle() {
C.glutPostRedisplay()
}
func main() {
cargs := []*C.char{}
for _, arg := range os.Args {
cargs = append(cargs, C.CString(arg))
}
defer func() {
for _, carg := range cargs {
C.free(unsafe.Pointer(carg))
}
}()
cargc := C.int(len(cargs))
screenWidth := 256
screenHeight := 240
screenScale := 2
C.glutInit(&cargc, &cargs[0])
C.glutInitDisplayMode(C.GLUT_RGBA);
C.glutInitWindowSize(C.int(screenWidth * screenScale),
C.int(screenHeight * screenScale))
title := C.CString("Ebiten Demo")
defer C.free(unsafe.Pointer(title))
C.glutCreateWindow(title)
C.setDisplayFunc()
C.setIdleFunc()
ch := make(chan bool, 1)
game := &DemoGame{}
device = graphics.NewDevice(screenWidth, screenHeight, screenScale,
func(g *graphics.GraphicsContext, offscreen *graphics.Texture) {
ch<- true
game.Draw(g, offscreen)
<-ch
})
go func() {
const frameTime = time.Second / 60
lastTime := time.Now()
for {
ch<- true
game.Update()
<-ch
time.Sleep(frameTime - time.Since(lastTime))
lastTime = time.Now()
}
}()
C.glutMainLoop()
}