rua! textures done half

This commit is contained in:
沈瑗杰 2021-02-17 19:04:22 +08:00
parent 0e999409b5
commit eaa153dbc5
75 changed files with 2057 additions and 353 deletions

View File

@ -7,9 +7,9 @@ try:
from bin import tools
except (ModuleNotFoundError, ImportError, ImportWarning):
import tools
import os
import json5
from pprint import pprint
from pyglet import image
import PIL.Image
def rewrite_config(name, save_name):
@ -17,19 +17,39 @@ def rewrite_config(name, save_name):
load_xml = load_xml.documentElement
sprites = load_xml.getElementsByTagName('sprite')
pic_path = load_xml.getAttribute('imagePath')
poise = {'image_name': pic_path}
poise = {'image_name': pic_path, 'images': {}}
for sprite in sprites:
poi = tools.get_At(['x', 'y', 'w', 'h'], sprite, int)
poi.append(tools.get_At('r', sprite, str))
poise[tools.get_At('n', sprite, str)] = poi
save_image = tools.get_At('n', sprite, str)
if save_image.find('PNG') != -1:
save_image = save_image[:-3] + 'png'
poise['images'][save_image] = poi
with open(save_name, 'w') as file:
json5.dump(poise, file)
def cut_and_save(config):
with open(config, 'r') as cut:
cuts = json5.load(cut)
main = image.load()
def cut_and_save(config, save_path):
with open(config) as con:
configs = json5.load(con)
pic = PIL.Image.open('textures/' + configs['image_name'])
try:
os.mkdir('textures/' + save_path)
except Exception as exp:
print(exp)
for config_ in configs['images']:
config__ = configs['images'][config_]
save_name = 'textures/' + save_path + config_
x, y, w, h, t = config__[0], config__[1], config__[2], config__[3], config__[4]
crop_box = [x, y, x + w, y + h]
pic_ = pic.crop(crop_box)
if t == 'y':
pic_ = pic_.rotate(90, expand=True)
print(save_name)
pic_.save(save_name)
rewrite_config('textures/Runtime.xml', 'textures/Runtime.json5')
def All_in_one_cut(xml, pic, path):
json_name = xml[:-4] + '.json5'
rewrite_config(xml, json_name)
cut_and_save(json_name, path)

View File

@ -1,2 +1,3 @@
pyglet
json5
json5
pillow

29
textures/CommonGui.xml Normal file
View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with TexturePacker http://www.codeandweb.com/texturepacker-->
<!-- $TexturePacker:SmartUpdate:c3da6981dd09ea175913b0acbea04a91:2522e219d5331ca1ace210f7e450e2ba:022f5035775d68c88a4bf5838e336fc0$ -->
<!--Format:
n => name of the sprite
x => sprite x pos in texture
y => sprite y pos in texture
w => sprite width (may be trimmed)
h => sprite height (may be trimmed)
oX => sprite's x-corner offset (only available if trimmed)
oY => sprite's y-corner offset (only available if trimmed)
oW => sprite's original width (only available if trimmed)
oH => sprite's original height (only available if trimmed)
r => 'y' only set if sprite is rotated
-->
<TextureAtlas imagePath="CommonGui.png" width="512" height="512">
<sprite n="ButtonDown.png" x="184" y="2" w="180" h="50"/>
<sprite n="ButtonUp.png" x="2" y="2" w="180" h="50"/>
<sprite n="Checkbox.png" x="382" y="84" w="50" h="48"/>
<sprite n="CheckboxSelected.png" x="330" y="84" w="50" h="48"/>
<sprite n="Delete.png" x="434" y="98" w="48" h="48"/>
<sprite n="StagingButton.png" x="248" y="54" w="80" h="80"/>
<sprite n="StagingButtonDetacher.png" x="448" y="45" w="51" h="51"/>
<sprite n="StagingButtonEngine.png" x="448" y="2" w="57" h="41" r="y"/>
<sprite n="StagingButtonLander.png" x="166" y="54" w="80" h="80"/>
<sprite n="StagingButtonParachute.png" x="84" y="54" w="80" h="80"/>
<sprite n="StagingButtonSolarPanel.png" x="2" y="54" w="80" h="80"/>
<sprite n="StagingButtonWheel.png" x="366" y="2" w="80" h="80"/>
</TextureAtlas>

20
textures/DefaultShip.xml Normal file
View File

@ -0,0 +1,20 @@
<Ship currentStage="0" throttle="0.000000" liftedOff="0">
<Parts>
<Part partType="pod-1" id="1" x="0.000000" y="0.750000" angle="0.000000" angleV="0.000000" activated="0"
exploded="0"/>
<Part partType="fueltank-2" id="9" x="0.000000" y="-2.000000" angle="0.000000" angleV="0.000000">
<Tank fuel="3000.000000"/>
</Part>
<Part partType="engine-2" id="10" x="0.000000" y="-5.500000" angle="0.000000" angleV="0.000000" activated="0"
exploded="0"/>
</Parts>
<Connections>
<Connection parentPart="1" parentAttachPoint="2" childPart="9" childAttachPoint="1"/>
<Connection parentPart="9" parentAttachPoint="2" childPart="10" childAttachPoint="1"/>
</Connections>
<Staging>
<Step>
<Activate Id="10"/>
</Step>
</Staging>
</Ship>

35
textures/Editor.xml Normal file
View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with TexturePacker http://www.codeandweb.com/texturepacker-->
<!-- $TexturePacker:SmartUpdate:a0aa9bc6be2bb5655cb4fa4a2170882a:21e08bdb23ee9b7670b2173fb0910c4a:816c6a1ba5837d6940814a1777d8d132$ -->
<!--Format:
n => name of the sprite
x => sprite x pos in texture
y => sprite y pos in texture
w => sprite width (may be trimmed)
h => sprite height (may be trimmed)
oX => sprite's x-corner offset (only available if trimmed)
oY => sprite's y-corner offset (only available if trimmed)
oW => sprite's original width (only available if trimmed)
oH => sprite's original height (only available if trimmed)
r => 'y' only set if sprite is rotated
-->
<TextureAtlas imagePath="Editor.png" width="512" height="512">
<sprite n="ButtonDarkSide.png" x="508" y="2" w="2" h="100"/>
<sprite n="ButtonLightSide.png" x="2" y="508" w="100" h="2" r="y"/>
<sprite n="DeleteButton.png" x="364" y="148" w="32" h="32"/>
<sprite n="DuplicateButton.png" x="406" y="84" w="80" h="80"/>
<sprite n="MirrorButton.png" x="324" y="14" w="80" h="80"/>
<sprite n="PartButton.png" x="2" y="2" w="320" h="100"/>
<sprite n="PartGroupHeader.PNG" x="2" y="104" w="45" h="320" r="y"/>
<sprite n="RotateButton.png" x="426" y="2" w="80" h="80"/>
<sprite n="ToolbarDark.PNG" x="324" y="8" w="100" h="4" r="y"/>
<sprite n="ToolbarIconAddPart.PNG" x="312" y="148" w="50" h="50"/>
<sprite n="ToolbarIconMenu.PNG" x="260" y="104" w="50" h="50"/>
<sprite n="ToolbarIconPlay.PNG" x="208" y="104" w="50" h="50"/>
<sprite n="ToolbarIconStaging.PNG" x="156" y="104" w="50" h="50"/>
<sprite n="ToolbarIconZoom.png" x="49" y="104" w="50" h="50"/>
<sprite n="ToolbarIconZoomIn.png" x="104" y="104" w="50" h="50"/>
<sprite n="ToolbarIconZoomOut.png" x="324" y="96" w="50" h="50"/>
<sprite n="ToolbarLight.PNG" x="324" y="2" w="100" h="4" r="y"/>
<sprite n="TrashCan.png" x="2" y="426" w="80" h="80"/>
</TextureAtlas>

8
textures/EmptyShip.xml Normal file
View File

@ -0,0 +1,8 @@
<Ship currentStage="0" throttle="0.000000">
<Parts>
<Part partType="pod-1" id="1" x="0.000000" y="0.750000" angle="0.000000" angleV="0.000000" activated="0"
exploded="0"/>
</Parts>
<Connections/>
<Staging/>
</Ship>

20
textures/Flame.xml Normal file
View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with TexturePacker http://www.codeandweb.com/texturepacker-->
<!-- $TexturePacker:SmartUpdate:022b8f8460f1ea0ff69d1eea14387321:f2fa66d71fbd232ede864add391ceed7:8f9b2e8922d7ab8b20ca16d0ca656275$ -->
<!--Format:
n => name of the sprite
x => sprite x pos in texture
y => sprite y pos in texture
w => sprite width (may be trimmed)
h => sprite height (may be trimmed)
oX => sprite's x-corner offset (only available if trimmed)
oY => sprite's y-corner offset (only available if trimmed)
oW => sprite's original width (only available if trimmed)
oH => sprite's original height (only available if trimmed)
r => 'y' only set if sprite is rotated
-->
<TextureAtlas imagePath="Flame.png" width="256" height="256">
<sprite n="IonFlame-1.png" x="170" y="2" w="58" h="118"/>
<sprite n="RocketFlame-1.png" x="86" y="2" w="82" h="226"/>
<sprite n="RocketFlame-2.png" x="2" y="2" w="82" h="226"/>
</TextureAtlas>

20
textures/Inputs.xml Normal file
View File

@ -0,0 +1,20 @@
<Inputs>
<Input id="Activate" name="Activate Stage" key1="Space" key2="None" defaultKey1="Space" defaultKey2="None"/>
<Input id="ThrottleUp" name="Increase Throttle" key1="Shift" key2="Numpad +" defaultKey1="Numpad +"
defaultKey2="="/>
<Input id="ThrottleDown" name="Decrease Throttle" key1="Control" key2="Numpad -" defaultKey1="Numpad -"
defaultKey2="-"/>
<Input id="MaxThrottle" name="Max Throttle" key1="Numpad 1" key2="1" defaultKey1="Numpad 1" defaultKey2="1"/>
<Input id="KillThrottle" name="Kill Throttle" key1="Numpad 0" key2="X" defaultKey1="X" defaultKey2="Numpad 0"/>
<Input id="Left" name="Turn Left" key1="Left" key2="A" defaultKey1="Left" defaultKey2="A"/>
<Input id="Right" name="Turn Right" key1="Right" key2="D" defaultKey1="Right" defaultKey2="D"/>
<Input id="Backward" name="RCS Reverse" key1="Down" key2="S" defaultKey1="Down" defaultKey2="S"/>
<Input id="Forward" name="RCS Forward" key1="Up" key2="W" defaultKey1="Up" defaultKey2="W"/>
<Input id="StrafeLeft" name="RCS Left" key1="Q" key2="None" defaultKey1="Q" defaultKey2="None"/>
<Input id="StrafeRight" name="RCS Right" key1="E" key2="None" defaultKey1="E" defaultKey2="None"/>
<Input id="LockHeading" name="Lock Heading" key1="Enter" key2="None" defaultKey1="Enter" defaultKey2="None"/>
<Input id="SwitchView" name="Toggle Map" key1="Tab" key2="None" defaultKey1="Tab" defaultKey2="None"/>
<Input id="Pause" name="Pause" key1="P" key2="None" defaultKey1="P" defaultKey2="None"/>
<Input id="ZoomIn" name="Zoom In" key1="." key2="None" defaultKey1="." defaultKey2="None"/>
<Input id="ZoomOut" name="Zoom Out" key1="," key2="None" defaultKey1="," defaultKey2="None"/>
</Inputs>

View File

