如何用c++控制俄罗斯方块自动下落?环境是qt+opengl。
#包含?& ltwindows.h & gt
双倍?最后一次?=?glfwGetTime(),
curr _ time
什么时候?(game_loop)?{
curr_time?=?glfwGetTime();
双倍?det_time?=?(curr_time?-?last _ time);
最后一次?=?curr _ time
fps?=?int(1?/?det _ time);?//每秒帧数
区间?=?std::min(det_time,max _ interval);?//每帧的时间间隔
更新(间隔);?//能跟到这里吗?区间?*?速度?移动方块。
render();?//更新图片画一个方框。
睡眠(1000?/?max _ fps);
}类似这样的。