c++ - SFML - 按下键时呈现字符?

标签 c++ rendering character sfml tdm-mingw

所以我得到了这个应该模仿控制台的程序(在 this user 的一点编码帮助下):

#include <SFML/Graphics.hpp>
#include <SFML/System.hpp>
#include <SFML/Window.hpp>

sf::Color fontColor;
sf::Font mainFont;
sf::Clock myClock;

bool showCursor = true;

void LoadFont() {
    mainFont.loadFromFile("dos.ttf");
    fontColor.r = 0;
    fontColor.g = 203;
    fontColor.b = 0;
}

int main() {
    sf::RenderWindow wnd(sf::VideoMode(1366, 768), "SFML Console");
    wnd.setSize(sf::Vector2u(1366, 768));

    LoadFont();

    sf::Text myTxt;
    myTxt.setColor(fontColor);
    myTxt.setString("System Module:");
    myTxt.setFont(mainFont);
    myTxt.setCharacterSize(18);
    myTxt.setStyle(sf::Text::Regular);
    myTxt.setPosition(0, 0);

    while(wnd.isOpen()) {
        sf::Event myEvent;

        while (wnd.pollEvent(myEvent)) {
            if (myEvent.type == sf::Event::Closed) {
                wnd.close();
            }

            if (myEvent.type == sf::Event::KeyPressed) {
                if (myEvent.key.code == sf::Keyboard::Escape) {
                    wnd.close();
                }
            }
        }

            wnd.clear();

            if (myClock.getElapsedTime() >= sf::milliseconds(500)) {
                myClock.restart();
                showCursor = !showCursor;

                if(showCursor == true) {
                    myTxt.setString("System Module:_");
                } else {
                    myTxt.setString("System Module:");
                }
            }

            wnd.draw(myTxt);
            wnd.display();
    }
}

我需要能够让用户在键盘上键入一个键,然后在屏幕上呈现该键。我正在考虑使用 std::vectorsf::Keyboard::Key ,并使用 while 循环来检查 key 是什么(循环通过 std::vector<sf::Keyboard::Key> )而不使用一大堆 if语句,但我还不知道如何处理,所以我想知道是否有更简单的方法来实现我的主要目标。建议?评论?

谢谢你的时间, ~迈克

最佳答案

SFML 对此有一个很好的特性,sf::Event::TextEntered ( tutorial )。这通常是您想要的,它可以避免您做疯狂的事情来解释用户输入的文本。 通过将每个字符添加到 sf::String(而不是 std::string,它可能更好地处理 sfml 的 unicode 类型来存储您输入的文本 ~ 不确定,但是需要一点检查)这是 sf::Text::setString 的完美类型!

不要犹豫,看看 docs ,它在每个类的页面中都有进一步的文档。

例子:

sf::String userInput;
// ...
while( wnd.pollEvent(event))
{
    if(event.type == sf::Event::TextEntered)
    {
        /* Choose one of the 2 following, and note that the insert method
           may be more efficient, as it avoids creating a new string by
           concatenating and then copying into userInput.
        */
        // userInput += event.text.unicode;
        userInput.insert(userInput.getSize(), event.text.unicode);
    }
    else if(event.type == sf::Event::KeyPressed)
    {
        if(event.key.code == sf::Keyboard::BackSpace) // delete the last character
        { 
            userInput.erase(userInput.getSize() - 1);
        }
    }
}

关于c++ - SFML - 按下键时呈现字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17256015/

相关文章:

iphone - 如何为 iPhone 创建 32RGBA 格式的 CVPixelBuffer?

objective-c - 如何将包含核心动画层的 View 渲染到位图?

regex - 使用正则表达式查找并替换 DNA 序列,但仅限每 3 个字符

string - Fortran:在主程序中初始化长度未知的字符串

c++ - 使用容量受限的队列按顺序列出字符串?

c++ - 如何在不获取 "Undefined symbols for architecture x86_64"的情况下使用 fmt 库

c++ - QMainWindow 从 main() 函数打开,而不是从任何其他函数打开

c++ - 使用Windows运送linux

c++ - 如何实现自己的混合功能?

php - 在字符串中查找第一个大写字符的最快方法