forked from e-dog/ProceduralFairings
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'ae4aeb01bdc6169ba49a924ea0a6e4f030cbf51b'
Pulled in changes from PhineasFreak
- Loading branch information
Showing
82 changed files
with
7,668 additions
and
5,567 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# ================================================== | ||
# Auto detect text files and perform LF | ||
# normalization. | ||
# ================================================== | ||
|
||
* text=auto | ||
|
||
# ================================================== | ||
# Plain text | ||
# ================================================== | ||
|
||
*.cfg text eol=lf | ||
*.CFG text eol=lf | ||
*.csproj text eol=lf | ||
*.CSPROJ text eol=lf | ||
*.md text eol=lf | ||
*.MD text eol=lf | ||
*.sln text eol=lf | ||
*.SLN text eol=lf | ||
*.txt text eol=lf | ||
*.TXT text eol=lf | ||
*.xml text eol=lf | ||
*.XML text eol=lf | ||
|
||
# ================================================== | ||
# Images & textures | ||
# ================================================== | ||
|
||
*.dds binary | ||
*.DDS binary | ||
*.png binary | ||
*.PNG binary | ||
|
||
# ================================================== | ||
# Binaries | ||
# ================================================== | ||
|
||
*.dll binary | ||
*.DLL binary | ||
|
||
# ================================================== | ||
# Source code | ||
# ================================================== | ||
|
||
*.cs diff=csharp | ||
*.CS diff=csharp | ||
|
||
# ================================================== | ||
# Ignore list | ||
# ================================================== | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
*.md export-ignore | ||
*.MD export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
GameData/ProceduralFairings/Config/PF_FilterExtensions_Config.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// ================================================== | ||
// Add bulkhead profiles to all parts for FilterExtensions | ||
// compatibility. | ||
// ================================================== | ||
|
||
@PART[*]:HAS[@MODULE[ProceduralFairing*]]:FOR[ProceduralFairings]:NEEDS[FilterExtension] | ||
{ | ||
@bulkheadProfiles ^= :$:,proc: | ||
} | ||
|
||
@PART[KzThrustPlate]:FOR[ProceduralFairings]:NEEDS[FilterExtension] | ||
{ | ||
@bulkheadProfiles ^= :$:,proc: | ||
} |
162 changes: 162 additions & 0 deletions
162
GameData/ProceduralFairings/Config/PF_Settings_Config.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
// ================================================== | ||
// Global procedural fairings settings. | ||
// ================================================== | ||
|
||
PROCFAIRINGS_MINDIAMETER | ||
{ | ||
start = 1.0 | ||
miniaturization = 0.4 | ||
sandbox = 0.1 | ||
} | ||
|
||
PROCFAIRINGS_MAXDIAMETER | ||
{ | ||
start = 1.50 | ||
advAerodynamics = 4.0 | ||
heavyAerodynamics = 12.0 | ||
experimentalAerodynamics = 30.0 | ||
sandbox = 50.0 | ||
} | ||
|
||
PROCROCKET_MINDIAMETER | ||
{ | ||
start = 1.0 | ||
miniaturization = 0.4 | ||
sandbox = 0.1 | ||
} | ||
|
||
PROCROCKET_MAXDIAMETER | ||
{ | ||
start = 1.5 | ||
advConstruction = 4.0 | ||
metaMaterials = 12.0 | ||
aerospaceTech = 30.0 | ||
sandbox = 50.0 | ||
} | ||
|
||
// ================================================== | ||
// Dummy parts to represent Procedural Fairings | ||
// upgrades in the tech tree. | ||
// ================================================== | ||
|
||
PART | ||
{ | ||
name = pf_tech_fairing04m | ||
module = Part | ||
author = Starstrider42 (config), e-dog (model) | ||
|
||
MODEL | ||
{ | ||
model = ProceduralFairings/Parts/base_standard | ||
} | ||
|
||
TechRequired = miniaturization | ||
entryCost = 0 | ||
cost = 0 | ||
category = none | ||
title = Procedural Fairings Upgrade | ||
manufacturer = Keramzit Engineering | ||
description = Allows fairings and plates to be made as small as 0.4 meters. | ||
} | ||
|
||
PART | ||
{ | ||
name = pf_tech_fairing4m | ||
module = Part | ||
author = Starstrider42 (config), e-dog (model) | ||
|
||
MODEL | ||
{ | ||
model = ProceduralFairings/Parts/base_standard | ||
} | ||
|
||
TechRequired = advAerodynamics | ||
entryCost = 0 | ||
cost = 0 | ||
category = none | ||
title = Procedural Fairings Upgrade | ||
manufacturer = Keramzit Engineering | ||
description = Allows fairing bases up to 4 meters size. | ||
} | ||
|
||
PART | ||
{ | ||
name = pf_tech_fairing12m | ||
module = Part | ||
author = Starstrider42 (config), e-dog (model) | ||
|
||
description = | ||
|
||
MODEL | ||
{ | ||
model = ProceduralFairings/Parts/base_standard | ||
} | ||
|
||
TechRequired = heavyAerodynamics | ||
entryCost = 0 | ||
cost = 0 | ||
category = none | ||
title = Procedural Fairings Upgrade | ||
manufacturer = Keramzit Engineering | ||
description = Allows fairing bases up to 12 meters size. | ||
} | ||
|
||
PART | ||
{ | ||
name = pf_tech_fairing30m | ||
module = Part | ||
author = Starstrider42 (config), e-dog (model) | ||
|
||
MODEL | ||
{ | ||
model = ProceduralFairings/Parts/base_standard | ||
} | ||
|
||
TechRequired = experimentalAerodynamics | ||
entryCost = 0 | ||
cost = 0 | ||
category = none | ||
title = Procedural Fairings Upgrade | ||
manufacturer = Keramzit Engineering | ||
description = Allows fairing bases up to 30 meters size. | ||
} | ||
|
||
PART | ||
{ | ||
name = pf_tech_rocket12m | ||
module = Part | ||
author = Starstrider42 (config), e-dog (model) | ||
|
||
MODEL | ||
{ | ||
model = ProceduralFairings/Parts/thrust_plate | ||
} | ||
|
||
TechRequired = metaMaterials | ||
entryCost = 0 | ||
cost = 0 | ||
category = none | ||
title = Procedural Fairings Upgrade | ||
manufacturer = Keramzit Engineering | ||
description = Allows thrust plates up to 12 meters size. | ||
} | ||
|
||
PART | ||
{ | ||
name = pf_tech_rocket30m | ||
module = Part | ||
author = Starstrider42 (config), e-dog (model) | ||
|
||
MODEL | ||
{ | ||
model = ProceduralFairings/Parts/thrust_plate | ||
} | ||
|
||
TechRequired = aerospaceTech | ||
entryCost = 0 | ||
cost = 0 | ||
category = none | ||
title = Procedural Fairings Upgrade | ||
manufacturer = Keramzit Engineering | ||
description = Allows thrust plates up to 30 meters size. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
// ================================================== | ||
// Replace the stock procedural fairings with ours. | ||
// ================================================== | ||
|
||
@PART[fairingSize1]:FOR[ProceduralFairings]:NEEDS[!PFFE] | ||
{ | ||
!MODEL,*{} | ||
|
||
MODEL | ||
{ | ||
model = Squad/Parts/Aero/fairings/fairingSize1 | ||
scale = 0.8275, 0.8275, 0.8275 | ||
position = 0.0, -0.115, 0.0 | ||
} | ||
|
||
@node_stack_top = 0.0, 0.0725, 0.0, 0.0, 1.0, 0.0, 0 | ||
@node_stack_bottom = 0.0, -0.265, 0.0, 0.0, -1.0, 0.0, 1 | ||
|
||
%node_stack_connect01 = 0.5, 0.1, 0.0, 0.0, 1.0, 0.0, 0 | ||
%node_stack_connect02 = 0.5, 0.1, 0.0, 0.0, 1.0, 0.0, 0 | ||
%node_stack_connect03 = 0.5, 0.1, 0.0, 0.0, 1.0, 0.0, 0 | ||
%node_stack_connect04 = 0.5, 0.1, 0.0, 0.0, 1.0, 0.0, 0 | ||
%node_stack_connect05 = 0.5, 0.1, 0.0, 0.0, 1.0, 0.0, 0 | ||
%node_stack_connect06 = 0.5, 0.1, 0.0, 0.0, 1.0, 0.0, 0 | ||
%node_stack_connect07 = 0.5, 0.1, 0.0, 0.0, 1.0, 0.0, 0 | ||
%node_stack_connect08 = 0.5, 0.1, 0.0, 0.0, 1.0, 0.0, 0 | ||
|
||
%fx_gasBurst_white = 0.0, 0.0725, 0.0, 0.0, 1.0, 0.0, decouple | ||
|
||
%sound_vent_large = decouple | ||
|
||
@title = AE-FF-PF Airstream Protective Shell | ||
@tags ^=:$: procedural | ||
|
||
!MODULE[ModuleProceduralFairing],*{} | ||
|
||
!MODULE[ModuleCargoBay],*{} | ||
|
||
!MODULE[ModuleStructuralNode*],*{} | ||
|
||
!MODULE[ModulePartVariants],*{} | ||
|
||
MODULE | ||
{ | ||
name = ProceduralFairingBase | ||
baseSize = 1.15 | ||
sideThickness = 0.05 | ||
verticalStep = 0.1 | ||
} | ||
|
||
MODULE | ||
{ | ||
name = KzNodeNumberTweaker | ||
nodePrefix = connect | ||
maxNumber = 8 | ||
numNodes = 2 | ||
radius = 0.625 | ||
shouldResizeNodes = False | ||
} | ||
|
||
MODULE | ||
{ | ||
name = KzFairingBaseResizer | ||
size = 1.25 | ||
costPerTonne = 1000 | ||
specificMass = 0.007, 0.026, 0.010, 0 | ||
specificBreakingForce = 1280 | ||
specificBreakingTorque = 1280 | ||
dragAreaScale = 1.5 | ||
} | ||
|
||
MODULE | ||
{ | ||
name = KzFairingBaseShielding | ||
} | ||
|
||
MODULE | ||
{ | ||
name = ModuleDecouple | ||
isOmniDecoupler = False | ||
ejectionForce = 250 | ||
ejectionForcePercent = 100 | ||
menuName = Decoupler Staging | ||
stagingEnabled = False | ||
stagingEnableText = Decoupler: Disabled | ||
stagingDisableText = Decoupler: Enabled | ||
} | ||
|
||
MODULE | ||
{ | ||
name = ModuleToggleCrossfeed | ||
crossfeedStatus = False | ||
toggleEditor = True | ||
toggleFlight = True | ||
enableText = Enable Crossfeed | ||
disableText = Disable Crossfeed | ||
} | ||
} | ||
|
||
// ================================================== | ||
// Hide the rest of the bases. | ||
// ================================================== | ||
|
||
@PART[fairingSize2]:FOR[ProceduralFairings]:NEEDS[!PFFE] | ||
{ | ||
@TechRequired = none | ||
%TechHidden = True | ||
@category = none | ||
} | ||
|
||
@PART[fairingSize3]:FOR[ProceduralFairings]:NEEDS[!PFFE] | ||
{ | ||
@TechRequired = none | ||
%TechHidden = True | ||
@category = none | ||
} |
Oops, something went wrong.