SDL TextInput(使用新的1.3结构)

发布于 2024-11-10 01:24:34 字数 653 浏览 3 评论 0原文

好吧,我一直在研究 SDL 中的文本输入(如何将击键数据转换为字母并将它们附加到名为 Text 的 std::string 中),并且大多数教程都以这种方式进行了介绍:

//If a key was pressed
if(event->type == SDL_KEYDOWN )
{
        //If the key is a lowercase letter
        else if( (event->key.keysym.unicode >= (Uint16)'a' ) && (event->key.keysym.unicode <= (Uint16)'z' ) )
        {
            //Append the character
            Text += (char)event->key.keysym.unicode;
        }
}

但是经过一些搜索,我发现了一个请在 SDL 标头中注明 .unicode 已弃用并使用 SDL_TextInputEvent/SDL_TextEditingEvent。 SDL 文档 wiki 中有一些关于它的参考,但是我找不到任何有关如何使用它的示例。例如,如何使用新结构编写上面的代码片段?

Okay, I have been studying text input in SDL (how to turn the keystrokes data into letters and append them to a std::string called Text) and most of the tutorials have covered it this way:

//If a key was pressed
if(event->type == SDL_KEYDOWN )
{
        //If the key is a lowercase letter
        else if( (event->key.keysym.unicode >= (Uint16)'a' ) && (event->key.keysym.unicode <= (Uint16)'z' ) )
        {
            //Append the character
            Text += (char)event->key.keysym.unicode;
        }
}

However after some searching, I found a note in the SDL headers saying .unicode is deprecated and to use SDL_TextInputEvent/SDL_TextEditingEvent. There is some reference to it in the SDL documentation wiki, however I couldn't find any example on how to use it. For instance, how would I write the above snippet using the new structure?

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

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

发布评论

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

评论(1

铁轨上的流浪者 2024-11-17 01:24:34

您可以尝试本教程

You might give this tutorial a try.

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