@ -0,0 +1,240 @@
<Runtime time="0.0" firstStageActivated="1" solarSystem="SmolarSystem.xml" shipId="1" podId="1">
<Nodes>
<PlanetNode name="Sun"/>
<PlanetNode name="Smercury" trueAnomaly="-2.404764"/>
<PlanetNode name="Smenus" trueAnomaly="0.853837"/>
<PlanetNode name="Smearth" trueAnomaly="-2.989081"/>
<PlanetNode name="Smoon" trueAnomaly="-0.743971"/>
<ShipNode id="1" planet="Smearth" planetRadius="637100.000000" x="131549.439018" y="988553.871112"
vx="1984.119629" vy="-286.065857">
<Ship version="1" liftedOff="1" touchingGround="0">
<Parts>
<Part partType="pod-1" id="1" x="131591.909721" y="988530.767108" angle="-3.137835"
angleV="0.001361" editorAngle="0">
<Pod throttle="0.000000" name="Player">
<Staging currentStage="1">
<Step>
<Activate Id="71" moved="1"/>
</Step>
</Staging>
</Pod>
</Part>
<Part partType="fueltank-4" id="58" x="131591.904838" y="988532.017353" angle="-3.137835"
angleV="0.001361" editorAngle="0">
<Tank fuel="560.876921"/>
</Part>
<Part partType="fueltank-2" id="70" x="131591.896049" y="988534.517230" angle="-3.138136"
angleV="0.001433" editorAngle="0">
<Tank fuel="2978.133332"/>
</Part>
<Part partType="engine-0" id="71" x="131591.887260" y="988537.017230" angle="-3.138018"
angleV="0.001435" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="rcs-1" id="72" x="131590.643120" y="988535.462909" angle="-3.138136"
angleV="0.001433" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="rcs-1" id="73" x="131593.143120" y="988535.471454" angle="-3.138136"
angleV="0.001433" editorAngle="0" activated="0" exploded="0" flippedX="1" flippedY="0"/>
<Part partType="rcs-1" id="59" x="131593.154838" y="988532.021991" angle="-3.137835"
angleV="0.001361" editorAngle="0" activated="0" exploded="0" flippedX="1" flippedY="0"/>
<Part partType="rcs-1" id="60" x="131590.654838" y="988532.012714" angle="-3.137835"
angleV="0.001361" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="dock-1" id="63" x="131591.913627" y="988529.767108" angle="-3.137835"
angleV="0.001361" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
</Parts>
<Connections>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="58"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="58" childPart="70"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="70" childPart="71"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="70" childPart="72"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="70" childPart="73"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="58" childPart="59"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="58" childPart="60"/>
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1" childPart="63"/>
</Connections>
</Ship>
</ShipNode>
<ShipNode id="2" planet="Smearth" planetRadius="637100.000000" x="131549.439018" y="988533.871112"
vx="1984.119629" vy="-286.065857">
<Ship version="1" liftedOff="1" touchingGround="0">
<Parts>
<Part partType="pod-1" id="1" x="131549.439018" y="988533.871112" angle="0.000003"
angleV="-0.000000" editorAngle="0">
<Pod throttle="0.000000" name="Satellite">
<Staging currentStage="5">
<Step>
<Activate Id="44" moved="1"/>
</Step>
<Step>
<Activate Id="62" moved="1"/>
<Activate Id="64" moved="1"/>
<Activate Id="63" moved="1"/>
<Activate Id="60" moved="1"/>
<Activate Id="59" moved="1"/>
<Activate Id="61" moved="1"/>
</Step>
<Step>
<Activate Id="45" moved="1"/>
<Activate Id="46" moved="1"/>
</Step>
<Step>
<Activate Id="68" moved="1"/>
<Activate Id="69" moved="1"/>
</Step>
<Step>
<Activate Id="12" moved="1"/>
<Activate Id="14" moved="1"/>
<Activate Id="15" moved="1"/>
<Activate Id="23" moved="1"/>
</Step>
</Staging>
</Pod>
</Part>
<Part partType="fueltank-3" id="3" x="131549.439018" y="988529.121112" angle="0.000003"
angleV="-0.000000" editorAngle="0">
<Tank fuel="6000.000000"/>
</Part>
<Part partType="solar-1" id="12" x="131550.689018" y="988532.121112" angle="0.000003"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="15" x="131548.189018" y="988532.121112" angle="0.000003"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="23" x="131550.689018" y="988528.121112" angle="0.000003"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="14" x="131548.189018" y="988528.121112" angle="0.000004"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="fueltank-2" id="17" x="131549.439018" y="988523.121112" angle="0.000004"
angleV="-0.000000" editorAngle="0">
<Tank fuel="3000.000000"/>
</Part>
<Part partType="fueltank-3" id="43" x="131549.439018" y="988517.121112" angle="3.141601"
angleV="-0.000000" editorAngle="2">
<Tank fuel="6000.000000"/>
</Part>
<Part partType="engine-3" id="44" x="131549.439018" y="988511.121112" angle="0.000008"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="port-1" id="19" x="131547.939018" y="988524.121112" angle="0.000004"
angleV="-0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="port-1" id="16" x="131550.939018" y="988524.121112" angle="0.000004"
angleV="-0.000000" editorAngle="0" activated="0" exploded="0" flippedX="1" flippedY="0"/>
<Part partType="fueltank-0" id="72" x="131547.939995" y="988521.620990" angle="1.570809"
angleV="0.000000" editorAngle="1">
<Tank fuel="750.000000"/>
</Part>
<Part partType="strut-1" id="33" x="131543.439995" y="988521.620990" angle="0.000011"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="strut-1" id="39" x="131535.439995" y="988521.620868" angle="0.000019"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fuselage-1" id="41" x="131530.439995" y="988521.620746" angle="0.000000"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fueltank-3" id="40" x="131530.439995" y="988516.620746" angle="3.141593"
angleV="0.000000" editorAngle="2">
<Tank fuel="6000.000000"/>
</Part>
<Part partType="engine-3" id="45" x="131530.439995" y="988510.620746" angle="0.000000"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="strut-1" id="53" x="131530.439995" y="988526.620990" angle="4.712390"
angleV="-0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="strut-1" id="65" x="131530.439995" y="988534.621112" angle="4.712392"
angleV="-0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fueltank-3" id="74" x="131531.439995" y="988539.621112" angle="1.570798"
angleV="-0.000000" editorAngle="1">
<Tank fuel="6000.000000"/>
</Part>
<Part partType="solar-1" id="62" x="131535.689995" y="988539.621112" angle="0.000002"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="63" x="131527.189995" y="988539.621112" angle="0.000002"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="64" x="131530.439995" y="988540.871112" angle="1.570799"
angleV="-0.000000" editorAngle="1" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="68" x="131529.189995" y="988521.620746" angle="0.000006"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="fueltank-0" id="73" x="131550.939018" y="988521.621112" angle="4.712385"
angleV="-0.000000" editorAngle="3">
<Tank fuel="750.000000"/>
</Part>
<Part partType="strut-1" id="34" x="131555.439018" y="988521.620990" angle="-0.000029"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="strut-1" id="35" x="131563.439018" y="988521.620868" angle="-0.000014"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fuselage-1" id="42" x="131568.439018" y="988521.620746" angle="-0.000020"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fueltank-3" id="37" x="131568.439018" y="988516.620746" angle="3.141593"
angleV="0.000000" editorAngle="2">
<Tank fuel="6000.000000"/>
</Part>
<Part partType="engine-3" id="46" x="131568.439018" y="988510.620746" angle="-0.000000"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="strut-1" id="50" x="131568.439018" y="988526.620990" angle="4.712388"
angleV="-0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="strut-1" id="67" x="131568.439018" y="988534.621112" angle="4.712386"
angleV="-0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fueltank-3" id="75" x="131567.439018" y="988539.621112" angle="4.712387"
angleV="-0.000000" editorAngle="3">
<Tank fuel="6000.000000"/>
</Part>
<Part partType="solar-1" id="59" x="131563.189018" y="988539.621112" angle="-0.000003"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="60" x="131571.689018" y="988539.621112" angle="-0.000003"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="61" x="131568.439018" y="988540.871112" angle="4.712386"
angleV="-0.000000" editorAngle="3" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="69" x="131569.689018" y="988521.620746" angle="-0.000006"
angleV="-0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
</Parts>
<Connections>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="3"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="3" childPart="12"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="3" childPart="15"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="3" childPart="23"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="3" childPart="14"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="3" childPart="17"/>
<Connection parentAttachPoint="2" childAttachPoint="2" parentPart="17" childPart="43"/>
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="43" childPart="44"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="17" childPart="19"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="17" childPart="16"/>
<Connection parentAttachPoint="3" childAttachPoint="2" parentPart="17" childPart="72"/>
<Connection parentAttachPoint="1" childAttachPoint="4" parentPart="72" childPart="33"/>
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="33" childPart="39"/>
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="39" childPart="41"/>
<Connection parentAttachPoint="2" childAttachPoint="2" parentPart="41" childPart="40"/>
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="40" childPart="45"/>
<Connection parentAttachPoint="1" childAttachPoint="4" parentPart="41" childPart="53"/>
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="53" childPart="65"/>
<Connection parentAttachPoint="3" childAttachPoint="3" parentPart="65" childPart="74"/>
<Connection parentAttachPoint="2" childAttachPoint="2" parentPart="74" childPart="62"/>
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="74" childPart="63"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="74" childPart="64"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="41" childPart="68"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="17" childPart="73"/>
<Connection parentAttachPoint="1" childAttachPoint="3" parentPart="73" childPart="34"/>
<Connection parentAttachPoint="4" childAttachPoint="3" parentPart="34" childPart="35"/>
<Connection parentAttachPoint="4" childAttachPoint="3" parentPart="35" childPart="42"/>
<Connection parentAttachPoint="2" childAttachPoint="2" parentPart="42" childPart="37"/>
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="37" childPart="46"/>
<Connection parentAttachPoint="1" childAttachPoint="4" parentPart="42" childPart="50"/>
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="50" childPart="67"/>
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="67" childPart="75"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="75" childPart="59"/>
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="75" childPart="60"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="75" childPart="61"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="42" childPart="69"/>
</Connections>
</Ship>
</ShipNode>
<PlanetNode name="Smars" trueAnomaly="1.744006"/>
<PlanetNode name="Smupiter" trueAnomaly="1.325657"/>
<PlanetNode name="Smaturn" trueAnomaly="2.222602"/>
<PlanetNode name="Smuranus" trueAnomaly="-2.838979"/>
<PlanetNode name="Smeptune" trueAnomaly="-1.313070"/>
</Nodes>
</Runtime>

View File

@ -0,0 +1,48 @@
<Runtime time="0.0" firstStageActivated="0" solarSystem="SmolarSystem.xml">
<Nodes>
<ShipNode planet="Smoon" x="-3057.363037" y="174798.852783" vx="10" vy="-20">
<Ship currentStage="1" throttle="0.000000" liftedOff="1">
<Parts>
<Part partType="pod-1" id="1" x="-3057.363037" y="176898.852783" angle="-12.598453"
angleV="-0.000199" activated="0" exploded="0"/>
<Part partType="fueltank-1" id="101" x="-3057.419189" y="176897.103516" angle="-12.598453"
angleV="-0.000199">
<Tank fuel="977.479135"/>
</Part>
<Part partType="engine-0" id="102" x="-3057.467529" y="176895.604248" angle="-12.598512"
angleV="-0.000199" activated="1" exploded="0"/>
<Part partType="lander-1" id="103" x="-3058.676758" y="176896.893799" angle="-12.598512"
legAngle="0.000000" angleV="-0.000199" activated="0" exploded="0" lower="0" raise="0"
length="2.260000"/>
<Part partType="lander-1" id="104" x="-3056.177979" y="176896.813477" angle="-12.598512"
legAngle="0.000000" angleV="-0.000199" activated="0" exploded="0" lower="0" raise="0"
length="2.260000"/>
</Parts>
<Connections>
<Connection parentPart="1" parentAttachPoint="2" childPart="101" childAttachPoint="1"/>
<Connection parentPart="101" parentAttachPoint="2" childPart="102" childAttachPoint="1"/>
<Connection parentPart="101" parentAttachPoint="3" childPart="103" childAttachPoint="2"/>
<Connection parentPart="101" parentAttachPoint="4" childPart="104" childAttachPoint="1"/>
</Connections>
<Staging>
<Step>
<Activate Id="102"/>
</Step>
<Step>
<Activate Id="103"/>
<Activate Id="104"/>
</Step>
</Staging>
</Ship>
</ShipNode>
<PlanetNode name="Smercury" trueAnomaly="-2.465148"/>
<PlanetNode name="Smenus" trueAnomaly="0.822420"/>
<PlanetNode name="Smearth" trueAnomaly="-3.013170"/>
<PlanetNode name="Smoon" trueAnomaly="-2.138368"/>
<PlanetNode name="Smars" trueAnomaly="1.734006"/>
<PlanetNode name="Smupiter" trueAnomaly="1.324001"/>
<PlanetNode name="Smaturn" trueAnomaly="2.222000"/>
<PlanetNode name="Smuranus" trueAnomaly="-2.839185"/>
<PlanetNode name="Smeptune" trueAnomaly="-1.313185"/>
</Nodes>
</Runtime>

View File

@ -0,0 +1,36 @@
<Runtime time="0.0" firstStageActivated="0" solarSystem="SmolarSystem.xml">
<Nodes>
<ShipNode planet="Smearth" x="0.000420" y="637105.765029" vx="-0.000007" vy="-0.000000">
<Ship currentStage="0" throttle="0.000000" liftedOff="0">
<Parts>
<Part partType="pod-1" id="1" x="0.000420" y="637105.765029" angle="-0.000045" angleV="0.000003"
activated="0" exploded="0"/>
<Part partType="fueltank-0" id="210" x="0.000364" y="637104.515029" angle="-0.000045"
angleV="0.000004">
<Tank fuel="750.000000"/>
</Part>
<Part partType="engine-3" id="211" x="0.000253" y="637102.015029" angle="-0.000044"
angleV="0.000000" activated="0" exploded="0"/>
</Parts>
<Connections>
<Connection parentPart="1" parentAttachPoint="2" childPart="210" childAttachPoint="1"/>
<Connection parentPart="210" parentAttachPoint="2" childPart="211" childAttachPoint="1"/>
</Connections>
<Staging>
<Step>
<Activate Id="211"/>
</Step>
</Staging>
</Ship>
</ShipNode>
<PlanetNode name="Smercury" trueAnomaly="-2.465148"/>
<PlanetNode name="Smenus" trueAnomaly="0.822420"/>
<PlanetNode name="Smearth" trueAnomaly="-3.013170"/>
<PlanetNode name="Smoon" trueAnomaly="-2.138368"/>
<PlanetNode name="Smars" trueAnomaly="1.734006"/>
<PlanetNode name="Smupiter" trueAnomaly="1.324001"/>
<PlanetNode name="Smaturn" trueAnomaly="2.222000"/>
<PlanetNode name="Smuranus" trueAnomaly="-2.839185"/>
<PlanetNode name="Smeptune" trueAnomaly="-1.313185"/>
</Nodes>
</Runtime>

