|  | 
| 
 
 
 
 
 
 
 
 
    
    
 |  | 
 
 
	
		|  |  |  
	
	
		
	
	
	| 
			
			 
			
				July 13th, 2004, 06:54 AM
			
			
			
		 |  
	| 
		
			|  | 
 General |  | 
					Join Date: Apr 2001 Location: Cincinnati, Ohio, USA 
						Posts: 4,547
					 Thanks: 1 
		
			
				Thanked 7 Times in 5 Posts
			
		
	      |  |  
    
	| 
				 SE4 Scripting in Python (templatizer again) 
 This might not sound very impressive, but I just wrote a program that can negate a number...       
Why'd you do that, you might ask? Well, I'm working on an expression evaluator. OK, you ask again, why are you doing THAT? Well, this expression evaluator is going to be used in a sort of Uber-Tech-Gridder program which combines the flexibility of editing text files (ask Gandalf Parker or any other Linux junkie         ) with the power of something like Krsqk's Component Generator. OK, it won't generate tech *grids* - it will only work in one dimension - but there will be a lot of flexibility; basically you will be able to do what Aaron's promised for SE5 with the SE4 data files - something like this:
 code:And the beauty of my approach is that it will apply not only to Components.txt, but also to Facility.txt and anything else you might want to have leveled items!
 Start Level           := 1End Level             := 12
 Name                  := Anti - Proton Beam [level]
 Description           := Focused energy beam used as a medium range weapon.
 Pic Num               := 18
 Tonnage Space Taken   := 30
 Tonnage Structure     := 30
 Cost Minerals         := [50 + 25 * level]
 Cost Organics         := 0
 Cost Radioactives     := [10  + 10 * level]
 Vehicle Type          := Ship\Base\Sat\WeapPlat\Drone
 Supply Amount Used    := 5
 Restrictions          := None
 General Group         := Weapons
 Family                := 2000
 Roman Numeral         := [level]
 Custom Group          := 0
 Number of Tech Req    := 1
 Tech Area Req 1       := Energy Stream Weapons
 Tech Level Req 1      := [level]
 Number of Abilities   := 0
 Weapon Type           := Direct Fire
 Weapon Target         := Ships\Planets\Ftr\Sat\Drone
 Weapon Damage At Rng  := [max(15 + level * 5 -  range * 10, 0)]
 Weapon Damage Type    := Normal
 Weapon Reload Rate    := 1
 Weapon Display Type   := Beam
 Weapon Display        := 1
 Weapon Modifier       := 0
 Weapon Sound          := apbeam.wav
 Weapon Family         := 1
 
  " src="images/icons/cool.gif" /> 
 Now I know that I'm not easily motivated to work on something past the first night, but I know that this program is something that the SE4 community would greatly appreciate (at least I'd think you would!) so please keep bugging me to finish it! (Or at least release the code so someone else can
  ) 
 edit: changed topic from "Semi-OT: I just negated a number! (Really, this is interesting! ;-)" to "Math parser ready (not the data file generator - yet!)"
 changed topic to  "SE4 Templatizer Ready for Download!"
 edit: changed topic to "Templatizer 3 is HERE!!!!!"
 
 [ July 25, 2004, 05:52: Message edited by: Ed Kolis ]
				__________________The Ed draws near! What dost thou deaux?
 |  
	
		
	
	
	| 
			
			 
			
				July 13th, 2004, 07:30 AM
			
			
			
		 |  
	| 
		
			|  | 
 Shrapnel Fanatic |  | 
					Join Date: Dec 2000 Location: USA 
						Posts: 15,630
					 Thanks: 0 
		
			
				Thanked 31 Times in 19 Posts
			
		
	      |  |  
    
	| 
				 Re: SE4 Templatizer Ready for Download! 
 I just program in basic.  I hear binary is easy too, but is owned by Microsoft so that is ruled out. 
				__________________Creator of the Star Trek Mod - AST Mod - 78 Ship Sets - Conquest Mod - Atrocities Star Wars Mod - Galaxy Reborn Mod - and Subterfuge Mod.
 |  
	
		
	
	
	| 
			
			 
			
				July 13th, 2004, 08:13 AM
			
			
			
		 |  
	| 
		
			|  | 
 Shrapnel Fanatic |  | 
					Join Date: Mar 2003 Location: CHEESE! 
						Posts: 10,009
					 Thanks: 0 
		
			
				Thanked 7 Times in 1 Post
			
		
	      |  |  
    
	| 
				 Re: SE4 Templatizer Ready for Download! 
 Negate a number? As far as I know, a number is an imaginary creation designed to represent Groups or singles of something. ?? 
				__________________ 
				If I only could remember half the things I'd forgot, that would be a lot of stuff, I think - I don't know; I forgot!  
