GameLoop 检查输入(Android/GlSurfaceView)

发布于 2024-11-18 03:28:33 字数 313 浏览 3 评论 0原文

如果我在线程中有一些基本的游戏循环,如下所示:

public void run(){
    getInput(); //onTouchEvent method is only available in view class.
    updateState();
    renderScreen();     
}

我想知道如何实际检查输入(即触摸屏)。我知道我可以在视图类中使用 onTouchEvent(),但我想从游戏循环中检查它。这是怎么做到的?

PS:我正在使用 Android 和 GlSurfaceView。

If I have some basic game loop in a thread, like this:

public void run(){
    getInput(); //onTouchEvent method is only available in view class.
    updateState();
    renderScreen();     
}

I was wondering how to actually check for input (touchscreen ie). I know I can use the onTouchEvent() in my view class, but I want to check it from my game loop. How is this done ?

ps: i'm using android with GlSurfaceView.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必在意 2024-11-25 03:28:33

通常我会复制 UI 线程中的输入事件,并以线程安全的方式将它们提供给游戏线程。

您可以使用 libgdx 的输入实现作为一个很好的 示例

Usually i would copy the input events in the UI thread and make them available to the game thread in a threadsafe fashion.

You may use the input implementation of libgdx as a good example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文