View File

@ -0,0 +1,36 @@
<Runtime time="0.0" firstStageActivated="1" solarSystem="SmolarSystem.xml">
<Nodes>
<ShipNode planet="Smearth" x="25086.400629" y="739149.589172" vx="287.729248" vy="608.873779">
<Ship currentStage="1" throttle="0.000000" liftedOff="1">
<Parts>
<Part partType="pod-1" id="1" x="25086.400629" y="739149.589172" angle="-0.630828"
angleV="-0.001682" activated="0" exploded="0"/>
<Part partType="fueltank-2" id="28" x="25084.778650" y="739147.368408" angle="-0.630828"
angleV="-0.001682">
<Tank fuel="3000"/>
</Part>
<Part partType="engine-2" id="29" x="25082.714319" y="739144.541992" angle="-0.630820"
angleV="-0.001677" activated="1" exploded="0"/>
</Parts>
<Connections>
<Connection parentPart="1" parentAttachPoint="2" childPart="28" childAttachPoint="1"/>
<Connection parentPart="28" parentAttachPoint="2" childPart="29" childAttachPoint="1"/>
</Connections>
<Staging>
<Step>
<Activate Id="29"/>
</Step>
</Staging>
</Ship>
</ShipNode>
<PlanetNode name="Smercury" trueAnomaly="-2.465148"/>
<PlanetNode name="Smenus" trueAnomaly="0.822420"/>
<PlanetNode name="Smearth" trueAnomaly="-3.013170"/>
<PlanetNode name="Smoon" trueAnomaly="-2.138368"/>
<PlanetNode name="Smars" trueAnomaly="1.734006"/>
<PlanetNode name="Smupiter" trueAnomaly="1.324001"/>
<PlanetNode name="Smaturn" trueAnomaly="2.222000"/>
<PlanetNode name="Smuranus" trueAnomaly="-2.839185"/>
<PlanetNode name="Smeptune" trueAnomaly="-1.313185"/>
</Nodes>
</Runtime>

View File

@ -0,0 +1,128 @@
<Runtime time="0.0" firstStageActivated="1" solarSystem="SmolarSystem.xml" shipId="4" podId="1">
<Nodes>
<PlanetNode name="Sun"/>
<PlanetNode name="Smercury" trueAnomaly="-2.404510"/>
<PlanetNode name="Smenus" trueAnomaly="0.853968"/>
<PlanetNode name="Smearth" trueAnomaly="-2.988980"/>
<PlanetNode name="Smoon" trueAnomaly="-0.737760"/>
<ShipNode id="2" planet="Smearth" planetRadius="637100.000000" x="293193.647224" y="949345.454115"
vx="-1913.992432" vy="625.777344">
<Ship version="1" liftedOff="1" touchingGround="0">
<Parts>
<Part partType="pod-1" id="124" x="293193.647224" y="949345.454115" angle="0.002169"
angleV="0.000000" editorAngle="0">
<Pod throttle="0.000000" name="Satellite">
<Staging currentStage="3">
<Step/>
<Step>
<Activate Id="127" moved="1"/>
<Activate Id="128" moved="1"/>
</Step>
<Step/>
</Staging>
</Pod>
</Part>
<Part partType="fueltank-2" id="125" x="293193.652106" y="949342.704115" angle="0.002169"
angleV="0.000000" editorAngle="0">
<Tank fuel="0.000000"/>
</Part>
<Part partType="port-1" id="126" x="293193.657966" y="949340.204115" angle="1.572965"
angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="solar-1" id="127" x="293194.901130" y="949343.206801" angle="0.002165"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="128" x="293192.402106" y="949343.201430" angle="0.002184"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
</Parts>
<Connections>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="124" childPart="125"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="125" childPart="126"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="125" childPart="127"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="125" childPart="128"/>
</Connections>
</Ship>
</ShipNode>
<ShipNode id="4" planet="Smearth" planetRadius="637100.000000" x="293193.647224" y="949307.663588"
vx="-1913.992065" vy="625.777283">
<Ship version="1" liftedOff="1" touchingGround="0">
<Parts>
<Part partType="pod-1" id="1" x="293193.533942" y="949307.663588" angle="0.003367" angleV="0.000254"
editorAngle="0">
<Pod throttle="0.000000" name="Player">
<Staging currentStage="1">
<Step>
<Activate Id="104" moved="1"/>
</Step>
<Step>
<Activate Id="105" moved="1"/>
<Activate Id="106" moved="1"/>
<Activate Id="118" moved="1"/>
<Activate Id="117" moved="1"/>
</Step>
</Staging>
</Pod>
</Part>
<Part partType="dock-1" id="94" x="293193.531013" y="949308.663832" angle="0.003367"
angleV="0.000254" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fueltank-4" id="98" x="293193.539802" y="949306.413588" angle="0.003367"
angleV="0.000254" editorAngle="0">
<Tank fuel="748.218618"/>
</Part>
<Part partType="rcs-1" id="102" x="293192.290778" y="949306.159682" angle="0.003367"
angleV="0.000254" editorAngle="0" activated="0" exploded="0" flippedX="1" flippedY="0"/>
<Part partType="rcs-1" id="101" x="293194.790778" y="949306.167983" angle="0.003367"
angleV="0.000254" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fuselage-1" id="116" x="293193.542731" y="949304.913588" angle="0.002908"
angleV="0.000247" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fueltank-2" id="97" x="293193.550544" y="949301.914076" angle="0.002562"
angleV="0.000318" editorAngle="0">
<Tank fuel="1495.416588"/>
</Part>
<Part partType="parachute-1" id="106" x="293192.298591" y="949302.410902" angle="1.573358"
angleV="0.000318" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0"
chuteX="293192.298591" chuteY="949302.410902" chuteAngle="0.000000" chuteHeight="0.000000"
inflation="0.100000" inflate="0" deployed="0" rope="0"/>
<Part partType="parachute-1" id="105" x="293194.798591" y="949302.417250" angle="4.714948"
angleV="0.000317" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"
chuteX="293194.798591" chuteY="949302.417250" chuteAngle="0.000000" chuteHeight="0.000000"
inflation="0.100000" inflate="0" deployed="0" rope="0"/>
<Part partType="rcs-1" id="99" x="293194.804450" y="949300.667494" angle="0.002562"
angleV="0.000318" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="rcs-1" id="100" x="293192.304450" y="949300.660658" angle="0.002562"
angleV="0.000318" editorAngle="0" activated="0" exploded="0" flippedX="1" flippedY="0"/>
<Part partType="engine-1" id="104" x="293193.557380" y="949298.914076" angle="0.002547"
angleV="0.000317" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="parachute-1" id="118" x="293192.294685" y="949304.409926" angle="1.573830"
angleV="0.000242" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0"
chuteX="293192.294685" chuteY="949304.409926" chuteAngle="0.000000" chuteHeight="0.000000"
inflation="0.100000" inflate="0" deployed="0" rope="0"/>
<Part partType="parachute-1" id="117" x="293194.794685" y="949304.417250" angle="4.715351"
angleV="0.000243" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"
chuteX="293194.794685" chuteY="949304.417250" chuteAngle="0.000000" chuteHeight="0.000000"
inflation="0.100000" inflate="0" deployed="0" rope="0"/>
</Parts>
<Connections>
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1" childPart="94"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="98"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="98" childPart="102"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="98" childPart="101"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="98" childPart="116"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="116" childPart="97"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="97" childPart="106"/>
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="97" childPart="105"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="97" childPart="99"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="97" childPart="100"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="97" childPart="104"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="116" childPart="118"/>
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="116" childPart="117"/>
</Connections>
</Ship>
</ShipNode>
<PlanetNode name="Smars" trueAnomaly="1.744047"/>
<PlanetNode name="Smupiter" trueAnomaly="1.325664"/>
<PlanetNode name="Smaturn" trueAnomaly="2.222605"/>
<PlanetNode name="Smuranus" trueAnomaly="-2.838978"/>
<PlanetNode name="Smeptune" trueAnomaly="-1.313069"/>
</Nodes>
</Runtime>

View File

@ -0,0 +1,151 @@
<Runtime time="0.0" firstStageActivated="1" solarSystem="SmolarSystem.xml" shipId="1">
<Nodes>
<PlanetNode name="Sun"/>
<PlanetNode name="Smercury" trueAnomaly="-2.404911"/>
<PlanetNode name="Smenus" trueAnomaly="0.853761"/>
<PlanetNode name="Smearth" trueAnomaly="-2.989139"/>
<PlanetNode name="Smoon" trueAnomaly="-0.747577"/>
<ShipNode id="1" planet="Smearth" planetRadius="637100.000000" x="-15172.142281" y="998816.115241"
vx="2001.279663" vy="6.664629">
<Ship version="1" liftedOff="1" touchingGround="0">
<Parts>
<Part partType="pod-1" id="1" x="-8.231614" y="637101.491850" angle="1.570840" angleV="0.000000"
editorAngle="0">
<Pod throttle="0.000000" name="Player">
<Staging currentStage="1">
<Step>
<Activate Id="71" moved="1"/>
</Step>
</Staging>
</Pod>
</Part>
<Part partType="fueltank-4" id="58" x="-6.981614" y="637101.491905" angle="1.570840"
angleV="0.000000" editorAngle="0">
<Tank fuel="679.000000"/>
</Part>
<Part partType="fueltank-2" id="70" x="-4.481614" y="637101.492015" angle="1.570840"
angleV="0.000000" editorAngle="0">
<Tank fuel="2978.133332"/>
</Part>
<Part partType="engine-0" id="71" x="-1.981614" y="637101.492126" angle="1.570840" angleV="0.000000"
editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="rcs-1" id="72" x="-3.531669" y="637102.742057" angle="1.570840" angleV="0.000000"
editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="rcs-1" id="73" x="-3.531559" y="637100.242057" angle="1.570840" angleV="0.000000"
editorAngle="0" activated="0" exploded="0" flippedX="1" flippedY="0"/>
<Part partType="rcs-1" id="59" x="-6.981559" y="637100.241905" angle="1.570840" angleV="0.000000"
editorAngle="0" activated="0" exploded="0" flippedX="1" flippedY="0"/>
<Part partType="rcs-1" id="60" x="-6.981669" y="637102.741905" angle="1.570840" angleV="0.000000"
editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="dock-1" id="63" x="-9.231614" y="637101.491806" angle="1.570840" angleV="0.000000"
editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
</Parts>
<Connections>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="58"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="58" childPart="70"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="70" childPart="71"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="70" childPart="72"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="70" childPart="73"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="58" childPart="59"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="58" childPart="60"/>
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1" childPart="63"/>
</Connections>
</Ship>
</ShipNode>
<ShipNode id="2" planet="Smearth" planetRadius="637100.000000" x="-15212.142281" y="998816.115241"
vx="2001.279663" vy="6.664629">
<Ship version="1" liftedOff="1" touchingGround="0">
<Parts>
<Part partType="pod-1" id="1" x="-15212.142281" y="998816.115241" angle="32.987629"
angleV="0.000000" editorAngle="0">
<Pod throttle="0.000000" name="Satellite">
<Staging currentStage="3">
<Step/>
<Step/>
<Step>
<Activate Id="45" moved="1"/>
<Activate Id="32" moved="1"/>
<Activate Id="33" moved="1"/>
<Activate Id="42" moved="1"/>
<Activate Id="43" moved="1"/>
<Activate Id="14" moved="1"/>
<Activate Id="16" moved="1"/>
</Step>
<Step>
<Activate Id="44" moved="1"/>
<Activate Id="29" moved="1"/>
</Step>
</Staging>
</Pod>
</Part>
<Part partType="fueltank-2" id="17" x="-15209.392281" y="998816.117713" angle="32.987629"
angleV="0.000000" editorAngle="0">
<Tank fuel="3000.000000"/>
</Part>
<Part partType="fueltank-2" id="39" x="-15205.392281" y="998816.121434" angle="32.987637"
angleV="0.000000" editorAngle="0">
<Tank fuel="3000.000000"/>
</Part>
<Part partType="detacher-1" id="44" x="-15203.142281" y="998816.123316" angle="32.987789"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fueltank-1" id="28" x="-15201.892281" y="998816.124556" angle="32.987789"
angleV="0.000000" editorAngle="0">
<Tank fuel="1500.000000"/>
</Part>
<Part partType="detacher-1" id="29" x="-15200.642281" y="998816.125909" angle="32.987816"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fueltank-2" id="26" x="-15198.392281" y="998816.128252" angle="32.987816"
angleV="0.000000" editorAngle="0">
<Tank fuel="2781.599989"/>
</Part>
<Part partType="solar-1" id="32" x="-15198.391305" y="998814.878252" angle="32.987816"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="33" x="-15198.393990" y="998817.378252" angle="32.987804"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="engine-0" id="45" x="-15195.892281" y="998816.130977" angle="32.987785"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="port-1" id="37" x="-15201.890817" y="998814.624556" angle="32.987789"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="port-1" id="38" x="-15201.893746" y="998817.624555" angle="32.987789"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="1" flippedY="0"/>
<Part partType="solar-1" id="43" x="-15205.393258" y="998817.371433" angle="32.987621"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="42" x="-15205.391305" y="998814.871433" angle="32.987667"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="16" x="-15209.391305" y="998814.867712" angle="32.987640"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="14" x="-15209.393258" y="998817.367712" angle="32.987614"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
</Parts>
<Connections>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="17"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="17" childPart="39"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="39" childPart="44"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="44" childPart="28"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="28" childPart="29"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="29" childPart="26"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="26" childPart="32"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="26" childPart="33"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="26" childPart="45"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="28" childPart="37"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="28" childPart="38"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="39" childPart="43"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="39" childPart="42"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="17" childPart="16"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="17" childPart="14"/>
</Connections>
</Ship>
</ShipNode>
<PlanetNode name="Smars" trueAnomaly="1.743982"/>
<PlanetNode name="Smupiter" trueAnomaly="1.325653"/>
<PlanetNode name="Smaturn" trueAnomaly="2.222601"/>
<PlanetNode name="Smuranus" trueAnomaly="-2.838979"/>
<PlanetNode name="Smeptune" trueAnomaly="-1.313070"/>
</Nodes>
</Runtime>

