.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
winSPMBT: Main Battle Tank- Save $6.00

   







Go Back   .com.unity Forums > Shrapnel Community > Space Empires: Starfury

Reply
 
Thread Tools Display Modes
  #1  
Old September 19th, 2004, 07:04 AM
Sundansyr's Avatar

Sundansyr Sundansyr is offline
Corporal
 
Join Date: Oct 2003
Posts: 68
Thanks: 0
Thanked 0 Times in 0 Posts
Sundansyr is on a distinguished road
Default Explinations

Now... as I have been working on a new components.bmp file, I am going to need to start working on the components.txt file to make use of the new GraphX.

I need to have the functions of the components explained, since I did not find a line-by-line explination of the template files in the modding document.

------
* - Self Explanatory, no details needed.

Class Name := *
Name := *
Description := *Allowed Vehicle Types := *
Restriction Type := ?
Restriction Value := ?
Space Object XFile Name := *
Picture Bitmap Index := ?? << Biggie: How does the graphic engine parse image files? I know it can parse a file longer than 520 pixels, can it parse wider than 400 pixels? How does it parse the end of a 'line' of images and move down to the next? >>
Placement Locations := *
Default Repair Priority := *
Tonnage Space Taken := *
Tonnage Structure := *
Level Minimum := 1 <<Required level to find in stores or use?>>
Illegal Cargo := *
Uses Levels := *
Is Commodity := *
Event ID := 0 << The availability of items in the store or as discarded cargo can be set to a particular event? How??>>
Base Credit Value := *
Credit Value Inc Pct Per Level := *
Energy Consump Inc Per Level := *
Sound Filename := * <<A good place to find new sound FX would be nice...>>
Energy Consumption := 10 <<[Is this per second, per shot??>>
Weapon Type := *
Weapon Target := *
Weapon Damage Point Blank := *
Weapon Damage Dec Per 10 Rng := 1 <<[I have not seen how this works at all, unless it means afterthe tenth range box??>>
Weapon Damage Inc Per Level := *
Weapon Damage Maximum Range := * <<[What is the max effective range any weapon can reach in SF?>>
Weapon Damage Type := *
Weapon Reload Rate MS := *
Weapon Display Effect Name := APB beam <<[How does the game determine beams and parse the beam image files, since there are multiple files?>>
Weapon Beam Duration := 50 <<[Milliseconds?>>
Weapon Explosion Effect Name := *
Weapon Beam Burn Color := 255, 65, 255 <<[I have seen no change in the game after altering this.>>
Weapon Autofires := *
Weapon Tonnage Structure := *
Number of Effects := 1 <<[Where can I get a list of effects to know what can be used here?>>
Effect 1 Type := Energy Maximum
Effect 1 Base Amount := 50
Effect 1 Amount Per Level := 0
Number of Requirements := 0 <<[Same question.>>

Anti - Proton Beam Beam S, F Normal 3000 30 25 20 15 10 5 0 0 0 0 0 <<What does the S, F mean? Since there are only ten range boxes, how do these damage listings affect the 20 range boxes in the game?

Anti-Proton Beam Beam Beam 10 <<How does it know where beam 10 is? There are four beam files.>>
Reply With Quote
  #2  
Old September 19th, 2004, 05:35 PM

Phoenix-D Phoenix-D is offline
National Security Advisor
 
Join Date: Nov 2000
Posts: 5,085
Thanks: 0
Thanked 0 Times in 0 Posts
Phoenix-D is on a distinguished road
Default Re: Explinations

irst thing's first. That second to Last entry is NOT VALID. I strongly suspect the Last one isn't either. This is the actual Anti Proton Beam record:

Class Name := Anti - Proton Beam
Name := Anti - Proton Beam
Description := Focused energy beam used as a medium range weapon.
Allowed Vehicle Types := Ship, Base, Satellite, Fighter
Space Object XFile Name := Cargo Pod
Picture Bitmap Index := 18
Placement Locations := Weapon (Light)
Default Repair Priority := 6
Tonnage Space Taken := 30
Tonnage Structure := 30
Level Minimum := 1
Uses Levels := TRUE
Restriction Type := None
Restriction Value := 0
Illegal Cargo := FALSE
Is Commodity := FALSE
Event ID := 0
Base Credit Value := 3000
Credit Value Inc Pct Per Level := 20
Sound Filename := Anti - Proton Beam
Energy Consumption := 30
Energy Consump Inc Per Level := 0
Weapon Type := Beam
Weapon Target := Ship, Base, Fighter, Satellite
Weapon Damage Point Blank := 25
Weapon Damage Dec Per 10 Rng := 5
Weapon Damage Inc Per Level := 5
Weapon Damage Maximum Range := 60
Weapon Damage Type := Normal
Weapon Reload Rate MS := 3000
Weapon Display Effect Name := Beam 10
Weapon Explosion Effect Name := Explosion
Weapon Beam Burn Color := 72, 235, 0
Weapon Beam Duration := 50
Weapon Autofires := FALSE
Weapon Tonnage Structure := 0
Number of Effects := 0
Number of Requirements := 0

Picture bitmap index is pretty simply. Look at the components.bmp file. It starts at either 0 or 1 for the Bridge and the index number goes up by one with each new square. Once it hits ten it goes back to the begining of the file and starts over at 10 or 11. You can make the file longer, but not wider.

Not sure on the level minimum; never used it.

Event ID is a bit tricky. Certain events have fields for this so you can indeed remove or add components. E.g. you could set it so anytime a cargo of event ID 3532 was picked up it would show a text message.

Soundfilename- no help there.

Energy consumpion is per shot.

Weapon Damage Dec Per 10 Rng is how many damage points the weapon looses per 10 LS of distance to the target.

Weapon Damage Maximum range sets the max range it can fire to. It can be pretty much as large as you like, but depending on what the previous field says it might not actually get that far (i.e. its damage hits zero before max range)

Weapon Display Effect Name: refers to Main_BitmapEffects.txt. (which also sets shot speeds, FYI)

Beam duration is in milliseconds IIRC.

Burn color refers to the color created when the weapon hits the shield also IIRC.

The effects lists comes from effects.txt in the Data folder. Requirements can IIRC only be used to limit the number of components per ship.

EDIT: Two other notes. One, the game treats a blank line as the end of a component. Two, the game treats a double blank line as a end of file marker.
__________________
Phoenix-D

I am not senile. I just talk to myself because the rest of you don't provide adequate conversation.
-Digger
Reply With Quote
  #3  
Old September 19th, 2004, 09:55 PM
Sundansyr's Avatar

Sundansyr Sundansyr is offline
Corporal
 
Join Date: Oct 2003
Posts: 68
Thanks: 0
Thanked 0 Times in 0 Posts
Sundansyr is on a distinguished road
Default Re: Explinations

Okay... help??

I've been trying to experiment with the main_components.txt file, insofar as changing the pointers to new graphic coordinates.

But it's totally ignoring any new 'picture bitmap index' pointer that I put into the file (line six in the component record) . All other changes are there, but not the new graphic. It still looks in the old slot, regardless.

HELP!
Reply With Quote
  #4  
Old September 19th, 2004, 10:01 PM

Phoenix-D Phoenix-D is offline
National Security Advisor
 
Join Date: Nov 2000
Posts: 5,085
Thanks: 0
Thanked 0 Times in 0 Posts
Phoenix-D is on a distinguished road
Default Re: Explinations

That's strange..what component are you trying to change?

EDIT: better question- you are starting a new game with the same campaign you made the change to, right? Modding an existing savegame can work, but often components already on ships or in spacedocks don't get modified- only the newly generated components do.
__________________
Phoenix-D

I am not senile. I just talk to myself because the rest of you don't provide adequate conversation.
-Digger
Reply With Quote
  #5  
Old September 20th, 2004, 06:58 AM
Sundansyr's Avatar

Sundansyr Sundansyr is offline
Corporal
 
Join Date: Oct 2003
Posts: 68
Thanks: 0
Thanked 0 Times in 0 Posts
Sundansyr is on a distinguished road
Default Re: Explinations

Quote:
Phoenix-D said:
That's strange..what component are you trying to change?
All of them. See my thread 'GraphX'. Essentially I'm taking much of the art from SE4, and several mods for it, and creating a new components.bmp file.

Unfortunately it is refusing to pay attention to the new bitmap indexing I add to the components.txt file... as if it's still reading that from some other file somewhere else, and it's got me stymed.

Quote:
EDIT: better question- you are starting a new game with the same campaign you made the change to, right? Modding an existing savegame can work, but often components already on ships or in spacedocks don't get modified- only the newly generated components do.
I've tried both. I get the same results either way.
Reply With Quote
  #6  
Old September 20th, 2004, 12:58 PM

Phoenix-D Phoenix-D is offline
National Security Advisor
 
Join Date: Nov 2000
Posts: 5,085
Thanks: 0
Thanked 0 Times in 0 Posts
Phoenix-D is on a distinguished road
Default Re: Explinations

Where is the changed components.bmp? In order for it to work you either have to change the default file OR make sure its in (Campaign Name)/Images/Components/Components.bmp. If you do the latter the changes will only apply to that particular campaign.
__________________
Phoenix-D

I am not senile. I just talk to myself because the rest of you don't provide adequate conversation.
-Digger
Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 11:23 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2024, Shrapnel Games, Inc. - All Rights Reserved.