mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
32 lines
No EOL
1.2 KiB
Python
32 lines
No EOL
1.2 KiB
Python
from AIBase import *
|
|
__builtins__['simbase'] = AIBase()
|
|
__builtins__['ostream'] = Notify.out()
|
|
__builtins__['run'] = simbase.run
|
|
__builtins__['taskMgr'] = simbase.taskMgr
|
|
__builtins__['jobMgr'] = simbase.jobMgr
|
|
__builtins__['eventMgr'] = simbase.eventMgr
|
|
__builtins__['messenger'] = simbase.messenger
|
|
__builtins__['bboard'] = simbase.bboard
|
|
__builtins__['config'] = simbase.config
|
|
__builtins__['directNotify'] = directNotify
|
|
from direct.showbase import Loader
|
|
simbase.loader = Loader.Loader(simbase)
|
|
__builtins__['loader'] = simbase.loader
|
|
directNotify.setDconfigLevels()
|
|
|
|
def inspect(anObject):
|
|
from direct.tkpanels import Inspector
|
|
Inspector.inspect(anObject)
|
|
|
|
|
|
__builtins__['inspect'] = inspect
|
|
taskMgr.finalInit()
|
|
|
|
# The VirtualFileSystem, which has already initialized, doesn't see the mount
|
|
# directives in the config(s) yet. We have to force it to load those manually:
|
|
from panda3d.core import VirtualFileSystem, ConfigVariableList, Filename
|
|
vfs = VirtualFileSystem.getGlobalPtr()
|
|
mounts = ConfigVariableList('vfs-mount')
|
|
for mount in mounts:
|
|
mountfile, mountpoint = (mount.split(' ', 2) + [None, None, None])[:2]
|
|
vfs.mount(Filename(mountfile), Filename(mountpoint), 0) |