View File

@ -0,0 +1,51 @@
<Runtime time="0.0" firstStageActivated="1" solarSystem="SmolarSystem.xml">
<Nodes>
<PlanetNode name="Sun"/>
<PlanetNode name="Smercury" trueAnomaly="-2.461478"/>
<PlanetNode name="Smenus" trueAnomaly="0.824347"/>
<PlanetNode name="Smearth" trueAnomaly="-3.011693"/>
<PlanetNode name="Smoon" trueAnomaly="-0.558472"/>
<PlanetNode name="Smars" trueAnomaly="1.734620"/>
<PlanetNode name="Smupiter" trueAnomaly="1.324103"/>
<PlanetNode name="Smaturn" trueAnomaly="2.222037"/>
<PlanetNode name="Smuranus" trueAnomaly="-2.839172"/>
<PlanetNode name="Smeptune" trueAnomaly="-1.313178"/>
<ShipNode planet="Smearth" planetRadius="637100.000000" x="-6911387.325043" y="-7847054.502014" vx="416.325691"
vy="-404.786621">
<Ship currentStage="1" throttle="0.000000" liftedOff="1">
<Parts>
<Part partType="pod-1" id="1" x="34.123276" y="174041.952026" angle="-2.211172" angleV="-0.021909"
activated="0" exploded="0"/>
<Part partType="parachute-1" id="469" x="34.925148" y="174041.354523" angle="-2.211188"
angleV="-0.021736" activated="0" exploded="0" chuteX="34.925148" chuteY="174041.354523"
chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0"/>
<Part partType="detacher-1" id="473" x="33.321407" y="174042.549500" angle="-2.211172"
angleV="-0.022005" activated="0" exploded="0"/>
<Part partType="fueltank-0" id="471" x="32.720005" y="174042.997620" angle="-2.211172"
angleV="-0.022005">
<Tank fuel="707.999998"/>
</Part>
<Part partType="engine-0" id="468" x="31.918139" y="174043.595123" angle="-2.211173"
angleV="-0.022095" activated="1" exploded="0"/>
</Parts>
<Connections>
<Connection parentPart="1" parentAttachPoint="1" childPart="469" childAttachPoint="1"/>
<Connection parentPart="1" parentAttachPoint="2" childPart="473" childAttachPoint="1"/>
<Connection parentPart="473" parentAttachPoint="2" childPart="471" childAttachPoint="1"/>
<Connection parentPart="471" parentAttachPoint="2" childPart="468" childAttachPoint="1"/>
</Connections>
<Staging>
<Step>
<Activate Id="468" moved="0"/>
</Step>
<Step>
<Activate Id="473" moved="0"/>
</Step>
<Step>
<Activate Id="469" moved="0"/>
</Step>
</Staging>
</Ship>
</ShipNode>
</Nodes>
</Runtime>

331
textures/PartList.xml Normal file
View File

@ -0,0 +1,331 @@
<PartTypes xmlns="http://jundroo.com/simplerockets/partlist.xsd">
<PartType id="pod-1" name="Command Pod Mk1" description="This is your ship's brain. Be careful with it."
sprite="Pod.png" type="pod" mass="1.0" width="4" height="3" hidden="true">
<Damage disconnect="1500" explode="1500" explosionPower="5" explosionSize="10"/>
<Shape>
<!-- Must be counter clockwise -->
<Vertex x="-2.0" y="-1.5"/>
<Vertex x="2.0" y="-1.5"/>
<Vertex x="1.3" y="1.5"/>
<Vertex x="-1.3" y="1.5"/>
</Shape>
<AttachPoints>
<AttachPoint location="TopCenter"/>
<AttachPoint location="BottomCenter"/>
</AttachPoints>
</PartType>
<PartType id="detacher-1" name="Detacher" description="Use this to split your ship into stages."
sprite="DetacherVertical.png" type="detacher" mass="0.25" width="4" height="1">
<AttachPoints>
<AttachPoint location="TopCenter"/>
<AttachPoint location="BottomCenter"/>
</AttachPoints>
</PartType>
<PartType id="detacher-2" name="Side Detacher"
description="Same as the detacher above, but this works on the sides." sprite="DetacherRadial.png"
type="detacher" mass="0.25" width="1" height="4">
<AttachPoints>
<AttachPoint location="LeftCenter"/>
<AttachPoint location="RightCenter"/>
</AttachPoints>
</PartType>
<PartType id="wheel-1" name="Old Wheel" description="Your turn buttons can control these wheels." sprite="Wheel.png"
type="wheel" mass="0.25" width="4" height="4" ignoreEditorIntersections="true" hidden="true"
disableEditorRotation="true">
<AttachPoints>
<AttachPoint x="0" y="0" breakAngle="180"/>
</AttachPoints>
</PartType>
<PartType id="wheel-2" name="Wheel" description="Your turn buttons can control these wheels." sprite="Wheel.png"
type="wheel" mass="0.25" width="4" height="4" ignoreEditorIntersections="true"
disableEditorRotation="true" buoyancy="1.0">
<AttachPoints>
<AttachPoint x="0" y="0" breakAngle="180"/>
</AttachPoints>
</PartType>
<PartType id="fuselage-1" name="Fuselage"
description="Just empty, light weight fuselage. Good for spacing things out." sprite="Fuselage.png"
type="fuselage" mass="1.25" width="4" height="4" buoyancy="1.0">
<AttachPoints>
<AttachPoint location="TopCenter" fuelLine="true"/>
<AttachPoint location="BottomCenter" fuelLine="true"/>
<AttachPoint location="LeftSide"/>
<AttachPoint location="RightSide"/>
</AttachPoints>
</PartType>
<PartType id="strut-1" name="Strut" description="Light weight and strong." sprite="Beam.png" type="strut" mass="2.0"
width="16" height="2" canExplode="false" buoyancy="0.5">
<AttachPoints>
<AttachPoint location="Top" breakAngle="20" breakForce="150.0"/>
<AttachPoint location="Bottom" breakAngle="20" breakForce="150.0"/>
<AttachPoint location="LeftSide" breakAngle="20" breakForce="150.0"/>
<AttachPoint location="RightSide" breakAngle="20" breakForce="150.0"/>
</AttachPoints>
</PartType>
<PartType id="fueltank-0" name="Sloshy T750" description="The smallest tank on the market." sprite="TankTiny.png"
type="tank" mass="1.85" width="4" height="2">
<Tank fuel="750.0" dryMass="0.35"/>
<Damage disconnect="2500" explode="2500" explosionPower="5" explosionSize="10"/>
<AttachPoints>
<AttachPoint location="TopCenter" fuelLine="true"/>
<AttachPoint location="BottomCenter" fuelLine="true"/>
<AttachPoint location="LeftSide" fuelLine="true"/>
<AttachPoint location="RightSide" fuelLine="true"/>
</AttachPoints>
</PartType>
<PartType id="fueltank-1" name="Sloshy T1500" description="Just a small fuel tank. Nothing special."
sprite="TankSmall.png" type="tank" mass="3.5" width="4" height="4">
<Tank fuel="1500.0" dryMass="0.5"/>
<Damage disconnect="2500" explode="2500" explosionPower="5" explosionSize="10"/>
<AttachPoints>
<AttachPoint location="TopCenter" fuelLine="true"/>
<AttachPoint location="BottomCenter" fuelLine="true"/>
<AttachPoint location="LeftSide" fuelLine="true"/>
<AttachPoint location="RightSide" fuelLine="true"/>
</AttachPoints>
</PartType>
<PartType id="fueltank-2" name="Sloshy T3000" description="Medium tank for medium purposes." sprite="TankMedium.png"
type="tank" mass="6.85" width="4" height="8">
<Tank fuel="3000.0" dryMass="0.85"/>
<Damage disconnect="2500" explode="2500" explosionPower="5" explosionSize="10"/>
<AttachPoints>
<AttachPoint location="TopCenter" fuelLine="true"/>
<AttachPoint location="BottomCenter" fuelLine="true"/>
<AttachPoint location="LeftSide" fuelLine="true"/>
<AttachPoint location="RightSide" fuelLine="true"/>
</AttachPoints>
</PartType>
<PartType id="fueltank-3" name="Sloshy T6000" description="It's big, but it's heavy too." sprite="TankLarge.png"
type="tank" mass="13.2" width="4" height="16">
<Tank fuel="6000.0" dryMass="1.2"/>
<Damage disconnect="2500" explode="2500" explosionPower="5" explosionSize="10"/>
<AttachPoints>
<AttachPoint location="TopCenter" fuelLine="true"/>
<AttachPoint location="BottomCenter" fuelLine="true"/>
<AttachPoint location="LeftSide" fuelLine="true"/>
<AttachPoint location="RightSide" fuelLine="true"/>
</AttachPoints>
</PartType>
<PartType id="fueltank-4" name="Puffy T750" description="Monopropellant for RCS thrusters." sprite="Puffy750.png"
type="tank" mass="1.85" width="4" height="2" category="Satellite">
<Tank fuel="750.0" dryMass="0.35" fuelType="1"/>
<Damage disconnect="2500" explode="2500" explosionPower="5" explosionSize="10"/>
<AttachPoints>
<AttachPoint location="TopCenter"/>
<AttachPoint location="BottomCenter"/>
<AttachPoint location="LeftSide"/>
<AttachPoint location="RightSide"/>
</AttachPoints>
</PartType>
<PartType id="fueltank-5" name="Puffy T275" description="Side attaching monopropellant tank." sprite="SideTank.png"
type="tank" mass="0.65" width="1" height="3" category="Satellite">
<Tank fuel="275.0" dryMass="0.13" fuelType="1"/>
<Damage disconnect="2500" explode="2500" explosionPower="5" explosionSize="10"/>
<AttachPoints>
<AttachPoint location="RightCenter" flipX="true" group="1"/>
<AttachPoint location="LeftCenter" group="1"/>
</AttachPoints>
</PartType>
<PartType id="engine-0" name="Tiny 21" description="Really only useful for landing on Smoon."
sprite="EngineTiny.png" type="engine" mass="0.5" width="4" height="2" buoyancy="0.5">
<Engine power="0.25" consumption="4.00" size="0.50" turn="20.0" throttleExponential="true"/>
<Shape>
<Vertex x="-0.9" y="-1.0"/>
<Vertex x="0.9" y="-1.0"/>
<Vertex x="2.0" y="1.0"/>
<Vertex x="-2.0" y="1.0"/>
</Shape>
<AttachPoints>
<AttachPoint location="TopCenter" fuelLine="true" order="1"/>
<AttachPoint location="BottomCenter" order="2"/>
</AttachPoints>
</PartType>
<PartType id="engine-1" name="Tiny 85" description="Not bad for landing and it can do a little orbiting too."
sprite="EngineSmall.png" type="engine" mass="0.75" width="4" height="4" buoyancy="0.5">
<Engine power="1.0" consumption="25" size="0.60" turn="7.0" throttleExponential="true"/>
<Shape>
<Vertex x="-0.9" y="-2.0"/>
<Vertex x="0.9" y="-2.0"/>
<Vertex x="2.0" y="2.0"/>
<Vertex x="-2.0" y="2.0"/>
</Shape>
<AttachPoints>
<AttachPoint location="TopCenter" fuelLine="true" order="1"/>
<AttachPoint location="BottomCenter" order="2"/>
</AttachPoints>
</PartType>
<PartType id="engine-2" name="Blasto 170" description="Good for take-offs and orbits. It's a solid engine."
sprite="EngineMedium.png" type="engine" mass="1.25" width="4" height="6" buoyancy="0.5">
<Engine power="2.0" consumption="50" size="0.8" turn="3.0"/>
<Shape>
<Vertex x="-0.9" y="-3.0"/>
<Vertex x="0.9" y="-3.0"/>
<Vertex x="2.0" y="3.0"/>
<Vertex x="-2.0" y="3.0"/>
</Shape>
<AttachPoints>
<AttachPoint location="TopCenter" fuelLine="true" order="1"/>
<AttachPoint location="BottomCenter" order="2"/>
</AttachPoints>
</PartType>
<PartType id="engine-3" name="Blasto 425" description="Great for taking off but it guzzles fuel like a monster."
sprite="EngineLarge.png" type="engine" mass="2.0" width="4" height="8" buoyancy="0.5">
<Engine power="5.0" consumption="125" size="1.0" turn="2.5"/>
<Shape>
<Vertex x="-0.9" y="-4.0"/>
<Vertex x="0.9" y="-4.0"/>
<Vertex x="2.0" y="4.0"/>
<Vertex x="-2.0" y="4.0"/>
</Shape>
<AttachPoints>
<AttachPoint location="TopCenter" fuelLine="true" order="1"/>
<AttachPoint location="BottomCenter" order="2"/>
</AttachPoints>
</PartType>
<PartType id="engine-4" name="Blasto SRB 500"
description="Great for blasting off, but they can't be throttle or turn." sprite="SolidRocketBooster.png"
type="engine" mass="22.0" width="4" height="26" buoyancy="0.5" coverHeight="2" sandboxOnly="true">
<Engine power="6.0" consumption="175" size="1.0" turn="0.0" fuelType="3"/>
<Tank fuel="9000.0" dryMass="3.15"/>
<AttachPoints>
<AttachPoint location="TopCenter" order="1"/>
<AttachPoint location="BottomCenter" order="2"/>
<AttachPoint location="LeftSide"/>
<AttachPoint location="RightSide"/>
</AttachPoints>
</PartType>
<PartType id="ion-0" name="Ion Engine" description="Low power, high efficiency and powered by batteries."
sprite="EngineIon.png" type="engine" mass="0.5" width="4" height="2" buoyancy="0.5" sandboxOnly="true">
<Engine power="0.10" consumption="4.00" size="0.3" turn="10.0" throttleExponential="false" fuelType="2"/>
<Shape>
<Vertex x="-0.9" y="-1.0"/>
<Vertex x="0.9" y="-1.0"/>
<Vertex x="2.0" y="1.0"/>
<Vertex x="-2.0" y="1.0"/>
</Shape>
<AttachPoints>
<AttachPoint location="TopCenter" fuelLine="true" order="1"/>
<AttachPoint location="BottomCenter" order="2"/>
</AttachPoints>
</PartType>
<PartType id="parachute-1" name="Parachute" description="Land safely, but only works in an atmosphere."
sprite="ParachuteCanister.png" type="parachute" mass="0.25" width="4" height="1" canExplode="false">
<AttachPoints>
<AttachPoint location="BottomCenter" breakAngle="90" breakForce="150.0"/>
</AttachPoints>
</PartType>
<PartType id="nosecone-1" name="Nose Cone" description="Reduces drag a little for those bulky fuel tanks."
sprite="NoseCone.png" type="nosecone" mass="0.05" width="4" height="2" drag="-1.0">
<Shape>
<Vertex x="-2.0" y="-1.0"/>
<Vertex x="2.0" y="-1.0"/>
<Vertex x="0.6" y="0.6"/>
<Vertex x="-0.6" y="0.6"/>
</Shape>
<AttachPoints>
<AttachPoint location="BottomCenter"/>
</AttachPoints>
</PartType>
<PartType id="rcs-1" name="RCS Thrusters" description="Reaction control system for precision maneuvering."
sprite="RcsBlock.png" type="rcs" mass="0.25" width="1" height="3" category="Satellite"
disableEditorRotation="true" buoyancy="0.5">
<Rcs power="1.0" consumption="0.1" size="1.00"/>
<AttachPoints>
<AttachPoint location="RightCenter" flipX="true" group="1"/>
<AttachPoint location="LeftCenter" group="1"/>
</AttachPoints>
</PartType>
<PartType id="solar-1" name="Solar Panel" description="Expanding solar panel." sprite="SolarPanelBase.png"
type="solar" mass="1.0" width="1" height="4" category="Satellite" sandboxOnly="true">
<Solar chargeRate="2.0"/>
<Damage disconnect="250" explode="3000" explosionPower="1" explosionSize="5"/>
<AttachPoints>
<AttachPoint location="RightCenter" flipX="true" group="1"/>
<AttachPoint location="LeftCenter" group="1"/>
</AttachPoints>
</PartType>
<PartType id="battery-0" name="Batteries" description="Batteries can be recharged by solar panels."
sprite="Battery.png" type="tank" mass="1.25" width="4" height="1" category="Satellite" sandboxOnly="true">
<Tank fuel="250.0" dryMass="1.24" fuelType="2"/>
<Damage disconnect="2500" explode="2500" explosionPower="5" explosionSize="10"/>
<AttachPoints>
<AttachPoint location="TopCenter"/>
<AttachPoint location="BottomCenter"/>
<AttachPoint location="LeftSide"/>
<AttachPoint location="RightSide"/>
</AttachPoints>
</PartType>
<PartType id="dock-1" name="Docking Plug" description="One per ship. Connects to a docking port."
sprite="DockingConnector.PNG" type="dockconnector" mass="0.25" width="4" height="1" friction="0.1"
category="Satellite" maxOccurrences="1" canExplode="false">
<Shape>
<Vertex x="-1.0" y="-0.5"/>
<Vertex x="1.0" y="-0.5"/>
<Vertex x="1.0" y="-0.1"/>
<Vertex x="0.4" y="0.5"/>
<Vertex x="-0.4" y="0.5"/>
<Vertex x="-1.0" y="-0.1"/>
</Shape>
<AttachPoints>
<AttachPoint location="BottomCenter" breakAngle="90" breakForce="150.0" group="1"/>
</AttachPoints>
</PartType>
<PartType id="port-1" name="Docking Port" description="Accepts a docking plug for docking in space."
sprite="DockingPort.png" type="dockport" mass="0.75" width="2" height="4" friction="0.1"
category="Satellite" buoyancy="0.5">
<Shape>
<Vertex x="-0.2" y="-2.0"/>
<Vertex x="1.0" y="-2.0"/>
<Vertex x="1.0" y="2.0"/>
<Vertex x="-0.2" y="2.0"/>
</Shape>
<Shape>
<Vertex x="-1.0" y="-2.0"/>
<Vertex x="0.0" y="-2.0"/>
<Vertex x="0.0" y="-0.1"/>
<Vertex x="-1.0" y="-1.10"/>
</Shape>
<Shape>
<Vertex x="-1.0" y="1.10"/>
<Vertex x="0.0" y="0.1"/>
<Vertex x="0.0" y="2.0"/>
<Vertex x="-1.0" y="2.0"/>
</Shape>
<Shape sensor="true">
<Vertex x="-0.33" y="-1.0"/>
<Vertex x="-0.2" y="-1.0"/>
<Vertex x="-0.2" y="1.0"/>
<Vertex x="-0.33" y="1.0"/>
</Shape>
<AttachPoints>
<AttachPoint location="RightCenter" group="1"/>
<AttachPoint location="LeftCenter" flipX="true" group="1"/>
</AttachPoints>
</PartType>
<PartType id="lander-1" name="Lander" description="Activate these babies to make landing a little easier."
sprite="LanderLegPreview.png" type="lander" mass="0.5" width="1" height="5"
ignoreEditorIntersections="true" buoyancy="0.5">
<Lander maxAngle="140" minLength="2.26" maxLength="4.15" angleSpeed="25" lengthSpeed="0.5" width="0.5"/>
<AttachPoints>
<AttachPoint location="LeftCenter" group="1"/>
<AttachPoint location="RightCenter" group="1"/>
</AttachPoints>
</PartType>
</PartTypes>

