[求助]如何禁止OnLButtonDown的鼠标输入
在做一个人机博弈的小程序,人的输入使用鼠标,想通过调用CXXXView::OnLButtonDown(UINT nFlags, CPoint point)来实现电脑走棋的输入,但是我如何在电脑走棋的过程中禁止人的鼠标输入呢?大致的调用过程如下:
void CXXXView::OnPaint()
{
......
NextStep();
}
void CXXXView::OnLButtonDown(UINT nFlags, CPoint point)
{
DoSomeThing(point);
......
}
void CXXXView::NextStep()
{
if(man_move)
return;
else if(computer_move)
{
CPoint point = xxx;
OnLButtonDown(NULL,point);
}
}