mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
Bug fix: input
This commit is contained in:
parent
572f4057a8
commit
50f335d0e9
@ -26,11 +26,13 @@ package main
|
|||||||
// #include <GLUT/glut.h>
|
// #include <GLUT/glut.h>
|
||||||
//
|
//
|
||||||
// void display(void);
|
// void display(void);
|
||||||
|
// void mouse(int button, int state, int x, int y);
|
||||||
// void motion(int x, int y);
|
// void motion(int x, int y);
|
||||||
// void idle(void);
|
// void idle(void);
|
||||||
//
|
//
|
||||||
// static void setGlutFuncs(void) {
|
// static void setGlutFuncs(void) {
|
||||||
// glutDisplayFunc(display);
|
// glutDisplayFunc(display);
|
||||||
|
// glutMouseFunc(mouse);
|
||||||
// glutMotionFunc(motion);
|
// glutMotionFunc(motion);
|
||||||
// glutIdleFunc(idle);
|
// glutIdleFunc(idle);
|
||||||
// }
|
// }
|
||||||
@ -53,6 +55,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type GlutInputEvent struct {
|
type GlutInputEvent struct {
|
||||||
|
IsActive bool
|
||||||
X int
|
X int
|
||||||
Y int
|
Y int
|
||||||
}
|
}
|
||||||
@ -73,9 +76,18 @@ func display() {
|
|||||||
C.glutSwapBuffers()
|
C.glutSwapBuffers()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//export mouse
|
||||||
|
func mouse(button, state, x, y C.int) {
|
||||||
|
event := GlutInputEvent{false, -1, -1}
|
||||||
|
if state == C.GLUT_UP {
|
||||||
|
currentUI.glutInputting <- event
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//export motion
|
//export motion
|
||||||
func motion(x, y C.int) {
|
func motion(x, y C.int) {
|
||||||
currentUI.glutInputting <- GlutInputEvent{
|
currentUI.glutInputting <- GlutInputEvent{
|
||||||
|
IsActive: true,
|
||||||
X: int(x),
|
X: int(x),
|
||||||
Y: int(y),
|
Y: int(y),
|
||||||
}
|
}
|
||||||
@ -173,6 +185,7 @@ func main() {
|
|||||||
ch := currentUI.glutInputting
|
ch := currentUI.glutInputting
|
||||||
for {
|
for {
|
||||||
event := <-ch
|
event := <-ch
|
||||||
|
if event.IsActive {
|
||||||
x := event.X / screenScale
|
x := event.X / screenScale
|
||||||
y := event.Y / screenScale
|
y := event.Y / screenScale
|
||||||
if x < 0 {
|
if x < 0 {
|
||||||
@ -189,6 +202,13 @@ func main() {
|
|||||||
X: x,
|
X: x,
|
||||||
Y: y,
|
Y: y,
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
input <- ebiten.InputState{
|
||||||
|
X: -1,
|
||||||
|
Y: -1,
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user