View File

@ -1,345 +1,348 @@
{
"ActionButton.png": [
178,
349,
119,
46,
null
],
"ActionButtonSelected.png": [
182,
210,
46,
119,
"y"
],
"AltimeterControl.PNG": [
182,
132,
153,
76,
null
],
"Button.png": [
413,
138,
80,
80,
null
],
"ButtonIconActivateStage.png": [
110,
2,
35,
45,
null
],
"ButtonIconMapView.png": [
410,
220,
54,
54,
null
],
"ButtonIconMenu.png": [
110,
49,
35,
43,
"y"
],
"ButtonPressed.png": [
148,
404,
80,
80,
null
],
"FastForward.png": [
151,
282,
26,
38,
"y"
],
"ForwardButton.png": [
413,
70,
87,
66,
null
],
"ForwardButtonBottomBar.PNG": [
503,
2,
3,
102,
"y"
],
"ForwardButtonPressed.png": [
414,
2,
87,
66,
null
],
"ForwardButtonTopBar.png": [
2,
411,
6,
95,
"y"
],
"FuelDrainIcon.png": [
230,
318,
25,
26,
null
],
"FuelFillIcon.png": [
151,
322,
26,
25,
"y"
],
"MarkerApoapsis.png": [
338,
313,
43,
54,
null
],
"MarkerClosest.png": [
390,
276,
54,
43,
"y"
],
"MarkerEncounter.png": [
466,
220,
43,
54,
null
],
"MarkerPeriapsis.png": [
334,
268,
54,
43,
"y"
],
"PathSegment.png": [
83,
502,
4,
7,
"y"
],
"PlayButton.png": [
230,
210,
23,
26,
null
],
"RotateButton.png": [
337,
161,
71,
105,
"y"
],
"RotateButtonPressed.png": [
340,
54,
71,
105,
"y"
],
"SmokeParticle.PNG": [
148,
2,
32,
32,
null
],
"StageControlBottom.PNG": [
10,
411,
136,
89,
"y"
],
"StageControlStretch.PNG": [
10,
502,
71,
8,
null
],
"StageControlTop.PNG": [
182,
486,
71,
24,
null
],
"SteerButton.png": [
255,
397,
77,
106,
"y"
],
"SteerButtonPressed.png": [
255,
210,
77,
106,
"y"
],
"StopButton.png": [
257,
318,
25,
25,
null
],
"ThrottleControl.png": [
2,
2,
106,
407,
null
],
"ThrottleLevel1.png": [
151,
259,
27,
21,
"y"
],
"ThrottleLevel10.png": [
151,
349,
25,
48,
"y"
],
"ThrottleLevel2.png": [
110,
123,
28,
25,
"y"
],
"ThrottleLevel3.png": [
148,
201,
28,
27,
null
],
"ThrottleLevel4.png": [
148,
36,
31,
28,
null
],
"ThrottleLevel5.png": [
110,
94,
35,
27,
null
],
"ThrottleLevel6.png": [
148,
161,
28,
38,
"y"
],
"ThrottleLevel7.png": [
139,
230,
41,
27,
null
],
"ThrottleLevel8.png": [
148,
115,
28,
44,
"y"
],
"ThrottleLevel9.png": [
110,
214,
27,
48,
"y"
],
"TimeControl.PNG": [
110,
264,
39,
138,
"y"
],
"ToolbarSide.PNG": [
182,
54,
156,
76,
null
],
"ToolbarStretch.PNG": [
138,
502,
42,
4,
"y"
],
"UnlockHeading.png": [
182,
2,
230,
50,
null
],
"WarpBarSide.PNG": [
148,
66,
30,
47,
null
],
"WarpBarStretch.png": [
89,
502,
47,
6,
"y"
],
"WarpButton.png": [
110,
150,
27,
62,
"y"
],
"WarpSpeedButton.png": [
299,
318,
37,
62,
"y"
]
image_name: "Runtime.png",
images: {
"ActionButton.png": [
178,
349,
119,
46,
null
],
"ActionButtonSelected.png": [
182,
210,
46,
119,
"y"
],
"AltimeterControl.png": [
182,
132,
153,
76,
null
],
"Button.png": [
413,
138,
80,
80,
null
],
"ButtonIconActivateStage.png": [
110,
2,
35,
45,
null
],
"ButtonIconMapView.png": [
410,
220,
54,
54,
null
],
"ButtonIconMenu.png": [
110,
49,
35,
43,
"y"
],
"ButtonPressed.png": [
148,
404,
80,
80,
null
],
"FastForward.png": [
151,
282,
26,
38,
"y"
],
"ForwardButton.png": [
413,
70,
87,
66,
null
],
"ForwardButtonBottomBar.png": [
503,
2,
3,
102,
"y"
],
"ForwardButtonPressed.png": [
414,
2,
87,
66,
null
],
"ForwardButtonTopBar.png": [
2,
411,
6,
95,
"y"
],
"FuelDrainIcon.png": [
230,
318,
25,
26,
null
],
"FuelFillIcon.png": [
151,
322,
26,
25,
"y"
],
"MarkerApoapsis.png": [
338,
313,
43,
54,
null
],
"MarkerClosest.png": [
390,
276,
54,
43,
"y"
],
"MarkerEncounter.png": [
466,
220,
43,
54,
null
],
"MarkerPeriapsis.png": [
334,
268,
54,
43,
"y"
],
"PathSegment.png": [
83,
502,
4,
7,
"y"
],
"PlayButton.png": [
230,
210,
23,
26,
null
],
"RotateButton.png": [
337,
161,
71,
105,
"y"
],
"RotateButtonPressed.png": [
340,
54,
71,
105,
"y"
],
"SmokeParticle.png": [
148,
2,
32,
32,
null
],
"StageControlBottom.png": [
10,
411,
136,
89,
"y"
],
"StageControlStretch.png": [
10,
502,
71,
8,
null
],
"StageControlTop.png": [
182,
486,
71,
24,
null
],
"SteerButton.png": [
255,
397,
77,
106,
"y"
],
"SteerButtonPressed.png": [
255,
210,
77,
106,
"y"
],
"StopButton.png": [
257,
318,
25,
25,
null
],
"ThrottleControl.png": [
2,
2,
106,
407,
null
],
"ThrottleLevel1.png": [
151,
259,
27,
21,
"y"
],
"ThrottleLevel10.png": [
151,
349,
25,
48,
"y"
],
"ThrottleLevel2.png": [
110,
123,
28,
25,
"y"
],
"ThrottleLevel3.png": [
148,
201,
28,
27,
null
],
"ThrottleLevel4.png": [
148,
36,
31,
28,
null
],
"ThrottleLevel5.png": [
110,
94,
35,
27,
null
],
"ThrottleLevel6.png": [
148,
161,
28,
38,
"y"
],
"ThrottleLevel7.png": [
139,
230,
41,
27,
null
],
"ThrottleLevel8.png": [
148,
115,
28,
44,
"y"
],
"ThrottleLevel9.png": [
110,
214,
27,
48,
"y"
],
"TimeControl.png": [
110,
264,
39,
138,
"y"
],
"ToolbarSide.png": [
182,
54,
156,
76,
null
],
"ToolbarStretch.png": [
138,
502,
42,
4,
"y"
],
"UnlockHeading.png": [
182,
2,
230,
50,
null
],
"WarpBarSide.png": [
148,
66,
30,
47,
null
],
"WarpBarStretch.png": [
89,
502,
47,
6,
"y"
],
"WarpButton.png": [
110,
150,
27,
62,
"y"
],
"WarpSpeedButton.png": [
299,
318,
37,
62,
"y"
]
}
}

