Mercurial > fife-parpg
view clients/editor/plugins/importer.py @ 59:129d3dafd3a5
fix initialization of opengl, SDL_GL_DOUBLEBUFFER was accidently used as flag for SDL_SetVideoMode, instead it has to be used with SDL_GL_SetAttribute, thanks to austin_, who reported that.
author | spq@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Tue, 15 Jul 2008 15:34:47 +0000 (2008-07-15) |
parents | 4a0efb7baf70 |
children |
line wrap: on
line source
#!/usr/bin/env python # coding: utf-8 # Plugin for the editor. See fifedit.py. Importer presents a directory browser for finding and importing data files. import plugin import filebrowser from loaders import loadImportFile from loaders import loadImportDirRec class Importer(plugin.Plugin): def __init__(self, engine): super(Importer,self).__init__() self.engine = engine self.filebrowser = filebrowser.FileBrowser(engine,self._select,selectdir=True) self.menu_items = { 'Import Objects' : self.filebrowser.showBrowser, } self.newImport = None self.importList = [] def addDirs(self, dirs): self.importList.extend(dirs) def _select(self,path,filename=None): if filename: self.newImport = loadImportFile('/'.join([path, filename]), self.engine) else: self.importList.append(path) loadImportDirRec(path, self.engine)