| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | # Scan Resources.h header file, generate resgen.py and Resources.py files. | 
					
						
							|  |  |  | # Then run ressupport to generate Resmodule.c. | 
					
						
							|  |  |  | # (Should learn how to tell the compiler to compile it as well.) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | import string | 
					
						
							|  |  |  | import MacOS | 
					
						
							| 
									
										
										
										
											1998-04-17 14:07:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-05 15:39:30 +00:00
										 |  |  | from bgenlocations import TOOLBOXDIR, BGENDIR | 
					
						
							| 
									
										
										
										
											1998-04-17 14:07:56 +00:00
										 |  |  | sys.path.append(BGENDIR) | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | from scantools import Scanner | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							|  |  |  | 	input = "Resources.h" | 
					
						
							|  |  |  | 	output = "resgen.py" | 
					
						
							| 
									
										
										
										
											1996-04-12 16:29:23 +00:00
										 |  |  | 	defsoutput = TOOLBOXDIR + "Resources.py" | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	scanner = ResourcesScanner(input, output, defsoutput) | 
					
						
							|  |  |  | 	scanner.scan() | 
					
						
							|  |  |  | 	scanner.close() | 
					
						
							| 
									
										
										
										
											2002-08-15 21:48:16 +00:00
										 |  |  | 	print "=== Testing definitions output code ===" | 
					
						
							|  |  |  | 	execfile(defsoutput, {}, {}) | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	print "=== Done scanning and generating, now doing 'import ressupport' ===" | 
					
						
							|  |  |  | 	import ressupport | 
					
						
							|  |  |  | 	print "=== Done 'import ressupport'.  It's up to you to compile Resmodule.c ===" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ResourcesScanner(Scanner): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def destination(self, type, name, arglist): | 
					
						
							|  |  |  | 		classname = "ResFunction" | 
					
						
							|  |  |  | 		listname = "functions" | 
					
						
							|  |  |  | 		if arglist: | 
					
						
							|  |  |  | 			t, n, m = arglist[0] | 
					
						
							|  |  |  | 			if t == "Handle" and m == "InMode": | 
					
						
							|  |  |  | 				classname = "ResMethod" | 
					
						
							|  |  |  | 				listname = "resmethods" | 
					
						
							|  |  |  | 		return classname, listname | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makeblacklistnames(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			"ReadPartialResource", | 
					
						
							|  |  |  | 			"WritePartialResource", | 
					
						
							| 
									
										
										
										
											1995-06-09 20:56:31 +00:00
										 |  |  | 			"TempInsertROMMap", | 
					
						
							| 
									
										
										
										
											1995-03-10 14:42:57 +00:00
										 |  |  | ##			"RmveResource",		# RemoveResource | 
					
						
							|  |  |  | ##			"SizeResource",		# GetResourceSizeOnDisk | 
					
						
							|  |  |  | ##			"MaxSizeRsrc",		# GetMaxResourceSize | 
					
						
							| 
									
										
										
										
											2002-12-12 10:31:54 +00:00
										 |  |  | 			# OS8 only | 
					
						
							|  |  |  | 			'RGetResource', | 
					
						
							|  |  |  | 			'OpenResFile', | 
					
						
							|  |  |  | 			'CreateResFile', | 
					
						
							|  |  |  | 			'RsrcZoneInit', | 
					
						
							|  |  |  | 			'InitResources', | 
					
						
							|  |  |  | 			'RsrcMapEntry', | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 			] | 
					
						
							| 
									
										
										
										
											2000-06-02 21:35:07 +00:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2001-12-18 15:39:38 +00:00
										 |  |  | 	def makeblacklisttypes(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			] | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	def makerepairinstructions(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			([("Str255", "*", "InMode")], | 
					
						
							|  |  |  | 			 [("*", "*", "OutMode")]), | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			([("void_ptr", "*", "InMode"), ("long", "*", "InMode")], | 
					
						
							|  |  |  | 			 [("InBuffer", "*", "*")]), | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			([("void", "*", "OutMode"), ("long", "*", "InMode")], | 
					
						
							|  |  |  | 			 [("InOutBuffer", "*", "*")]), | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			([("void", "*", "OutMode"), ("long", "*", "InMode"), | 
					
						
							|  |  |  | 			                            ("long", "*", "OutMode")], | 
					
						
							|  |  |  | 			 [("OutBuffer", "*", "InOutMode")]), | 
					
						
							| 
									
										
										
										
											1995-06-06 13:08:40 +00:00
										 |  |  | 			  | 
					
						
							|  |  |  | 			([("SInt8", "*", "*")], | 
					
						
							| 
									
										
										
										
											2002-01-01 22:43:13 +00:00
										 |  |  | 			 [("SignedByte", "*", "*")]), | 
					
						
							|  |  |  | 			  | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			([("UniCharCount", "*", "InMode"), ("UniChar_ptr", "*", "InMode")], | 
					
						
							|  |  |  | 			 [("UnicodeReverseInBuffer", "*", "*")]), | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  | 	main() |