这是我在 SO 上的第一篇文章 ^_^
我正在尝试使用 QT 框架实现字母争夺游戏。主要部分已经完成,但现在我惊呆了——我不知道如何让程序等待在游戏中按下按钮。
请帮帮我。提前致谢
这是我的游戏周期的伪代码:
//initialize grid, score, time
// accept words until timer expires
while (true) {
// draw the current state of the grid
// log board
// get current time
// report score
// check for game's end
// report time remaining
// prompt for word and converting it to char*
//HOW TO WAIT UNTILL BUTTON PRESSED????!!!!
// check whether to scramble grid
// or to look for word on grid and in dictionary
}
PS 由于这是我在这里的第一篇文章,我将不胜感激有关如何更正确地撰写问题的任何建议。