View File

@ -0,0 +1,94 @@
<Runtime time="0.0" firstStageActivated="1" solarSystem="SmolarSystem.xml">
<Nodes>
<PlanetNode name="Sun"/>
<PlanetNode name="Smercury" trueAnomaly="-2.398935"/>
<PlanetNode name="Smenus" trueAnomaly="0.856837"/>
<PlanetNode name="Smearth" trueAnomaly="-2.986780"/>
<PlanetNode name="Smoon" trueAnomaly="-0.600810"/>
<ShipNode id="2" planet="Smearth" planetRadius="637100.000000" x="724262.38933452626" y="685367.67763381428"
vx="-1368.8459415697464" vy="1458.1017293482519">
<Ship version="1" liftedOff="1" touchingGround="0">
<Parts>
<Part partType="pod-1" id="1" x="700971.221953" y="702281.363812" angle="-0.010499"
angleV="0.000000" editorAngle="0">
<Pod throttle="0.000000" name="Satellite">
<Staging currentStage="3">
<Step/>
<Step/>
<Step>
<Activate Id="147" moved="1"/>
<Activate Id="148" moved="1"/>
<Activate Id="149" moved="1"/>
<Activate Id="146" moved="1"/>
<Activate Id="150" moved="1"/>
<Activate Id="151" moved="1"/>
</Step>
</Staging>
</Pod>
</Part>
<Part partType="fueltank-2" id="154" x="700971.193144" y="702278.613812" angle="-0.010499"
angleV="0.000000" editorAngle="0">
<Tank fuel="3000.000000"/>
</Part>
<Part partType="fueltank-2" id="158" x="700971.151152" y="702274.613812" angle="3.131103"
angleV="0.000000" editorAngle="2">
<Tank fuel="3000.000000"/>
</Part>
<Part partType="fueltank-1" id="140" x="700971.118925" y="702271.614300" angle="-0.009680"
angleV="0.000000" editorAngle="0">
<Tank fuel="1500.000000"/>
</Part>
<Part partType="port-1" id="141" x="700971.104277" y="702270.114300" angle="1.561116"
angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="strut-1" id="142" x="700966.135039" y="702273.167523" angle="-0.010681"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fuselage-1" id="145" x="700961.135527" y="702273.220745" angle="-0.010504"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="solar-1" id="147" x="700959.885527" y="702273.233929" angle="-0.010504"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="148" x="700961.148710" y="702274.470257" angle="1.560113"
angleV="0.000000" editorAngle="1" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="149" x="700961.121855" y="702271.970745" angle="1.559927"
angleV="0.000000" editorAngle="1" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
<Part partType="strut-1" id="143" x="700976.135527" y="702273.060101" angle="-0.010735"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="fuselage-1" id="144" x="700981.135039" y="702273.004925" angle="-0.010958"
angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
<Part partType="solar-1" id="146" x="700982.384550" y="702272.991253" angle="-0.010460"
angleV="0.000000" editorAngle="0" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="150" x="700981.148222" y="702274.254437" angle="1.560379"
angleV="0.000000" editorAngle="1" activated="1" exploded="0" flippedX="0" flippedY="0"
extension="1.000000"/>
<Part partType="solar-1" id="151" x="700981.121367" y="702271.754925" angle="1.559881"
angleV="0.000000" editorAngle="1" activated="1" exploded="0" flippedX="1" flippedY="0"
extension="1.000000"/>
</Parts>
<Connections>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="154"/>
<Connection parentAttachPoint="2" childAttachPoint="2" parentPart="154" childPart="158"/>
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="158" childPart="140"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="140" childPart="141"/>
<Connection parentAttachPoint="4" childAttachPoint="4" parentPart="158" childPart="142"/>
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="142" childPart="145"/>
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="145" childPart="147"/>
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="145" childPart="148"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="145" childPart="149"/>
<Connection parentAttachPoint="3" childAttachPoint="3" parentPart="158" childPart="143"/>
<Connection parentAttachPoint="4" childAttachPoint="3" parentPart="143" childPart="144"/>
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="144" childPart="146"/>
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="144" childPart="150"/>
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="144" childPart="151"/>
</Connections>
</Ship>
</ShipNode>
<PlanetNode name="Smars" trueAnomaly="1.744960"/>
<PlanetNode name="Smupiter" trueAnomaly="1.325815"/>
<PlanetNode name="Smaturn" trueAnomaly="2.222660"/>
<PlanetNode name="Smuranus" trueAnomaly="-2.838959"/>
<PlanetNode name="Smeptune" trueAnomaly="-1.313059"/>
</Nodes>
</Runtime>

54
textures/ShipSprites.xml Normal file
View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with TexturePacker http://www.codeandweb.com/texturepacker-->
<!-- $TexturePacker:SmartUpdate:f2ab81de311f763f11f50a06b30886dd:02128422615bc5f0a549a97e45bed127:98b5cfb4220125310d6b1dfa30f6cdc9$ -->
<!--Format:
n => name of the sprite
x => sprite x pos in texture
y => sprite y pos in texture
w => sprite width (may be trimmed)
h => sprite height (may be trimmed)
oX => sprite's x-corner offset (only available if trimmed)
oY => sprite's y-corner offset (only available if trimmed)
oW => sprite's original width (only available if trimmed)
oH => sprite's original height (only available if trimmed)
r => 'y' only set if sprite is rotated
-->
<TextureAtlas imagePath="ShipSprites.png" width="1024" height="1024">
<!--<TextureAtlas imagePath="StarBackground.png" width="1024" height="1024">-->
<sprite n="Battery.png" x="278" y="281" w="129" h="30"/>
<sprite n="Beam.PNG" x="292" y="2" w="480" h="62"/>
<sprite n="CoverBottom.png" x="283" y="128" w="133" h="27"/>
<sprite n="CoverStretch.png" x="88" y="966" w="120" h="6"/>
<sprite n="CoverTop.png" x="65" y="993" w="133" h="27"/>
<sprite n="DetacherRadial.png" x="210" y="114" w="30" h="100"/>
<sprite n="DetacherVertical.PNG" x="278" y="249" w="129" h="30"/>
<sprite n="DockingConnector.PNG" x="2" y="993" w="61" h="29"/>
<sprite n="DockingPort.png" x="131" y="2" w="56" h="120"/>
<sprite n="EngineIon.png" x="131" y="705" w="112" h="61"/>
<sprite n="EngineLarge.PNG" x="254" y="435" w="120" h="240"/>
<sprite n="EngineMedium.PNG" x="88" y="784" w="120" h="180"/>
<sprite n="EngineSmall.PNG" x="770" y="186" w="120" h="120"/>
<sprite n="EngineTiny.png" x="892" y="246" w="120" h="60"/>
<sprite n="Fuselage.png" x="278" y="313" w="122" h="120"/>
<sprite n="LanderLegJoint.PNG" x="172" y="140" w="33" h="31"/>
<sprite n="LanderLegLower.PNG" x="189" y="2" w="19" h="136"/>
<sprite n="LanderLegPreview.png" x="2" y="784" w="84" h="207"/>
<sprite n="LanderLegUpper.PNG" x="254" y="213" w="22" h="118"/>
<sprite n="NoseCone.PNG" x="770" y="124" w="121" h="60"/>
<sprite n="Parachute.png" x="427" y="66" w="309" h="310"/>
<sprite n="ParachuteCanister.PNG" x="200" y="974" w="90" h="32"/>
<sprite n="ParachuteCanisterSide.png" x="210" y="768" w="32" h="90"/>
<sprite n="Pod.PNG" x="283" y="157" w="132" h="90"/>
<sprite n="Puffy750.png" x="292" y="66" w="133" h="60"/>
<sprite n="RcsBlock.png" x="242" y="114" w="39" h="97"/>
<sprite n="SideTank.png" x="131" y="124" w="39" h="97"/>
<sprite n="SolarPanel.png" x="210" y="2" w="80" h="110"/>
<sprite n="SolarPanelBase.png" x="738" y="66" w="30" h="120"/>
<sprite n="SolidRocketBooster.png" x="2" y="2" w="127" h="780"/>
<sprite n="TankLarge.png" x="131" y="223" w="121" h="480"/>
<sprite n="TankMedium.PNG" x="245" y="705" w="126" h="240"/>
<sprite n="TankSmall.png" x="774" y="2" w="133" h="120"/>
<sprite n="TankTiny.png" x="292" y="947" w="133" h="60"/>
<sprite n="Wheel.png" x="893" y="124" w="120" h="120"/>
<sprite n="Wing.png" x="373" y="677" w="119" h="120"/>
</TextureAtlas>

52
textures/SkinAngel.xml Normal file
View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with TexturePacker http://www.codeandweb.com/texturepacker-->
<!-- $TexturePacker:SmartUpdate:09fa40f9fa210282110497699cb20dfa:e43cdb57aa0d737fa76e839cf3d164c9:98b5cfb4220125310d6b1dfa30f6cdc9$ -->
<!--Format:
n => name of the sprite
x => sprite x pos in texture
y => sprite y pos in texture
w => sprite width (may be trimmed)
h => sprite height (may be trimmed)
oX => sprite's x-corner offset (only available if trimmed)
oY => sprite's y-corner offset (only available if trimmed)
oW => sprite's original width (only available if trimmed)
oH => sprite's original height (only available if trimmed)
r => 'y' only set if sprite is rotated
-->
<TextureAtlas imagePath="SkinAngel.png" width="1024" height="1024">
<sprite n="Battery.png" x="378" y="620" w="129" h="30"/>
<sprite n="Beam.PNG" x="292" y="2" w="480" h="62"/>
<sprite n="CoverBottom.png" x="290" y="714" w="133" h="27"/>
<sprite n="CoverStretch.png" x="88" y="966" w="120" h="6"/>
<sprite n="CoverTop.png" x="65" y="993" w="133" h="27"/>
<sprite n="DetacherRadial.png" x="124" y="673" w="30" h="100"/>
<sprite n="DetacherVertical.PNG" x="247" y="620" w="129" h="30"/>
<sprite n="DockingConnector.PNG" x="2" y="993" w="61" h="29"/>
<sprite n="DockingPort.png" x="124" y="2" w="56" h="120"/>
<sprite n="EngineIon.png" x="909" y="2" w="113" h="65"/>
<sprite n="EngineLarge.PNG" x="375" y="378" w="120" h="240"/>
<sprite n="EngineMedium.PNG" x="88" y="784" w="120" h="180"/>
<sprite n="EngineSmall.PNG" x="355" y="743" w="120" h="120"/>
<sprite n="EngineTiny.png" x="413" y="652" w="120" h="60"/>
<sprite n="Fuselage.png" x="231" y="765" w="122" h="120"/>
<sprite n="LanderLegJoint.PNG" x="292" y="965" w="33" h="31"/>
<sprite n="LanderLegLower.PNG" x="210" y="765" w="19" h="136"/>
<sprite n="LanderLegPreview.png" x="2" y="784" w="84" h="207"/>
<sprite n="LanderLegUpper.PNG" x="182" y="2" w="22" h="118"/>
<sprite n="NoseCone.PNG" x="290" y="652" w="121" h="60"/>
<sprite n="Parachute.png" x="355" y="66" w="309" h="310"/>
<sprite n="ParachuteCanister.PNG" x="200" y="974" w="90" h="32"/>
<sprite n="Pod.PNG" x="156" y="673" w="132" h="90"/>
<sprite n="Puffy750.png" x="210" y="903" w="133" h="60"/>
<sprite n="RcsBlock.png" x="950" y="69" w="39" h="97"/>
<sprite n="SideTank.png" x="909" y="69" w="39" h="97"/>
<sprite n="SolarPanel.png" x="210" y="2" w="80" h="110"/>
<sprite n="SolarPanelBase.png" x="991" y="69" w="30" h="120"/>
<sprite n="SolidRocketBooster.png" x="2" y="2" w="120" h="780"/>
<sprite n="TankLarge.png" x="124" y="191" w="121" h="480"/>
<sprite n="TankMedium.PNG" x="247" y="378" w="126" h="240"/>
<sprite n="TankSmall.png" x="774" y="2" w="133" h="120"/>
<sprite n="TankTiny.png" x="124" y="124" w="133" h="60"/>
<sprite n="Wheel.png" x="345" y="887" w="120" h="120"/>
<sprite n="Wing.png" x="467" y="865" w="119" h="120"/>
</TextureAtlas>

