我已经基于c ++编写了游戏,它使用python脚本来计算对象属性并绘制它们。但主要的问题是,如果没有安装python2.7,它将无法在PC上运行。我没有想法。我该怎么做,让它在没有python的PC上运行?
答案 0 :(得分:3)
制作一个安装所有必需依赖项的游戏安装程序。
答案 1 :(得分:3)
Python为C提供了很好的API。您可以使用它来运行脚本。 例如,此代码将运行python模块中的函数:
#include <Python.h>
int main(int argc, char *argv[])
{
PyObject *pName, *pModule, *pDict, *pFunc, *pValue;
if (argc < 3)
{
printf("Usage: exe_name python_source function_name\n");
return 1;
}
// Initialize the Python Interpreter
Py_Initialize();
// Build the name object
pName = PyString_FromString(argv[1]);
// Load the module object
pModule = PyImport_Import(pName);
// pDict is a borrowed reference
pDict = PyModule_GetDict(pModule);
// pFunc is also a borrowed reference
pFunc = PyDict_GetItemString(pDict, argv[2]);
if (PyCallable_Check(pFunc))
{
PyObject_CallObject(pFunc, NULL);
} else
{
PyErr_Print();
}
// Clean up
Py_DECREF(pModule);
Py_DECREF(pName);
// Finish the Python Interpreter
Py_Finalize();
return 0;
}
有关详细信息,请参阅Extending Python with C or C++。请参阅cpython源代码中Demo/embed
目录中的更多示例。
确保使用python库静态编译代码。否则,它仍然需要安装的python版本。
但是,请记住,您只有一个 python解释器,而不是完整的python安装。因此,如果不在本地使用它们,您将无法使用几乎任何python模块。
答案 2 :(得分:0)
请遵循本教程:http://www.py2exe.org/index.cgi/Tutorial
您可能需要进行一些调整,但您可以使用py2exe将您的python脚本转换为exe和dll。
也许你可以尝试使用以下代码将python转换为C:http://cython.org/ 然后在C ++程序中使用extern“C”引用它:
extern "C"{
//C Code Here
};
可能会引用py2exe输出的dll中的导出函数。
希望这可能会有所帮助。
祝你好运!