Initial import with aerobee sounding script
This commit is contained in:
3
.idea/.gitignore
generated
vendored
Normal file
3
.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
9
.idea/Script.iml
generated
Normal file
9
.idea/Script.iml
generated
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
||||
6
.idea/misc.xml
generated
Normal file
6
.idea/misc.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_23" default="true" project-jdk-name="23" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
||||
8
.idea/modules.xml
generated
Normal file
8
.idea/modules.xml
generated
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/Script.iml" filepath="$PROJECT_DIR$/.idea/Script.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
||||
23
boot/sounding.ks
Normal file
23
boot/sounding.ks
Normal file
@@ -0,0 +1,23 @@
|
||||
wait until ship:unpacked.
|
||||
lock throttle to 1.0.
|
||||
|
||||
set booster to ship:partstagged("booster")[0].
|
||||
set sustainer to ship:partstagged("sustainer")[0].
|
||||
|
||||
from {local countdown is 3.} until countdown = 0 step {set countdown to countdown - 1.} do {
|
||||
hudtext( "..." + countdown, 1, 2, 15, yellow, false).
|
||||
wait 1.
|
||||
}
|
||||
|
||||
// Launch!
|
||||
stage.
|
||||
|
||||
// Drop Booster
|
||||
wait until stage:ready.
|
||||
wait until sustainer:thrust > booster:thrust.
|
||||
stage.
|
||||
|
||||
// Drop payload & arm chute
|
||||
wait until stage:ready.
|
||||
wait until ship:verticalspeed < 0.
|
||||
stage.
|
||||
Reference in New Issue
Block a user