├── .ci └── travis │ ├── after_script.sh │ ├── before_script.sh │ └── script-sphinxdocs.sh ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── create-release.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RELEASECHECKLIST.md ├── Resources ├── GameData │ └── kOS │ │ ├── Flags │ │ └── kOS-Logo.dds │ │ ├── GFX │ │ ├── README_DDS_FILE_EDITING.txt │ │ ├── dds_brightness-button.dds │ │ ├── dds_commDelay.dds │ │ ├── dds_font-height-button.dds │ │ ├── dds_launcher-button-blizzy.dds │ │ ├── dds_launcher-button.dds │ │ ├── dds_monitor_minimal.dds │ │ ├── dds_monitor_minimal_frame.dds │ │ ├── dds_monitor_minimal_frame_active.dds │ │ ├── dds_network-zigzag.dds │ │ ├── dds_popupmenu.dds │ │ ├── dds_popupmenu_bg_hover.dds │ │ ├── dds_resize-button.dds │ │ ├── dds_terminal-icon-closed-telnet.dds │ │ ├── dds_terminal-icon-closed.dds │ │ ├── dds_terminal-icon-open-telnet.dds │ │ ├── dds_terminal-icon-open.dds │ │ ├── dds_toggle_bg_active.dds │ │ ├── dds_toggle_bg_hover.dds │ │ ├── dds_toggle_bg_normal.dds │ │ ├── dds_toggle_bg_onactive.dds │ │ ├── dds_toggle_bg_onhover.dds │ │ ├── dds_toggle_bg_onnormal.dds │ │ ├── error.wav │ │ ├── terminal-beep.wav │ │ └── terminal-click.wav │ │ ├── Parts │ │ ├── KOSCherryLight │ │ │ ├── Cherrylight.mu │ │ │ ├── Metal_Silver.dds │ │ │ ├── dirty aluminum.dds │ │ │ ├── part-mm.cfg │ │ │ └── part.cfg │ │ ├── README_Legacy_versions.md │ │ ├── kOSMachine0m │ │ │ ├── KR-2042_uv_layout_1_EMIS.dds │ │ │ ├── KR-2042_uv_layout_1_d_NRM.dds │ │ │ ├── KR-2042_uv_layout_d.dds │ │ │ ├── model.mu │ │ │ ├── part-mm.cfg │ │ │ └── part.cfg │ │ ├── kOSMachine0mLegacy │ │ │ ├── KR-2042_uv_layout_1_EMIS.dds │ │ │ ├── KR-2042_uv_layout_1_d_NRM.dds │ │ │ ├── KR-2042_uv_layout_d.dds │ │ │ ├── model.mu │ │ │ └── part.cfg │ │ ├── kOSMachine1m │ │ │ ├── model.mu │ │ │ ├── model002.dds │ │ │ ├── part-mm.cfg │ │ │ └── part.cfg │ │ ├── kOSMachineRad │ │ │ ├── Model.mu │ │ │ ├── colorTexture.dds │ │ │ ├── part-mm.cfg │ │ │ └── part.cfg │ │ └── kOSkal9000 │ │ │ ├── kal9000.dds │ │ │ ├── kal9000back.dds │ │ │ ├── kal9000eye.dds │ │ │ ├── model.mu │ │ │ ├── part-mm.cfg │ │ │ └── part.cfg │ │ ├── Plugins │ │ └── ICSharpCode.SharpZipLib.dll │ │ ├── Readme │ │ ├── kOS-module-manager.cfg │ │ ├── kOS.version │ │ └── kOS.version.versiontemplate └── GameData_Legacy_pre_KSP1.8 │ ├── README.md │ └── kOS │ └── Parts │ ├── KOSCherryLight │ ├── Cherrylight.mu │ ├── Metal_Silver.dds │ ├── dirty aluminum.dds │ └── part.cfg │ ├── kOSMachine0m │ ├── KR-2042_uv_layout_1_EMIS.dds │ ├── KR-2042_uv_layout_1_d_NRM.dds │ ├── KR-2042_uv_layout_d.dds │ ├── model.mu │ └── part.cfg │ ├── kOSMachine0mLegacy │ ├── KR-2042_uv_layout_1_EMIS.dds │ ├── KR-2042_uv_layout_1_d_NRM.dds │ ├── KR-2042_uv_layout_d.dds │ ├── model.mu │ └── part.cfg │ ├── kOSMachine1m │ ├── model.mu │ ├── model002.dds │ └── part.cfg │ ├── kOSMachineRad │ ├── Model.mu │ ├── colorTexture.dds │ └── part.cfg │ └── kOSkal9000 │ ├── kal9000.dds │ ├── kal9000back.dds │ ├── kal9000eye.dds │ ├── model.mu │ └── part.cfg ├── STYLEGUIDE.md ├── doc ├── .gitignore ├── KerboscriptLexer.py ├── LICENSE.md ├── Makefile ├── README.md ├── ksdomain.py ├── make.bat ├── mypythonpath.sh └── source │ ├── _images │ ├── addons │ │ ├── AGExtQuickStart1.jpg │ │ └── AGExtQuickStart2.jpg │ ├── applauncher_panel_no_annotation.png │ ├── code.png │ ├── commands │ │ └── maneuver_nodes.png │ ├── config-panel.png │ ├── favicon.ico │ ├── forum.png │ ├── general │ │ ├── 9-slice.png │ │ ├── 9-slice.psd │ │ ├── applauncher_panel.xcf │ │ ├── bootVAB.png │ │ ├── controlPanelWindow.pdn │ │ ├── controlPanelWindow.png │ │ ├── disk_space_slider.png │ │ ├── envelope.png │ │ ├── envelope.xcf │ │ ├── gui-HelloWorld.png │ │ ├── inGameDifficultyButton.pdn │ │ ├── inGameDifficultyButton.png │ │ ├── newGameDifficultyButton.pdn │ │ ├── newGameDifficultyButton.png │ │ ├── noise.png │ │ ├── sawtooth.png │ │ ├── settingsWindow.pdn │ │ ├── settingsWindow.png │ │ ├── ship_parts_tree.xcf │ │ ├── sine.png │ │ ├── square.png │ │ ├── telnet.png │ │ ├── telnet.xcf │ │ ├── telnet_macterminal.png │ │ ├── telnet_welcomemenu.png │ │ ├── telnet_xterm.png │ │ └── triangle.png │ ├── hr.png │ ├── kos_logo.png │ ├── kos_logo_konly.png │ ├── kos_logo_small.png │ ├── nametag.png │ ├── nametag.xcf │ ├── pattern.png │ ├── reddit.png │ ├── reference │ │ ├── bindings │ │ │ └── resources.png │ │ └── math │ │ │ ├── KSP_body_coords.png │ │ │ └── KSP_body_latlong.png │ ├── sauce.png │ ├── ship_parts_tree.png │ ├── spaceport.png │ ├── structures │ │ └── vessels │ │ │ ├── bounding_part.png │ │ │ └── bounding_vessel.png │ ├── tar.png │ ├── top.png │ ├── tutorials │ │ ├── designpatterns │ │ │ └── designpatterns_rocket.png │ │ ├── gui │ │ │ ├── TabWidget.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── panel.png │ │ ├── pidloops │ │ │ ├── pidtune1.png │ │ │ ├── pidtune2.png │ │ │ ├── pidtune3.png │ │ │ ├── pidtune4.png │ │ │ ├── pidtune5.png │ │ │ └── pidtune_rocket_design_maxtwr8.png │ │ └── quickstart │ │ │ ├── MyFirstRocket.craft │ │ │ ├── SCS_parts_bin.png │ │ │ ├── editor.png │ │ │ ├── example_2_0.png │ │ │ ├── example_2_1.png │ │ │ ├── example_2_2.png │ │ │ ├── example_2_3.png │ │ │ ├── example_2_4.png │ │ │ ├── example_2_5.png │ │ │ ├── example_2_6.png │ │ │ ├── example_2_7.png │ │ │ ├── hello_list.png │ │ │ ├── hello_world1.png │ │ │ ├── terminal_open_1.png │ │ │ └── terminal_open_2.png │ └── zip.png │ ├── _static │ └── css │ │ └── kos_theme.css │ ├── about.rst │ ├── addons.rst │ ├── addons │ ├── AGX.rst │ ├── IR.rst │ ├── KAC.rst │ ├── OrbitalScience.rst │ ├── RemoteTech.rst │ └── Trajectories.rst │ ├── bindings.rst │ ├── changes.rst │ ├── commands.rst │ ├── commands │ ├── communication.rst │ ├── files.rst │ ├── flight.rst │ ├── flight │ │ ├── cooked.rst │ │ ├── pilot.rst │ │ ├── raw.rst │ │ └── systems.rst │ ├── list.rst │ ├── parts.rst │ ├── prediction.rst │ ├── resource_transfer.rst │ ├── runprogram.rst │ ├── serialization.rst │ └── terminalgui.rst │ ├── conf.py │ ├── contents.rst │ ├── contribute.rst │ ├── copyright.rst │ ├── downloads_links.rst │ ├── general.rst │ ├── general │ ├── boot.rst │ ├── career_limits.rst │ ├── compiling.rst │ ├── cpu_hardware.rst │ ├── cpu_vessel.rst │ ├── gui.rst │ ├── kospartmodule.rst │ ├── nametag.rst │ ├── parts_and_partmodules.rst │ ├── settingsWindows.rst │ ├── skid.rst │ ├── telnet.rst │ └── volumes.rst │ ├── getting_help.rst │ ├── index.rst │ ├── language.rst │ ├── language │ ├── anonymous.rst │ ├── delegates.rst │ ├── features.rst │ ├── flow.rst │ ├── syntax.rst │ ├── user_functions.rst │ └── variables.rst │ ├── library.rst │ ├── math.rst │ ├── math │ ├── basic.rst │ ├── direction.rst │ ├── geocoordinates.rst │ ├── ref_frame.rst │ ├── scalar.rst │ └── vector.rst │ ├── structures.rst │ ├── structures │ ├── celestial_bodies.rst │ ├── celestial_bodies │ │ ├── atmosphere.rst │ │ └── body.rst │ ├── collections.rst │ ├── collections │ │ ├── enumerable.rst │ │ ├── iterator.rst │ │ ├── lexicon.rst │ │ ├── list.rst │ │ ├── queue.rst │ │ ├── range.rst │ │ ├── stack.rst │ │ └── uniqueset.rst │ ├── communication.rst │ ├── communication │ │ ├── connection.rst │ │ ├── message.rst │ │ └── message_queue.rst │ ├── gui.rst │ ├── gui_widgets │ │ ├── box.rst │ │ ├── button.rst │ │ ├── gui.rst │ │ ├── label.rst │ │ ├── popupmenu.rst │ │ ├── scrollbox.rst │ │ ├── skin.rst │ │ ├── slider.rst │ │ ├── spacing.rst │ │ ├── style.rst │ │ ├── stylerecoffset.rst │ │ ├── stylestate.rst │ │ ├── textfield.rst │ │ ├── tipdisplay.rst │ │ └── widget.rst │ ├── misc.rst │ ├── misc │ │ ├── boolean.rst │ │ ├── colors.rst │ │ ├── config.rst │ │ ├── highlight.rst │ │ ├── kosdelegate.rst │ │ ├── kuniverse.rst │ │ ├── loaddistance.rst │ │ ├── note.rst │ │ ├── pidloop.rst │ │ ├── resource_transfer.rst │ │ ├── steeringmanager.rst │ │ ├── string.rst │ │ ├── terminal.rst │ │ ├── terminalinput.rst │ │ ├── time.rst │ │ ├── timewarp.rst │ │ ├── vecdraw.rst │ │ ├── versioninfo.rst │ │ └── voice.rst │ ├── orbits.rst │ ├── orbits │ │ ├── eta.rst │ │ ├── orbit.rst │ │ ├── orbitable.rst │ │ └── orbitablevelocity.rst │ ├── reflection.rst │ ├── reflection │ │ └── structure.rst │ ├── vessels.rst │ ├── vessels │ │ ├── aggregateresource.rst │ │ ├── alt.rst │ │ ├── bounds.rst │ │ ├── consumedresource.rst │ │ ├── consumedresourcercs.rst │ │ ├── core.rst │ │ ├── crafttemplate.rst │ │ ├── crewmember.rst │ │ ├── decoupler.rst │ │ ├── deltav.rst │ │ ├── dockingport.rst │ │ ├── element.rst │ │ ├── engine.rst │ │ ├── gimbal.rst │ │ ├── kosprocessor.rst │ │ ├── launchclamp.rst │ │ ├── node.rst │ │ ├── part.rst │ │ ├── partmodule.rst │ │ ├── rcs.rst │ │ ├── resource.rst │ │ ├── sciencecontainermodule.rst │ │ ├── sciencedatavalue.rst │ │ ├── scienceexperiment.rst │ │ ├── sensor.rst │ │ ├── separator.rst │ │ ├── stage.rst │ │ ├── vessel.rst │ │ └── vesselsensors.rst │ ├── volumes_and_files.rst │ ├── volumes_and_files │ │ ├── filecontent.rst │ │ ├── path.rst │ │ ├── volume.rst │ │ ├── volumedirectory.rst │ │ ├── volumefile.rst │ │ └── volumeitem.rst │ └── waypoint.rst │ ├── tutorials.rst │ └── tutorials │ ├── basictutorial.rst │ ├── designpatterns.rst │ ├── display_bounds.rst │ ├── exenode.rst │ ├── gui.rst │ ├── pidloops.rst │ └── quickstart.rst ├── kOS.props ├── kOS.sln ├── kerboscript_tests ├── addons │ └── trajectories │ │ ├── traj1.ks │ │ └── traj2.ks ├── comms.ks ├── compile │ ├── compiletest1.ks │ ├── compiletest2.ks │ ├── compiletest3.ks │ └── testrunonce │ │ ├── testrunonce_lib1.ks │ │ ├── testrunonce_lib2.ks │ │ ├── testrunonce_p1.ks │ │ ├── testrunonce_p2.ks │ │ └── testrunonce_p3.ks ├── cooked_steering │ └── testwheelsteertypes1.ks ├── declaration │ ├── definedtest.ks │ ├── multi_declaration_test.ks │ └── unsettest.ks ├── delegates │ ├── delegatetest1.ks │ ├── delegatetest2.ks │ ├── delegatetest3.ks │ ├── delegatetest3_lib.ks │ ├── delegatetest4.ks │ ├── delegatetest5.ks │ ├── delegatetest6.ks │ └── delegatetest7.ks ├── demo │ ├── testrefvec.ks │ └── testskid.ks ├── functest28.ks ├── functest29.ks ├── functest30.ks ├── functest30_inner.ks ├── functest31.ks ├── gui │ ├── gui_callback_1.ks │ └── gui_callback_2.ks ├── input │ └── terminal1.ks ├── integration │ ├── basic.ks │ ├── func.ks │ ├── func_args.ks │ ├── lock.ks │ ├── operators.ks │ ├── suffixes.ks │ └── vars.ks ├── lex_suffix_test1.ks ├── lex_suffix_test2.ks ├── lex_suffix_test3.ks ├── lib │ ├── lib_physics.ks │ ├── lib_pid.ks │ └── testlibpid.ks ├── list │ └── testlist.ks ├── loop │ ├── fromthrottletest.ks │ ├── looptest1.ks │ ├── looptest2.ks │ └── looptest3.ks ├── parameters │ ├── paramtest1.ks │ ├── paramtest2.ks │ ├── paramtest3.ks │ ├── paramtest4.ks │ ├── paramtest4_lib.ks │ ├── paramtest5.ks │ ├── paramtest6.ks │ ├── paramtest6_error.ks │ ├── paramtest7.ks │ └── paramtest7_error.ks ├── resource_transfer │ ├── testtransfer1.ks │ ├── testtransfer2.ks │ └── testtransfer3.ks ├── serialization │ ├── lexicon.ks │ ├── list.ks │ ├── misc.ks │ ├── queue.ks │ ├── range.ks │ ├── stack.ks │ └── uniqueset.ks ├── string │ └── stringtester.ks ├── ternary.ks ├── triggers │ ├── testtrigger1.ks │ ├── testtrigger2.ks │ ├── testtrigger3.ks │ ├── testtrigger4.ks │ ├── testtrigger5.ks │ ├── testtrigger6.ks │ └── testtrigger7.ks └── user_functions │ ├── functest1.ks │ ├── functest10.ks │ ├── functest10_inner.ks │ ├── functest11.ks │ ├── functest12.ks │ ├── functest13.ks │ ├── functest14.ks │ ├── functest15.ks │ ├── functest16.ks │ ├── functest17.ks │ ├── functest18.ks │ ├── functest19.ks │ ├── functest2.ks │ ├── functest20.ks │ ├── functest21-inner.ks │ ├── functest21.ks │ ├── functest21_inner.ks │ ├── functest22.ks │ ├── functest23.ks │ ├── functest24.ks │ ├── functest25.ks │ ├── functest26.ks │ ├── functest27.ks │ ├── functest27_b.ks │ ├── functest28.ks │ ├── functest29.ks │ ├── functest29_lib.ks │ ├── functest3.ks │ ├── functest30.ks │ ├── functest30_lib.ks │ ├── functest32.ks │ ├── functest33.ks │ ├── functest34.ks │ ├── functest4.ks │ ├── functest5.ks │ ├── functest6.ks │ ├── functest7.ks │ ├── functest8.ks │ ├── functest9.ks │ ├── testanonymousfunc1.ks │ ├── testclosure1.ks │ ├── testclosure2.ks │ ├── testclosure3.ks │ ├── testreturn1.ks │ └── testreturn2.ks └── src ├── gimp ├── README.md ├── kOS Art │ ├── kOSLogo2016.jpg │ ├── kOSLogo2016.psd │ ├── kOSLogoNew_blueWoutline.jpg │ ├── kos logo work.psd │ ├── kos logo work2.psd │ └── kos_logo260x104.png ├── terminal-icon.xcf └── toggle_source.psd ├── kOS.Safe.Test ├── Calculator │ ├── CalculatorScalarTest.cs │ └── CalculatorStructureTest.cs ├── Collections │ ├── CollectionValueTest.cs │ ├── LexiconTest.cs │ ├── ListValueTest.cs │ ├── MixedCollectionPrintingTest.cs │ ├── QueueValueTest.cs │ ├── RangeValueTest.cs │ ├── StackValueTest.cs │ └── UniqueSetValueTest.cs ├── Communication │ ├── FakeCurrentTimeProvider.cs │ └── MessageQueueTest.cs ├── Execution │ ├── BaseIntegrationTest.cs │ ├── Config.cs │ ├── Noop.cs │ ├── Screen.cs │ └── SimpleTest.cs ├── KS │ └── ParserTest.cs ├── Opcode │ ├── FakeCpu.cs │ ├── OpcodeGetIndexText.cs │ └── OpcodeSetIndexTest.cs ├── Persistence │ ├── ArchiveAndHarddiskCopyAndMoveTest.cs │ ├── ArchiveTest.cs │ ├── ArchiveToHarddiskCopyAndMoveTest.cs │ ├── CopyAndMoveTest.cs │ ├── GlobalPathTest.cs │ ├── HarddiskTest.cs │ ├── HarddiskToArchiveCopyAndMoveTest.cs │ ├── HarddiskToHarddiskCopyAndMoveTest.cs │ ├── VolumePathTest.cs │ └── VolumeTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Serialization │ ├── FormatterTest.cs │ ├── JSONFormatterTest.cs │ └── TerminalFormatterTest.cs ├── Structure │ ├── ClampSetSuffixTest.cs │ ├── NoArgsSuffixTest.cs │ ├── SetSuffixTest.cs │ ├── StructureSuffixIntegrationTest.cs │ ├── StructureTest.cs │ └── TwoArgsVoidSuffixTest.cs ├── Structures │ ├── BooleanValueTest.cs │ ├── ScalarValueTest.cs │ └── StringValueTest.cs ├── TestLogger.cs └── kOS.Safe.Test.csproj ├── kOS.Safe ├── Binding │ ├── BindingAttribute.cs │ ├── BindingDelgate.cs │ ├── BoundVariable.cs │ ├── IBindingManager.cs │ └── SafeBindingBase.cs ├── Callback │ └── IGameEventDispatchManager.cs ├── Communication │ ├── BaseMessage.cs │ ├── Connection.cs │ ├── CurrentTimeProvider.cs │ └── GenericMessageQueue.cs ├── Compilation │ ├── Calculator.cs │ ├── CalculatorBool.cs │ ├── CalculatorScalar.cs │ ├── CalculatorString.cs │ ├── CalculatorStructure.cs │ ├── CodePart.cs │ ├── CompileCache.cs │ ├── CompiledObject-doc.md │ ├── CompiledObject.cs │ ├── CompilerOptions.cs │ ├── KS │ │ ├── BreakInfo.cs │ │ ├── Compiler.cs │ │ ├── Context.cs │ │ ├── KSScript.cs │ │ ├── LineCol.cs │ │ ├── ParseTree.cs │ │ ├── Parser.cs │ │ ├── Scanner.cs │ │ ├── Scope.cs │ │ ├── Subprogram.cs │ │ ├── SubprogramCollection.cs │ │ ├── Trigger.cs │ │ ├── TriggerCollection.cs │ │ ├── UserFunction.cs │ │ ├── UserFunctionCodeFragment.cs │ │ ├── UserFunctionCollection.cs │ │ └── kRISC.tpg │ ├── Opcode.cs │ ├── OperandPair.cs │ ├── ProgramBuilder.cs │ ├── ProgramBuilderInterpreter.cs │ ├── PseudoNull.cs │ └── Script.cs ├── Encapsulation │ ├── BooleanValue.cs │ ├── BuiltinDelegate.cs │ ├── CollectionValue.cs │ ├── ConstantValue.cs │ ├── EnumerableValue.cs │ ├── Enumerator.cs │ ├── IConfig.cs │ ├── IIndexable.cs │ ├── ISetSuffix.cs │ ├── ISuffix.cs │ ├── ISuffixed.cs │ ├── KOSDelegate.cs │ ├── Lexicon.cs │ ├── ListValue.cs │ ├── NoDelegate.cs │ ├── PIDLoop.cs │ ├── PrimitiveStructure.cs │ ├── QueueValue.cs │ ├── RangeValue.cs │ ├── ScalarDoubleValue.cs │ ├── ScalarIntValue.cs │ ├── ScalarValue.cs │ ├── StackValue.cs │ ├── StringValue.cs │ ├── Structure.cs │ ├── Suffixes │ │ ├── ClampSetSuffix.cs │ │ ├── ConfigKey.cs │ │ ├── DelegateSuffixResult.cs │ │ ├── GlobalSuffix.cs │ │ ├── ISuffixResult.cs │ │ ├── NoArgsSuffix.cs │ │ ├── NoArgsVoidSuffix.cs │ │ ├── OneArgsSuffix.cs │ │ ├── OneArgsVoidSuffix.cs │ │ ├── OptionalArgsSuffix.cs │ │ ├── SetSuffix.cs │ │ ├── Suffix.cs │ │ ├── SuffixBase.cs │ │ ├── SuffixDelegates.cs │ │ ├── SuffixResult.cs │ │ ├── ThreeArgsSuffix.cs │ │ ├── TwoArgsSuffix.cs │ │ └── VarArgsSuffix.cs │ ├── TerminalInput.cs │ ├── TerminalStruct.cs │ ├── UniqueSetValue.cs │ ├── UserDelegate.cs │ └── VersionInfo.cs ├── Exceptions │ ├── KOSArgumentMismatchException.cs │ ├── KOSAtmosphereObsoletionException.cs │ ├── KOSBadJumpException.cs │ ├── KOSBinaryOperandTypeException.cs │ ├── KOSBreakInvalidHereException.cs │ ├── KOSCannotCallException.cs │ ├── KOSCastException.cs │ ├── KOSCommandInvalidHereException.cs │ ├── KOSCommunicationException.cs │ ├── KOSCompileException.cs │ ├── KOSDefaultParamNotAtEndException.cs │ ├── KOSDuplicateKeyException.cs │ ├── KOSException.cs │ ├── KOSIdentifierClashException.cs │ ├── KOSInvalidArgumentException.cs │ ├── KOSInvalidDelegateContextException.cs │ ├── KOSInvalidDelegateType.cs │ ├── KOSInvalidFieldValueException.cs │ ├── KOSInvalidPathException.cs │ ├── KOSInvalidTargetException.cs │ ├── KOSKeyNotFoundException.cs │ ├── KOSLongTriggerException.cs │ ├── KOSLookupFailException.cs │ ├── KOSLowTechException.cs │ ├── KOSModifyReadonly.cs │ ├── KOSNotInvokableException.cs │ ├── KOSNumberParseException.cs │ ├── KOSObsoletionException.cs │ ├── KOSOnceInvalidHereException.cs │ ├── KOSParseException.cs │ ├── KOSPatchesObsoletionException.cs │ ├── KOSPersistenceException.cs │ ├── KOSPreserveInvalidHereException.cs │ ├── KOSReturnInvalidHereException.cs │ ├── KOSSerializationException.cs │ ├── KOSSituationallyInvalidException.cs │ ├── KOSStackOverflowException.cs │ ├── KOSSuffixUseException.cs │ ├── KOSTermWidthObsoletionException.cs │ ├── KOSUnaryOperandTypeException.cs │ ├── KOSUnavailableAddonException.cs │ ├── KOSUndefinedIdentifierException.cs │ ├── KOSVolumeOutOfRangeException.cs │ ├── KOSWrongCPUVesselException.cs │ ├── KOSWrongControlValueTypeException.cs │ └── KOSYouShouldNeverSeeThisException.cs ├── Execution │ ├── CPU.cs │ ├── ExecutionStatBlock.cs │ ├── ICpu.cs │ ├── IKOSScopeObserver.cs │ ├── IPopContextNotifyee.cs │ ├── IProgramContext.cs │ ├── IStack.cs │ ├── IUserDelegate.cs │ ├── InternalPath.cs │ ├── InterruptPriority.cs │ ├── KOSArgMarkerType.cs │ ├── KOSPassThruReturn.cs │ ├── ProgramContext.cs │ ├── Stack.cs │ ├── SurboutineContext.cs │ ├── TriggerInfo.cs │ ├── Variable.cs │ ├── VariableScope.cs │ ├── YiedFinishedThreadedDetector.cs │ ├── YieldFinishedCompile.cs │ ├── YieldFinishedDetector.cs │ ├── YieldFinishedGameTimer.cs │ ├── YieldFinishedGetChar.cs │ └── YieldFinishedNextTick.cs ├── Function │ ├── FunctionAttribute.cs │ ├── FunctionManager.cs │ ├── IFunctionManager.cs │ ├── Math.cs │ ├── Misc.cs │ ├── Persistence.cs │ ├── SafeFunctionBase.cs │ ├── Suffixed.cs │ └── Trigonometry.cs ├── ILogger.cs ├── IUpdateObserver.cs ├── Module │ └── IProcessor.cs ├── Persistence │ ├── Archive.cs │ ├── ArchiveDirectory.cs │ ├── ArchiveFile.cs │ ├── FileCategory.cs │ ├── FileContent.cs │ ├── GlobalPath.cs │ ├── Harddisk.cs │ ├── HarddiskDirectory.cs │ ├── HarddiskFile.cs │ ├── IVolumeManager.cs │ ├── KOSFileException.cs │ ├── PathValue.cs │ ├── PersistenceUtilities.cs │ ├── Volume.cs │ ├── VolumeDirectory.cs │ ├── VolumeFile.cs │ ├── VolumeItem.cs │ ├── VolumeManager.cs │ └── VolumePath.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── SafeSharedObjects.cs ├── Screen │ ├── IInterpreter.cs │ ├── IScreenBuffer.cs │ ├── IScreenBufferLine.cs │ ├── IScreenSnapshot.cs │ ├── ITermWindow.cs │ ├── ScreenBuffer.cs │ ├── ScreenBufferLine.cs │ ├── ScreenSnapshot.cs │ ├── SubBuffer.cs │ └── TextEditor.cs ├── Serialization │ ├── Dump.cs │ ├── DumpWithHeader.cs │ ├── Formatter.cs │ ├── IDumper.cs │ ├── JSONFormatter.cs │ ├── SafeSerializationMgr.cs │ ├── SerializableStructure.cs │ └── TerminalFormatter.cs ├── SimpleJson.cs ├── Sound │ ├── IProceduralSoundWave.cs │ ├── ISoundMaker.cs │ └── IVoice.cs ├── UpdateHandler.cs ├── UserIO │ └── UnicodeCommand.cs ├── Utilities │ ├── AssemblyWalkAttribute.cs │ ├── CpuUtility.cs │ ├── Debug.cs │ ├── EnumUtilities.cs │ ├── KOSNomenclature.cs │ ├── KOSNomenclatureAttribute.cs │ ├── MovingAverage.cs │ ├── ReflectUtil.cs │ ├── SafeHouse.cs │ ├── StringUtil.cs │ ├── TickGen.cs │ ├── kOSKeys.cs │ └── kosMath.cs └── kOS.Safe.csproj ├── kOS ├── AddOns │ ├── ActionGroupsExtended │ │ ├── ActionGroupsExtendedAPI.cs │ │ ├── ActionGroupsExtendedBinding.cs │ │ └── Addon.cs │ ├── Addon Readme.md │ ├── AddonManager.cs │ ├── InfernalRobotics │ │ ├── Addon.cs │ │ ├── IRControlGroup.cs │ │ ├── IRHandler.cs │ │ ├── IRServoWrapper.cs │ │ └── IRWrapper.cs │ ├── KerbalAlarmClock │ │ ├── Addon.cs │ │ ├── KACAlarmWrapper.cs │ │ ├── KACEventHandler.cs │ │ ├── KACFunctions.cs │ │ └── KACWrapper.cs │ ├── OrbitalScience │ │ ├── DMBathymetryFields.cs │ │ ├── DMModuleScienceAnimateFields.cs │ │ ├── DMOrbitalScienceFieldsFactory.cs │ │ └── DMScienceExperimentFields.cs │ ├── RemoteTech │ │ ├── Addon.cs │ │ ├── IRemoteTechAPIv1.cs │ │ ├── RemoteTechAPI.cs │ │ ├── RemoteTechAntennaModuleFields.cs │ │ ├── RemoteTechConnectivityManager.cs │ │ └── RemoteTechHook.cs │ ├── Trajectories │ │ ├── Addon.cs │ │ └── TRWrapper.cs │ └── kOSAddonAttribute.cs ├── Binding │ ├── ActionGroups.cs │ ├── Binding.cs │ ├── BindingConfig.cs │ ├── BindingManager.cs │ ├── BindingsUniverse.cs │ ├── CPUBinding.cs │ ├── ColorBinding.cs │ ├── DoNothingBinding.cs │ ├── FlightControlManager.cs │ ├── FlightStats.cs │ ├── MissionSettings.cs │ ├── RoverStats.cs │ └── TerminalSettings.cs ├── Callback │ ├── GameEventDispatcher.cs │ └── KOSGameEventDispatcher.cs ├── Communication │ ├── CommNetConnectivityManager.cs │ ├── ConnectivityManager.cs │ ├── ControlConnection.cs │ ├── HomeConnection.cs │ ├── IConnectivityManager.cs │ ├── InterProcCommand.cs │ ├── InterVesselManager.cs │ ├── Message.cs │ ├── MessageQueue.cs │ ├── MessageQueueStructure.cs │ ├── MessageStructure.cs │ ├── PermitAllConnectivityManager.cs │ ├── PlanetariumTimeProvider.cs │ ├── ProcessorConnection.cs │ ├── ProcessorManager.cs │ ├── RunCommand.cs │ ├── VesselConnection.cs │ └── kOSConnectivityParameters.cs ├── Control │ ├── IFlightControlParameter.cs │ ├── SteeringManager.cs │ ├── ThrottleManager.cs │ ├── WheelSteeringManager.cs │ └── WheelThrottleManager.cs ├── Core.cs ├── Execution │ └── TransferManager.cs ├── Function │ ├── BuildList.cs │ ├── FunctionBase.cs │ ├── HighlightStructure.cs │ ├── Math.cs │ ├── Misc.cs │ ├── Persistence.cs │ ├── PrintList.cs │ └── Suffixed.cs ├── KSPLogger.cs ├── Logger.cs ├── Module │ ├── AssetManager.cs │ ├── AutopilotMsgManager.cs │ ├── Bootstrapper.cs │ ├── KOSNameTag.cs │ ├── SceneChangeCleaner.cs │ ├── kOSCustomParameters.cs │ ├── kOSLightModule.cs │ ├── kOSProcessor.cs │ ├── kOSSettingsChecker.cs │ └── kOSVesselModule.cs ├── Persistence │ ├── ConnectivityVolumeManager.cs │ └── PersistenceExtensions.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Screen │ ├── ConnectivityInterpreter.cs │ ├── DelegateDialog.cs │ ├── GUIWindow.cs │ ├── Interpreter.cs │ ├── KOSManagedWindow.cs │ ├── KOSNameTagWindow.cs │ ├── KOSTextEditPopup.cs │ ├── KOSToolbarWindow.cs │ ├── ListPickerDialog.cs │ ├── RectExtensions.cs │ ├── TermWindow.cs │ └── ToolbarWrapper.cs ├── Serialization │ ├── ConfigNodeFormatter.cs │ └── SerializationMgr.cs ├── SharedObjects.cs ├── Sound │ ├── NoiseSoundWave.cs │ ├── NoteValue.cs │ ├── ProceduralSoundWave.cs │ ├── SawtoothSoundWave.cs │ ├── SineSoundWave.cs │ ├── SoundMaker.cs │ ├── SquareSoundWave.cs │ ├── TriangleSoundWave.cs │ ├── Voice.cs │ └── VoiceValue.cs ├── Suffixed │ ├── ActiveResourceValue.cs │ ├── Addon.cs │ ├── AddonList.cs │ ├── AggregateResourceValue.cs │ ├── BodyAtmosphere.cs │ ├── BodyTarget.cs │ ├── BoundsValue.cs │ ├── Career.cs │ ├── Config.cs │ ├── ConsumedResourceValue.cs │ ├── ConsumedResourceValueRCS.cs │ ├── CraftTemplate.cs │ ├── CrewMember.cs │ ├── DeltaVCalc.cs │ ├── Direction.cs │ ├── ElementValue.cs │ ├── FlightControl.cs │ ├── GeoCoordinates.cs │ ├── HsvaColor.cs │ ├── IKOSTargetable.cs │ ├── KUniverseValue.cs │ ├── LoadDistanceValue.cs │ ├── Node.cs │ ├── OrbitEta.cs │ ├── OrbitInfo.cs │ ├── Orbitable.cs │ ├── OrbitableVelocity.cs │ ├── Part │ │ ├── DecouplerValue.cs │ │ ├── DockingPortValue.cs │ │ ├── EngineValue.cs │ │ ├── LaunchClampValue.cs │ │ ├── PartValue.cs │ │ ├── PartValueFactory.cs │ │ ├── RCSValue.cs │ │ ├── SensorValue.cs │ │ └── SeparatorValue.cs │ ├── PartModuleField │ │ ├── GimbalFields.cs │ │ ├── PartModuleFields.cs │ │ ├── PartModuleFieldsFactory.cs │ │ ├── ScienceContainerFields.cs │ │ ├── ScienceExperimentFields.cs │ │ ├── ScienceExperimentFieldsFactory.cs │ │ ├── StockScienceExperimentFields.cs │ │ └── kOSProcessorFields.cs │ ├── ResourceTransferValue.cs │ ├── RgbaColor.cs │ ├── ScienceDataValue.cs │ ├── SingleResourceValue.cs │ ├── StageValues.cs │ ├── TimeBase.cs │ ├── TimeSpan.cs │ ├── TimeStamp.cs │ ├── TimeWarpValue.cs │ ├── Vector.cs │ ├── VectorRenderer.cs │ ├── VesselAlt.cs │ ├── VesselSensors.cs │ ├── VesselTarget.Hooks.cs │ ├── VesselTarget.Parts.cs │ ├── VesselTarget.cs │ ├── WaypointValue.cs │ └── Widget │ │ ├── Box.cs │ │ ├── Button.cs │ │ ├── GUIWidgets.cs │ │ ├── Label.cs │ │ ├── PopupMenu.cs │ │ ├── ScrollBox.cs │ │ ├── Slider.cs │ │ ├── Spacing.cs │ │ ├── TextField.cs │ │ ├── TipDisplay.cs │ │ ├── Widget.cs │ │ ├── WidgetSkin.cs │ │ ├── WidgetStyle.cs │ │ ├── WidgetStyleRectOffset.cs │ │ └── WidgetStyleState.cs ├── UserIO │ ├── TelnetMainServer.cs │ ├── TelnetSingletonServer.cs │ ├── TelnetWelcomeMenu.cs │ ├── TerminalAnsiMapper.cs │ ├── TerminalUnicodeMapper.cs │ ├── TerminalVT100Mapper.cs │ └── TerminalXtermMapper.cs ├── Utilities │ ├── BetaShim.cs │ ├── PartUtilities.cs │ ├── Utils.cs │ └── VesselUtils.cs └── kOS.csproj ├── parts source ├── kOS Cherry Light │ └── cherrytop meshes │ │ ├── cherrytop.fbx │ │ ├── colored dome.fbx │ │ ├── light_base.fbx │ │ ├── materials │ │ ├── Metal_Silver.jpg │ │ ├── dirty aluminum.jpeg │ │ └── red plastic.jpg │ │ └── reflector.fbx ├── kOS Radial dev │ ├── Assets │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── colorTexture.mat │ │ │ ├── colorTexture.mat.meta │ │ │ ├── material.mat │ │ │ └── material.mat.meta │ │ ├── PartTools.meta │ │ ├── colorTexture.png │ │ ├── colorTexture.png.meta │ │ ├── kOSRadial.unity │ │ ├── kOSRadial.unity.meta │ │ ├── kosradial.dae │ │ └── kosradial.dae.meta │ ├── colorTexture.png │ ├── compumax.dae │ ├── compumax.skp │ ├── kosradial.blend │ └── kosradial.dae ├── kOS new 0M │ └── new 0M meshes │ │ ├── kOS0m.fbx │ │ └── new0M.dae ├── kOS0m dev │ ├── Assets │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── GameObject.controller │ │ │ ├── GameObject.controller.meta │ │ │ ├── KR-2042_uv_layout_1_EMIS.png │ │ │ ├── KR-2042_uv_layout_1_EMIS.png.meta │ │ │ ├── KR-2042_uv_layout_1_d_NRM.png │ │ │ ├── KR-2042_uv_layout_1_d_NRM.png.meta │ │ │ ├── KR-2042_uv_layout_d.png │ │ │ ├── KR-2042_uv_layout_d.png.meta │ │ │ ├── Material_001__Instance_.mat │ │ │ ├── Material_001__Instance_.mat.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── KR-2042_uv_layout_1_EMIS.mat │ │ │ │ ├── KR-2042_uv_layout_1_EMIS.mat.meta │ │ │ │ ├── KR-2042_uv_layout_d.mat │ │ │ │ └── KR-2042_uv_layout_d.mat.meta │ │ │ ├── New Animation.anim │ │ │ ├── New Animation.anim.meta │ │ │ ├── No Name.mat │ │ │ └── No Name.mat.meta │ │ ├── New Animation.anim │ │ ├── New Animation.anim.meta │ │ ├── PartTools.meta │ │ ├── untitled.dae │ │ └── untitled.dae.meta │ ├── kOSMachine0m copy.dae │ ├── kOSMachine0m.blend │ └── kOSMachine0m.dae ├── kOS1m dev │ ├── Assets │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── model001.png │ │ │ ├── model001.png.meta │ │ │ ├── model002.png │ │ │ ├── model002.png.meta │ │ │ ├── unnamed.mat │ │ │ └── unnamed.mat.meta │ │ ├── PartTools.meta │ │ ├── kOSMachine1m.dae │ │ ├── kOSMachine1m.dae.meta │ │ ├── kOSMachine1m.unity │ │ └── kOSMachine1m.unity.meta │ ├── kOSMachine1m.blend │ └── kOSMachine1m.dae ├── kOS_Models.unitypackage └── kOSkal9000 │ └── KAL-9000 meshes │ ├── AutoSave_hal9000.skp │ ├── Jan 7 kal9000.fbx │ ├── final kal9000.skp │ ├── final kal9000~.skp │ ├── hal9000.fbx │ ├── hal9000 │ ├── hal9000.jpg │ ├── hal9000eye.tif │ ├── kal9000back.jpg │ └── kal9000backTEXTURE.jpg │ └── materials │ ├── hal9000.jpg │ ├── hal9000eye.tif │ └── kal9000back.jpg └── sound_sources ├── README.md ├── error.aup ├── error_data └── e00 │ └── d00 │ ├── e0000929.au │ ├── e0000c1f.au │ └── e0000c97.au ├── terminal-beep.aup ├── terminal-beep_data └── e00 │ └── d00 │ └── e0000ec1.au ├── terminal-click.aup └── terminal-click_data └── e00 └── d00 └── e00008b2.au /.ci/travis/after_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/.ci/travis/after_script.sh -------------------------------------------------------------------------------- /.ci/travis/before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/.ci/travis/before_script.sh -------------------------------------------------------------------------------- /.ci/travis/script-sphinxdocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/.ci/travis/script-sphinxdocs.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/README.md -------------------------------------------------------------------------------- /RELEASECHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/RELEASECHECKLIST.md -------------------------------------------------------------------------------- /Resources/GameData/kOS/Flags/kOS-Logo.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Flags/kOS-Logo.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_brightness-button.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_brightness-button.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_commDelay.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_commDelay.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_font-height-button.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_font-height-button.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_launcher-button.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_launcher-button.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_monitor_minimal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_monitor_minimal.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_network-zigzag.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_network-zigzag.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_popupmenu.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_popupmenu.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_popupmenu_bg_hover.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_popupmenu_bg_hover.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_resize-button.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_resize-button.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_terminal-icon-open.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_terminal-icon-open.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_toggle_bg_active.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_toggle_bg_active.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_toggle_bg_hover.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_toggle_bg_hover.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_toggle_bg_normal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_toggle_bg_normal.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_toggle_bg_onactive.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_toggle_bg_onactive.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_toggle_bg_onhover.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_toggle_bg_onhover.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/dds_toggle_bg_onnormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/dds_toggle_bg_onnormal.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/error.wav -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/terminal-beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/terminal-beep.wav -------------------------------------------------------------------------------- /Resources/GameData/kOS/GFX/terminal-click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/GFX/terminal-click.wav -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/KOSCherryLight/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/KOSCherryLight/part.cfg -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSMachine0m/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSMachine0m/model.mu -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSMachine0m/part-mm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSMachine0m/part-mm.cfg -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSMachine0m/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSMachine0m/part.cfg -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSMachine1m/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSMachine1m/model.mu -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSMachine1m/part-mm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSMachine1m/part-mm.cfg -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSMachine1m/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSMachine1m/part.cfg -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSMachineRad/Model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSMachineRad/Model.mu -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSMachineRad/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSMachineRad/part.cfg -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSkal9000/kal9000.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSkal9000/kal9000.dds -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSkal9000/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSkal9000/model.mu -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSkal9000/part-mm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSkal9000/part-mm.cfg -------------------------------------------------------------------------------- /Resources/GameData/kOS/Parts/kOSkal9000/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Parts/kOSkal9000/part.cfg -------------------------------------------------------------------------------- /Resources/GameData/kOS/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/Readme -------------------------------------------------------------------------------- /Resources/GameData/kOS/kOS-module-manager.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/kOS-module-manager.cfg -------------------------------------------------------------------------------- /Resources/GameData/kOS/kOS.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/kOS.version -------------------------------------------------------------------------------- /Resources/GameData/kOS/kOS.version.versiontemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData/kOS/kOS.version.versiontemplate -------------------------------------------------------------------------------- /Resources/GameData_Legacy_pre_KSP1.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/Resources/GameData_Legacy_pre_KSP1.8/README.md -------------------------------------------------------------------------------- /STYLEGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/STYLEGUIDE.md -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | gh-pages 3 | *.pyc 4 | -------------------------------------------------------------------------------- /doc/KerboscriptLexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/KerboscriptLexer.py -------------------------------------------------------------------------------- /doc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/LICENSE.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/ksdomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/ksdomain.py -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/mypythonpath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/mypythonpath.sh -------------------------------------------------------------------------------- /doc/source/_images/addons/AGExtQuickStart1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/addons/AGExtQuickStart1.jpg -------------------------------------------------------------------------------- /doc/source/_images/addons/AGExtQuickStart2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/addons/AGExtQuickStart2.jpg -------------------------------------------------------------------------------- /doc/source/_images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/code.png -------------------------------------------------------------------------------- /doc/source/_images/commands/maneuver_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/commands/maneuver_nodes.png -------------------------------------------------------------------------------- /doc/source/_images/config-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/config-panel.png -------------------------------------------------------------------------------- /doc/source/_images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/favicon.ico -------------------------------------------------------------------------------- /doc/source/_images/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/forum.png -------------------------------------------------------------------------------- /doc/source/_images/general/9-slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/9-slice.png -------------------------------------------------------------------------------- /doc/source/_images/general/9-slice.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/9-slice.psd -------------------------------------------------------------------------------- /doc/source/_images/general/applauncher_panel.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/applauncher_panel.xcf -------------------------------------------------------------------------------- /doc/source/_images/general/bootVAB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/bootVAB.png -------------------------------------------------------------------------------- /doc/source/_images/general/controlPanelWindow.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/controlPanelWindow.pdn -------------------------------------------------------------------------------- /doc/source/_images/general/controlPanelWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/controlPanelWindow.png -------------------------------------------------------------------------------- /doc/source/_images/general/disk_space_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/disk_space_slider.png -------------------------------------------------------------------------------- /doc/source/_images/general/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/envelope.png -------------------------------------------------------------------------------- /doc/source/_images/general/envelope.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/envelope.xcf -------------------------------------------------------------------------------- /doc/source/_images/general/gui-HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/gui-HelloWorld.png -------------------------------------------------------------------------------- /doc/source/_images/general/inGameDifficultyButton.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/inGameDifficultyButton.pdn -------------------------------------------------------------------------------- /doc/source/_images/general/inGameDifficultyButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/inGameDifficultyButton.png -------------------------------------------------------------------------------- /doc/source/_images/general/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/noise.png -------------------------------------------------------------------------------- /doc/source/_images/general/sawtooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/sawtooth.png -------------------------------------------------------------------------------- /doc/source/_images/general/settingsWindow.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/settingsWindow.pdn -------------------------------------------------------------------------------- /doc/source/_images/general/settingsWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/settingsWindow.png -------------------------------------------------------------------------------- /doc/source/_images/general/ship_parts_tree.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/ship_parts_tree.xcf -------------------------------------------------------------------------------- /doc/source/_images/general/sine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/sine.png -------------------------------------------------------------------------------- /doc/source/_images/general/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/square.png -------------------------------------------------------------------------------- /doc/source/_images/general/telnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/telnet.png -------------------------------------------------------------------------------- /doc/source/_images/general/telnet.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/telnet.xcf -------------------------------------------------------------------------------- /doc/source/_images/general/telnet_macterminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/telnet_macterminal.png -------------------------------------------------------------------------------- /doc/source/_images/general/telnet_welcomemenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/telnet_welcomemenu.png -------------------------------------------------------------------------------- /doc/source/_images/general/telnet_xterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/telnet_xterm.png -------------------------------------------------------------------------------- /doc/source/_images/general/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/general/triangle.png -------------------------------------------------------------------------------- /doc/source/_images/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/hr.png -------------------------------------------------------------------------------- /doc/source/_images/kos_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/kos_logo.png -------------------------------------------------------------------------------- /doc/source/_images/kos_logo_konly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/kos_logo_konly.png -------------------------------------------------------------------------------- /doc/source/_images/kos_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/kos_logo_small.png -------------------------------------------------------------------------------- /doc/source/_images/nametag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/nametag.png -------------------------------------------------------------------------------- /doc/source/_images/nametag.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/nametag.xcf -------------------------------------------------------------------------------- /doc/source/_images/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/pattern.png -------------------------------------------------------------------------------- /doc/source/_images/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/reddit.png -------------------------------------------------------------------------------- /doc/source/_images/reference/bindings/resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/reference/bindings/resources.png -------------------------------------------------------------------------------- /doc/source/_images/reference/math/KSP_body_coords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/reference/math/KSP_body_coords.png -------------------------------------------------------------------------------- /doc/source/_images/sauce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/sauce.png -------------------------------------------------------------------------------- /doc/source/_images/ship_parts_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/ship_parts_tree.png -------------------------------------------------------------------------------- /doc/source/_images/spaceport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/spaceport.png -------------------------------------------------------------------------------- /doc/source/_images/tar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tar.png -------------------------------------------------------------------------------- /doc/source/_images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/top.png -------------------------------------------------------------------------------- /doc/source/_images/tutorials/gui/TabWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tutorials/gui/TabWidget.png -------------------------------------------------------------------------------- /doc/source/_images/tutorials/gui/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tutorials/gui/back.png -------------------------------------------------------------------------------- /doc/source/_images/tutorials/gui/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tutorials/gui/front.png -------------------------------------------------------------------------------- /doc/source/_images/tutorials/gui/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tutorials/gui/panel.png -------------------------------------------------------------------------------- /doc/source/_images/tutorials/pidloops/pidtune1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tutorials/pidloops/pidtune1.png -------------------------------------------------------------------------------- /doc/source/_images/tutorials/pidloops/pidtune2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tutorials/pidloops/pidtune2.png -------------------------------------------------------------------------------- /doc/source/_images/tutorials/pidloops/pidtune3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tutorials/pidloops/pidtune3.png -------------------------------------------------------------------------------- /doc/source/_images/tutorials/pidloops/pidtune4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tutorials/pidloops/pidtune4.png -------------------------------------------------------------------------------- /doc/source/_images/tutorials/pidloops/pidtune5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tutorials/pidloops/pidtune5.png -------------------------------------------------------------------------------- /doc/source/_images/tutorials/quickstart/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/tutorials/quickstart/editor.png -------------------------------------------------------------------------------- /doc/source/_images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_images/zip.png -------------------------------------------------------------------------------- /doc/source/_static/css/kos_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/_static/css/kos_theme.css -------------------------------------------------------------------------------- /doc/source/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/about.rst -------------------------------------------------------------------------------- /doc/source/addons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/addons.rst -------------------------------------------------------------------------------- /doc/source/addons/AGX.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/addons/AGX.rst -------------------------------------------------------------------------------- /doc/source/addons/IR.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/addons/IR.rst -------------------------------------------------------------------------------- /doc/source/addons/KAC.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/addons/KAC.rst -------------------------------------------------------------------------------- /doc/source/addons/OrbitalScience.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/addons/OrbitalScience.rst -------------------------------------------------------------------------------- /doc/source/addons/RemoteTech.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/addons/RemoteTech.rst -------------------------------------------------------------------------------- /doc/source/addons/Trajectories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/addons/Trajectories.rst -------------------------------------------------------------------------------- /doc/source/bindings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/bindings.rst -------------------------------------------------------------------------------- /doc/source/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/changes.rst -------------------------------------------------------------------------------- /doc/source/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands.rst -------------------------------------------------------------------------------- /doc/source/commands/communication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/communication.rst -------------------------------------------------------------------------------- /doc/source/commands/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/files.rst -------------------------------------------------------------------------------- /doc/source/commands/flight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/flight.rst -------------------------------------------------------------------------------- /doc/source/commands/flight/cooked.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/flight/cooked.rst -------------------------------------------------------------------------------- /doc/source/commands/flight/pilot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/flight/pilot.rst -------------------------------------------------------------------------------- /doc/source/commands/flight/raw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/flight/raw.rst -------------------------------------------------------------------------------- /doc/source/commands/flight/systems.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/flight/systems.rst -------------------------------------------------------------------------------- /doc/source/commands/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/list.rst -------------------------------------------------------------------------------- /doc/source/commands/parts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/parts.rst -------------------------------------------------------------------------------- /doc/source/commands/prediction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/prediction.rst -------------------------------------------------------------------------------- /doc/source/commands/resource_transfer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/resource_transfer.rst -------------------------------------------------------------------------------- /doc/source/commands/runprogram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/runprogram.rst -------------------------------------------------------------------------------- /doc/source/commands/serialization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/serialization.rst -------------------------------------------------------------------------------- /doc/source/commands/terminalgui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/commands/terminalgui.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/contents.rst -------------------------------------------------------------------------------- /doc/source/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/contribute.rst -------------------------------------------------------------------------------- /doc/source/copyright.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/copyright.rst -------------------------------------------------------------------------------- /doc/source/downloads_links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/downloads_links.rst -------------------------------------------------------------------------------- /doc/source/general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general.rst -------------------------------------------------------------------------------- /doc/source/general/boot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/boot.rst -------------------------------------------------------------------------------- /doc/source/general/career_limits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/career_limits.rst -------------------------------------------------------------------------------- /doc/source/general/compiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/compiling.rst -------------------------------------------------------------------------------- /doc/source/general/cpu_hardware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/cpu_hardware.rst -------------------------------------------------------------------------------- /doc/source/general/cpu_vessel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/cpu_vessel.rst -------------------------------------------------------------------------------- /doc/source/general/gui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/gui.rst -------------------------------------------------------------------------------- /doc/source/general/kospartmodule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/kospartmodule.rst -------------------------------------------------------------------------------- /doc/source/general/nametag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/nametag.rst -------------------------------------------------------------------------------- /doc/source/general/parts_and_partmodules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/parts_and_partmodules.rst -------------------------------------------------------------------------------- /doc/source/general/settingsWindows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/settingsWindows.rst -------------------------------------------------------------------------------- /doc/source/general/skid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/skid.rst -------------------------------------------------------------------------------- /doc/source/general/telnet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/telnet.rst -------------------------------------------------------------------------------- /doc/source/general/volumes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/general/volumes.rst -------------------------------------------------------------------------------- /doc/source/getting_help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/getting_help.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/language.rst -------------------------------------------------------------------------------- /doc/source/language/anonymous.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/language/anonymous.rst -------------------------------------------------------------------------------- /doc/source/language/delegates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/language/delegates.rst -------------------------------------------------------------------------------- /doc/source/language/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/language/features.rst -------------------------------------------------------------------------------- /doc/source/language/flow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/language/flow.rst -------------------------------------------------------------------------------- /doc/source/language/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/language/syntax.rst -------------------------------------------------------------------------------- /doc/source/language/user_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/language/user_functions.rst -------------------------------------------------------------------------------- /doc/source/language/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/language/variables.rst -------------------------------------------------------------------------------- /doc/source/library.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/library.rst -------------------------------------------------------------------------------- /doc/source/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/math.rst -------------------------------------------------------------------------------- /doc/source/math/basic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/math/basic.rst -------------------------------------------------------------------------------- /doc/source/math/direction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/math/direction.rst -------------------------------------------------------------------------------- /doc/source/math/geocoordinates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/math/geocoordinates.rst -------------------------------------------------------------------------------- /doc/source/math/ref_frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/math/ref_frame.rst -------------------------------------------------------------------------------- /doc/source/math/scalar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/math/scalar.rst -------------------------------------------------------------------------------- /doc/source/math/vector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/math/vector.rst -------------------------------------------------------------------------------- /doc/source/structures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures.rst -------------------------------------------------------------------------------- /doc/source/structures/celestial_bodies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/celestial_bodies.rst -------------------------------------------------------------------------------- /doc/source/structures/celestial_bodies/atmosphere.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/celestial_bodies/atmosphere.rst -------------------------------------------------------------------------------- /doc/source/structures/celestial_bodies/body.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/celestial_bodies/body.rst -------------------------------------------------------------------------------- /doc/source/structures/collections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/collections.rst -------------------------------------------------------------------------------- /doc/source/structures/collections/enumerable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/collections/enumerable.rst -------------------------------------------------------------------------------- /doc/source/structures/collections/iterator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/collections/iterator.rst -------------------------------------------------------------------------------- /doc/source/structures/collections/lexicon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/collections/lexicon.rst -------------------------------------------------------------------------------- /doc/source/structures/collections/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/collections/list.rst -------------------------------------------------------------------------------- /doc/source/structures/collections/queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/collections/queue.rst -------------------------------------------------------------------------------- /doc/source/structures/collections/range.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/collections/range.rst -------------------------------------------------------------------------------- /doc/source/structures/collections/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/collections/stack.rst -------------------------------------------------------------------------------- /doc/source/structures/collections/uniqueset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/collections/uniqueset.rst -------------------------------------------------------------------------------- /doc/source/structures/communication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/communication.rst -------------------------------------------------------------------------------- /doc/source/structures/communication/connection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/communication/connection.rst -------------------------------------------------------------------------------- /doc/source/structures/communication/message.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/communication/message.rst -------------------------------------------------------------------------------- /doc/source/structures/communication/message_queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/communication/message_queue.rst -------------------------------------------------------------------------------- /doc/source/structures/gui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/box.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/box.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/button.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/button.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/gui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/gui.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/label.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/label.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/popupmenu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/popupmenu.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/scrollbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/scrollbox.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/skin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/skin.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/slider.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/slider.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/spacing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/spacing.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/style.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/stylerecoffset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/stylerecoffset.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/stylestate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/stylestate.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/textfield.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/textfield.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/tipdisplay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/tipdisplay.rst -------------------------------------------------------------------------------- /doc/source/structures/gui_widgets/widget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/gui_widgets/widget.rst -------------------------------------------------------------------------------- /doc/source/structures/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/boolean.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/boolean.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/colors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/colors.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/config.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/highlight.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/kosdelegate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/kosdelegate.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/kuniverse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/kuniverse.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/loaddistance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/loaddistance.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/note.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/note.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/pidloop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/pidloop.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/resource_transfer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/resource_transfer.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/steeringmanager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/steeringmanager.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/string.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/string.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/terminal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/terminal.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/terminalinput.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/terminalinput.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/time.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/time.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/timewarp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/timewarp.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/vecdraw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/vecdraw.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/versioninfo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/versioninfo.rst -------------------------------------------------------------------------------- /doc/source/structures/misc/voice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/misc/voice.rst -------------------------------------------------------------------------------- /doc/source/structures/orbits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/orbits.rst -------------------------------------------------------------------------------- /doc/source/structures/orbits/eta.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/orbits/eta.rst -------------------------------------------------------------------------------- /doc/source/structures/orbits/orbit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/orbits/orbit.rst -------------------------------------------------------------------------------- /doc/source/structures/orbits/orbitable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/orbits/orbitable.rst -------------------------------------------------------------------------------- /doc/source/structures/orbits/orbitablevelocity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/orbits/orbitablevelocity.rst -------------------------------------------------------------------------------- /doc/source/structures/reflection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/reflection.rst -------------------------------------------------------------------------------- /doc/source/structures/reflection/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/reflection/structure.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/aggregateresource.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/aggregateresource.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/alt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/alt.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/bounds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/bounds.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/consumedresource.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/consumedresource.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/consumedresourcercs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/consumedresourcercs.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/core.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/crafttemplate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/crafttemplate.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/crewmember.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/crewmember.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/decoupler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/decoupler.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/deltav.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/deltav.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/dockingport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/dockingport.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/element.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/element.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/engine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/engine.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/gimbal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/gimbal.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/kosprocessor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/kosprocessor.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/launchclamp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/launchclamp.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/node.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/node.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/part.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/part.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/partmodule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/partmodule.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/rcs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/rcs.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/resource.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/resource.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/sciencedatavalue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/sciencedatavalue.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/scienceexperiment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/scienceexperiment.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/sensor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/sensor.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/separator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/separator.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/stage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/stage.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/vessel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/vessel.rst -------------------------------------------------------------------------------- /doc/source/structures/vessels/vesselsensors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/vessels/vesselsensors.rst -------------------------------------------------------------------------------- /doc/source/structures/volumes_and_files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/volumes_and_files.rst -------------------------------------------------------------------------------- /doc/source/structures/volumes_and_files/path.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/volumes_and_files/path.rst -------------------------------------------------------------------------------- /doc/source/structures/volumes_and_files/volume.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/volumes_and_files/volume.rst -------------------------------------------------------------------------------- /doc/source/structures/waypoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/structures/waypoint.rst -------------------------------------------------------------------------------- /doc/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/tutorials.rst -------------------------------------------------------------------------------- /doc/source/tutorials/basictutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/tutorials/basictutorial.rst -------------------------------------------------------------------------------- /doc/source/tutorials/designpatterns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/tutorials/designpatterns.rst -------------------------------------------------------------------------------- /doc/source/tutorials/display_bounds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/tutorials/display_bounds.rst -------------------------------------------------------------------------------- /doc/source/tutorials/exenode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/tutorials/exenode.rst -------------------------------------------------------------------------------- /doc/source/tutorials/gui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/tutorials/gui.rst -------------------------------------------------------------------------------- /doc/source/tutorials/pidloops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/tutorials/pidloops.rst -------------------------------------------------------------------------------- /doc/source/tutorials/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/doc/source/tutorials/quickstart.rst -------------------------------------------------------------------------------- /kOS.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kOS.props -------------------------------------------------------------------------------- /kOS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kOS.sln -------------------------------------------------------------------------------- /kerboscript_tests/addons/trajectories/traj1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/addons/trajectories/traj1.ks -------------------------------------------------------------------------------- /kerboscript_tests/addons/trajectories/traj2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/addons/trajectories/traj2.ks -------------------------------------------------------------------------------- /kerboscript_tests/comms.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/comms.ks -------------------------------------------------------------------------------- /kerboscript_tests/compile/compiletest1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/compile/compiletest1.ks -------------------------------------------------------------------------------- /kerboscript_tests/compile/compiletest2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/compile/compiletest2.ks -------------------------------------------------------------------------------- /kerboscript_tests/compile/compiletest3.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/compile/compiletest3.ks -------------------------------------------------------------------------------- /kerboscript_tests/declaration/definedtest.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/declaration/definedtest.ks -------------------------------------------------------------------------------- /kerboscript_tests/declaration/unsettest.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/declaration/unsettest.ks -------------------------------------------------------------------------------- /kerboscript_tests/delegates/delegatetest1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/delegates/delegatetest1.ks -------------------------------------------------------------------------------- /kerboscript_tests/delegates/delegatetest2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/delegates/delegatetest2.ks -------------------------------------------------------------------------------- /kerboscript_tests/delegates/delegatetest3.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/delegates/delegatetest3.ks -------------------------------------------------------------------------------- /kerboscript_tests/delegates/delegatetest3_lib.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/delegates/delegatetest3_lib.ks -------------------------------------------------------------------------------- /kerboscript_tests/delegates/delegatetest4.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/delegates/delegatetest4.ks -------------------------------------------------------------------------------- /kerboscript_tests/delegates/delegatetest5.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/delegates/delegatetest5.ks -------------------------------------------------------------------------------- /kerboscript_tests/delegates/delegatetest6.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/delegates/delegatetest6.ks -------------------------------------------------------------------------------- /kerboscript_tests/delegates/delegatetest7.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/delegates/delegatetest7.ks -------------------------------------------------------------------------------- /kerboscript_tests/demo/testrefvec.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/demo/testrefvec.ks -------------------------------------------------------------------------------- /kerboscript_tests/demo/testskid.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/demo/testskid.ks -------------------------------------------------------------------------------- /kerboscript_tests/functest28.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/functest28.ks -------------------------------------------------------------------------------- /kerboscript_tests/functest29.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/functest29.ks -------------------------------------------------------------------------------- /kerboscript_tests/functest30.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/functest30.ks -------------------------------------------------------------------------------- /kerboscript_tests/functest30_inner.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/functest30_inner.ks -------------------------------------------------------------------------------- /kerboscript_tests/functest31.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/functest31.ks -------------------------------------------------------------------------------- /kerboscript_tests/gui/gui_callback_1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/gui/gui_callback_1.ks -------------------------------------------------------------------------------- /kerboscript_tests/gui/gui_callback_2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/gui/gui_callback_2.ks -------------------------------------------------------------------------------- /kerboscript_tests/input/terminal1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/input/terminal1.ks -------------------------------------------------------------------------------- /kerboscript_tests/integration/basic.ks: -------------------------------------------------------------------------------- 1 | 2 | print("text"). -------------------------------------------------------------------------------- /kerboscript_tests/integration/func.ks: -------------------------------------------------------------------------------- 1 | 2 | function a 3 | { 4 | print("a"). 5 | } 6 | 7 | a(). -------------------------------------------------------------------------------- /kerboscript_tests/integration/func_args.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/integration/func_args.ks -------------------------------------------------------------------------------- /kerboscript_tests/integration/lock.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/integration/lock.ks -------------------------------------------------------------------------------- /kerboscript_tests/integration/operators.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/integration/operators.ks -------------------------------------------------------------------------------- /kerboscript_tests/integration/suffixes.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/integration/suffixes.ks -------------------------------------------------------------------------------- /kerboscript_tests/integration/vars.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/integration/vars.ks -------------------------------------------------------------------------------- /kerboscript_tests/lex_suffix_test1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/lex_suffix_test1.ks -------------------------------------------------------------------------------- /kerboscript_tests/lex_suffix_test2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/lex_suffix_test2.ks -------------------------------------------------------------------------------- /kerboscript_tests/lex_suffix_test3.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/lex_suffix_test3.ks -------------------------------------------------------------------------------- /kerboscript_tests/lib/lib_physics.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/lib/lib_physics.ks -------------------------------------------------------------------------------- /kerboscript_tests/lib/lib_pid.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/lib/lib_pid.ks -------------------------------------------------------------------------------- /kerboscript_tests/lib/testlibpid.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/lib/testlibpid.ks -------------------------------------------------------------------------------- /kerboscript_tests/list/testlist.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/list/testlist.ks -------------------------------------------------------------------------------- /kerboscript_tests/loop/fromthrottletest.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/loop/fromthrottletest.ks -------------------------------------------------------------------------------- /kerboscript_tests/loop/looptest1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/loop/looptest1.ks -------------------------------------------------------------------------------- /kerboscript_tests/loop/looptest2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/loop/looptest2.ks -------------------------------------------------------------------------------- /kerboscript_tests/loop/looptest3.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/loop/looptest3.ks -------------------------------------------------------------------------------- /kerboscript_tests/parameters/paramtest1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/parameters/paramtest1.ks -------------------------------------------------------------------------------- /kerboscript_tests/parameters/paramtest2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/parameters/paramtest2.ks -------------------------------------------------------------------------------- /kerboscript_tests/parameters/paramtest3.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/parameters/paramtest3.ks -------------------------------------------------------------------------------- /kerboscript_tests/parameters/paramtest4.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/parameters/paramtest4.ks -------------------------------------------------------------------------------- /kerboscript_tests/parameters/paramtest4_lib.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/parameters/paramtest4_lib.ks -------------------------------------------------------------------------------- /kerboscript_tests/parameters/paramtest5.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/parameters/paramtest5.ks -------------------------------------------------------------------------------- /kerboscript_tests/parameters/paramtest6.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/parameters/paramtest6.ks -------------------------------------------------------------------------------- /kerboscript_tests/parameters/paramtest6_error.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/parameters/paramtest6_error.ks -------------------------------------------------------------------------------- /kerboscript_tests/parameters/paramtest7.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/parameters/paramtest7.ks -------------------------------------------------------------------------------- /kerboscript_tests/parameters/paramtest7_error.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/parameters/paramtest7_error.ks -------------------------------------------------------------------------------- /kerboscript_tests/resource_transfer/testtransfer1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/resource_transfer/testtransfer1.ks -------------------------------------------------------------------------------- /kerboscript_tests/resource_transfer/testtransfer2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/resource_transfer/testtransfer2.ks -------------------------------------------------------------------------------- /kerboscript_tests/resource_transfer/testtransfer3.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/resource_transfer/testtransfer3.ks -------------------------------------------------------------------------------- /kerboscript_tests/serialization/lexicon.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/serialization/lexicon.ks -------------------------------------------------------------------------------- /kerboscript_tests/serialization/list.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/serialization/list.ks -------------------------------------------------------------------------------- /kerboscript_tests/serialization/misc.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/serialization/misc.ks -------------------------------------------------------------------------------- /kerboscript_tests/serialization/queue.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/serialization/queue.ks -------------------------------------------------------------------------------- /kerboscript_tests/serialization/range.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/serialization/range.ks -------------------------------------------------------------------------------- /kerboscript_tests/serialization/stack.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/serialization/stack.ks -------------------------------------------------------------------------------- /kerboscript_tests/serialization/uniqueset.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/serialization/uniqueset.ks -------------------------------------------------------------------------------- /kerboscript_tests/string/stringtester.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/string/stringtester.ks -------------------------------------------------------------------------------- /kerboscript_tests/ternary.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/ternary.ks -------------------------------------------------------------------------------- /kerboscript_tests/triggers/testtrigger1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/triggers/testtrigger1.ks -------------------------------------------------------------------------------- /kerboscript_tests/triggers/testtrigger2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/triggers/testtrigger2.ks -------------------------------------------------------------------------------- /kerboscript_tests/triggers/testtrigger3.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/triggers/testtrigger3.ks -------------------------------------------------------------------------------- /kerboscript_tests/triggers/testtrigger4.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/triggers/testtrigger4.ks -------------------------------------------------------------------------------- /kerboscript_tests/triggers/testtrigger5.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/triggers/testtrigger5.ks -------------------------------------------------------------------------------- /kerboscript_tests/triggers/testtrigger6.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/triggers/testtrigger6.ks -------------------------------------------------------------------------------- /kerboscript_tests/triggers/testtrigger7.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/triggers/testtrigger7.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest1.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest10.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest10.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest10_inner.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest10_inner.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest11.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest11.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest12.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest12.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest13.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest13.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest14.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest14.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest15.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest15.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest16.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest16.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest17.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest17.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest18.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest18.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest19.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest19.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest2.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest20.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest20.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest21-inner.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest21-inner.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest21.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest21.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest22.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest22.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest23.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest23.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest24.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest24.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest25.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest25.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest26.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest26.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest27.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest27.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest27_b.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest27_b.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest28.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest28.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest29.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest29.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest29_lib.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest29_lib.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest3.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest3.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest30.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest30.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest30_lib.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest30_lib.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest32.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest32.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest33.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest33.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest34.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest34.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest4.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest4.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest5.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest5.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest6.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest6.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest7.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest7.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest8.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest8.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/functest9.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/functest9.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/testclosure1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/testclosure1.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/testclosure2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/testclosure2.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/testclosure3.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/testclosure3.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/testreturn1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/testreturn1.ks -------------------------------------------------------------------------------- /kerboscript_tests/user_functions/testreturn2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/kerboscript_tests/user_functions/testreturn2.ks -------------------------------------------------------------------------------- /src/gimp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/gimp/README.md -------------------------------------------------------------------------------- /src/gimp/kOS Art/kOSLogo2016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/gimp/kOS Art/kOSLogo2016.jpg -------------------------------------------------------------------------------- /src/gimp/kOS Art/kOSLogo2016.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/gimp/kOS Art/kOSLogo2016.psd -------------------------------------------------------------------------------- /src/gimp/kOS Art/kOSLogoNew_blueWoutline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/gimp/kOS Art/kOSLogoNew_blueWoutline.jpg -------------------------------------------------------------------------------- /src/gimp/kOS Art/kos logo work.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/gimp/kOS Art/kos logo work.psd -------------------------------------------------------------------------------- /src/gimp/kOS Art/kos logo work2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/gimp/kOS Art/kos logo work2.psd -------------------------------------------------------------------------------- /src/gimp/kOS Art/kos_logo260x104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/gimp/kOS Art/kos_logo260x104.png -------------------------------------------------------------------------------- /src/gimp/terminal-icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/gimp/terminal-icon.xcf -------------------------------------------------------------------------------- /src/gimp/toggle_source.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/gimp/toggle_source.psd -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Collections/LexiconTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Collections/LexiconTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Collections/ListValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Collections/ListValueTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Collections/QueueValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Collections/QueueValueTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Collections/RangeValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Collections/RangeValueTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Collections/StackValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Collections/StackValueTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Execution/BaseIntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Execution/BaseIntegrationTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Execution/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Execution/Config.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Execution/Noop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Execution/Noop.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Execution/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Execution/Screen.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Execution/SimpleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Execution/SimpleTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/KS/ParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/KS/ParserTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Opcode/FakeCpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Opcode/FakeCpu.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Opcode/OpcodeGetIndexText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Opcode/OpcodeGetIndexText.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Opcode/OpcodeSetIndexTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Opcode/OpcodeSetIndexTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Persistence/ArchiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Persistence/ArchiveTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Persistence/CopyAndMoveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Persistence/CopyAndMoveTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Persistence/GlobalPathTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Persistence/GlobalPathTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Persistence/HarddiskTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Persistence/HarddiskTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Persistence/VolumePathTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Persistence/VolumePathTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Persistence/VolumeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Persistence/VolumeTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Serialization/FormatterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Serialization/FormatterTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Structure/ClampSetSuffixTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Structure/ClampSetSuffixTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Structure/NoArgsSuffixTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Structure/NoArgsSuffixTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Structure/SetSuffixTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Structure/SetSuffixTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Structure/StructureTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Structure/StructureTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Structures/BooleanValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Structures/BooleanValueTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Structures/ScalarValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Structures/ScalarValueTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/Structures/StringValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/Structures/StringValueTest.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/TestLogger.cs -------------------------------------------------------------------------------- /src/kOS.Safe.Test/kOS.Safe.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe.Test/kOS.Safe.Test.csproj -------------------------------------------------------------------------------- /src/kOS.Safe/Binding/BindingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Binding/BindingAttribute.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Binding/BindingDelgate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Binding/BindingDelgate.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Binding/BoundVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Binding/BoundVariable.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Binding/IBindingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Binding/IBindingManager.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Binding/SafeBindingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Binding/SafeBindingBase.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Callback/IGameEventDispatchManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Callback/IGameEventDispatchManager.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Communication/BaseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Communication/BaseMessage.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Communication/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Communication/Connection.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Communication/CurrentTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Communication/CurrentTimeProvider.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Communication/GenericMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Communication/GenericMessageQueue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/Calculator.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/CalculatorBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/CalculatorBool.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/CalculatorScalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/CalculatorScalar.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/CalculatorString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/CalculatorString.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/CalculatorStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/CalculatorStructure.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/CodePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/CodePart.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/CompileCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/CompileCache.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/CompiledObject-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/CompiledObject-doc.md -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/CompiledObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/CompiledObject.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/CompilerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/CompilerOptions.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/BreakInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/BreakInfo.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/Compiler.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/Context.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/KSScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/KSScript.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/LineCol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/LineCol.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/ParseTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/ParseTree.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/Parser.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/Scanner.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/Scope.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/Subprogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/Subprogram.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/Trigger.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/TriggerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/TriggerCollection.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/UserFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/UserFunction.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/KS/kRISC.tpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/KS/kRISC.tpg -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/Opcode.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/OperandPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/OperandPair.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/ProgramBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/ProgramBuilder.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/PseudoNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/PseudoNull.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Compilation/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Compilation/Script.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/BooleanValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/BooleanValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/BuiltinDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/BuiltinDelegate.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/CollectionValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/CollectionValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/ConstantValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/ConstantValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/EnumerableValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/EnumerableValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/Enumerator.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/IConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/IConfig.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/IIndexable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/IIndexable.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/ISetSuffix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/ISetSuffix.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/ISuffix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/ISuffix.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/ISuffixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/ISuffixed.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/KOSDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/KOSDelegate.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/Lexicon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/Lexicon.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/ListValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/ListValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/NoDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/NoDelegate.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/PIDLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/PIDLoop.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/PrimitiveStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/PrimitiveStructure.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/QueueValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/QueueValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/RangeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/RangeValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/ScalarDoubleValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/ScalarDoubleValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/ScalarIntValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/ScalarIntValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/ScalarValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/ScalarValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/StackValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/StackValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/StringValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/StringValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/Structure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/Structure.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/Suffixes/ConfigKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/Suffixes/ConfigKey.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/Suffixes/SetSuffix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/Suffixes/SetSuffix.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/Suffixes/Suffix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/Suffixes/Suffix.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/Suffixes/SuffixBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/Suffixes/SuffixBase.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/TerminalInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/TerminalInput.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/TerminalStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/TerminalStruct.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/UniqueSetValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/UniqueSetValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/UserDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/UserDelegate.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Encapsulation/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Encapsulation/VersionInfo.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSBadJumpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSBadJumpException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSCannotCallException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSCannotCallException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSCastException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSCastException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSCompileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSCompileException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSInvalidDelegateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSInvalidDelegateType.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSInvalidPathException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSInvalidPathException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSKeyNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSKeyNotFoundException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSLongTriggerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSLongTriggerException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSLookupFailException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSLookupFailException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSLowTechException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSLowTechException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSModifyReadonly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSModifyReadonly.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSNumberParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSNumberParseException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSObsoletionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSObsoletionException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSParseException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSPersistenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSPersistenceException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Exceptions/KOSSuffixUseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Exceptions/KOSSuffixUseException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/CPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/CPU.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/ExecutionStatBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/ExecutionStatBlock.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/ICpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/ICpu.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/IKOSScopeObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/IKOSScopeObserver.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/IPopContextNotifyee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/IPopContextNotifyee.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/IProgramContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/IProgramContext.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/IStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/IStack.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/IUserDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/IUserDelegate.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/InternalPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/InternalPath.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/InterruptPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/InterruptPriority.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/KOSArgMarkerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/KOSArgMarkerType.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/KOSPassThruReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/KOSPassThruReturn.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/ProgramContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/ProgramContext.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/Stack.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/SurboutineContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/SurboutineContext.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/TriggerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/TriggerInfo.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/Variable.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/VariableScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/VariableScope.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/YieldFinishedCompile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/YieldFinishedCompile.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/YieldFinishedDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/YieldFinishedDetector.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/YieldFinishedGameTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/YieldFinishedGameTimer.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/YieldFinishedGetChar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/YieldFinishedGetChar.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Execution/YieldFinishedNextTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Execution/YieldFinishedNextTick.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Function/FunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Function/FunctionAttribute.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Function/FunctionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Function/FunctionManager.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Function/IFunctionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Function/IFunctionManager.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Function/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Function/Math.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Function/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Function/Misc.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Function/Persistence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Function/Persistence.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Function/SafeFunctionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Function/SafeFunctionBase.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Function/Suffixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Function/Suffixed.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Function/Trigonometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Function/Trigonometry.cs -------------------------------------------------------------------------------- /src/kOS.Safe/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/ILogger.cs -------------------------------------------------------------------------------- /src/kOS.Safe/IUpdateObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/IUpdateObserver.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Module/IProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Module/IProcessor.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/Archive.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/ArchiveDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/ArchiveDirectory.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/ArchiveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/ArchiveFile.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/FileCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/FileCategory.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/FileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/FileContent.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/GlobalPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/GlobalPath.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/Harddisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/Harddisk.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/HarddiskDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/HarddiskDirectory.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/HarddiskFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/HarddiskFile.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/IVolumeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/IVolumeManager.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/KOSFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/KOSFileException.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/PathValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/PathValue.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/PersistenceUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/PersistenceUtilities.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/Volume.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/VolumeDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/VolumeDirectory.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/VolumeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/VolumeFile.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/VolumeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/VolumeItem.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/VolumeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/VolumeManager.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Persistence/VolumePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Persistence/VolumePath.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Properties/Resources.resx -------------------------------------------------------------------------------- /src/kOS.Safe/SafeSharedObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/SafeSharedObjects.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Screen/IInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Screen/IInterpreter.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Screen/IScreenBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Screen/IScreenBuffer.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Screen/IScreenBufferLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Screen/IScreenBufferLine.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Screen/IScreenSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Screen/IScreenSnapshot.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Screen/ITermWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Screen/ITermWindow.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Screen/ScreenBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Screen/ScreenBuffer.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Screen/ScreenBufferLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Screen/ScreenBufferLine.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Screen/ScreenSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Screen/ScreenSnapshot.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Screen/SubBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Screen/SubBuffer.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Screen/TextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Screen/TextEditor.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Serialization/Dump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Serialization/Dump.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Serialization/DumpWithHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Serialization/DumpWithHeader.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Serialization/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Serialization/Formatter.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Serialization/IDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Serialization/IDumper.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Serialization/JSONFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Serialization/JSONFormatter.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Serialization/SafeSerializationMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Serialization/SafeSerializationMgr.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Serialization/TerminalFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Serialization/TerminalFormatter.cs -------------------------------------------------------------------------------- /src/kOS.Safe/SimpleJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/SimpleJson.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Sound/IProceduralSoundWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Sound/IProceduralSoundWave.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Sound/ISoundMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Sound/ISoundMaker.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Sound/IVoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Sound/IVoice.cs -------------------------------------------------------------------------------- /src/kOS.Safe/UpdateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/UpdateHandler.cs -------------------------------------------------------------------------------- /src/kOS.Safe/UserIO/UnicodeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/UserIO/UnicodeCommand.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/AssemblyWalkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/AssemblyWalkAttribute.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/CpuUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/CpuUtility.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/Debug.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/EnumUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/EnumUtilities.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/KOSNomenclature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/KOSNomenclature.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/KOSNomenclatureAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/KOSNomenclatureAttribute.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/MovingAverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/MovingAverage.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/ReflectUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/ReflectUtil.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/SafeHouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/SafeHouse.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/StringUtil.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/TickGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/TickGen.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/kOSKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/kOSKeys.cs -------------------------------------------------------------------------------- /src/kOS.Safe/Utilities/kosMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/Utilities/kosMath.cs -------------------------------------------------------------------------------- /src/kOS.Safe/kOS.Safe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS.Safe/kOS.Safe.csproj -------------------------------------------------------------------------------- /src/kOS/AddOns/ActionGroupsExtended/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/ActionGroupsExtended/Addon.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/Addon Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/Addon Readme.md -------------------------------------------------------------------------------- /src/kOS/AddOns/AddonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/AddonManager.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/InfernalRobotics/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/InfernalRobotics/Addon.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/InfernalRobotics/IRControlGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/InfernalRobotics/IRControlGroup.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/InfernalRobotics/IRHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/InfernalRobotics/IRHandler.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/InfernalRobotics/IRServoWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/InfernalRobotics/IRServoWrapper.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/InfernalRobotics/IRWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/InfernalRobotics/IRWrapper.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/KerbalAlarmClock/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/KerbalAlarmClock/Addon.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/KerbalAlarmClock/KACAlarmWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/KerbalAlarmClock/KACAlarmWrapper.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/KerbalAlarmClock/KACEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/KerbalAlarmClock/KACEventHandler.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/KerbalAlarmClock/KACFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/KerbalAlarmClock/KACFunctions.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/KerbalAlarmClock/KACWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/KerbalAlarmClock/KACWrapper.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/RemoteTech/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/RemoteTech/Addon.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/RemoteTech/IRemoteTechAPIv1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/RemoteTech/IRemoteTechAPIv1.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/RemoteTech/RemoteTechAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/RemoteTech/RemoteTechAPI.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/RemoteTech/RemoteTechHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/RemoteTech/RemoteTechHook.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/Trajectories/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/Trajectories/Addon.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/Trajectories/TRWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/Trajectories/TRWrapper.cs -------------------------------------------------------------------------------- /src/kOS/AddOns/kOSAddonAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/AddOns/kOSAddonAttribute.cs -------------------------------------------------------------------------------- /src/kOS/Binding/ActionGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/ActionGroups.cs -------------------------------------------------------------------------------- /src/kOS/Binding/Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/Binding.cs -------------------------------------------------------------------------------- /src/kOS/Binding/BindingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/BindingConfig.cs -------------------------------------------------------------------------------- /src/kOS/Binding/BindingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/BindingManager.cs -------------------------------------------------------------------------------- /src/kOS/Binding/BindingsUniverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/BindingsUniverse.cs -------------------------------------------------------------------------------- /src/kOS/Binding/CPUBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/CPUBinding.cs -------------------------------------------------------------------------------- /src/kOS/Binding/ColorBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/ColorBinding.cs -------------------------------------------------------------------------------- /src/kOS/Binding/DoNothingBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/DoNothingBinding.cs -------------------------------------------------------------------------------- /src/kOS/Binding/FlightControlManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/FlightControlManager.cs -------------------------------------------------------------------------------- /src/kOS/Binding/FlightStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/FlightStats.cs -------------------------------------------------------------------------------- /src/kOS/Binding/MissionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/MissionSettings.cs -------------------------------------------------------------------------------- /src/kOS/Binding/RoverStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/RoverStats.cs -------------------------------------------------------------------------------- /src/kOS/Binding/TerminalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Binding/TerminalSettings.cs -------------------------------------------------------------------------------- /src/kOS/Callback/GameEventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Callback/GameEventDispatcher.cs -------------------------------------------------------------------------------- /src/kOS/Callback/KOSGameEventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Callback/KOSGameEventDispatcher.cs -------------------------------------------------------------------------------- /src/kOS/Communication/ConnectivityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/ConnectivityManager.cs -------------------------------------------------------------------------------- /src/kOS/Communication/ControlConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/ControlConnection.cs -------------------------------------------------------------------------------- /src/kOS/Communication/HomeConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/HomeConnection.cs -------------------------------------------------------------------------------- /src/kOS/Communication/IConnectivityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/IConnectivityManager.cs -------------------------------------------------------------------------------- /src/kOS/Communication/InterProcCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/InterProcCommand.cs -------------------------------------------------------------------------------- /src/kOS/Communication/InterVesselManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/InterVesselManager.cs -------------------------------------------------------------------------------- /src/kOS/Communication/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/Message.cs -------------------------------------------------------------------------------- /src/kOS/Communication/MessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/MessageQueue.cs -------------------------------------------------------------------------------- /src/kOS/Communication/MessageQueueStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/MessageQueueStructure.cs -------------------------------------------------------------------------------- /src/kOS/Communication/MessageStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/MessageStructure.cs -------------------------------------------------------------------------------- /src/kOS/Communication/PlanetariumTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/PlanetariumTimeProvider.cs -------------------------------------------------------------------------------- /src/kOS/Communication/ProcessorConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/ProcessorConnection.cs -------------------------------------------------------------------------------- /src/kOS/Communication/ProcessorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/ProcessorManager.cs -------------------------------------------------------------------------------- /src/kOS/Communication/RunCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/RunCommand.cs -------------------------------------------------------------------------------- /src/kOS/Communication/VesselConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/VesselConnection.cs -------------------------------------------------------------------------------- /src/kOS/Communication/kOSConnectivityParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Communication/kOSConnectivityParameters.cs -------------------------------------------------------------------------------- /src/kOS/Control/IFlightControlParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Control/IFlightControlParameter.cs -------------------------------------------------------------------------------- /src/kOS/Control/SteeringManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Control/SteeringManager.cs -------------------------------------------------------------------------------- /src/kOS/Control/ThrottleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Control/ThrottleManager.cs -------------------------------------------------------------------------------- /src/kOS/Control/WheelSteeringManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Control/WheelSteeringManager.cs -------------------------------------------------------------------------------- /src/kOS/Control/WheelThrottleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Control/WheelThrottleManager.cs -------------------------------------------------------------------------------- /src/kOS/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Core.cs -------------------------------------------------------------------------------- /src/kOS/Execution/TransferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Execution/TransferManager.cs -------------------------------------------------------------------------------- /src/kOS/Function/BuildList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Function/BuildList.cs -------------------------------------------------------------------------------- /src/kOS/Function/FunctionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Function/FunctionBase.cs -------------------------------------------------------------------------------- /src/kOS/Function/HighlightStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Function/HighlightStructure.cs -------------------------------------------------------------------------------- /src/kOS/Function/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Function/Math.cs -------------------------------------------------------------------------------- /src/kOS/Function/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Function/Misc.cs -------------------------------------------------------------------------------- /src/kOS/Function/Persistence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Function/Persistence.cs -------------------------------------------------------------------------------- /src/kOS/Function/PrintList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Function/PrintList.cs -------------------------------------------------------------------------------- /src/kOS/Function/Suffixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Function/Suffixed.cs -------------------------------------------------------------------------------- /src/kOS/KSPLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/KSPLogger.cs -------------------------------------------------------------------------------- /src/kOS/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Logger.cs -------------------------------------------------------------------------------- /src/kOS/Module/AssetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Module/AssetManager.cs -------------------------------------------------------------------------------- /src/kOS/Module/AutopilotMsgManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Module/AutopilotMsgManager.cs -------------------------------------------------------------------------------- /src/kOS/Module/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Module/Bootstrapper.cs -------------------------------------------------------------------------------- /src/kOS/Module/KOSNameTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Module/KOSNameTag.cs -------------------------------------------------------------------------------- /src/kOS/Module/SceneChangeCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Module/SceneChangeCleaner.cs -------------------------------------------------------------------------------- /src/kOS/Module/kOSCustomParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Module/kOSCustomParameters.cs -------------------------------------------------------------------------------- /src/kOS/Module/kOSLightModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Module/kOSLightModule.cs -------------------------------------------------------------------------------- /src/kOS/Module/kOSProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Module/kOSProcessor.cs -------------------------------------------------------------------------------- /src/kOS/Module/kOSSettingsChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Module/kOSSettingsChecker.cs -------------------------------------------------------------------------------- /src/kOS/Module/kOSVesselModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Module/kOSVesselModule.cs -------------------------------------------------------------------------------- /src/kOS/Persistence/ConnectivityVolumeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Persistence/ConnectivityVolumeManager.cs -------------------------------------------------------------------------------- /src/kOS/Persistence/PersistenceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Persistence/PersistenceExtensions.cs -------------------------------------------------------------------------------- /src/kOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/kOS/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/kOS/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Properties/Resources.resx -------------------------------------------------------------------------------- /src/kOS/Screen/ConnectivityInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/ConnectivityInterpreter.cs -------------------------------------------------------------------------------- /src/kOS/Screen/DelegateDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/DelegateDialog.cs -------------------------------------------------------------------------------- /src/kOS/Screen/GUIWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/GUIWindow.cs -------------------------------------------------------------------------------- /src/kOS/Screen/Interpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/Interpreter.cs -------------------------------------------------------------------------------- /src/kOS/Screen/KOSManagedWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/KOSManagedWindow.cs -------------------------------------------------------------------------------- /src/kOS/Screen/KOSNameTagWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/KOSNameTagWindow.cs -------------------------------------------------------------------------------- /src/kOS/Screen/KOSTextEditPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/KOSTextEditPopup.cs -------------------------------------------------------------------------------- /src/kOS/Screen/KOSToolbarWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/KOSToolbarWindow.cs -------------------------------------------------------------------------------- /src/kOS/Screen/ListPickerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/ListPickerDialog.cs -------------------------------------------------------------------------------- /src/kOS/Screen/RectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/RectExtensions.cs -------------------------------------------------------------------------------- /src/kOS/Screen/TermWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/TermWindow.cs -------------------------------------------------------------------------------- /src/kOS/Screen/ToolbarWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Screen/ToolbarWrapper.cs -------------------------------------------------------------------------------- /src/kOS/Serialization/ConfigNodeFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Serialization/ConfigNodeFormatter.cs -------------------------------------------------------------------------------- /src/kOS/Serialization/SerializationMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Serialization/SerializationMgr.cs -------------------------------------------------------------------------------- /src/kOS/SharedObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/SharedObjects.cs -------------------------------------------------------------------------------- /src/kOS/Sound/NoiseSoundWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Sound/NoiseSoundWave.cs -------------------------------------------------------------------------------- /src/kOS/Sound/NoteValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Sound/NoteValue.cs -------------------------------------------------------------------------------- /src/kOS/Sound/ProceduralSoundWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Sound/ProceduralSoundWave.cs -------------------------------------------------------------------------------- /src/kOS/Sound/SawtoothSoundWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Sound/SawtoothSoundWave.cs -------------------------------------------------------------------------------- /src/kOS/Sound/SineSoundWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Sound/SineSoundWave.cs -------------------------------------------------------------------------------- /src/kOS/Sound/SoundMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Sound/SoundMaker.cs -------------------------------------------------------------------------------- /src/kOS/Sound/SquareSoundWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Sound/SquareSoundWave.cs -------------------------------------------------------------------------------- /src/kOS/Sound/TriangleSoundWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Sound/TriangleSoundWave.cs -------------------------------------------------------------------------------- /src/kOS/Sound/Voice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Sound/Voice.cs -------------------------------------------------------------------------------- /src/kOS/Sound/VoiceValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Sound/VoiceValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/ActiveResourceValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/ActiveResourceValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Addon.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/AddonList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/AddonList.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/AggregateResourceValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/AggregateResourceValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/BodyAtmosphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/BodyAtmosphere.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/BodyTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/BodyTarget.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/BoundsValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/BoundsValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Career.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Career.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Config.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/ConsumedResourceValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/ConsumedResourceValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/ConsumedResourceValueRCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/ConsumedResourceValueRCS.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/CraftTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/CraftTemplate.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/CrewMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/CrewMember.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/DeltaVCalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/DeltaVCalc.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Direction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Direction.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/ElementValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/ElementValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/FlightControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/FlightControl.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/GeoCoordinates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/GeoCoordinates.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/HsvaColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/HsvaColor.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/IKOSTargetable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/IKOSTargetable.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/KUniverseValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/KUniverseValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/LoadDistanceValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/LoadDistanceValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Node.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/OrbitEta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/OrbitEta.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/OrbitInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/OrbitInfo.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Orbitable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Orbitable.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/OrbitableVelocity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/OrbitableVelocity.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Part/DecouplerValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Part/DecouplerValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Part/DockingPortValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Part/DockingPortValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Part/EngineValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Part/EngineValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Part/LaunchClampValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Part/LaunchClampValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Part/PartValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Part/PartValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Part/PartValueFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Part/PartValueFactory.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Part/RCSValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Part/RCSValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Part/SensorValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Part/SensorValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Part/SeparatorValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Part/SeparatorValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/PartModuleField/GimbalFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/PartModuleField/GimbalFields.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/ResourceTransferValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/ResourceTransferValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/RgbaColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/RgbaColor.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/ScienceDataValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/ScienceDataValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/SingleResourceValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/SingleResourceValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/StageValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/StageValues.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/TimeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/TimeBase.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/TimeSpan.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/TimeStamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/TimeStamp.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/TimeWarpValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/TimeWarpValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Vector.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/VectorRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/VectorRenderer.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/VesselAlt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/VesselAlt.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/VesselSensors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/VesselSensors.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/VesselTarget.Hooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/VesselTarget.Hooks.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/VesselTarget.Parts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/VesselTarget.Parts.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/VesselTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/VesselTarget.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/WaypointValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/WaypointValue.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/Box.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/Button.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/GUIWidgets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/GUIWidgets.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/Label.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/PopupMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/PopupMenu.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/ScrollBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/ScrollBox.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/Slider.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/Spacing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/Spacing.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/TextField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/TextField.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/TipDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/TipDisplay.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/Widget.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/WidgetSkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/WidgetSkin.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/WidgetStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/WidgetStyle.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/WidgetStyleRectOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/WidgetStyleRectOffset.cs -------------------------------------------------------------------------------- /src/kOS/Suffixed/Widget/WidgetStyleState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Suffixed/Widget/WidgetStyleState.cs -------------------------------------------------------------------------------- /src/kOS/UserIO/TelnetMainServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/UserIO/TelnetMainServer.cs -------------------------------------------------------------------------------- /src/kOS/UserIO/TelnetSingletonServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/UserIO/TelnetSingletonServer.cs -------------------------------------------------------------------------------- /src/kOS/UserIO/TelnetWelcomeMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/UserIO/TelnetWelcomeMenu.cs -------------------------------------------------------------------------------- /src/kOS/UserIO/TerminalAnsiMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/UserIO/TerminalAnsiMapper.cs -------------------------------------------------------------------------------- /src/kOS/UserIO/TerminalUnicodeMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/UserIO/TerminalUnicodeMapper.cs -------------------------------------------------------------------------------- /src/kOS/UserIO/TerminalVT100Mapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/UserIO/TerminalVT100Mapper.cs -------------------------------------------------------------------------------- /src/kOS/UserIO/TerminalXtermMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/UserIO/TerminalXtermMapper.cs -------------------------------------------------------------------------------- /src/kOS/Utilities/BetaShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Utilities/BetaShim.cs -------------------------------------------------------------------------------- /src/kOS/Utilities/PartUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Utilities/PartUtilities.cs -------------------------------------------------------------------------------- /src/kOS/Utilities/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Utilities/Utils.cs -------------------------------------------------------------------------------- /src/kOS/Utilities/VesselUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/Utilities/VesselUtils.cs -------------------------------------------------------------------------------- /src/kOS/kOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/kOS/kOS.csproj -------------------------------------------------------------------------------- /src/parts source/kOS Radial dev/colorTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS Radial dev/colorTexture.png -------------------------------------------------------------------------------- /src/parts source/kOS Radial dev/compumax.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS Radial dev/compumax.dae -------------------------------------------------------------------------------- /src/parts source/kOS Radial dev/compumax.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS Radial dev/compumax.skp -------------------------------------------------------------------------------- /src/parts source/kOS Radial dev/kosradial.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS Radial dev/kosradial.blend -------------------------------------------------------------------------------- /src/parts source/kOS Radial dev/kosradial.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS Radial dev/kosradial.dae -------------------------------------------------------------------------------- /src/parts source/kOS0m dev/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS0m dev/Assets/Materials.meta -------------------------------------------------------------------------------- /src/parts source/kOS0m dev/Assets/PartTools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS0m dev/Assets/PartTools.meta -------------------------------------------------------------------------------- /src/parts source/kOS0m dev/Assets/untitled.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS0m dev/Assets/untitled.dae -------------------------------------------------------------------------------- /src/parts source/kOS0m dev/kOSMachine0m copy.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS0m dev/kOSMachine0m copy.dae -------------------------------------------------------------------------------- /src/parts source/kOS0m dev/kOSMachine0m.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS0m dev/kOSMachine0m.blend -------------------------------------------------------------------------------- /src/parts source/kOS0m dev/kOSMachine0m.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS0m dev/kOSMachine0m.dae -------------------------------------------------------------------------------- /src/parts source/kOS1m dev/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS1m dev/Assets/Materials.meta -------------------------------------------------------------------------------- /src/parts source/kOS1m dev/Assets/PartTools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS1m dev/Assets/PartTools.meta -------------------------------------------------------------------------------- /src/parts source/kOS1m dev/Assets/kOSMachine1m.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS1m dev/Assets/kOSMachine1m.dae -------------------------------------------------------------------------------- /src/parts source/kOS1m dev/kOSMachine1m.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS1m dev/kOSMachine1m.blend -------------------------------------------------------------------------------- /src/parts source/kOS1m dev/kOSMachine1m.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS1m dev/kOSMachine1m.dae -------------------------------------------------------------------------------- /src/parts source/kOS_Models.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/parts source/kOS_Models.unitypackage -------------------------------------------------------------------------------- /src/sound_sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/sound_sources/README.md -------------------------------------------------------------------------------- /src/sound_sources/error.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/sound_sources/error.aup -------------------------------------------------------------------------------- /src/sound_sources/error_data/e00/d00/e0000929.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/sound_sources/error_data/e00/d00/e0000929.au -------------------------------------------------------------------------------- /src/sound_sources/error_data/e00/d00/e0000c1f.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/sound_sources/error_data/e00/d00/e0000c1f.au -------------------------------------------------------------------------------- /src/sound_sources/error_data/e00/d00/e0000c97.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/sound_sources/error_data/e00/d00/e0000c97.au -------------------------------------------------------------------------------- /src/sound_sources/terminal-beep.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/sound_sources/terminal-beep.aup -------------------------------------------------------------------------------- /src/sound_sources/terminal-click.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-KOS/KOS/HEAD/src/sound_sources/terminal-click.aup --------------------------------------------------------------------------------