52
textures/SkinCartoon.xml Normal file
View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with TexturePacker http://www.codeandweb.com/texturepacker-->
<!-- $TexturePacker:SmartUpdate:43a5c0353dda8ce137e642ac8ed43e97:83289a0784072bbad4365a9f0190b04b:98b5cfb4220125310d6b1dfa30f6cdc9$ -->
<!--Format:
n => name of the sprite
x => sprite x pos in texture
y => sprite y pos in texture
w => sprite width (may be trimmed)
h => sprite height (may be trimmed)
oX => sprite's x-corner offset (only available if trimmed)
oY => sprite's y-corner offset (only available if trimmed)
oW => sprite's original width (only available if trimmed)
oH => sprite's original height (only available if trimmed)
r => 'y' only set if sprite is rotated
-->
<TextureAtlas imagePath="SkinCartoon.png" width="1024" height="1024">
<sprite n="Battery.png" x="327" y="66" w="133" h="30"/>
<sprite n="Beam.PNG" x="292" y="2" w="480" h="62"/>
<sprite n="CoverBottom.png" x="292" y="968" w="133" h="27"/>
<sprite n="CoverStretch.png" x="88" y="966" w="120" h="6"/>
<sprite n="CoverTop.png" x="65" y="993" w="133" h="27"/>
<sprite n="DetacherRadial.png" x="161" y="124" w="30" h="100"/>
<sprite n="DetacherVertical.PNG" x="330" y="220" w="129" h="30"/>
<sprite n="DockingConnector.PNG" x="2" y="993" w="61" h="29"/>
<sprite n="DockingPort.png" x="137" y="2" w="56" h="120"/>
<sprite n="EngineIon.png" x="322" y="436" w="112" h="64"/>
<sprite n="EngineLarge.PNG" x="774" y="2" w="145" h="240"/>
<sprite n="EngineMedium.PNG" x="88" y="784" w="120" h="180"/>
<sprite n="EngineSmall.PNG" x="260" y="512" w="120" h="120"/>
<sprite n="EngineTiny.png" x="773" y="306" w="120" h="60"/>
<sprite n="Fuselage.png" x="338" y="98" w="122" h="120"/>
<sprite n="LanderLegJoint.PNG" x="292" y="66" w="33" h="31"/>
<sprite n="LanderLegLower.PNG" x="301" y="374" w="19" h="136"/>
<sprite n="LanderLegPreview.png" x="2" y="784" w="84" h="207"/>
<sprite n="LanderLegUpper.PNG" x="137" y="124" w="22" h="118"/>
<sprite n="NoseCone.PNG" x="338" y="252" w="121" h="60"/>
<sprite n="Parachute.png" x="462" y="66" w="309" h="310"/>
<sprite n="ParachuteCanister.PNG" x="200" y="974" w="90" h="32"/>
<sprite n="Pod.PNG" x="260" y="634" w="132" h="90"/>
<sprite n="Puffy750.png" x="773" y="244" w="133" h="60"/>
<sprite n="RcsBlock.png" x="260" y="335" w="39" h="97"/>
<sprite n="SideTank.png" x="260" y="236" w="39" h="97"/>
<sprite n="SolarPanel.png" x="210" y="2" w="80" h="110"/>
<sprite n="SolarPanelBase.png" x="301" y="252" w="30" h="120"/>
<sprite n="SolidRocketBooster.png" x="2" y="2" w="133" h="780"/>
<sprite n="TankLarge.png" x="137" y="244" w="121" h="480"/>
<sprite n="TankMedium.PNG" x="210" y="726" w="126" h="240"/>
<sprite n="TankSmall.png" x="195" y="114" w="133" h="120"/>
<sprite n="TankTiny.png" x="436" y="436" w="133" h="60"/>
<sprite n="Wheel.png" x="338" y="314" w="120" h="120"/>
<sprite n="Wing.png" x="382" y="502" w="119" h="120"/>
</TextureAtlas>

52
textures/SkinGuardian.xml Normal file
View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with TexturePacker http://www.codeandweb.com/texturepacker-->
<!-- $TexturePacker:SmartUpdate:9a1a4419fd5c4f0eb89e92d7ec421c5a:942eba97899b48fb211247f7f2d0d342:98b5cfb4220125310d6b1dfa30f6cdc9$ -->
<!--Format:
n => name of the sprite
x => sprite x pos in texture
y => sprite y pos in texture
w => sprite width (may be trimmed)
h => sprite height (may be trimmed)
oX => sprite's x-corner offset (only available if trimmed)
oY => sprite's y-corner offset (only available if trimmed)
oW => sprite's original width (only available if trimmed)
oH => sprite's original height (only available if trimmed)
r => 'y' only set if sprite is rotated
-->
<TextureAtlas imagePath="SkinGuardian.png" width="1024" height="1024">
<sprite n="Battery.png" x="264" y="968" w="133" h="30"/>
<sprite n="Beam.PNG" x="399" y="2" w="480" h="62"/>
<sprite n="CoverBottom.png" x="390" y="66" w="133" h="27"/>
<sprite n="CoverStretch.png" x="88" y="968" w="120" h="6"/>
<sprite n="CoverTop.png" x="2" y="995" w="133" h="27"/>
<sprite n="DetacherRadial.png" x="295" y="236" w="30" h="100"/>
<sprite n="DetacherVertical.PNG" x="249" y="450" w="129" h="30"/>
<sprite n="DockingConnector.PNG" x="126" y="726" w="61" h="29"/>
<sprite n="DockingPort.png" x="332" y="2" w="56" h="120"/>
<sprite n="EngineIon.png" x="908" y="124" w="113" h="66"/>
<sprite n="EngineLarge.PNG" x="210" y="726" w="120" h="240"/>
<sprite n="EngineMedium.PNG" x="88" y="786" w="120" h="180"/>
<sprite n="EngineSmall.PNG" x="638" y="220" w="120" h="120"/>
<sprite n="EngineTiny.png" x="760" y="308" w="120" h="60"/>
<sprite n="Fuselage.png" x="772" y="186" w="122" h="120"/>
<sprite n="LanderLegJoint.PNG" x="229" y="968" w="33" h="31"/>
<sprite n="LanderLegLower.PNG" x="249" y="312" w="19" h="136"/>
<sprite n="LanderLegPreview.png" x="2" y="786" w="84" h="207"/>
<sprite n="LanderLegUpper.PNG" x="270" y="312" w="22" h="118"/>
<sprite n="NoseCone.PNG" x="896" y="192" w="121" h="60"/>
<sprite n="Parachute.png" x="327" y="124" w="309" h="310"/>
<sprite n="ParachuteCanister.PNG" x="137" y="976" w="90" h="32"/>
<sprite n="Pod.PNG" x="638" y="128" w="132" h="90"/>
<sprite n="Puffy750.png" x="773" y="124" w="133" h="60"/>
<sprite n="RcsBlock.png" x="254" y="213" w="39" h="97"/>
<sprite n="SideTank.png" x="254" y="114" w="39" h="97"/>
<sprite n="SolarPanel.png" x="249" y="2" w="80" h="110"/>
<sprite n="SolarPanelBase.png" x="295" y="114" w="30" h="120"/>
<sprite n="SolidRocketBooster.png" x="2" y="2" w="122" h="782"/>
<sprite n="TankLarge.png" x="126" y="2" w="121" h="480"/>
<sprite n="TankMedium.PNG" x="126" y="484" w="126" h="240"/>
<sprite n="TankSmall.png" x="881" y="2" w="133" h="120"/>
<sprite n="TankTiny.png" x="638" y="66" w="133" h="60"/>
<sprite n="Wheel.png" x="896" y="254" w="120" h="120"/>
<sprite n="Wing.png" x="638" y="342" w="119" h="120"/>
</TextureAtlas>

52
textures/SkinLava.xml Normal file
View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with TexturePacker http://www.codeandweb.com/texturepacker-->
<!-- $TexturePacker:SmartUpdate:96ae5b9b66ba5fe1bc86bab2afd83d27:90d246db081699b94cf7628cd2e94fdd:98b5cfb4220125310d6b1dfa30f6cdc9$ -->
<!--Format:
n => name of the sprite
x => sprite x pos in texture
y => sprite y pos in texture
w => sprite width (may be trimmed)
h => sprite height (may be trimmed)
oX => sprite's x-corner offset (only available if trimmed)
oY => sprite's y-corner offset (only available if trimmed)
oW => sprite's original width (only available if trimmed)
oH => sprite's original height (only available if trimmed)
r => 'y' only set if sprite is rotated
-->
<TextureAtlas imagePath="SkinLava.png" width="1024" height="1024">
<sprite n="Battery.png" x="264" y="968" w="132" h="30"/>
<sprite n="Beam.PNG" x="398" y="2" w="480" h="62"/>
<sprite n="CoverBottom.png" x="260" y="436" w="133" h="27"/>
<sprite n="CoverStretch.png" x="88" y="967" w="120" h="6"/>
<sprite n="CoverTop.png" x="2" y="994" w="133" h="27"/>
<sprite n="DetacherRadial.png" x="438" y="847" w="30" h="100"/>
<sprite n="DetacherVertical.PNG" x="265" y="65" w="129" h="30"/>
<sprite n="DockingConnector.PNG" x="137" y="726" w="61" h="29"/>
<sprite n="DockingPort.png" x="454" y="709" w="56" h="120"/>
<sprite n="EngineIon.png" x="449" y="436" w="121" h="65"/>
<sprite n="EngineLarge.PNG" x="210" y="726" w="120" h="240"/>
<sprite n="EngineMedium.PNG" x="88" y="785" w="120" h="180"/>
<sprite n="EngineSmall.PNG" x="332" y="725" w="120" h="120"/>
<sprite n="EngineTiny.png" x="510" y="565" w="120" h="60"/>
<sprite n="Fuselage.png" x="265" y="603" w="122" h="120"/>
<sprite n="LanderLegJoint.PNG" x="229" y="968" w="33" h="31"/>
<sprite n="LanderLegLower.PNG" x="265" y="465" w="19" h="136"/>
<sprite n="LanderLegPreview.png" x="2" y="785" w="84" h="207"/>
<sprite n="LanderLegUpper.PNG" x="332" y="847" w="22" h="118"/>
<sprite n="NoseCone.PNG" x="449" y="503" w="121" h="60"/>
<sprite n="Parachute.png" x="260" y="124" w="309" h="310"/>
<sprite n="ParachuteCanister.PNG" x="137" y="975" w="90" h="32"/>
<sprite n="Pod.PNG" x="533" y="930" w="132" h="90"/>
<sprite n="Puffy750.png" x="398" y="959" w="133" h="60"/>
<sprite n="RcsBlock.png" x="408" y="436" w="39" h="97"/>
<sprite n="SideTank.png" x="502" y="831" w="39" h="97"/>
<sprite n="SolarPanel.png" x="356" y="847" w="80" h="110"/>
<sprite n="SolarPanelBase.png" x="470" y="831" w="30" h="120"/>
<sprite n="SolidRocketBooster.png" x="2" y="2" w="133" h="781"/>
<sprite n="TankLarge.png" x="137" y="2" w="121" h="480"/>
<sprite n="TankMedium.PNG" x="137" y="484" w="126" h="240"/>
<sprite n="TankSmall.png" x="880" y="2" w="133" h="120"/>
<sprite n="TankTiny.png" x="260" y="2" w="134" h="61"/>
<sprite n="Wheel.png" x="286" y="465" w="120" h="120"/>
<sprite n="Wing.png" x="389" y="587" w="119" h="120"/>
</TextureAtlas>

