我用 TCP、UDP 和 pygame 制作了多人 Pong 游戏。我正在使用的模块是:pygame、os、logging、threading、random、yaml (PyYAML) 和 socket
当使用 python2.7 从命令行运行游戏时,它运行良好,但是使用 py2app 编译的版本给我一个错误,即:
TypeError: Error when calling the metaclass bases
function() argument 1 must be code, not str
我已经用谷歌搜索了,关于堆栈溢出的其他问题在我看来似乎没有任何意义。它给我错误的行是:
class Entity(pygame.Surface):
def __init__(self, x, y, w, h, color=(255, 255, 255)):
pygame.Surface.__init__(self, (w, h))
正如您可能已经理解的那样,它位于此示例的第一行。使用 pygame.Surface 时有些奇怪。虽然正如我所说,当我在命令行中运行程序时它可以工作!
我使用的 py2app 脚本是这样的:
from setuptools import setup
APP = ['src/client.py']
OPTIONS = {'argv_emulation': True, 'includes': ['EXTERNAL LIBRARY'], }
setup(
app=APP,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)
提前致谢!