I'm using MOGRE, a C# binding of OGRE3D. I've created my own rendering loop and I use WindowEventUtilities.MessagePump() to update the window.
This is my main application loop:
while (SFMLWin.IsOpened() && !OGREWin.IsClosed)
{
try
{
if (fpsClock.Milliseconds > 0)
fps = 1000 / fpsClock.Milliseconds;
fpsClock.Reset();
SFMLWin.DispatchEvents();
SFMLWin.GetFrameTime();
inputKeyboard.Capture();
inputMouse.Capture();
OnCollision();
OnKeyHold();
MainDraw();
WindowEventUtilities.MessagePump();
}
catch
{
break;
}
}
SFMLWin.Dispose();
OGREWin.Dispose();
I am still getting the "FatalExecutionError" code when I close OGREWin at WindowEventUtilities.MessagePump();. The try/catch statement doesn't catch anything, and I can't implement any if statements around WindowEventUtilities.MessagePump() to fix the situation. This is a very urgent issue now, and I am really stumped on what to do.
I've posted a topic on the MOGRE boards, but have not yet found a solution. This is an urgent problem, please help.