52
textures/SkinPlatinum.xml Normal file
View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with TexturePacker http://www.codeandweb.com/texturepacker-->
<!-- $TexturePacker:SmartUpdate:286db4803b65db818ff262e805567e6c:d01f4e380d0ff4b1e84ae3eb67f69f26:98b5cfb4220125310d6b1dfa30f6cdc9$ -->
<!--Format:
n => name of the sprite
x => sprite x pos in texture
y => sprite y pos in texture
w => sprite width (may be trimmed)
h => sprite height (may be trimmed)
oX => sprite's x-corner offset (only available if trimmed)
oY => sprite's y-corner offset (only available if trimmed)
oW => sprite's original width (only available if trimmed)
oH => sprite's original height (only available if trimmed)
r => 'y' only set if sprite is rotated
-->
<TextureAtlas imagePath="SkinPlatinum.png" width="1024" height="1024">
<sprite n="Battery.png" x="437" y="66" w="129" h="30"/>
<sprite n="Beam.PNG" x="286" y="2" w="480" h="62"/>
<sprite n="CoverBottom.png" x="305" y="98" w="133" h="27"/>
<sprite n="CoverStretch.png" x="88" y="966" w="120" h="6"/>
<sprite n="CoverTop.png" x="63" y="993" w="133" h="27"/>
<sprite n="DetacherRadial.png" x="371" y="127" w="32" h="100"/>
<sprite n="DetacherVertical.PNG" x="305" y="66" w="130" h="30"/>
<sprite n="DockingConnector.PNG" x="2" y="993" w="59" h="29"/>
<sprite n="DockingPort.png" x="211" y="2" w="56" h="123"/>
<sprite n="EngineIon.png" x="205" y="127" w="114" h="65"/>
<sprite n="EngineLarge.PNG" x="246" y="694" w="123" h="240"/>
<sprite n="EngineMedium.PNG" x="88" y="784" w="121" h="180"/>
<sprite n="EngineSmall.PNG" x="247" y="194" w="121" h="120"/>
<sprite n="EngineTiny.png" x="124" y="694" w="120" h="61"/>
<sprite n="Fuselage.png" x="768" y="2" w="130" h="120"/>
<sprite n="LanderLegJoint.PNG" x="269" y="66" w="34" h="31"/>
<sprite n="LanderLegLower.PNG" x="418" y="127" w="19" h="136"/>
<sprite n="LanderLegPreview.png" x="2" y="784" w="84" h="207"/>
<sprite n="LanderLegUpper.PNG" x="371" y="229" w="22" h="118"/>
<sprite n="NoseCone.PNG" x="751" y="124" w="123" h="60"/>
<sprite n="Parachute.png" x="440" y="98" w="309" h="310"/>
<sprite n="ParachuteCanister.PNG" x="198" y="974" w="86" h="32"/>
<sprite n="Pod.PNG" x="751" y="308" w="119" h="90"/>
<sprite n="Puffy750.png" x="286" y="936" w="130" h="60"/>
<sprite n="RcsBlock.png" x="124" y="114" w="39" h="96"/>
<sprite n="SideTank.png" x="165" y="114" w="38" h="95"/>
<sprite n="SolarPanel.png" x="124" y="2" w="80" h="110"/>
<sprite n="SolarPanelBase.png" x="211" y="757" w="33" h="120"/>
<sprite n="SolidRocketBooster.png" x="2" y="2" w="120" h="780"/>
<sprite n="TankLarge.png" x="124" y="212" w="121" h="480"/>
<sprite n="TankMedium.PNG" x="900" y="2" w="121" h="240"/>
<sprite n="TankSmall.png" x="873" y="244" w="119" h="120"/>
<sprite n="TankTiny.png" x="872" y="366" w="119" h="60"/>
<sprite n="Wheel.png" x="751" y="186" w="120" h="120"/>
<sprite n="Wing.png" x="247" y="316" w="120" h="120"/>
</TextureAtlas>

119
textures/SmolarSystem.xml Normal file
View File

@ -0,0 +1,119 @@
<SolarSystem
xmlns="http://jundroo.com/simplerockets/solarsystem.xsd"
name="Smolar System"
description="Explore the Smolar System, which is a scaled down version of our Solar System. Everything is about 90% smaller than the real thing. Select the planet you would like to launch from and tap Launch!">
<Planet name="Sun" gravity="274.0" radius="69634200.0" mapColor="255,220,54" launchEnabled="true"
description="The sun.">
<Terrain maxHeight="0" color="250,250,100"/>
<Children>
<Planet name="Smercury" gravity="3.700000" radius="243970.0" mapColor="213,213,213" icon="Mercury.png"
description="Since it is the closest planet to the Sun, it is also the fastest moving planet. It zips around the sun in just 27 days. (The actual planet Mercury takes 88 days).">
<Orbit w="0.508310" e="0.205630" prograde="1" a="5790910000.0" v="-2.465148"/>
<Terrain maxHeight="1250.0" noise="12.5" texture="PlanetCrustSmercury.png" color="27,27,27"/>
</Planet>
<Planet name="Smenus" gravity="8.870000" radius="605180.0" mapColor="213,213,213" icon="Venus.png"
description="Smearth's twin planet has an incredibly thick atmosphere. The pressure at the surface is equivalent to being 1,000 meters underwater.">
<Orbit w="0.963177" e="0.006756" prograde="1" a="10820800000.0" v="0.822420"/>
<Terrain maxHeight="500.0" noise="4.5" texture="PlanetCrustSmenus.png" color="64,55,14">
<Ranges>
<Range startAngle="85.0" endAngle="87.0" minHeight="4000.0" maxHeight="4500.0"/>
</Ranges>
</Terrain>
<Atmosphere height="250000" surfacePressure="93.0" graphicType="3"/>
</Planet>
<Planet name="Smearth" gravity="9.798000" radius="637100.0" mapColor="103,157,255" icon="Earth.png"
description="A smaller version of Earth. It is 10% the size of Earth, but it has the same surface gravity and atmospheric pressure.">
<Orbit w="1.993303" e="0.016711" prograde="1" a="12559826100.0" v="-3.013170"/>
<Terrain maxHeight="3250.0" minHeight="-1000.0" noise="2.0" texture="PlanetCrustSmearth.png"
color="39,28,21" waterDensity="75">
<Ranges>
<!-- Ocean -->
<Range startAngle="20" endAngle="89" minHeight="-2000.0" maxHeight="-1000.0"/>
<!-- Mountain -->
<Range startAngle="91" endAngle="93" minHeight="4000.0" maxHeight="8000.0"/>
</Ranges>
</Terrain>
<Atmosphere height="70000" surfacePressure="1.0" graphicType="1"/>
<Children>
<Planet name="Smoon" gravity="1.622000" radius="173710.0" mapColor="213,213,213" icon="Moon.png"
description="Smearth's only natural satellite. The extremely low gravity makes this a fun place to launch from.">
<Orbit w="1.993303" e="0.054900" prograde="1" a="12500000.0" v="-2.138368"/>
<Terrain maxHeight="500.0" noise="3.5" texture="PlanetCrustSmoon.png" color="35,35,35"/>
</Planet>
</Children>
</Planet>
<Planet name="Smalley&apos;s Comet" gravity="0.010000" radius="8000.0" mapColor="208,35,35" icon="Moon.png"
launchEnabled="true" description="It's just a big hunk of ice zipping around the Smolar System.">
<Orbit w="0.785" e="0.967" prograde="0" a="266284209846.0" v="-2.843225"/>
<Terrain maxHeight="160.0" noise="35.0" texture="PlanetCrustHalley.png" color="240,240,240"/>
</Planet>
<Planet name="Smars" gravity="3.710000" radius="339600.0" mapColor="208,35,35" icon="Mars.png"
description="The Red Planet is the 2nd smallest in the Smolar System. It has an extremely thin atmosphere, with only about 1% the surface pressure of what you find on Smearth.">
<Orbit w="5.001014" e="0.093315" prograde="1" a="22793910000.0" v="1.734006"/>
<Terrain maxHeight="1250.0" noise="2.0" texture="PlanetCrustSmars.png" color="112,28,2"/>
<Atmosphere height="95000.0" surfacePressure="0.0059405" graphicType="2"/>
</Planet>
<Planet name="Smupiter" gravity="24.790000" radius="6991100.0" mapColor="230,116,45" icon="Jupiter.png"
description="The largest planet in the Smolar System. It is a gas giant, however we are pretending there is a surface to launch from!">
<Orbit w="4.800807" e="0.048775" prograde="1" a="77854720000.0" v="1.324001"/>
<Terrain maxHeight="5000.0" noise="2.5" texture="PlanetCrustSmupiter.png" color="67,53,41"/>
<Atmosphere height="125000.0" surfacePressure="1.0" graphicType="4"/>
<Children>
<Planet name="Ganymede Jr" gravity="1.428000" radius="263410" mapColor="145,130,135" icon="Moon.png"
launchEnabled="true" description="The largest moon on the Smolar System.">
<Orbit w="0.0" e="0.0013" prograde="1" a="107040000.0" v="0.5"/>
<Terrain maxHeight="500.0" noise="3.5" texture="PlanetCrustSmoon.png" color="35,35,35"/>
</Planet>
<Planet name="Europa Jr" gravity="1.314" radius="156000" mapColor="195,175,175" icon="Moon.png"
launchEnabled="true" description="">
<Orbit w="0.1" e="0.0009" prograde="1" a="67090000.0" v="1.5"/>
<Terrain maxHeight="0.0" noise="0.5" texture="PlanetCrustSmoon.png" color="35,35,35"/>
</Planet>
<Planet name="Io Jr" gravity="1.796" radius="182160" mapColor="211,204,134" icon="Moon.png"
launchEnabled="true" description="">
<Orbit w="0.2" e="0.0041" prograde="1" a="42170000.0" v="2.0"/>
<Terrain maxHeight="450.0" noise="0.5" texture="PlanetCrustSmoon.png" color="35,35,35"/>
</Planet>
<Planet name="Callisto Jr" gravity="1.235" radius="241030" mapColor="99,121,118" icon="Moon.png"
launchEnabled="true" description="">
<Orbit w="0.3" e="0.0074" prograde="1" a="188270000.0" v="2.5"/>
<Terrain maxHeight="650.0" noise="0.5" texture="PlanetCrustSmercury.png" color="27,27,27"/>
</Planet>
</Children>
</Planet>
<Planet name="Smaturn" gravity="10.440000" radius="6026800.0" mapColor="213,213,213" icon="Saturn.png"
description="It is the 2nd largest planet and because of its rings, it is considered the most beautiful planet in the Smolar System. It is also a gas giant, but once again we are pretending there is a surface.">
<Orbit w="5.864533" e="0.055723" prograde="1" a="143344937000.0" v="2.222000"/>
<Terrain maxHeight="2500.0" noise="2.5" texture="PlanetCrustSmaturn.png" color="64,55,14"/>
<Atmosphere height="275000.0" surfacePressure="1.0" graphicType="7"/>
<Children>
<Planet name="Titan Jr" gravity="1.352" radius="257600" mapColor="254,215,84" icon="Moon.png"
launchEnabled="true"
description="One of the largest satellites, and the only moon known to have a dense atmosphere.">
<Orbit w="0.0" e="0.0288" prograde="1" a="122187000.0" v="1.0"/>
<Terrain maxHeight="1500.0" minHeight="-800.0" noise="3.5" texture="PlanetCrustTitan.png"
color="160,86,26" waterDensity="75">
<Ranges>
<Range startAngle="80" endAngle="110" minHeight="3200.0" maxHeight="3500.0"/>
<Range startAngle="135" endAngle="180" minHeight="-1000.0" maxHeight="-500.0"/>
</Ranges>
</Terrain>
<Atmosphere height="215000" surfacePressure="1.46" graphicType="8"/>
</Planet>
</Children>
</Planet>
<Planet name="Smuranus" gravity="8.690000" radius="2555900.0" mapColor="213,213,213" icon="Uranus.png"
description="This gas giant is the coldest planet in the Smolar System, with a record temperature of -224 Celsius (-371 Fahrenheit).">
<Orbit w="1.684941" e="0.044406" prograde="1" a="287667908200.0" v="-2.839185"/>
<Terrain maxHeight="2500.0" noise="7.5" texture="PlanetCrustSmuranus.png" color="26,43,52"/>
<Atmosphere height="125000.0" surfacePressure="1.0" graphicType="5"/>
</Planet>
<Planet name="Smeptune" gravity="11.150000" radius="2476400.0" mapColor="213,213,213" icon="Neptune.png"
description="The farthest planet in the Smolar System is another gas giant. It is the 4th largest planet, however it is the most dense. This is why its surface gravity is so high, only exceeded by Smupiter.">
<Orbit w="4.636412" e="0.011214" prograde="1" a="450344366100.0" v="-1.313185"/>
<Terrain maxHeight="1500.0" noise="7.5" texture="PlanetCrustSmeptune.png" color="7,70,101"/>
<Atmosphere height="88022.0" surfacePressure="1.0" graphicType="6"/>
</Planet>
</Children>
</Planet>
</SolarSystem>

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 813 B

BIN
textures/runtime/Button.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 568 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 994 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 545 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 731 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 509 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 796 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB