gpt4 book ai didi

c++ - 已调用 WM_TIMER 消息但未设置计时器

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:50:24 27 4
gpt4 key购买 nike

我正在 Visual Studio Express 2013 中编写一个相当简单的 Windows C++ 应用程序,并且在启动时遇到一个问题,即窗口由于 DispatchMessage 处理 WM_TIMER 消息而挂起 5-10 秒。问题是,我从未创建过计时器,所以我不确定为什么会收到消息,也不确定为什么会出现这么长时间的挂起。

enum KRESULT
{
K_OK,
K_FALSE,
K_QUIT
};

HINSTANCE g_hInstance;
HWND g_hWnd;
char* g_winName;
char* g_name;

KRESULT MessagePump( MSG &msg )
{
if( !PeekMessage( &msg, NULL, 0, 0, PM_REMOVE ))
{
// there weren't any messages
return K_FALSE;
}
else
{
if( msg.message == WM_QUIT )
return K_QUIT;
if( msg.message == WM_CLOSE )
return K_QUIT;

TranslateMessage( &msg );
DispatchMessage( &msg );
}
return K_OK;
}

void Run()
{
MSG msg;

bool done = false;
while( !done )
{
KRESULT msgRes = K_OK;
while( msgRes != K_FALSE )
{
msgRes = MessagePump( msg );
if( msgRes == K_QUIT )
{
done = true;
break;
}

done = !DoFrame();
}
}
}

bool DoFrame()
{
// do a bunch of stuff, disabled for debugging.
// returns false if Esc is pressed
return true;
}

LRESULT CALLBACK MessageHandler(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch( uMsg )
{
// Code managing WM_SIZE, WM_ENTERSIZEMOVE, etc that has to do with changing the size of the window.
}
return DefWindowProc(hWnd, uMsg, wParam, lParam);
}

LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
bool bRunDefault = false;

switch( uMsg )
{
// check if the window is being destroyed.
case WM_DESTROY:
{
PostQuitMessage(0);
return 0;
}

// check if the window is being closed.
case WM_CLOSE:
{
PostQuitMessage(0);
return 0;
}

default:
{
bRunDefault = true;
break;
}
}
}

if( bRunDefault )
return MessageHandler(hWnd, uMsg, wParam, lParam);

return 0;
}

void InitWindows()
{
WNDCLASSEX wc;
DEVMODE dmScreenSettings;
int posX, posY;

// get the instance of this application
g_hInstance = GetModuleHandle(NULL);

// setup the windows class with some default settings
wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
wc.lpfnWndProc = WndProc;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = g_hInstance;
wc.hIcon = LoadIcon(NULL, IDI_WINLOGO);
wc.hIconSm = wc.hIcon;
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
wc.lpszMenuName = NULL;
wc.lpszClassName = g_name;
wc.cbSize = sizeof(WNDCLASSEX);

// register the window class
RegisterClassEx(&wc)

// determine the resolution of the client desktop screen
int screenWidth = GetSystemMetrics(SM_CXSCREEN);
int screenHeight = GetSystemMetrics(SM_CYSCREEN);
int wWidth = 1366;
int wHeight = 768;

DWORD styleFlags;

// place it in the middle of the screen
posX = ( screenWidth - wWidth ) / 2;
posY = ( screenHeight - wHeight ) / 2;

styleFlags = WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW;

// create the window with the screen settings and get the handle
g_hWnd = CreateWindowEx( WS_EX_APPWINDOW, g_name, g_winName, styleFlags,
posX, posY, wWidth, wHeight, NULL, NULL,
g_hInstance, NULL );

// bring the window up on the screen and set it as main focus
ShowWindow( g_hWnd, SW_SHOW );
SetForegroundWindow( g_hWnd );
SetFocus( g_hWnd );

// mouse cursor options
ShowCursor( true );
}

抱歉所有代码,我不确定其中有多少是相关的。这些函数中的大部分都封装在一个应用程序类中,我的 WinMain 函数创建了该类的一个实例,调用了 InitWindows() 和 Run()。它挂起的地方是在 MessagePump 函数中,在 DispatchMessage() 处。 WM_TIMER 消息传递了两次,每次都带有以下参数:

hwnd = 0x00000000 <NULL>
message = 275 (WM_TIMER)
wParam = 18876 (this is random, but varies from around 18000 to 22000 or so)
lParam = 1975757148 (this is always the same)

然后,它通过 wParam = 1 和 lParam = 0 传递一次。始终按此顺序,每隔几帧调用这组三个 WM_TIMER 消息。

挂起只会发生一次,但是,在第一次传递消息时。

挂起在 Debug模式下当然是最糟糕的,但在 Release 构建中,它也会发生。

我可以向 MessagePump 函数添加处理程序,如下所示:

if( msg.message == WM_TIMER )
return K_OK;

这可以阻止挂起,但随后会产生另一个问题,当我移动窗口时,我的整个操作系统会卡住大约 5-10 秒。

我已经编程了一段时间(绝不是专家),但这让我感到困惑。任何帮助表示赞赏。谢谢!

编辑:我尝试在另外两台机器上构建和运行。两者都没有挂。原机重启几次,去掉我觉得不需要的启动进程后,问题终于解决了,运行了~50次后问题依旧。我希望报告是哪个进程导致了它更令人满意,但我仍然没有弄清楚。

奇怪的是,查看模块窗口时地址75C3A95C处没有进程。

不过我注意到了一些事情:在所有机器上,WM_TIMER 消息都在传递。此外,即使使用您可以在 VS2013 Exp 中创建的默认项目 Win32Project1,也会传递这 3 个 WM_TIMER 消息。此外,Win32Project1 确实 也挂起,所以它确实与我的代码无关,但我猜……与我机器上运行的进程有一些奇怪的交互?

感谢大家的帮助。

最佳答案

也许另一个正在运行的程序正在向您发送 WM_TIMER 消息,或者可能是您正在链接的库。尝试在另一台干净的机器上运行。

关于c++ - 已调用 WM_TIMER 消息但未设置计时器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30113038/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com