|  |  |  | @ -10,33 +10,43 @@ from .construction import Construction | 
		
	
		
			
				|  |  |  |  | from .vegetation import Vegetation | 
		
	
		
			
				|  |  |  |  | from .gui import GUI | 
		
	
		
			
				|  |  |  |  | class API(_pydfhack._API): | 
		
	
		
			
				|  |  |  |  | 	for file in ["Memory.xml", os.path.join("..","..","output","Memory.xml")]: | 
		
	
		
			
				|  |  |  |  | 		if os.path.isfile(file): | 
		
	
		
			
				|  |  |  |  | 			datafile = file | 
		
	
		
			
				|  |  |  |  | 			break | 
		
	
		
			
				|  |  |  |  | 	else: | 
		
	
		
			
				|  |  |  |  | 		raise ImportError, "Memory.xml not found." | 
		
	
		
			
				|  |  |  |  |     started = None | 
		
	
		
			
				|  |  |  |  |      | 
		
	
		
			
				|  |  |  |  |     for file in ["Memory.xml", os.path.join("..","..","output","Memory.xml")]: | 
		
	
		
			
				|  |  |  |  |         if os.path.isfile(file): | 
		
	
		
			
				|  |  |  |  |             datafile = file | 
		
	
		
			
				|  |  |  |  |             break | 
		
	
		
			
				|  |  |  |  |     else: | 
		
	
		
			
				|  |  |  |  |         raise ImportError, "Memory.xml not found." | 
		
	
		
			
				|  |  |  |  | 	 | 
		
	
		
			
				|  |  |  |  | 	def prepare(self): | 
		
	
		
			
				|  |  |  |  | 	    """ | 
		
	
		
			
				|  |  |  |  | 	    Enforce Attach/Suspend behavior. | 
		
	
		
			
				|  |  |  |  | 	    Return True if succeeded, else False | 
		
	
		
			
				|  |  |  |  | 	    """ | 
		
	
		
			
				|  |  |  |  | 	    r = True | 
		
	
		
			
				|  |  |  |  | 	    if not self.is_attached: | 
		
	
		
			
				|  |  |  |  | 	        r = self.Attach() | 
		
	
		
			
				|  |  |  |  | 	    if r and not self.is_suspended: | 
		
	
		
			
				|  |  |  |  | 	        r = self.Suspend() | 
		
	
		
			
				|  |  |  |  | 	    return r | 
		
	
		
			
				|  |  |  |  |     def prepare(self): | 
		
	
		
			
				|  |  |  |  |         """ | 
		
	
		
			
				|  |  |  |  |         Enforce Attach/Suspend behavior. | 
		
	
		
			
				|  |  |  |  |         Return True if succeeded, else False | 
		
	
		
			
				|  |  |  |  |         """ | 
		
	
		
			
				|  |  |  |  |         r = True | 
		
	
		
			
				|  |  |  |  |         if not self.is_attached: | 
		
	
		
			
				|  |  |  |  |             r = self.Attach() | 
		
	
		
			
				|  |  |  |  |         if r and not self.is_suspended: | 
		
	
		
			
				|  |  |  |  |             r = self.Suspend() | 
		
	
		
			
				|  |  |  |  |         return r | 
		
	
		
			
				|  |  |  |  | 	 | 
		
	
		
			
				|  |  |  |  | 	def __init__(self, *args, **kwds): | 
		
	
		
			
				|  |  |  |  | 		_pydfhack._API.__init__(self, API.datafile) | 
		
	
		
			
				|  |  |  |  | 		self._mem_info_mgr_type = MemInfo | 
		
	
		
			
				|  |  |  |  | 		self._position_mgr_type = Position | 
		
	
		
			
				|  |  |  |  | 		self._material_mgr_type = Materials | 
		
	
		
			
				|  |  |  |  | 		self._creature_mgr_type = Creature | 
		
	
		
			
				|  |  |  |  | 		self._map_mgr_type = Map | 
		
	
		
			
				|  |  |  |  | 		self._translate_mgr_type = Translation | 
		
	
		
			
				|  |  |  |  | 		self._construction_mgr_type = Construction | 
		
	
		
			
				|  |  |  |  | 		self._vegetation_mgr_type = Vegetation | 
		
	
		
			
				|  |  |  |  | 		self._gui_mgr_type = GUI | 
		
	
		
			
				|  |  |  |  |     def __init__(self, *args, **kwds): | 
		
	
		
			
				|  |  |  |  |         _pydfhack._API.__init__(self, API.datafile) | 
		
	
		
			
				|  |  |  |  |         self._mem_info_mgr_type = MemInfo | 
		
	
		
			
				|  |  |  |  |         self._position_mgr_type = Position | 
		
	
		
			
				|  |  |  |  |         self._material_mgr_type = Materials | 
		
	
		
			
				|  |  |  |  |         self._creature_mgr_type = Creature | 
		
	
		
			
				|  |  |  |  |         self._map_mgr_type = Map | 
		
	
		
			
				|  |  |  |  |         self._translate_mgr_type = Translation | 
		
	
		
			
				|  |  |  |  |         self._construction_mgr_type = Construction | 
		
	
		
			
				|  |  |  |  |         self._vegetation_mgr_type = Vegetation | 
		
	
		
			
				|  |  |  |  |         self._gui_mgr_type = GUI | 
		
	
		
			
				|  |  |  |  |         self.started = [] | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |     def Resume(self): | 
		
	
		
			
				|  |  |  |  |         # Explicitly Finish() all started modules | 
		
	
		
			
				|  |  |  |  |         for m in self.started[:]: | 
		
	
		
			
				|  |  |  |  |             m.Finish() | 
		
	
		
			
				|  |  |  |  |         self.started = [] | 
		
	
		
			
				|  |  |  |  |         _pydfhack._API.Resume(self) | 
		
	
	
		
			
				
					|  |  |  | 
 |