Skip to content

Instantly share code, notes, and snippets.

@viblo
Created May 14, 2014 16:19
Show Gist options
  • Save viblo/44ccd6af88d9f050403b to your computer and use it in GitHub Desktop.
Save viblo/44ccd6af88d9f050403b to your computer and use it in GitHub Desktop.
"""This module contain functions used to load the chipmunk dll/lib file"""
__version__ = "$Id$"
import os.path
import platform
import sys, imp, os
import ctypes
def platform_specific_functions():
# use stddecl on windows, cdecl on all other platforms
d = {'library_loader' : ctypes.cdll
,'function_pointer' : ctypes.CFUNCTYPE
}
if platform.system() in ('Windows', 'Microsoft'):
#d['library_loader'] = ctypes.windll
#d['function_pointer'] = ctypes.WINFUNCTYPE
pass
return d
def load_library(libname, debug_lib=True):
# lib gets loaded from
# 32bit python: pymunk/libchipmunk.so, libchipmunk.dylib or chipmunk.dll
# 64 bit python pymunk/libchipmunk64.so, libchipmunk.dylib or chipmunk64.dll
s = platform.system()
arch = str(ctypes.sizeof(ctypes.c_voidp) * 8)
path = os.path.dirname(os.path.abspath(__file__))
try:
if hasattr(sys, "frozen") or \
hasattr(sys, "importers") or \
hasattr(imp, "is_frozen") and imp.is_forzen("__main__"):
if 'site-packages.zip' in __file__:
path = os.path.join(os.path.dirname(os.getcwd()), 'Frameworks')
elif hasattr(sys, "_MEIPASS"):
path = sys._MEIPASS
else:
path = os.path.dirname(os.path.abspath(sys.executable))
except:
pass
if arch == "64":
arch_param = "64"
else:
arch_param = ""
if s in ('Linux', 'FreeBSD'):
libfn = "lib%s%s.so" % (libname, arch_param)
elif s in ('Windows', 'Microsoft'):
if arch == "32" and debug_lib:
print ("""
WARNING!
There are known blocker bugs in 64-bit pymunk on Windows.
Use at your own risk.
""")
libfn = "%s%s.dll" % (libname, arch_param)
elif s == 'Darwin':
libfn = "lib%s.dylib" % libname
# we use *nix library naming as default
else:
libfn = "lib%s.so" % libname
libfn = os.path.join(path, libfn)
if debug_lib:
print ("Loading chipmunk for %s (%sbit) [%s]" % (s, arch, libfn))
try:
lib = platform_specific_functions()['library_loader'].LoadLibrary(libfn)
except OSError:
print ("""
Failed to load pymunk library.
This error usually means that you don't have a compiled version of chipmunk in
the correct spot where pymunk can find it. pymunk does not include precompiled
chipmunk library files for all platforms.
The good news is that it is usually enough (at least on *nix and OS X) to
simply run the compile command first before installing and then retry again:
You compile chipmunk with
> python setup.py build_chipmunk
and then continue as usual with
> python setup.py install
> cd examples
> python basic_test.py
(for complete instructions please see the readme file)
If it still doesnt work, please report as a bug on the issue tracker at
https://github.com/viblo/pymunk/issues
Remember to include information about your OS, which version of python you use
and the version of pymunk you tried to run. A description of what you did to
trigger the error is also good. Please include the exception traceback if any
(usually found below this message).
""")
raise
return lib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment