yes we are back on this topic again, I apologize, but I am currently in game jam, and people are reporting the game being broken on windows, today I finally had the chance to install bootcamp on a borrowed mac and check out the issues for myself, there are couple, I will focus on the missing modules issue, here is the terminal log.
Building runtime for platform: win_amd64
There are some missing modules: [‘builtin’, ‘_bisect’, ‘_blake2’, ‘_codecs_cn’, ‘_codecs_hk’, ‘_codecs_iso2022’, ‘_codecs_jp’, ‘_codecs_kr’, ‘_codecs_tw’, ‘_heapq’, ‘_md5’, ‘_multibytecodec’, ‘_opcode’, ‘_pickle’, ‘_posixsubprocess’, ‘_random’, ‘_sha1’, ‘_sha256’, ‘_sha3’, ‘_sha512’, ‘_struct’, ‘_winapi’, ‘binascii’, ‘math’, ‘zlib’]
warning: build_apps: could not find dependency d3dx9_43.dll (referenced by libpandadx9.dll)
EDIT: it turns out that directX is now slow in my windows sdk, so I don’t want it anymore, but I want openGL to run at full speed, so any advice on that would be appreciated.
A alarming thing is many modules are missing, does anyone know why? especially the math, as that is needed for my cosine calculations or my game cannot function properly, there must be another missing module that is making my vfs.resolveFilename name checks not work properly
here is my setup.py
from setuptools import setup
setup(
name = "Vortex The Pretty Magical Girl Jam Edition",
options = {
"build_apps" : {
"include_patterns" : [
"**/*.egg",
"**/*.png",
"**/*.txt",
"**/*.wav",
"Fonts/*"
],
"gui_apps" : {
"Vortex The Pretty Magical Girl Jam Edition" : "main.py"
},
"plugins" : [
"pandadx9",
"p3openal_audio"
],
"platforms" : [
"win_amd64"
]
}
}
)
I am doing anything wrong? does anything need to be included that I don’t know about? thanks to anybody willing to help, have good day.