A* E* Se! Gd! $-- C-^- Ai** M-- S? Ss---- RA Pw? Fq Bb++@ Tcp? L++++ 
Some of my webcomics.  I've got 400+ webcomics at Last count, some dead. 
Sig updated to remove non-working links.
			 |  
	
		
	
	
	| 
			
			 
			
				July 13th, 2004, 08:32 AM
			
			
			
		 |  
	| 
		
			|  | 
 Shrapnel Fanatic |  | 
					Join Date: Jul 2001 Location: Southern CA, USA 
						Posts: 18,394
					 Thanks: 0 
		
			
				Thanked 12 Times in 10 Posts
			
		
	      |  |  
    
	| 
				 Re: SE4 Templatizer Ready for Download! 
 Will it support all sorts of funky math? Exponents, sin, custom user defined functions, etc.? |  
	
		
	
	
	| 
			
			 
			
				July 13th, 2004, 05:19 PM
			
			
			
		 |  
	| 
		
			|  | 
 General |  | 
					Join Date: Apr 2001 Location: Cincinnati, Ohio, USA 
						Posts: 4,547
					 Thanks: 1 
		
			
				Thanked 7 Times in 5 Posts
			
		
	      |  |  
    
	| 
				 Re: SE4 Templatizer Ready for Download! 
 I'm hoping to basically put in anything that's in the .NET math library, so exponents and sines should be in. As for user-defined functions, I wasn't planning for them, but if you want to add functions, the program is designed to be extensible so you can code them yourself if you know a .NET language such as C#      Basically, I have an Expression class with subclasses for all the different types of expressions there can be (unary operations, constants, functions, etc.) and to add a function you'd have to derive a class from one of my base classes and implement its Value property which does the actual computation. 
If I ever get this working I'll post it on www.codeproject.com;  my main problem is to get the input string parsed out into an expression tree... but I've read about converting to Reverse Polish Notation and that should prove helpful with everything except the functions... and the (non-user-defined) functions shouldn't be too much after that, it's just a matter of getting them to take multiple parameters...
				__________________The Ed draws near! What dost thou deaux?
 |  
	
		
	
	
	| 
			
			 
			
				July 13th, 2004, 06:56 PM
			
			
			
		 |  
	| 
		
			|  | 
 Shrapnel Fanatic |  | 
					Join Date: Jul 2001 Location: Southern CA, USA 
						Posts: 18,394
					 Thanks: 0 
		
			
				Thanked 12 Times in 10 Posts
			
		
	      |  |  
    
	| 
				 Re: SE4 Templatizer Ready for Download! 
 User defined functions are necessary to prevent having to put the same formula code in 700 entries...    |  
	
		
	
	
	| 
			
			 
			
				July 13th, 2004, 07:14 PM
			
			
			
		 |  
	| 
		
			|  | 
 General |  | 
					Join Date: Apr 2001 Location: Cincinnati, Ohio, USA 
						Posts: 4,547
					 Thanks: 1 
		
			
				Thanked 7 Times in 5 Posts
			
		
	      |  |  
    
	| 
				 Re: SE4 Templatizer Ready for Download! 
 Hmm, that might be doable if I just had a separate functions.txt listing all the functions and what they evaluate to; they'd just be evaluated Last in the precedence order, I guess... 
				__________________The Ed draws near! What dost thou deaux?
 |  
	
		
	
	
	| 
			
			 
			
				July 14th, 2004, 05:37 AM
			
			
			
		 |  
	| 
		
			
			| 
 Private |  | 
					Join Date: Feb 2004 
						Posts: 5
					 Thanks: 0 
		
			
				Thanked 0 Times in 0 Posts
			
		
	      |  |  
    
	| 
				 Re: SE4 Templatizer Ready for Download! 
 no offense, but that's kinda like my program, i woulda posted it up, but i couldn't, here's the link to the topic:http://www.shrapnelgames.com/cgi-bin...=011057#000000 
btw, only works for non-weap components (i got bored making it, so i stopped) |  
	
		
	
	
	| 
			
			 
			
				July 14th, 2004, 05:47 AM
			
			
			
		 |  
	| 
		
			|  | 
 Shrapnel Fanatic |  | 
					Join Date: Mar 2003 Location: CHEESE! 
						Posts: 10,009
					 Thanks: 0 
		
			
				Thanked 7 Times in 1 Post
			
		
	      |  |  
    
	| 
				 Re: SE4 Templatizer Ready for Download! 
 
	I wasn't trying to be funny, I want someone to explain the topic name.Quote: 
	
		| Originally posted by narf poit chez BOOM: Negate a number? As far as I know, a number is an imaginary creation designed to represent Groups or singles of something. ??
 | 
				__________________ 
				If I only could remember half the things I'd forgot, that would be a lot of stuff, I think - I don't know; I forgot!  
A* E* Se! Gd! $-- C-^- Ai** M-- S? Ss---- RA Pw? Fq Bb++@ Tcp? L++++ 
Some of my webcomics.  I've got 400+ webcomics at Last count, some dead. 
Sig updated to remove non-working links.
			 |  
	
		
	
	
	| 
			
			 
			
				July 14th, 2004, 06:13 PM
			
			
			
		 |  
	| 
		
			|  | 
 General |  | 
					Join Date: Apr 2001 Location: Cincinnati, Ohio, USA 
						Posts: 4,547
					 Thanks: 1 
		
			
				Thanked 7 Times in 5 Posts
			
		
	      |  |  
    
	| 
				 Re: SE4 Templatizer Ready for Download! 
 Negating a number means turning 5 into -5, or -3 into 3, or whatever - basically subtracting it from zero. 
				__________________The Ed draws near! What dost thou deaux?
 |  
	
		
	
	
	
	
	
	
	| 
	|  Posting Rules |  
	| 
		
		You may not post new threads You may not post replies You may not post attachments You may not edit your posts 
 HTML code is On 
 |  |  |  |  |