处理同时按下按钮和更改换档状态

发布于 2024-09-16 03:05:10 字数 191 浏览 5 评论 0原文

我目前正在开发一个(Python2.5)应用程序,它处理来自游戏控制器的输入。我们指定了一个按钮作为切换按钮,以动态更改其他按钮的映射(输入类型、值->功能)。映射还取决于我们的应用程序运行的模式。我们遇到了很多毛茸茸的边缘情况(例如如何处理按下shift,按下按钮x,释放shift,释放按钮x)并且我想知道是否有任何已知的良好结构/架构/模式来处理这种输入?

I am currently working on a (Python2.5) application which handles input from a game controller. We've designated a button as a shift button to change the mapping (inputtype,value->function) of the other buttons on the fly. The mapping also depends on the mode our application is running in. We are running into lots of hairy edge cases (e.g. how to handle press shift, press button x, release shift, release button x) and I was wondering if there are any known good structures/architectures/patterns for dealing with this kind of input?

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

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

发布评论

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

评论(1

花开柳相依 2024-09-23 03:05:11

Satemachines 是处理复杂输入的良好模式。

这是处理上述序列的机器。

状态机图片

您可以使用开关或状态模式实现状态机(请参阅 Python 状态机设计

Satemachines are a good pattern to handle complex inputs.

Here is a machine that handle the above sequence.

state machine picture

You can implement statemachines with switch or state pattern (see Python state-machine design )

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