Mercurial > fife-parpg
view tests/swig_tests/swig_test_utils.py @ 367:598547404022
* Initial support for closing maps:
* Lots of cleanup functions has been added
* TODO: Cameras are only removed when all maps are closed
* TODO: Screen leaves traces when the last map is closed
* Replaced pre/postMapRemove events with pre/postMapClosed
* Fixed a bug in the Toolbar where it didn't properly handle removal of actions from an actiongroup
author | cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Thu, 29 Oct 2009 22:11:48 +0000 |
parents | 4a0efb7baf70 |
children | 81641655bc38 |
line wrap: on
line source
#!/usr/bin/env python import os, sys, unittest def genpath(somepath): return os.path.sep.join(somepath.split('/')) _paths = ('engine/swigwrappers/python', 'engine/extensions') for p in _paths: if p not in sys.path: sys.path.append(os.path.sep.join(p.split('/'))) import fife, fifelog def getEngine(minimized=False): e = fife.Engine() log = fifelog.LogManager(e, promptlog=False, filelog=True) #log.setVisibleModules('all') s = e.getSettings() #s.setRenderBackend('OpenGL') s.setDefaultFontPath('tests/data/FreeMono.ttf') s.setDefaultFontGlyphs(" abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" + ".,!?-+/:();%`'*#=[]") if minimized: s.setScreenWidth(1) s.setScreenHeight(1) s.setDefaultFontSize(12) e.init() return e __all__ = [] __all__.append('unittest') __all__.append('fife') __all__.append('fifelog') __all__.append('genpath') __all__.append('getEngine')