Poodletooth-iLand/build/data/NiraiStart.py

64 lines
1.6 KiB
Python
Raw Normal View History

2015-06-04 16:30:23 -05:00
from panda3d.core import *
2015-08-22 22:14:12 -05:00
import __builtin__, os, sys
import aes
2015-06-04 16:30:23 -05:00
import niraidata
# Config
prc = niraidata.CONFIG
iv, key, prc = prc[:16], prc[16:32], prc[32:]
prc = aes.decrypt(prc, key, iv)
2015-06-04 16:30:23 -05:00
for line in prc.split('\n'):
line = line.strip()
if line:
loadPrcFileData('nirai config', line)
2015-06-05 00:05:01 -05:00
2015-06-04 16:30:23 -05:00
del prc
del iv
del key
2015-06-05 00:05:01 -05:00
2015-06-04 16:30:23 -05:00
# DC
__builtin__.dcStream = StringStream()
dc = niraidata.DC
iv, key, dc = dc[:16], dc[16:32], dc[32:]
dc = aes.decrypt(dc, key, iv)
2015-06-04 16:30:23 -05:00
dcStream.setData(dc)
del dc
del iv
del key
2015-06-04 16:30:23 -05:00
2015-08-22 07:50:02 -05:00
# 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)
2015-06-04 16:30:23 -05:00
# Resources
# TO DO: Sign and verify the phases to prevent edition
2015-06-04 16:30:23 -05:00
abort = False
# Packs
pack = os.environ.get('TT_STRIDE_CONTENT_PACK')
2015-08-22 22:14:12 -05:00
import glob
2015-06-04 16:30:23 -05:00
if pack and pack != 'default':
print 'Loading content pack', pack
for file in glob.glob('resources/%s/*.mf' % pack):
mf = Multifile()
mf.openReadWrite(Filename(file))
names = mf.getSubfileNames()
for name in names:
ext = os.path.splitext(name)[1]
2015-08-22 22:14:12 -05:00
if ext not in ['.jpg', '.jpeg', '.ogg', '.rgb']:
2015-06-04 16:30:23 -05:00
mf.removeSubfile(name)
2015-08-22 22:14:12 -05:00
vfs.mount(mf, Filename('/'), 0)
2015-06-05 00:05:01 -05:00
2015-06-04 16:30:23 -05:00
if not abort:
# Run
2015-07-08 07:15:51 -05:00
import toontown.toonbase.ToontownStart