Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Separate Mercury chute and minor QoL fixes #173

Merged
merged 3 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions GameData/ROCapsules/PartConfigs/MercuryBDB/MercuryCM.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,21 @@ PART
// Antenna: 27 lbs
// Antenna Misc: 8 lbs
// ================================================================================
//RCS: 280 lbs
//RCS: 123 lbs
// Structure: 36 lbs
// Parachute Struct: 36 lbs
// Propulsion: 52 lbs
// RCS Thrusters: 21 lbs
// RCS Mounting: 11 lbs
// RCS Insulation: 10 lbs
// RCS Heat Sink: 10 lbs
// Other: 192 lbs
// Chutes: 157 lbs
// Other: 35 lbs
// Recovery Sys: 35 lbs
// ================================================================================
//Parachute: 157 lbs
// Other: 157 lbs
// Chutes: 157 lbs
// ================================================================================
//TOTAL DRY MASS: 2389 lbs (2393 - 4 lbs LiOH)
// Structure: 377 lbs
// TPS: 480 lbs
Expand Down Expand Up @@ -142,8 +145,11 @@ PART
// Nose Cap: 72 lbs (32.66 kg)
// Dry Mass: 72 lbs
// ================================================================================
// RCS: 280 lbs (127.01 kg)
// Dry Mass: 280 lbs
// RCS: 123 lbs (55.79 kg)
// Dry Mass: 123 lbs
// ================================================================================
// Parachute: 157 lbs (71.21 kg)
// Dry Mass: 157 lbs
// ================================================================================
//INERT MASS: 2429 lbs (1101.78 kg)

Expand Down Expand Up @@ -236,7 +242,7 @@ PART
breakingForce = 250
breakingTorque = 250
vesselType = Ship
stagingIcon = COMMAND_POD
stagingIcon = RCS_MODULE
CrewCapacity = 1
bulkheadProfiles = size0, size1

Expand Down
130 changes: 130 additions & 0 deletions GameData/ROCapsules/PartConfigs/MercuryBDB/MercuryParachute.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
PART
{
name = ROC-MercuryParachuteBDB
module = Part
author = CobaltWolf, capkirk

RSSROConfig = true

MODEL
{
model = ROCapsules/Assets/BDB/Mercury/bluedog_Mercury_Parachute
rotation = 0, 180, 0
}
rescaleFactor = 1.512

NODE
{
transform = parachute_Node
name = parachute
size = 0
method = FIXED_JOINT
}

buoyancyUseCubeNamed = PACKED
sound_parachute_open = activate
sound_parachute_single = deploy
TechRequired = start
entryCost = 0
cost = 1
category = Utility
subcategory = 0
title = Mercury M-ASD Main Parachute
manufacturer = McDonnell Aircraft
description = Main parachute for the Mercury capsule. Attach to the node in the recovery section.
attachRules = 1,0,1,1,0
mass = 0.05460 //71.21 kg, subtract 16.61 kgs added by realchute?
dragModelType = default
angularDrag = 3
crashTolerance = 12
stageOffset = 1
childStageOffset = 1
bulkheadProfiles = size0
bodyLiftMultiplier = 0

//Fiberglass over Titanium structure? (same as Gemini)
skinTempTag = Fiberglass
internalTempTag = Instruments

tags = mercury parachute

MODULE:NEEDS[!RealChute]
{
name = ModuleParachute
semiDeployedAnimation = semi_deploy
fullyDeployedAnimation = full_deploy
shieldedCanDeploy = true
invertCanopy = false
autoCutSpeed = 0.5
capName = Cap
canopyName = canopy
stowedDrag = 0.22
semiDeployedDrag = 1
fullyDeployedDrag = 300
minAirPressureToOpen = 0.04
clampMinAirPressure = 0.01
deployAltitude = 1000
deploymentSpeed = 0.12
semiDeploymentSpeed = 1 //0.5
chuteMaxTemp = 650
}

MODULE:NEEDS[RealChute]
{
name = RealChuteModule
caseMass = 0.05460
mustGoDown = True
spareChutes = 1
cutSpeed = 0.5
invertCanopy = false
reverseOrientation = true

PARACHUTE
{
parachuteName = canopy
capName = Cap
preDeploymentAnimation = semi_deploy
deploymentAnimation = full_deploy
material = Nylon
minIsPressure = False
minPressure = 0.01
preDeployedDiameter = 5
preDeploymentSpeed = 2
minDeployment = 3000
deployedDiameter = 19.2
deploymentSpeed = 6
deploymentAlt = 1000
cutAlt = 0
ignoreShielded = True //because being inside the recovery section makes it think it's shielded
}
}

MODULE
{
name = ModuleDragModifier
dragCubeName = SEMIDEPLOYED
dragModifier = 4 //1.25
}

MODULE
{
name = ModuleDragModifier
dragCubeName = DEPLOYED
dragModifier = 45 //12
}
}


@PART[ROC-MercuryParachute]:AFTER[zzzRealismOverhaul]
{
// RO forces all RealChuteModules to minDeploy 5000, deploy 1000,
// Get back our historical numbers
@MODULE[RealChuteModule]
{
@PARACHUTE
{
@minDeployment = 3000
@deploymentAlt = 1000
}
}
}
1 change: 1 addition & 0 deletions GameData/ROCapsules/PartConfigs/MercuryBDB/MercuryRCS.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ PART
author = CobaltWolf, capkirk

RSSROConfig = true
RODeprecated = true

MODEL
{
Expand Down
Loading
Loading