3

我正在用 C++ 编写一个带有 Direct3D 和 Python 的小程序。我创建了我的窗口,一切正常。但如果我尝试调用“Py_Initialize();” 我的程序关闭。

(它以代码 1 结束)有什么问题?

编辑:这是我的代码的一些部分。

MainIncludes.h

#include "Windows.h"
#include <d3d9.h>
#pragma comment (lib, "d3d9.lib")

#include <d3dx9.h>
#pragma comment (lib, "d3dx9.lib")

main_d3dwindow.cpp

int WINAPI WinMain(HINSTANCE hInstance,
               HINSTANCE hPrevInstance,
               LPSTR lpCmdLine,
               int nCmdShow)
{
HWND hWnd;
WNDCLASSEX wc;

ZeroMemory(&wc, sizeof(WNDCLASSEX));

wc.cbSize = sizeof(WNDCLASSEX);
wc.style = CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc = WindowProc;
wc.hInstance = hInstance;
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hbrBackground = (HBRUSH)COLOR_WINDOW;
wc.lpszClassName = L"WindowClass";

RegisterClassEx(&wc);

hWnd = CreateWindowEx(NULL,
                      L"WindowClass",
                      L"Program",
                      WS_OVERLAPPEDWINDOW,
                      300, 300,
                      800, 600,
                      NULL,
                      NULL,
                      hInstance,
                      NULL);

ShowWindow(hWnd, nCmdShow);
mainWindow = hWnd;

initD3D(hWnd);
init_python();

MSG msg;

while(TRUE)
{
    while(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
    {
        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }

    if(msg.message == WM_QUIT)
        break;

    render_frame();
}

cleanD3D();

return msg.wParam;
}

main_python.cpp

#include "Python.h"
void init_python() {
     Py_Initialize();
}
4

1 回答 1

0

据我所知, Py_Initialize() 只是初始化 Python 本身,而不是作为交互式解释器。此时,Python 正在运行,但正在等待执行命令。另外,你不应该忘记调用 Py_Finalize() 来释放内存。

void pythonShell() {
   Py_Initialize();
   std::string pythonCommand = "execfile('python_script.py')"; // file or python command
   PyRun_SimpleString(pythonCommand.c_str());
   FILE* fp = stdin;
   char filename[] = "Embedded";
   PyRun_InteractiveLoop(fp, filename);
   Py_Finalize();
}

PyRun_InteractiveLoop() 函数可以根据需要从 C++ 代码中执行交互式 shell。我认为这里发生的事情是你只是初始化 Python,就是这样,它没有任何事情要做,因为你没有向它传递任何脚本/命令。

希望这可以帮助

于 2015-06-25T15:26:20.427 回答